-
Notifications
You must be signed in to change notification settings - Fork 0
/
uvis2024.js
2493 lines (2476 loc) · 168 KB
/
uvis2024.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
const batch2024jan = [{
}, { // ------------------------------------------------------------------------
"x": "Fixed broken blog images on the front page and robusted up the script that generates them so they shouldn't break again",
"u": ["https://twitter.com/beemuvi/status/1741984677945287147",
"https://github.com/beeminder/beeminder/issues/4072"],
"t": "2024-01-01",
"c": "Tweeted way after the fact",
}, { // ------------------------------------------------------------------------
"x": "Improved the http://beeminder.com/aboutus page: alt text for images, webp versions of the images, image sizes for smoother page loading",
"u": ["https://twitter.com/beemuvi/status/1741984756303380795",
"https://github.com/beeminder/beeminder/issues/4654",
"https://github.com/beeminder/beeminder/issues/4704",
"https://github.com/beeminder/beeminder/pull/4703"],
"t": "2024-01-01",
}, { // ------------------------------------------------------------------------
"x": "Added the Manifold logo to the Honeygrams page and fixed the Manifold link that initiates mana-to-honey transfers",
"u": ["https://twitter.com/beemuvi/status/1742342251605639622",
"https://github.com/beeminder/beeminder/issues/4529"],
"t": "2024-01-02",
}, { // ------------------------------------------------------------------------
"x": "We bumped up the limit for number of datapoints allowed per day and improved the error copy slightly when you exceed it",
"u": ["https://twitter.com/beemuvi/status/1742342355376832917",
"https://github.com/beeminder/beeminder/issues/4604"],
"c": "From 150 to 300 but no promises on what we settle on. Errorcopy thing is that we don't incorrectly call it rate-limiting.",
}, { // ------------------------------------------------------------------------
"x": "In your table of payments, the From/To now says \"Beeminder\" instead of, confusingly, \"meta\", and \"you\" instead of your username",
"u": ["https://twitter.com/beemuvi/status/1742709480285180349",
"https://github.com/beeminder/beeminder/issues/4529",
"https://github.com/beeminder/beeminder/pull/4664"],
"d": "2023-12-31",
"t": "2024-01-03",
}, { // ------------------------------------------------------------------------
"x": "Also in the table of payments, we got rid of those barely-readable timestamps in favor of just dates, but with full timestamp on hover",
"u": ["https://twitter.com/beemuvi/status/1742709579346309307",
"https://github.com/beeminder/beeminder/issues/4529",
"https://github.com/beeminder/beeminder/pull/4664"],
"d": "2023-12-31",
"t": "2024-01-03",
}, { // ------------------------------------------------------------------------
"x": "Help docs: Clarifications in the article about goal stats; and new links, copy tweaks, etc, in 8 other articles",
"u": ["https://twitter.com/beemuvi/status/1743073045265445306",
"https://help.beeminder.com/article/119-what-are-the-goal-statistics",
"https://help.beeminder.com/article/66-do-more-goals",
"https://help.beeminder.com/article/67-do-less-goals",
"https://help.beeminder.com/article/157-pessimistic-presumptive-reports",
"https://help.beeminder.com/article/68-odometer-goals",
"https://help.beeminder.com/article/96-weight-gain-loss-goals",
"https://help.beeminder.com/article/97-custom-goals",
"https://help.beeminder.com/article/36-what-is-my-data",
"https://help.beeminder.com/article/37-how-do-i-enter-data-to-my-goal"],
"d": "2023-12-23",
"t": "2024-01-04",
}, { // ------------------------------------------------------------------------
"x": "A minor fix to spacing in the winter-themed Beeminder logos: the spacing between BEEMINDER and the tagline text is now consistent. #css HT Paul Schmidt",
"u": ["https://twitter.com/beemuvi/status/1743073476972544231",
"https://github.com/beeminder/beeminder/pull/4662"],
"d": "2023-12-31",
"t": "2024-01-04",
}, { // ------------------------------------------------------------------------
"x": "We were showing the wrong thumbnail for the 'Antimagic 404' blog post on the frontpage for a while. Those responsible have been sacked.",
"u": ["https://twitter.com/beemuvi/status/1743435555655041288",
"https://github.com/beeminder/beeminder/pull/4626",
"https://github.com/beeminder/beeminder/pull/4627"],
"d": "2023-12-15",
"t": "2024-01-05",
}, { // ------------------------------------------------------------------------
"x": "Help docs: Clarified in the article about forgetting to enter data that you don't *have* to enter data every day, plus small improvements to 7 other articles",
"u": ["https://twitter.com/beemuvi/status/1743435719270715857",
"https://help.beeminder.com/article/38-what-happens-if-i-forgot-to-enter-data",
"https://help.beeminder.com/article/39-how-do-i-fix-incorrect-data",
"https://help.beeminder.com/article/40-can-anybody-else-add-data-to-my-goal",
"https://help.beeminder.com/article/41-can-i-export-my-data",
"https://help.beeminder.com/article/113-can-i-import-previous-data",
"https://help.beeminder.com/article/42-switching-goal-units",
"https://help.beeminder.com/article/19-how-much-does-beeminder-cost",
"https://help.beeminder.com/article/324-when-do-i-pay"],
"d": "2024-01-05",
"t": "2024-01-05",
}, { // ------------------------------------------------------------------------
"x": "Our tryDeepWork.com integration is now more robust, by retrying if it can't reach tryDeepWork's API",
"u": ["https://twitter.com/beemuvi/status/1744520534782779697",
"https://github.com/beeminder/beeminder/issues/4609"],
"t": "2024-01-08",
}, { // ------------------------------------------------------------------------
"x": "Honey money purchases were getting shown in your payments with a blank description, oops. Fixed retroactively as well.",
"u": ["https://twitter.com/beemuvi/status/1744520706103386606",
"https://github.com/beeminder/beeminder/issues/4673"],
"t": "2024-01-08",
}, { // ------------------------------------------------------------------------
"x": "All legacy PayPal users automatically get a $10 honey money bribe for switching to another payment method if they do it soon! (And emailed them all about it)",
"u": ["https://twitter.com/beemuvi/status/1744881681109279036",
"https://github.com/beeminder/beeminder/issues/1840",
"https://github.com/beeminder/beeminder/pull/4682"],
"d": "2024-01-09",
"t": "2024-01-09",
}, { // ------------------------------------------------------------------------
"x": "And made the \"can't switch _to_ PayPal\" rule stricter: it's enforced in the API now, not just disabled in the interface",
"u": ["https://twitter.com/beemuvi/status/1744881881072730182",
"https://github.com/beeminder/beeminder/issues/1840",
"https://github.com/beeminder/beeminder/issues/2987",
"https://github.com/beeminder/beeminder/pull/4682"],
"d": "2024-01-09",
"t": "2024-01-09",
}, { // ------------------------------------------------------------------------
"x": "Moved legacy PayPal to its own section of the payments page and added a banner to extra-emphasize that we really want you to pick a new payment method",
"u": ["https://twitter.com/beemuvi/status/1745248396955512916",
"https://github.com/beeminder/beeminder/pull/4649"],
"t": "2024-01-10",
"d": "2023-12-21",
}, { // ------------------------------------------------------------------------
"x": "Not sure how long we'll support this but for now we have a \"buy Honey with PayPal\" button on the payments page shown to legacy PayPal holdouts",
"u": ["https://twitter.com/beemuvi/status/1745248485807644737",
"https://github.com/beeminder/beeminder/pull/4649"],
"t": "2024-01-10",
"d": "2023-12-21",
}, { // ------------------------------------------------------------------------
"x": "Added a visual indicator of an autodata sync error on your dashboard, namely a light blue background for the goal, to match the error banner",
"u": ["https://twitter.com/beemuvi/status/1745606193605976098",
"https://github.com/beeminder/beeminder/issues/4276",
"https://github.com/beeminder/beeminder/pull/4684"],
"d": "2024-01-10",
"t": "2024-01-11",
}, { // ------------------------------------------------------------------------
"x": "Also replaced the last datapoint with \"Could not fetch data from ...\"",
"u": ["https://twitter.com/beemuvi/status/1745606468131524795",
"https://github.com/beeminder/beeminder/issues/4276",
"https://github.com/beeminder/beeminder/pull/4684"],
"d": "2024-01-10",
"t": "2024-01-11",
}, { // ------------------------------------------------------------------------
"x": "Also-also it explains the autodata error in the hovertext and we improved the hovertext more generally to say things like if a goal's scheduled to archive",
"u": ["https://twitter.com/beemuvi/status/1745979062949122237",
"https://github.com/beeminder/beeminder/issues/4276",
"https://github.com/beeminder/beeminder/pull/4684"],
"d": "2024-01-10",
"t": "2024-01-12",
}, { // ------------------------------------------------------------------------
"x": "Oops, forgot the case of no error or archiving: dashboard hovertext erroneously just said \"autodata error\" on every single goal! HT brittany123 #bugfix #zombie",
"u": ["https://twitter.com/beemuvi/status/1745979223473529317",
"https://github.com/beeminder/beeminder/issues/4690",
"https://github.com/beeminder/beeminder/pull/4691"],
"d": "2024-01-12",
"t": "2024-01-12",
}, { // ------------------------------------------------------------------------
"x": "Fixed a bug with datapoint pagination in the API: our paging is 1-indexed and saying page=0 would choke and give a 500 error. #bugfix",
"u": ["https://twitter.com/beemuvi/status/1748508416652476799",
"https://github.com/beeminder/beeminder/issues/4620",
"https://github.com/beeminder/beeminder/pull/4621",
"https://github.com/beeminder/apidocs/pull/46"],
"d": "2023-12-22",
"t": "2024-01-19",
}, { // ------------------------------------------------------------------------
"x": "Also for pagination: updated the API docs, generalized the bounds checking, and wrote nice errorcopy specific to the different parameters",
"u": ["https://twitter.com/beemuvi/status/1749577657518551199",
"https://github.com/beeminder/beeminder/issues/4620",
"https://github.com/beeminder/beeminder/pull/4621",
"https://github.com/beeminder/apidocs/pull/46"],
"d": "2023-12-22",
"t": "2024-01-22",
}, { // ------------------------------------------------------------------------
"f": true,
"x": "We made year-end Beecaps for everyone who was beeminding in 2023! http://beeminder.com/beecap",
"u": ["https://twitter.com/beemuvi/status/1749578290833338820",
"https://github.com/beeminder/beeminder/issues/4713"],
"t": "2024-01-22",
}, { // ------------------------------------------------------------------------
"x": "Fixed a bug with the Beecap download button: the sizing of the downloaded image was all wrong in Firefox and Safari. #bugfix",
"u": ["https://twitter.com/beemuvi/status/1749959122605535556",
"https://github.com/beeminder/beeminder/pull/4702"],
"d": "2024-01-16",
"t": "2024-01-23",
}, { // ------------------------------------------------------------------------
"x": "Made the Beecaps show something if the user has no active goals in the last year, so it's not a dead page should someone stumble upon it",
"u": ["https://twitter.com/beemuvi/status/1749959166129733899",
"https://github.com/beeminder/beeminder/issues/4713",
"https://github.com/beeminder/beeminder/pull/4697"],
"d": "2024-01-17",
"t": "2024-01-23",
}, { // ------------------------------------------------------------------------
"x": "Finally, we pre-seeded/cached all the beecaps so the page loads nice and snappily. Oh yeah, and we emailed them to everyone who was beeminding in 2023.",
"u": ["https://twitter.com/beemuvi/status/1750315525694275777",
"https://github.com/beeminder/beeminder/issues/4713",
"https://github.com/beeminder/beeminder/pull/4694"],
"d": "2024-01-17",
"t": "2024-01-24",
}, { // ------------------------------------------------------------------------
"x": "Oops, the Buy Honey With PayPal button for legacy PayPal holdouts (UVI#4749) became a no-op if you switched to a different payment method. #bugfix",
"u": ["https://twitter.com/beemuvi/status/1750315922739315073",
"https://github.com/beeminder/beeminder/issues/4712",
"https://github.com/beeminder/beeminder/pull/4711"],
"d": "2024-01-24",
"t": "2024-01-24",
}, { // ------------------------------------------------------------------------
"x": "Worse than that, when it did work, the \"yes, charge me $10\" button just made the infinibee spin but nothing ever happened! #bugfix",
"u": ["https://twitter.com/beemuvi/status/1750680957961842806",
"https://github.com/beeminder/beeminder/issues/4712",
"https://github.com/beeminder/beeminder/pull/4711"],
"d": "2024-01-24",
"t": "2024-01-25",
}, { // ------------------------------------------------------------------------
"x": "Bonus: made the popup undismissable until the the infinibee finishes and the charge goes through, preventing a jarring page reload if it finished post-dismissal",
"u": ["https://twitter.com/beemuvi/status/1750681448720568334",
"https://github.com/beeminder/beeminder/issues/4712",
"https://github.com/beeminder/beeminder/pull/4711"],
"d": "2024-01-24",
"t": "2024-01-25",
}, { // ------------------------------------------------------------------------
"x": "For unhappy combos of publication time and user-timezone, your RSSminder RSS entries wouldn't show up in Beeminder until after the deadline. #bugfix",
"u": ["https://twitter.com/beemuvi/status/1751045430190948373",
"https://github.com/beeminder/beeminder/issues/4709",
"https://github.com/beeminder/beeminder/pull/4715"],
"d": "2024-01-26",
"t": "2024-01-26",
"c": "Even manual syncing didn't help! We were calculating the dates wrong when we filtered the list, but not when we added the datapoint.",
}, { // ------------------------------------------------------------------------
"x": "Help docs: language adjustments and more explaining and encouragement and links in 8 articles",
"u": ["https://twitter.com/beemuvi/status/1751046347380371783",
"https://help.beeminder.com/article/20-how-much-do-i-pledge-on-my-goals",
"https://help.beeminder.com/article/21-can-i-decrease-the-pledge-on-my-goal",
"https://help.beeminder.com/article/343-can-i-increase-the-pledge-on-my-goal",
"https://help.beeminder.com/article/22-can-i-limit-how-high-my-pledge-gets",
"https://help.beeminder.com/article/23-can-i-have-goals-without-pledges",
"https://help.beeminder.com/article/24-how-do-i-manage-my-subscription",
"https://help.beeminder.com/article/25-how-do-auto-canceling-subscriptions-work",
"https://help.beeminder.com/article/26-what-if-i-buy-one-plan-and-change-my-mind"],
"d": "2024-01-17",
"t": "2024-01-26",
}, { // ------------------------------------------------------------------------
"x": "Help docs: The payment methods article mentions the option of buying Honey Money with PayPal, plus clarifications and copy tweaks in 5 other articles",
"u": ["https://twitter.com/beemuvi/status/1752130023748997427",
"https://help.beeminder.com/article/27-what-payment-methods-are-available",
"https://help.beeminder.com/article/28-how-do-i-update-my-payment-information",
"https://help.beeminder.com/article/29-why-did-beeminder-charge-my-card",
"https://help.beeminder.com/article/30-what-happens-if-a-charge-fails",
"https://help.beeminder.com/article/12-what-is-a-derailment",
"https://help.beeminder.com/article/13-when-do-derailments-happen"],
"d": "2024-01-26",
"t": "2024-01-29",
}, { // ------------------------------------------------------------------------
"x": "For Beecaps, fixed a bug in determining when you should get the \"No Beecap Available\" page if you weren't active in 2023. Plus more error checking. #bugfix",
"u": ["https://twitter.com/beemuvi/status/1752132918284358116",
"https://github.com/beeminder/beeminder/issues/4713",
"https://github.com/beeminder/beeminder/pull/4697"],
"d": "2024-01-16",
"t": "2024-01-29",
}, { // ------------------------------------------------------------------------
"x": "Oops! UVI#4235 actually worsened problems when Todoist is down by omitting a timeout. Now, we've shortened the Todoist timeout. #bugfix #zombie",
"u": ["https://twitter.com/beemuvi/status/1752496470497075223",
"https://github.com/beeminder/beeminder/issues/4718",
"https://github.com/beeminder/beeminder/pull/4719"],
"d": "2024-01-29",
"t": "2024-01-30",
}, { // ------------------------------------------------------------------------
"x": "Fixed two broken links to the blog in the FAQ",
"u": ["https://twitter.com/beemuvi/status/1752496767839748359",
"https://github.com/beeminder/beeminder/issues/4721"],
"d": "2024-01-30",
"t": "2024-01-30",
}, { // ------------------------------------------------------------------------
"x": "Fixed size and margin on the initial safety buffer entry field. Was cutting off double digit numbers, and the text on either side was too close to it. #css",
"u": ["https://twitter.com/beemuvi/status/1752852661324710350",
"https://github.com/beeminder/beeminder/issues/4681",
"https://github.com/beeminder/beeminder/pull/4723"],
"d": "2024-01-31",
"t": "2024-01-31",
}, { // ------------------------------------------------------------------------
"x": "Do show/hide password on login form too (was only in signup). And also password reset in settings. We think that addresses all of them in one go!",
"u": ["https://twitter.com/beemuvi/status/1752852786071691637",
"https://github.com/beeminder/beeminder/issues/4509",
"https://github.com/beeminder/beeminder/pull/4724"],
"d": "2024-01-31",
"t": "2024-01-31",
}, /* --------------------------------------------------------- end 2024jan */ ]
const batch2024feb = [{
}, { // ------------------------------------------------------------------------
"x": "We messed up UVI#4684 when we claimed that `Authorization: Bearer` now worked for API request authorizations. #bugfix HT Theo Spears",
"u": ["https://twitter.com/beemuvi/status/1753220563676643474",
"https://forum.beeminder.com/t/making-a-beeminder-gpts/11239/7?u=dreev",
"https://github.com/beeminder/beeminder/issues/4728",
"https://github.com/beeminder/beeminder/pull/4727"],
"d": "2024-02-01",
"t": "2024-02-01",
}, { // ------------------------------------------------------------------------
"x": "We set up DMARC for our outgoing email finally which improves deliverability and some email clients now show the Beeminder logo when we email you",
"u": ["https://twitter.com/beemuvi/status/1753220738398761033",
"https://github.com/beeminder/beeminder/issues/4706"],
"t": "2024-02-01",
}, { // ------------------------------------------------------------------------
"x": "Bug with mana-to-honey transfers that rounded to $0: we failed to transfer them! Fixed now, including retroactively for all affected transfers. #bugfix",
"u": ["https://twitter.com/beemuvi/status/1754669256334307482",
"https://github.com/beeminder/beeminder/issues/4729"],
"d": "2024-02-03",
"t": "2024-02-05",
}, { // ------------------------------------------------------------------------
"x": "In Runkeeper goal creation, the rate field wouldn't let you specify a fraction, which is important to allow since we only let you create goals as daily! #bugfix",
"u": ["https://twitter.com/beemuvi/status/1755393927581253724",
"https://github.com/beeminder/beeminder/issues/4734",
"https://github.com/beeminder/beeminder/pull/4735"],
"d": "2024-02-07",
"t": "2024-02-07",
}, { // ------------------------------------------------------------------------
"x": "Help docs: Clarified what's editable on archived goals and added links and rephrased things and improved formatting and such in 4 other articles",
"u": ["https://twitter.com/beemuvi/status/1755990015665139731",
"https://help.beeminder.com/article/44-how-do-i-quit-a-goal",
"https://help.beeminder.com/article/16-what-is-a-legit-derailment",
"https://help.beeminder.com/article/17-what-happens-when-i-derail",
"https://help.beeminder.com/article/325-help-an-emergency-came-up-and-i-cant-do-my-goal",
"https://help.beeminder.com/article/351-i-need-help"],
"d": "2024-02-02",
"t": "2024-02-09",
}, { // ------------------------------------------------------------------------
"x": "This one seems to have been rare but there was a Todoist API time-out error we weren't catching that yielded 500-errors for at least one user. #bugfix",
"u": ["https://twitter.com/beemuvi/status/1758288673035206988",
"https://github.com/beeminder/beeminder/issues/4740",
"https://github.com/beeminder/beeminder/pull/4741"],
"d": "2024-02-13",
"t": "2024-02-15",
"c": "We've logged very similar bugfixes before. The thing that's different in this case is that our error handling was too specific. The previous version caught a specific type of error thrown by Todoist, and now in this user's instance we were raising up a different error, and that wasn't handled. This time we should be handling all possible errors, phew.",
}, { // ------------------------------------------------------------------------
"x": "Help docs: Added a screenshot to the article on archiving goals and fixed a bad formatting error on the one about deleting goals",
"u": ["https://twitter.com/beemuvi/status/1759742885912809559",
"https://help.beeminder.com/article/46-what-happens-to-an-archived-goal",
"https://help.beeminder.com/article/47-how-do-i-delete-a-goal"],
"d": "2024-02-06",
"t": "2024-02-19",
}, { // ------------------------------------------------------------------------
"x": "Help docs: Minor changes (improved flow and bolding for clarity) in the \"How to delete my account\" article and more serious rearranging of the Apple Health one",
"u": ["https://twitter.com/beemuvi/status/1759743118122103019",
"https://help.beeminder.com/article/48-how-do-i-delete-my-account",
"https://help.beeminder.com/article/61-apple-health"],
"d": "2024-02-08",
"t": "2024-02-19",
}, { // ------------------------------------------------------------------------
"x": "Help docs: Added a missing metric to the Fitbit integration article, plus some clarification about data import to address user confusion",
"u": ["https://twitter.com/beemuvi/status/1760103909711040596",
"https://help.beeminder.com/article/11-fitbit"],
"d": "2024-02-16",
"t": "2024-02-20",
}, { // ------------------------------------------------------------------------
"x": "Help docs: Removed some no-longer-relevant troubleshooting from the Focusmate article plus small tweaks to 4 other autodata integration articles",
"u": ["https://twitter.com/beemuvi/status/1760104084747813216",
"https://help.beeminder.com/article/278-focusmate",
"https://help.beeminder.com/article/329-boss-as-a-service-baas",
"https://help.beeminder.com/article/290-clozemaster",
"https://help.beeminder.com/article/288-codecombat",
"https://help.beeminder.com/article/80-duolingo"],
"d": "2024-02-19",
"t": "2024-02-20",
}, { // ------------------------------------------------------------------------
"x": "Help docs: Moved our old Draft integration article to the Historical Interest section and added more details to it about URLminder as the modern alternative",
"u": ["https://twitter.com/beemuvi/status/1760104290168017006",
"https://help.beeminder.com/article/121-draft"],
"d": "2024-02-14",
"t": "2024-02-20",
}, { // ------------------------------------------------------------------------
"x": "Help docs: Fixed an html bug in the Garmin integration article plus clarified why some Garmin devices can't use some autodata metrics",
"u": ["https://twitter.com/beemuvi/status/1760464895282446617",
"https://help.beeminder.com/article/74-garmin"],
"d": "2024-02-21",
"t": "2024-02-21",
}, { // ------------------------------------------------------------------------
"x": "We had a wrong link to Intend (nee Complice) on our landing page for the integration (also we made a redirect for the old URL). #bugfix HT Dan Zwell",
"u": ["https://twitter.com/beemuvi/status/1760822275815923983",
"https://www.beeminder.com/intend",
"https://github.com/beeminder/beeminder/pull/4754"],
"t": "2022-02-22",
"c": "Accidentally had intend.co instead of intend.do",
}, { // ------------------------------------------------------------------------
"x": "More spambot problem so now signed-out users just get a \"mailto\" link instead of our handy-dandy contact form on our \"Contact Us\" page",
"u": ["https://twitter.com/beemuvi/status/1760822800414343650",
"https://github.com/beeminder/beeminder/issues/4736",
"https://github.com/beeminder/beeminder/pull/4753"],
"d": "2024-02-21",
"t": '2024-02-22',
"c": "The spambots were winning and it was urgent for support",
}, { // ------------------------------------------------------------------------
"x": "New status page operational at http://status.beeminder.com (Twitter no longer works as a public status page since you have to be logged in to see it)",
"u": ["https://twitter.com/beemuvi/status/1760962320975765954",
"https://github.com/beeminder/beeminder/issues/4555"],
"d": "2024-02-23",
"t": "2024-02-23",
}, { // ------------------------------------------------------------------------
"x": "Made the new status page more independent of Beeminder's infrastructure (no need for our own servers to redirect it even) in case of catastrophic failure",
"u": ["https://twitter.com/beemuvi/status/1760963364459802984",
"https://github.com/beeminder/beeminder/issues/4555"],
"d": "2024-02-23",
"t": "2024-02-23",
"c": "Yes, it was on Twitter before but it relied on our own load balancer to redirect there, which was silly",
}, { // ------------------------------------------------------------------------
"x": "Edited the \"Bee Back Soon\" page (aka the poppy page) to just talk about status.beeminder.com and not the old Twitter page",
"u": ["https://twitter.com/beemuvi/status/1760963641824997832",
"https://github.com/beeminder/beeminder/issues/4555"],
"d": "2024-02-23",
"t": "2024-02-23",
"c": "This one won't actually be user-visible in the event that we never ever have any downtime ever again",
}, { // ------------------------------------------------------------------------
"x": "Help docs: Mentioned in the freeCodeCamp integration article that you can donate half your pledges to fCC on the Beemium plan, plus tweaks to 2 other articles",
"u": ["https://twitter.com/beemuvi/status/1762267242602127808",
"https://help.beeminder.com/article/287-freecodecamp",
"https://help.beeminder.com/article/81-github",
"https://help.beeminder.com/article/82-gmail"],
"d": "2024-02-23",
"t": "2024-02-26",
}, { // ------------------------------------------------------------------------
"x": "If your Focusmate account was suspended (or other auth problems, probably) we'd fail to tell you that we could no longer access your Focusmate data. #bugfix",
"u": ["https://twitter.com/beemuvi/status/1762633080538595608",
"https://github.com/beeminder/beeminder/issues/4751",
"https://github.com/beeminder/beeminder/pull/4752"],
"d": "2024-02-21",
"c": "I.e., we failed to set an autodata error when we got a 403 Forbidden response",
}, { // ------------------------------------------------------------------------
"x": "Fixed a server misconfiguration that allowed bad guys to spoof our whole website at their own nefarious URLs (which they did, and users noticed) #bugfix",
"u": ["https://twitter.com/beemuvi/status/1762635125312147501",
"https://github.com/beeminder/beeminder/issues/4687",
"https://github.com/beeminder/beeploy/pull/165"],
"t": "2024-02-27",
"c": "Technically the bad guys could just make their own URL appear in the address bar when we served up our site. Maybe not particularly nefarious, unclear.",
}, { // ------------------------------------------------------------------------
"f": true,
"x": "We're featured on Humble Bundle this month! Buying the bundle gets you freebies from RescueTime, Moodfit, RoboForm, and $10 of Honey Money from us",
"u": ["https://twitter.com/beemuvi/status/1762995560880226425",
"https://www.humblebundle.com/software/healthy-habits-toolkit-build-successful-routines-for-life-software",
"https://github.com/beeminder/beeminder/issues/4756"],
"d": "2024-02-27",
"t": "2024-02-28",
}, { // ------------------------------------------------------------------------
"x": "Also we made a BOGO deal for Humble Bundlers: half off as much Honey Money as you care to buy",
"u": ["https://twitter.com/beemuvi/status/1762995714622431741",
"https://github.com/beeminder/beeminder/issues/4756"],
"d": "2024-02-27",
"t": "2024-02-28",
}, { // ------------------------------------------------------------------------
"x": "And we made a whole welcome page for newbees coming from Humble Bundle where you can redeem all your sweet, sweet stuff: http://beeminder.com/humblebundle",
"u": ["https://twitter.com/beemuvi/status/1762995986048372946",
"https://github.com/beeminder/beeminder/issues/4756"],
"d": "2024-02-27",
"t": "2024-02-28",
}, { // ------------------------------------------------------------------------
"x": "Misconfigured the Humble Bundle checkout page for the BOGO offer, causing an error instead of half-off-honey. How Sour. #bugfix and sorted the 1 affected user 😅",
"u": ["https://twitter.com/beemuvi/status/1763354337445822720",
"https://github.com/beeminder/beeminder/issues/4756",
"https://github.com/beeminder/beeminder/pull/4764"],
"d": "2024-02-28",
"t": "2024-02-29",
"c": "We accidentally left it dev mode for Stripe's Product ID!",
}, { // ------------------------------------------------------------------------
"x": "Further #bugfix from UVI#4790 where we occasionally poppied the server (akin to a 500 error) when trying to drop that bad traffic",
"u": ["https://twitter.com/beemuvi/status/1763442869682233716",
"https://github.com/beeminder/beeminder/issues/4687",
"https://github.com/beeminder/beeploy/pull/165"],
"t": "2024-02-29",
"c": "The load balancer would pass along a request to an application server which would drop it and *mostly* we were robust to that but very rarely it would make the load balancer think the application servers had gone down",
}, { // ------------------------------------------------------------------------
"x": "We de-Valentine's-day'd the honeygrams page. It's now evergreen, which is better than everpink.",
"u": ["https://twitter.com/beemuvi/status/1763443115900453096",
"https://www.beeminder.com/honeygram",
"https://github.com/beeminder/beeminder/pull/4765"],
"d": "2024-02-28",
"t": "2024-02-29",
"c": "Slighty WIP still, because there are still kind of pinky flowery images, but it's back to the default/base beeminder theme, and most of the hearts etc are gone",
}, /* --------------------------------------------------------- end 2024feb */ ]
const batch2024mar = [{
}, { // ------------------------------------------------------------------------
"x": "Help docs: Fixed some goofy HTML in the Lichess integration article and added a section on using Do Less goals with Lichess, since users asked about that",
"u": ["https://twitter.com/beemuvi/status/1764810105520877917",
"https://help.beeminder.com/article/338-lichess"],
"d": "2024-02-29",
"t": "2024-03-04",
}, { // ------------------------------------------------------------------------
"x": "Help docs: Moved Jawbone to the Historical Interest section plus tweaks to the Habitica, IFTTT, and Intend articles (like less opinionatedness on legit-ness)",
"u": ["https://twitter.com/beemuvi/status/1764810244985876675",
"https://help.beeminder.com/article/75-jawbone",
"https://help.beeminder.com/article/83-habitica",
"https://help.beeminder.com/article/86-ifttt",
"https://help.beeminder.com/article/85-intend"],
"d": "2024-02-29",
"t": "2024-03-04",
}, { // ------------------------------------------------------------------------
"x": "Help docs: Added a link to the mana/honey exchange UI to the Manifold integration article, plus a note midnight deadlines",
"u": ["https://twitter.com/beemuvi/status/1765177911911620649",
"https://help.beeminder.com/article/352-manifold"],
"d": "2024-03-01",
"t": "2024-03-05",
}, { // ------------------------------------------------------------------------
"x": "Help docs: Clarified in the Make integration article about switching manual goals to autodata, plus consistency in keyword formatting in other articles",
"u": ["https://twitter.com/beemuvi/status/1765178094162424202",
"https://help.beeminder.com/article/318-make-formerly-integromat"],
"d": "2024-03-01",
"t": "2024-03-05",
}, { // ------------------------------------------------------------------------
"f": true,
"x": "Your dashboard now shows goals dark green when they have 7 or more days of safety buffer. HT Grayson Bray Morris",
"u": ["https://twitter.com/beemuvi/status/1765541830102487448",
"https://github.com/beeminder/beeminder/issues/1755",
"https://github.com/beeminder/beeminder/pull/4773"],
"d": "2024-03-06",
"t": "2024-03-06",
}, { // ------------------------------------------------------------------------
"x": "Minor change along for the ride: the borders on the graph thumbnails on the dashboard are thicker",
"u": ["https://twitter.com/beemuvi/status/1765541918304571580",
"https://github.com/beeminder/beeminder/pull/4773"],
"d": "2024-03-06",
"t": "2024-03-06",
}, { // ------------------------------------------------------------------------
"x": "Graph color on dashboard and on goal page no longer disagree when you're closer to the goal end date than the amount of safety buffer you have. #bugfix",
"u": ["https://twitter.com/beemuvi/status/1765899624743903449",
"https://github.com/beeminder/beeminder/issues/4674",
"https://github.com/beeminder/beeminder/pull/4773"],
"d": "2024-03-06",
"t": "2024-03-07",
}, { // ------------------------------------------------------------------------
"x": "CSS and page-rendering improvements: no flash of blue or orange and less redraw jumpiness when the countdown box for your goal loads. #css",
"u": ["https://twitter.com/beemuvi/status/1765899780792983839",
"https://github.com/beeminder/beeminder/pull/4773"],
"d": "2024-03-06",
"t": "2024-03-07",
}, { // ------------------------------------------------------------------------
"x": "Habitica integration could miss Dailies towards the end of the day if you had more than a day of safety buffer. #bugfix",
"u": ["https://twitter.com/beemuvi/status/1766267438633820228",
"https://github.com/beeminder/beeminder/issues/2261",
"https://github.com/beeminder/beeminder/pull/4779"],
"d": "2024-03-08",
"t": "2024-03-08",
"c": "The problem was that when you're safe we don't check again till midnight which is normally fine but Dailies from pre-midnight when it's just after midnight don't count anymore. If you manually hit Fetch Autodata, it was fine but why would you necessarily if you had safety buffer?",
}, { // ------------------------------------------------------------------------
"x": "Fixed blog links like https://blog.beeminder.com/tags/weight+loss which had broken, plus a #bugfix for footnotes whose tags ended with numbers",
"u": ["https://twitter.com/beemuvi/status/1766267524847718793",
"https://github.com/beeminder/blog/issues/469",
"https://github.com/beeminder/blog/issues/470"],
"d": "2024-03-08",
"t": "2024-03-08",
}, { // ------------------------------------------------------------------------
"f": true,
"x": "Rainbow dashboard! The website dashboard got way more colorful",
"u": ["https://twitter.com/beemuvi/status/1767337916337099244",
"https://forum.beeminder.com/t/rainbow-dash-board/11478",
"https://github.com/beeminder/beeminder/pull/4780"],
"d": "2024-03-08",
"t": "2024-03-11",
}, { // ------------------------------------------------------------------------
"x": "We broke blog thumbnails on the main page (Again. Scraping the internet is hard!) Updated our script so it won't break (in this exact way) again. #bugfix",
"u": ["https://twitter.com/beemuvi/status/1767338389601497511",
"https://github.com/beeminder/beeminder/issues/4783",
"https://github.com/beeminder/beeminder/pull/4784"],
"d": "2024-03-11",
"t": "2024-03-11",
"c": "The blog generator used to make a thumbnail of the blog images, and it had a relative path. But the latest couple posts it hasn't done that, so it is using the absolute paths to the image in the git repo. Now the scraper checks if it found a relative or absolute path.",
}, { // ------------------------------------------------------------------------
"x": "HelpScout came up w/ a new domain to send email from and we freaked out users w/ spurious \"unrecognized email address added data to your goal!\" warnings #bugfix",
"u": ["https://twitter.com/beemuvi/status/1767701208398242030",
"https://github.com/beeminder/beeminder/issues/4790"],
"d": "2024-03-12",
"t": "2024-03-12",
"c": "Made the check more general to catch anything that mentions helpscout in the domain",
}, { // ------------------------------------------------------------------------
"x": "It's tiny but fixed the PayPal info on the payments page (only visible to you PayPal holdouts who haven't switched yet :AHEM:) to match other forms on the site",
"u": ["https://twitter.com/beemuvi/status/1767701557376962805",
"https://github.com/beeminder/beeminder/pull/4781"],
"d": "2024-03-11",
"t": "2024-03-12",
"c": "In particular, non-editable fields properly show as grayed out",
}, { // ------------------------------------------------------------------------
"x": "When the bee is buzzing on a thumbnail on the dashboard (double-click one to see), we had a CSS bug that caused to border to be slightly wrong. #bugfix",
"u": ["https://twitter.com/beemuvi/status/1768062816655921214",
"https://github.com/beeminder/beeminder/issues/4782",
"https://github.com/beeminder/beeminder/pull/4784"],
"d": "2024-03-11",
"t": "2024-03-13",
"c": "CSS margin glitch",
}, { // ------------------------------------------------------------------------
"x": "Further tweaking of the buzzing-bee state: now the thumbnail border is grayed out until it's done refreshing and has picked its new color",
"u": ["https://twitter.com/beemuvi/status/1768063619085078916",
"https://github.com/beeminder/beeminder/issues/4782"],
"t": "2024-03-13",
}, { // ------------------------------------------------------------------------
"x": "We finally made weight loss goals just tell you your hard cap today, not your hard cap after coasting along without weighing in till it's a beemergency",
"u": ["https://twitter.com/beemuvi/status/1768412852828971211",
"https://github.com/beeminder/beeminder/issues/1518"],
"d": "2024-03-14",
"t": "2024-03-14",
"c": "This is technically a #zombie going all the way back to a redesign in 2016 or something when we changed the graph headers. It's been bugging us ever since.",
}, { // ------------------------------------------------------------------------
"x": "It also does this (weight-loss style graph headers with today's hardcap) for other goals that slope down with the good side below the red line, e.g. inbox goals",
"u": ["https://twitter.com/beemuvi/status/1768413058614050902",
"https://github.com/beeminder/beeminder/issues/1518"],
"t": "2024-03-14",
}, { // ------------------------------------------------------------------------
"x": "Also weight & inbox goals show the hardcap info in SMS reminders and iOS and even zeno push notifications (if you have your own URL to handle zeno callbacks)",
"u": ["https://twitter.com/beemuvi/status/1768788796877963712",
"https://github.com/beeminder/beeminder/issues/1518"],
"t": "2024-03-15",
}, { // ------------------------------------------------------------------------
"x": "For Do More goals we no longer say, eg, \"bare min +1\" after telling you you're safe for N days in SMS & iOS alerts. See the due-by table for that.",
"u": ["https://twitter.com/beemuvi/status/1768788934136561998",
"https://github.com/beeminder/beeminder/issues/1518",
"https://github.com/beeminder/beeminder/pull/4797"],
"t": "2024-03-15",
"c": "We'll see if anyone considers this a regression, and it can be handy to see how much you need to get one additional safe day but it was very confusing without the context of the due-by table",
}, { // ------------------------------------------------------------------------
"f": true,
"x": "Version 6.6 of the Beeminder iOS app, thanks to Theo Spears, is live!",
"u": ["https://twitter.com/beemuvi/status/1769874100724645923",
"https://github.com/beeminder/BeeSwift/releases/tag/6.6"],
"t": "2024-03-18",
}, { // ------------------------------------------------------------------------
"s": true,
"n": false,
"x": "Headline change is a new Apple Health metric: Time in Daylight",
"u": ["https://twitter.com/beemuvi/status/1769874100724645923",
"https://github.com/beeminder/BeeSwift/releases/tag/6.6",
"https://github.com/beeminder/BeeSwift/pull/421"],
"t": "2024-03-18",
}, { // ------------------------------------------------------------------------
"s": true,
"x": "And the most visible change in BeemiOS 6.6 is the buzzing infinibee while the app is waiting on the Beeminder servers",
"u": ["https://twitter.com/beemuvi/status/1769874250717122592",
"https://github.com/beeminder/BeeSwift/releases/tag/6.6",
"https://github.com/beeminder/BeeSwift/pull/444"],
"t": "2024-03-18",
}, { // ------------------------------------------------------------------------
"s": true,
"x": "Now fewer cases of showing unreasonably many decimal places",
"u": ["https://twitter.com/beemuvi/status/1770234318935425493",
"https://github.com/beeminder/BeeSwift/releases/tag/6.6",
"https://github.com/beeminder/BeeSwift/pull/438"],
"t": "2024-03-19",
}, { // ------------------------------------------------------------------------
"s": true,
"x": "When defaulting to the most recent datapoint value in the field for entering data, we now exclude the meta datapoints for derails and PPRs",
"u": ["https://twitter.com/beemuvi/status/1770234472128291170",
"https://github.com/beeminder/BeeSwift/releases/tag/6.6",
"https://github.com/beeminder/BeeSwift/pull/441"],
"t": "2024-03-19",
}, { // ------------------------------------------------------------------------
"s": true,
"x": "We now let you change deadlines on goals that *used to be* connected to Apple Health. #bugfix",
"u": ["https://twitter.com/beemuvi/status/1770590666147676223",
"https://github.com/beeminder/BeeSwift/releases/tag/6.6",
"https://github.com/beeminder/BeeSwift/issues/248",
"https://github.com/beeminder/BeeSwift/pull/437"],
"t": "2024-03-20",
}, { // ------------------------------------------------------------------------
"s": true,
"x": "Apple Health data is now correctly logged for the correct Beeminder day for non-midnight deadlines. #bugfix",
"u": ["https://twitter.com/beemuvi/status/1770962512474935504",
"https://github.com/beeminder/BeeSwift/releases/tag/6.6",
"https://github.com/beeminder/BeeSwift/pull/433"],
"t": "2024-03-21",
"c": "Accidentally tweeted this twice!",
}, { // ------------------------------------------------------------------------
"s": true,
"x": "The edit datapoint dialog now dismisses after editing/deleting a datapoint. #bugfix",
"u": ["https://twitter.com/beemuvi/status/1770962609069830267",
"https://github.com/beeminder/BeeSwift/releases/tag/6.6",
"https://github.com/beeminder/BeeSwift/pull/445"],
"t": "2024-03-21",
}, { // ------------------------------------------------------------------------
"s": true,
"x": "Stopped superfluously triggering autodata refreshes for manual goals. #bugfix",
"u": ["https://twitter.com/beemuvi/status/1775311750323376546",
"https://github.com/beeminder/BeeSwift/pull/446"],
"t": "2024-04-02",
}, { // ------------------------------------------------------------------------
"s": true,
"x": "No longer reset changes to datapoint values you're editing when switching between apps. #bugfix",
"u": ["https://twitter.com/beemuvi/status/1775311855579525409",
"https://github.com/beeminder/BeeSwift/pull/442"],
"t": "2024-04-02",
}, { // ------------------------------------------------------------------------
"s": true,
"x": "The app now always syncs with Apple Health (like when launching the app) before syncing with the Beeminder server",
"u": ["https://twitter.com/beemuvi/status/1775315586857504795",
"https://github.com/beeminder/BeeSwift/pull/440"],
"t": "2024-04-02",
"c": "This doesn't guarantee that we will always show correct data reflecting the latest healthkit data, but should increase the chance. As the app polls for goals which are recalculating it means it should also show the correct data shortly after loading. This might help a little with perceived Apple Health unreliabilty.",
}, { // ------------------------------------------------------------------------
"s": true,
"x": "Fixed a hard crash that could happen after logging out of the app, like if we tried to update Apple Health goals. #bugfix",
"u": ["https://twitter.com/beemuvi/status/1775603101418045768",
"https://github.com/beeminder/BeeSwift/pull/448"],
"t": "2024-04-03",
}, { // ------------------------------------------------------------------------
"s": true,
"x": "Logging in to the app should now support password managers for most users",
"u": ["https://twitter.com/beemuvi/status/1775603228597801465",
"https://github.com/beeminder/beeminder/pull/4771",
"https://github.com/beeminder/BeeSwift/pull/449"],
"t": "2024-04-03",
"c": "We made server-side changes that should make this mostly work. The above BeemiOS PR didn't make it into version 6.6.",
}, /* --------------------------------------------------------- end 2024mar */ ]
const batch2024apr = [{
}, { // ------------------------------------------------------------------------
"x": "The blog has its own cute favicon now",
"u": ["https://twitter.com/beemuvi/status/1776036432093843644",
"https://raw.githubusercontent.com/beeminder/blog/master/public/icon-512.png",
"https://github.com/beeminder/blog/issues/298",
"https://github.com/beeminder/blog/pull/478",
"https://github.com/beeminder/beeminder/issues/4785"],
"d": "2024-03-20",
"t": "2024-04-04",
}, { // ------------------------------------------------------------------------
"f": true,
"x": "Beeminder now integrates with Wakatime!",
"u": ["https://twitter.com/bmndr/status/1776037091283263693",
"https://blog.beeminder.com/wakatime"],
"d": "2024-03-26",
"t": "2024-04-04",
}, { // ------------------------------------------------------------------------
"x": "Added List-ID to our beemails, which helps with email deliverability and can help with users' email filters",
"u": ["https://twitter.com/beemuvi/status/1777846830912741586",
"https://github.com/beeminder/beeminder/issues/4759",
"https://github.com/beeminder/beeminder/pull/4795"],
"d": "2024-03-21",
"t": "2024-04-09",
"c": "Beemailed about this on 2024-03-22",
}, { // ------------------------------------------------------------------------
"x": "We slightly broke our links to individual glossary entries (anchor links were just linking to the top of the glossary). #bugfix #zombie",
"u": ["https://twitter.com/beemuvi/status/1777847283226419471",
"https://blog.beeminder.com/glossary",
"https://github.com/beeminder/beeminder/issues/4785",
"https://github.com/beeminder/blog/issues/457"],
"d": "2024-04-06",
"t": "2024-04-09",
}, { // ------------------------------------------------------------------------
"x": "Help docs: Fixes/improvements to the TaskRatchet integration article: corrected link to TaskRatchet docs and clarified confusion about task filtering",
"u": ["https://twitter.com/beemuvi/status/1778203002765213781",
"https://help.beeminder.com/article/289-taskratchet"],
"d": "2024-03-25",
"t": "2024-04-10",
}, { // ------------------------------------------------------------------------
"x": "Help docs: Cleaned up an obsolete part of the Todoist article and added a link to Betty W's discovery in the forum about deleting recurring tasks",
"u": ["https://twitter.com/beemuvi/status/1778203117622083909",
"https://help.beeminder.com/article/79-todoist"],
"d": "2024-03-27",
"t": "2024-04-10",
}, { // ------------------------------------------------------------------------
"x": "Help docs: Revamped the Toggl Track article and addressed new user confusion in its FAQ about running timers and timers crossing the goal's deadline",
"u": ["https://twitter.com/beemuvi/status/1778573404289028456",
"https://help.beeminder.com/article/155-toggl"],
"d": "2024-03-28",
"t": "2024-04-11",
}, { // ------------------------------------------------------------------------
"x": "Help docs: Changed some confusing wording in the headings and added more examples to the Metaminder article plus clarifying tweaks to 9 other articles",
"u": ["https://twitter.com/beemuvi/status/1778574164028481737",
"https://help.beeminder.com/article/323-metaminder",
"https://help.beeminder.com/article/291-pocket",
"https://help.beeminder.com/article/292-project-euler",
"https://help.beeminder.com/article/347-readwise-reader",
"https://help.beeminder.com/article/76-rescuetime",
"https://help.beeminder.com/article/331-rssminder",
"https://help.beeminder.com/article/77-runkeeper",
"https://help.beeminder.com/article/89-skritter",
"https://help.beeminder.com/article/116-slack",
"https://help.beeminder.com/article/84-sleep-as-android"],
"d": "2024-03-20",
"t": "2024-04-11",
}, { // ------------------------------------------------------------------------
"x": "Help docs: Clarified that two of the Strava metrics are Beeminder-computed, not available in Strava, and made the Storygraph article less rambly",
"u": ["https://twitter.com/beemuvi/status/1778926347194364257",
"https://help.beeminder.com/article/281-strava",
"https://help.beeminder.com/article/300-the-storygraph"],
"d": "2024-03-26",
"t": "2024-04-12",
}, { // ------------------------------------------------------------------------
"x": "Help docs: Cleaned up the Android app article and moved the GTBee and Misfit articles to Historical Interest, plus clarifying tweaks to 4 other articles",
"u": ["https://twitter.com/beemuvi/status/1778926578971656457",
"https://help.beeminder.com/article/62-android-app",
"https://help.beeminder.com/article/63-gtbee",
"https://help.beeminder.com/article/91-misfit",
"https://help.beeminder.com/article/112-sms",
"https://help.beeminder.com/article/78-trello",
"https://help.beeminder.com/article/340-trydeepwork",
"https://help.beeminder.com/article/293-twitter"],
"d": "2024-04-02",
"t": "2024-04-12",
}, { // ------------------------------------------------------------------------
"x": "Help docs: Moved the Android Permanotification article to Historical Interest (yay for the obsoletifying improvements!) + clarifying tweaks to 4 more articles",
"u": ["https://twitter.com/beemuvi/status/1778927787619110919",
"https://help.beeminder.com/article/125-android-notification",
"https://help.beeminder.com/article/88-urlminder",
"https://help.beeminder.com/article/90-withings",
"https://help.beeminder.com/article/87-zapier",
"https://help.beeminder.com/article/60-ios-app"],
"d": "2024-04-12",
"t": "2024-04-12",
}, { // ------------------------------------------------------------------------
"x": "In the default pledge cap UI in account settings, the actual dollar amount was escaping out of the fancy input stepper. HT zzq #bugfix #css #zombie",
"u": ["https://twitter.com/beemuvi/status/1780020916715761772",
"https://forum.beeminder.com/t/default-pledge-cap-ui-issue/11518?u=dreev",
"https://github.com/beeminder/beeminder/issues/4818",
"https://github.com/beeminder/beeminder/pull/4846"],
"d": "2024-04-12",
"t": "2024-04-15",
"c": "Recently introduced bug from show/hide password feature",
}, { // ------------------------------------------------------------------------
"x": "Rare bug with our WakaTime integration in goal setup that could cause us to endlessly keep asking you to connect to WakaTime. #bugfix",
"u": ["https://twitter.com/beemuvi/status/1780385144211411077",
"https://github.com/beeminder/beeminder/issues/4811",
"https://github.com/beeminder/beeminder/pull/4812/"],
"t": "2024-04-16",
"c": "There was a syntax error in the behind-the-scenes error handling when we try to get your current data from WakaTime such that if we encountered an error of some kind (e.g. expired auth token, or a random temporary 500) from WakaTime, then the goal setup would screw up handling that error, and wind up shunting you back to the beginning, i.e. connect us to your WakaTime.",
}, { // ------------------------------------------------------------------------
"x": "In the \"Beeminder can access\" settings: the list of services wasn't using up all available horizontal space. Now the columns are distributed evenly. #css",
"u": ["https://twitter.com/beemuvi/status/1780385573888483582",
"https://github.com/beeminder/beeminder/issues/4845",
"https://github.com/beeminder/beeminder/pull/4846"],
"t": "2024-04-16",
}, { // ------------------------------------------------------------------------
"f": true,
"x": "Do-less goals for which the most recent datapoint is a Pessimistic Presumptive Report (PPR) now sort to the top of your dashboard",
"u": ["https://twitter.com/beemuvi/status/1780474189595672851",
"https://github.com/beeminder/beeminder/issues/4776",
"https://github.com/beeminder/beeminder/pull/4839"],
"d": "2024-04-10",
"t": "2024-04-16",
}, { // ------------------------------------------------------------------------
"x": "And in preparation for more changes to how we sort your dashboard, we changed the column header from \"DEADLINE\" to \"URGENCY\"",
"u": ["https://twitter.com/beemuvi/status/1780474501354168625",
"https://github.com/beeminder/beeminder/issues/4776",
"https://github.com/beeminder/beeminder/pull/4839"],
"d": "2024-04-10",
"t": "2024-04-16",
}, { // ------------------------------------------------------------------------
"x": "Changed the subject line for \"you made a new goal\" emails for goals with PPRs. Now: \"What you need to know about your new do-less goal\"",
"u": ["https://twitter.com/beemuvi/status/1781108802311565673",
"https://github.com/beeminder/beeminder/issues/4834",
"https://github.com/beeminder/beeminder/pull/4835"],
"t": "2024-04-18",
}, { // ------------------------------------------------------------------------
"x": "Also adjusted the email body so that it isn't talking about PPRs if you've already turned off PPRs. (HT narthur who noticed this on a custom goal)",
"u": ["https://twitter.com/beemuvi/status/1781109107631788453",
"https://github.com/beeminder/beeminder/issues/3362",
"https://github.com/beeminder/beeminder/pull/4835"],
"t": "2024-04-18",
}, { // ------------------------------------------------------------------------
"x": "UVI#4813 added the hard cap for weight goals and inbox-style goals on the goal page; now it's done on the dashboard as well",
"u": ["https://twitter.com/beemuvi/status/1781469506571043014",
"https://github.com/beeminder/beeminder/issues/1518",
"https://github.com/beeminder/beeminder/pull/4832"],
"d": "2024-04-08",
"t": "2024-04-19",
}, { // ------------------------------------------------------------------------
"x": "UVI#4814 made whittle-down goals on the dasboard confusing/deceptive. We've changed the wording to say \"hard cap\", added the word \"today\", and a comma. #zombie",
"u": ["https://twitter.com/beemuvi/status/1781469706316321100",
"https://github.com/beeminder/beeminder/issues/4828",
"https://github.com/beeminder/beeminder/pull/4832",
"https://github.com/beeminder/beeminder/pull/4836"],
"d": "2024-04-10",
"c": "BEFORE: \"151 total due Tue, 5pm\"; AFTER: \"hard cap 151 today, safe until Tue, 5pm\". And the comma was a couple days later so could've milked this a little harder.",
}, { // ------------------------------------------------------------------------
"x": "Fixed a long-standing annoyance with datapoints from Withings getting added in reverse-chronological order when they came in batched",
"u": ["https://twitter.com/beemuvi/status/1782558409868665229",
"https://github.com/beeminder/beeminder/issues/2739",
"https://github.com/beeminder/beeminder/pull/4842"],
"d": "2024-04-11",
"t": "2024-04-22",
}, { // ------------------------------------------------------------------------
"x": "Disallowed another batch of usernames that caused or could cause or look like they could cause problems: null, undefined, nil, true, false, etc",
"u": ["https://twitter.com/beemuvi/status/1782558528059904108",
"https://github.com/beeminder/beeminder/issues/4814"],
"t": "2024-04-22",
}, { // ------------------------------------------------------------------------
"x": "Fixed an opaque error if you tried to specify a number with a comma in it in the commitment dial. Now it tells you it doesn't count as a number. #bugfix",
"u": ["https://twitter.com/beemuvi/status/1782920424986435810",
"https://github.com/beeminder/beeminder/issues/3197"],
"d": "2024-04-17",
"t": "2024-04-23",
}, { // ------------------------------------------------------------------------
"x": "In fixing UVI#4805 (about under-counting Dailies) we introduced a new bug where we over-counted them if you didn't log into Habitica at all. #bugfix",
"u": ["https://twitter.com/beemuvi/status/1782921377751928922",
"https://github.com/beeminder/beeminder/issues/2261",
"https://github.com/beeminder/beeminder/pull/4858",
"https://github.com/beeminder/beeminder/issues/4859"],
"d": "2024-04-23",
"t": "2024-04-23",
"c": "If you don't log in to Habitica then your Habitica cron doesn't run, and we kept adding the last daily-count to your Beeminder goal until you finally logged back in and the cron ran",
}, { // ------------------------------------------------------------------------
"x": "Standardized on hyphenating or capitalizing the phrases \"do-more goals\" and \"do-less goals\" throughout the web/email copy",
"u": ["https://twitter.com/beemuvi/status/1783284022053155277",
"https://github.com/beeminder/beeminder/pull/4861"],
"d": "2024-04-24",
"t": "2024-04-24",
}, { // ------------------------------------------------------------------------
"x": "Added some commas to some email copy while we were at it, which ambiguously counts as typo fixes",
"u": ["https://twitter.com/beemuvi/status/1783284333048156182",
"https://github.com/beeminder/beeminder/pull/4861"],
"d": "2024-04-24",
"t": "2024-04-24",
}, { // ------------------------------------------------------------------------
"x": "We fixed the spacing and margins and image sizes on the goal creation page for the Strava integration so everything's reasonably aligned. #css",
"u": ["https://twitter.com/beemuvi/status/1783646236849197186",
"https://github.com/beeminder/beeminder/issues/4866",
"https://github.com/beeminder/beeminder/pull/4860"],
"d": "2024-04-24",
"t": "2024-04-25",
}, { // ------------------------------------------------------------------------
"x": "We briefly broke the button to request additional free goals (the part that let us know you'd clicked it!); now fixed and emailing those affected",
"u": ["https://twitter.com/beemuvi/status/1783646407456641244",
"https://github.com/beeminder/beeminder/pull/4864"],
"d": "2024-04-24",
"t": "2024-04-25",
}, { // ------------------------------------------------------------------------
"x": "The Beeminder API now returns urgencykey for your goal-sorting convenience, to match the dashboard's sort-by-urgency, and we've documented it in the API docs",
"u": ["https://twitter.com/beemuvi/status/1784004916773900713",
"https://blog.beeminder.com/urgency",
"https://api.beeminder.com/#goal",
"https://github.com/beeminder/beeminder/issues/4847",
"https://github.com/beeminder/apidocs/commit/f30b879b90d8315ba7419c2a6a94afdbea60b537"],
"d": "2024-04-26",
"t": "2024-04-26",
}, { // ------------------------------------------------------------------------
"f": true,
"x": "Death to $0 goals, birth of Feet-Wetting Mode, live for newly created goals now: choosing to risk $0 only lasts a week now, then pledge bumps itself to $5",
"u": ["https://twitter.com/beemuvi/status/1785079458279629127",
"https://github.com/beeminder/beeminder/issues/4837"],
"d": "2024-04-28",
"t": "2024-04-29",
"c": "Originally called Trial Mode",
}, { // ------------------------------------------------------------------------
"x": "Significant UI improvements along for the ride on pledge selection, starting with dynamically adjusting the pledge progression when you change the pledge cap",
"u": ["https://twitter.com/beemuvi/status/1785454413685157907",
"https://github.com/beeminder/beeminder/issues/4837"],
"d": "2024-04-28",
"t": "2024-04-30",
}, { // ------------------------------------------------------------------------
"x": "Checking the $0 checkbox also dynamically inserts \"$0\" into the pledge progression display with a shimmering arrow and heads-up of the auto-increase to come",
"u": ["https://twitter.com/beemuvi/status/1785816549968019961",
"https://github.com/beeminder/beeminder/issues/4837"],
"d": "2024-04-28",
"t": "2024-05-01",
}, { // ------------------------------------------------------------------------
"x": "When Beemium folks opt for feet-wetting mode, they see a note telling them they can still set a $0 pledge cap, thus getting indefinite feet-wetting",
"u": ["https://twitter.com/beemuvi/status/1786177321013268817",
"https://github.com/beeminder/beeminder/issues/4837"],
"d": "2024-04-28",
"t": "2024-05-02",
}, { // ------------------------------------------------------------------------
"x": "In the midst of the changes with $0 goals we bumped the price of Beemium from $50/mo to $64/mo, lest too many people decide $0 goals are worth paying for",
"u": ["https://twitter.com/beemuvi/status/1786540620166971580",
],
"d": "2024-05-02",
"t": "2024-05-03",
}, { // ------------------------------------------------------------------------
"x": "Help docs: Revamped the \"how much do I pledge?\" article, autodata integrations articles, other articles with goal creation help in light of feet-wetting mode",
"u": ["https://twitter.com/beemuvi/status/1787619433596510385",
"https://help.beeminder.com/article/20-how-much-do-i-pledge-on-my-goals"],
"d": "2024-04-29",
"t": "2024-05-06",
}, { // ------------------------------------------------------------------------
}, /* --------------------------------------------------------- end 2024apr */ ]
const batch2024may = [{
}, { // ------------------------------------------------------------------------
"x": "The introduction of feet-wetting mode broke the CSS for checkboxes elsewhere in the UI. #bugfix #zombie",
"u": ["https://twitter.com/beemuvi/status/1787992929832984639",
"https://github.com/beeminder/beeminder/issues/4879",
"https://github.com/beeminder/beeminder/pull/4870"],
"d": "2024-04-29",
"t": "2024-05-07",
}, { // ------------------------------------------------------------------------
"x": "In addition to checkmarks being off-center, they were no longer on one line with their labels. This stacking caused mayhem in some settings layouts. #bugfix",
"u": ["https://twitter.com/beemuvi/status/1788357387164025149",
"https://github.com/beeminder/beeminder/issues/4879",
"https://github.com/beeminder/beeminder/pull/4870"],
"t": "2024-05-08",
"c": "This is a case where a picture is worth 💯 words; the screenshot in the PR makes way more sense than this above explanation.",
}, { // ------------------------------------------------------------------------
"x": "As promised in the blog post, we send an email to remind you that feet-wetting mode is ending and we're bumping your pledge to $5",
"u": ["https://twitter.com/beemuvi/status/1788719212594368756",
"https://github.com/beeminder/beeminder/issues/4837",
"https://github.com/beeminder/beeminder/pull/4881"],
"d": "2024-05-05",
"t": "2024-05-09",
}, { // ------------------------------------------------------------------------
"x": "Since either honeygrams or Humble Bundle, we severely broke the margin spacing & subheader wrapping for autodata landing pages. Now fixed! #bugfix #css #zombie",
"u": ["https://twitter.com/beemuvi/status/1789077864815661504",
"https://github.com/beeminder/beeminder/issues/4891",
"https://github.com/beeminder/beeminder/pull/4889"],
"d": "2024-05-09",
"t": "2024-05-10",
}, { // ------------------------------------------------------------------------
"x": "The button to regenerate your personal auth token now has a confirmation with warning that doing so will break any scripts you have that use the auth token",
"u": ["https://twitter.com/beemuvi/status/1790165769562849549",
"https://github.com/beeminder/beeminder/issues/4898",
"https://github.com/beeminder/beeminder/pull/4876"],
"d": "2024-05-02",
"t": "2024-05-13",
"c": "See pictures in the pull request",
}, { // ------------------------------------------------------------------------
"x": "Help docs: PPR article emphasizes ability to turn off PPRs, deadline/reminders article deconfuses am/pm/midnight, and smaller copy tweaks to 12 other articles",
"u": ["https://twitter.com/beemuvi/status/1790169630969106711",
"https://help.beeminder.com/article/157-pessimistic-presumptive-reports",
"https://help.beeminder.com/article/14-deadline",
"https://help.beeminder.com/article/158-android-app-beta-testing",
"https://help.beeminder.com/article/321-ios-app-beta-testing",