-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotifications-1.js
More file actions
2227 lines (2226 loc) · 90.3 KB
/
notifications-1.js
File metadata and controls
2227 lines (2226 loc) · 90.3 KB
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
crypt.jsonPCallback.notifications({
notifications: [
{
id: "97",
date: "2022-07-03",
author: "John Sindelar",
platforms: ["DBKO", "DBKSF", "DBKFMWD", "DBKFMJS", "DBKFM"],
title: "List Unscheduled Items",
subhead: "Jul 3, 2022 CUSTOMIZATION",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2022/08/SelectTaskInApp.jpg",
imageClickURL:
"https://dayback.com/assign-a-list-of-unscheduled-items/?utm_source=inapp",
content:
"Select from a list of your unscheduled tasks inside DayBack Calendar instead of flipping between views to build your plans.",
buttonTextPrimary: "SEE IT IN ACTION",
buttonURLPrimary:
"https://dayback.com/assign-a-list-of-unscheduled-items//?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "95",
date: "2021-06-27",
author: "John Sindelar",
platforms: ["DBKO", "DBKSF", "DBKFMWD", "DBKFMJS", "DBKFM"],
title: "",
subhead: "",
imageSourceURL: "",
imageClickURL: "",
content:
"<div style='font-size: 1.5em; margin-top: 30px;'>I stopped smugly repeating <i>'Everything that be thought can be thought clearly'</i> and wondered anew, can everything be thought.</div><span style ='padding-left: 80px; float: right; padding-top: 16px; text-indent: -11px; color: rgba(255, 255, 255, 0.74);'>– Maggie Nelson</span>",
buttonTextPrimary: "",
buttonURLPrimary: "",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "96",
date: "2022-05-10",
author: "John Sindelar",
platforms: ["DBKO", "DBKSF", "DBKFMWD", "DBKFMJS", "DBKFM"],
title: "Batch Editing",
subhead: "May 10, 2022 NEW FEATURE",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2022/05/BatchEditInApp.jpg",
imageClickURL:
"https://dayback.com/edit-multiple-events-at-once/?utm_source=inapp",
content:
"Select multiple events and edit them all at once, changing their status or running your own scripts.",
buttonTextPrimary: "LEARN MORE",
buttonURLPrimary:
"https://dayback.com/edit-multiple-events-at-once/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "93",
date: "2021-09-20",
author: "Tanner Ellen",
platforms: ["DBKO", "DBKSF"],
title: "Internet Explorer Support Has Ended",
subhead: "May 1, 2022 ACTION REQUIRED",
imageSourceURL: "",
imageClickURL: "",
content:
"DayBack no longer supports any version of Internet Explorer. Please use a modern browser such as Google Chrome, Firefox or Microsoft Edge to continue using DayBack.",
buttonTextPrimary: "DETAILS",
buttonURLPrimary: "https://docs.dayback.com/article/274-ie-11",
buttonTextAlt: "",
buttonURLAlt: "",
environments: ["isIE"],
showMessage: true,
},
{
id: "95",
date: "2022-04-01",
author: "John Sindelar",
platforms: ["DBKO", "DBKSF", "DBKFMWD", "DBKFMJS", "DBKFM"],
title: "Improved Reporting",
subhead: "Apr 01, 2022 NEW FEATURE",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2022/04/AnalyticsNewinAppP.png",
imageClickURL:
"https://dayback.com/improved-calendar-analytics-targets-goals/?utm_source=inapp",
content:
"Plot revenue or capacity at longer timescales with improved date math in DayBack's Calendar Analytics.",
buttonTextPrimary: "SEE IT IN ACTION",
buttonURLPrimary:
"https://dayback.com/improved-calendar-analytics-targets-goals/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "94",
date: "2021-10-18",
author: "John Sindelar",
platforms: ["DBKO", "DBKSF", "DBKFMWD", "DBKFMJS", "DBKFM"],
title: "New Button Launcher",
subhead: "Oct 18, 2021 CUSTOMIZATION",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2021/10/ButtonLauncherInApp.jpg",
imageClickURL:
"https://dayback.com/customize-calendar-buttons/?utm_source=inapp",
content:
"Run your own scripts and workflows from within DayBack by adding buttons to the calendar. Add one or bundle several buttons into a button bar or speed dial.",
buttonTextPrimary: "DETAILS & VIDEO",
buttonURLPrimary:
"https://dayback.com/customize-calendar-buttons/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "93",
date: "2021-09-20",
author: "John Sindelar",
platforms: ["DBKFMJS", "DBKFMWD"],
title: "Support Ending for Internet Explorer",
subhead: "Sept 20, 2022 ACTION REQUIRED",
imageSourceURL: "",
imageClickURL: "",
content:
"Beginning January 3rd, 2022 DayBack will no longer support any version of Internet Explorer. The latest versions of FileMaker no longer use Internet Explorer; please update to FileMaker 19.32 or higher to continue using DayBack beyond that date.",
buttonTextPrimary: "DETAILS",
buttonURLPrimary: "https://docs.dayback.com/article/274-ie-11",
buttonTextAlt: "",
buttonURLAlt: "",
environments: ["isIE"],
showMessage: true,
},
{
id: "92",
date: "2021-09-20",
author: "John Sindelar",
platforms: ["DBKO", "DBKSF"],
title: "Support Ending for Internet Explorer",
subhead: "Sept 20, 2022 ACTION REQUIRED",
imageSourceURL: "",
imageClickURL: "",
content:
"Beginning January 3rd, 2022 DayBack will no longer support any version of Internet Explorer. Please use a modern browser such as Google Chrome, Firefox or Microsoft Edge to continue using DayBack after that date.",
buttonTextPrimary: "DETAILS",
buttonURLPrimary: "https://docs.dayback.com/article/274-ie-11",
buttonTextAlt: "",
buttonURLAlt: "",
environments: ["isIE"],
showMessage: true,
},
{
id: "91",
date: "2021-08-30",
author: "John Sindelar",
platforms: ["DBKO", "DBKSF", "DBKFMWD", "DBKFMJS", "DBKFM"],
title: "Resource Skills & Locations",
subhead: "Aug 30, 2021 NEW FEATURE",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2021/08/ResourceFilteringInApp.jpg",
imageClickURL:
"https://dayback.com/resource-filters-skill-based-scheduling/?utm_source=inapp",
content:
"Filter your assets by skill and location to understand your schedule at a glance and make faster scheduling decisions.",
buttonTextPrimary: "DETAILS & VIDEO",
buttonURLPrimary:
"https://dayback.com/resource-filters-skill-based-scheduling/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "90",
date: "2021-07-25",
author: "John Sindelar",
platforms: ["DBKO", "DBKSF", "DBKFMWD", "DBKFMJS", "DBKFM"],
title: "The Science of Scarcity",
subhead: "July 25, 2021 SCHEDULING",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2021/07/Scarcity-InApp.jpg",
imageClickURL:
"https://dayback.com/scarcity-the-science-of-resource-scheduling/?utm_source=inapp",
content:
"Add shock absorbers to your schedule by charting resource scheduling against your capacity. Health cloud example: scheduling surgery rooms.",
buttonTextPrimary: "LEARN MORE",
buttonURLPrimary:
"https://dayback.com/scarcity-the-science-of-resource-scheduling/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "89",
date: "2021-06-14",
author: "John Sindelar",
platforms: ["DBKO", "DBKSF", "DBKFMWD", "DBKFMJS", "DBKFM"],
title: "More Custom Actions",
subhead: "July 4, 2021 CUSTOMIZATION",
imageSourceURL: "",
imageClickURL: "",
content:
"We've been revisiting some of DayBack's most popular custom actions. Making them easier to configure and adding more documentation and examples.",
buttonTextPrimary: "THE LATEST",
buttonURLPrimary:
"https://dayback.com/select-specific-resource-filters-when-switching-between-calendars/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "88",
date: "2021-06-14",
author: "John Sindelar",
platforms: ["DBKO", "DBKSF", "DBKFMWD", "DBKFMJS", "DBKFM"],
title: "New Breakout Options",
subhead: "June 14, 2021 NEW FEATURE",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2021/06/breakoutinapp.jpg",
imageClickURL:
"https://dayback.com/breakout-your-schedule-by-any-field/?utm_source=inapp",
content:
"Now breakout your schedule by project or by any custom field. Any field in any of your calendars can now become a swimlane.",
buttonTextPrimary: "SEE IT IN ACTION",
buttonURLPrimary:
"https://dayback.com/breakout-your-schedule-by-any-field/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "87",
date: "2021-05-22",
author: "John Sindelar",
platforms: ["DBKO", "DBKSF", "DBKFMWD", "DBKFMJS", "DBKFM"],
title: "Undo Changes in Custom Actions",
subhead: "May 17, 2021 CUSTOMIZATION",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2021/05/UndoFeatinApp.jpg",
imageClickURL:
"https://dayback.com/managing-undos-in-custom-actions/?utm_source=inapp",
content:
"DayBack lets users undo their changes, and developers can now make their custom actions behave differently when edits are reverted.",
buttonTextPrimary: "EXAMPLES",
buttonURLPrimary:
"https://dayback.com/managing-undos-in-custom-actions/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "86",
date: "2021-05-09",
author: "John Sindelar",
platforms: ["DBKO", "DBKSF", "DBKFMWD", "DBKFMJS", "DBKFM"],
title: "Make Your Own Calendar Selector",
subhead: "May 9, 2021 CUSTOMIZATION",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2021/05/menuDetail_InApp.jpg",
imageClickURL:
"https://dayback.com/make-calendar-selector/?utm_source=inapp",
content:
"Create your own contextual menu so users can select calendars or event templates.",
buttonTextPrimary: "LEARN HOW",
buttonURLPrimary:
"https://dayback.com/make-calendar-selector/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "85",
date: "2021-04-25",
author: "John Sindelar",
platforms: ["DBKO", "DBKSF", "DBKFMWD", "DBKFMJS", "DBKFM"],
title: "Add Decision Dialogs",
subhead: "Apr 24, 2021 CUSTOMIZATION",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2021/04/dialogInApp.jpg",
imageClickURL:
"https://dayback.com/custom-dialogs-buttons/?utm_source=inapp",
content:
"Build workflows into your calendar with decision dialogs. Example code and instructions included.",
buttonTextPrimary: "LEARN MORE",
buttonURLPrimary:
"https://dayback.com/custom-dialogs-buttons/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "84",
date: "2021-04-10",
author: "John Sindelar",
platforms: ["DBKO", "DBKSF", "DBKFMWD", "DBKFMJS", "DBKFM"],
title: "Microsoft 365",
subhead: "Apr 11, 2021 NEW FEATURE",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2020/03/O365logowordsSM.png",
imageClickURL:
"https://dayback.com/dayback-for-microsoft-365-calendar/?utm_source=inapp",
content:
"DayBack's integration with Microsoft 365 is out of preview and now supports creating and editing Office events directly in DayBack alongside your other calendar sources.",
buttonTextPrimary: "LEARN MORE",
buttonURLPrimary:
"https://dayback.com/dayback-for-microsoft-365-calendar/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "83",
date: "2021-03-14",
author: "John Sindelar",
platforms: ["DBKO", "DBKSF", "DBKFMWD", "DBKFMJS", "DBKFM"],
title: "Conflict Detection",
subhead: "Mar 14, 2021 CUSTOMIZATION",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2021/03/FM19ConflictInApp.jpg",
imageClickURL:
"https://dayback.com/preventing-conflicts-filemaker-calendar/?utm_source=inapp",
content:
"Warn users when they're creating conflicting appointmets. Video and example code.",
buttonTextPrimary: "For FileMaker",
buttonURLPrimary:
"https://dayback.com/preventing-conflicts-filemaker-calendar/?utm_source=inapp",
buttonTextAlt: "For Salesforce",
buttonURLAlt:
"https://dayback.com/date-range-conflicts-salesforce/?utm_source=inapp",
},
{
id: "82",
date: "2021-02-27",
author: "John Sindelar",
platforms: ["DBKO", "DBKSF", "DBKFMWD", "DBKFMJS", "DBKFM"],
title: "",
subhead: "",
imageSourceURL: "",
imageClickURL: "",
content:
"<div style='font-size: 1.5em; margin-top: 30px;'>\"Freedom is not the absence of commitments, but the ability to chose - and commit myseelf to - what is best for me.\"</div><span style ='padding-left: 80px; float: right; padding-top: 16px; text-indent: -11px; color: rgba(255, 255, 255, 0.74);'>– Paulo Coelho</span>",
buttonTextPrimary: "",
buttonURLPrimary: "",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "81",
date: "2021-02-14",
author: "John Sindelar",
platforms: ["DBKSF"],
title: "Console Apps & Utility Items",
subhead: "Feb 14, 2021 INTEGRATION",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2021/02/ConsolefeatINApp.jpg",
imageClickURL:
"https://dayback.com/salesforce-console-apps-calendar-utility-items/?utm_source=inapp",
content:
"Embed DayBack as a Salesforce console app or utility item to see your schedule in the context of your other work.",
buttonTextPrimary: "LEARN HOW",
buttonURLPrimary:
"https://dayback.com/salesforce-console-apps-calendar-utility-items/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "80",
date: "2021-02-01",
author: "John Sindelar",
platforms: ["DBKFMWD", "DBKFM", "DBKFMJS"],
title: "FM19 Web Viewer Tips",
subhead: "Feb 02, 2021 FOR DEVELOPERS",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2021/01/WVtipsInApp.jpg",
imageClickURL:
"https://www.seedcode.com/web-viewer-tips-for-filemaker-19-hardening-the-filemaker-performscript-function/?utm_source=inapp",
content:
"A three-part series on how we built DayBack for FileMaker 19's web viewer. Includes tips for WebDirect, hosting, and hardening the FileMaker.PerformScript function.",
buttonTextPrimary: "LEARN MORE",
buttonURLPrimary:
"https://www.seedcode.com/web-viewer-tips-for-filemaker-19-hardening-the-filemaker-performscript-function/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "79",
date: "2020-02-01",
author: "John Sindelar",
platforms: ["DBKSF", "DBKO"],
title: "Invitations & Notifications",
subhead: "Feb 01, 2020 CUSTOM ACTION",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2021/01/attinapp3.jpg",
imageClickURL:
"https://dayback.com/using-salesforce-attendees-and-google-notifications-in-dayback/?utm_source=inapp",
content:
"Completing an invitations and notification calendar workflow. Part 3 of 3 on creating attendees, invitations, and accepting invitations in Salesforce Lightning.",
buttonTextPrimary: "LEARN MORE",
buttonURLPrimary:
"https://dayback.com/using-salesforce-attendees-and-google-notifications-in-dayback/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "78",
date: "2021-01-02",
author: "John Sindelar",
platforms: ["DBKFMWD", "DBKFM", "DBKFMJS"],
title: "Refresh DayBack Automatically",
subhead: "Jan 02, 2021 CUSTOMIZATION",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2021/01/RefreshFeaturedInApp.jpg",
imageClickURL:
"https://www.seedcode.com/refresh-changes-by-other-users-filemaker-calendar/?utm_source=inapp",
content:
"Listen for other users' changes and refresh your calendar with the latest edits: great for busy scheduling environments like call centers. Example scripts and instructions for how to add this to your DayBack.",
buttonTextPrimary: "LEARN HOW",
buttonURLPrimary:
"https://www.seedcode.com/refresh-changes-by-other-users-filemaker-calendar/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "77",
date: "2020-12-19",
author: "John Sindelar",
platforms: ["DBKO", "DBKSF", "DBKFMWD", "DBKFMJS", "DBKFM"],
title: "Rich Text and HTML in Events",
subhead: "Dec 19, 2020 NEW FEATURE",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2020/12/InAppBujo.jpg",
imageClickURL:
"https://docs.dayback.com/article/269-rich-text-and-html-in-events/?utm_source=inapp",
content:
"Style the text in your events' description, adding links and formatting using DayBack's expanded editor.",
buttonTextPrimary: "LEARN MORE",
buttonURLPrimary:
"https://docs.dayback.com/article/269-rich-text-and-html-in-events/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "76",
date: "2020-12-05",
author: "John Sindelar",
platforms: ["DBKSF"],
title: "Attendees & Shared Events",
subhead: "Dec 05, 2020 CUSTOM ACTION",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2020/12/AttendeesFeatSM.jpg",
imageClickURL:
"https://dayback.com/attendees-shared-events-salesforce-calendars/?utm_source=inapp",
content:
"Link multiple users and contacts to events: creating attendees, invitations, and accepting invitations in Salesforce Lightning.",
buttonTextPrimary: "LEARN MORE",
buttonURLPrimary:
"https://dayback.com/attendees-shared-events-salesforce-calendars/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "75",
date: "2020-11-22",
author: "John Sindelar",
platforms: ["DBKFM", "DBKFMJS", "DBKFMWD"],
title: "Automatic User Management",
subhead: "Nov 22, 2020 NEW FEATURE",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2020/11/automini.png",
imageClickURL:
"https://docs.dayback.com/article/268-automatic-license-management/?utm_source=inapp",
content:
"Now automate user licenses in DayBack for completely hands-off user management. Great for FileMaker developers using DayBack in vertical market apps.",
buttonTextPrimary: "Automate Billing",
buttonURLPrimary:
"https://docs.dayback.com/article/268-automatic-license-management/?utm_source=inapp",
buttonTextAlt: "User Roles",
buttonURLAlt:
"https://docs.dayback.com/article/262-creating-users-automatically-in-filemaker/?utm_source=inapp",
},
{
id: "74",
date: "2020-11-14",
author: "John Sindelar",
platforms: ["DBKO", "DBKSF", "DBKFMWD", "DBKFMJS", "DBKFM"],
title: "Sending Google Calendar Notifications",
subhead: "Nov 14, 2020 CUSTOM ACTION",
imageSourceURL: "https://dayback.com/wp-content/uploads/2020/11/Sync.jpg",
imageClickURL:
"https://dayback.com/sending-google-calendar-notifications-from-dayback/?utm_source=inapp",
content:
"Stay in sync with folks who lack access to your calendar. Sync your events to Google Calendar and take advantage of Google's notification engine to keep everyone up to date.",
buttonTextPrimary: "SYNC UP",
buttonURLPrimary:
"https://dayback.com/sending-google-calendar-notifications-from-dayback/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "73",
date: "2020-10-17",
author: "John Sindelar",
platforms: ["DBKSF"],
title: "Salesforce Lightning Scheduler & DayBack",
subhead: "Oct 26, 2020 INTEGRATION",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2020/11/LSFeatured.jpg",
imageClickURL:
"https://dayback.com/salesforce-lightning-scheduler-resource-calendar-part-one/?utm_source=inapp",
content:
"Turn Lightning Scheduler into a visual resource scheduling app with DayBack Calendar. Part 1 of 2: Working with Resources.",
buttonTextPrimary: "LEARN MORE",
buttonURLPrimary:
"https://dayback.com/salesforce-lightning-scheduler-resource-calendar-part-one/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "72",
date: "2020-10-17",
author: "John Sindelar",
platforms: ["DBKO", "DBKSF", "DBKFMWD", "DBKFMJS", "DBKFM"],
title: "Push Events to Google Calendar",
subhead: "Oct 17, 2020 CUSTOM ACTION",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2020/10/Calemdly2.jpg",
imageClickURL:
"https://dayback.com/push-events-google-calendar-calendly/?utm_source=inapp",
content:
"DayBack can push events from other calendars to Google so these events can block out your availability in Calendly.",
buttonTextPrimary: "LEARN HOW",
buttonURLPrimary:
"https://dayback.com/push-events-google-calendar-calendly/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "71",
date: "2020-09-20",
author: "John Sindelar",
platforms: ["DBKO", "DBKSF"],
title: "Improved Resource Analytics",
subhead: "Sep 20, 2020 NEW FEATURE",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2020/09/ResourceSwitchInApp.jpg",
imageClickURL:
"https://dayback.com/new-analytics-options-for-resource-scheduling/?utm_source=inapp",
content:
"The latest update to DayBack lets you combine all activities into a single curve when charting resources over time.",
buttonTextPrimary: "VIDEO & DETAILS",
buttonURLPrimary:
"https://dayback.com/new-analytics-options-for-resource-scheduling/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "70",
date: "2020-09-20",
author: "John Sindelar",
platforms: ["DBKFMWD", "DBKFMJS", "DBKFM"],
title: "Improved Resource Analytics",
subhead: "Sep 20, 2020 NEW FEATURE",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2020/09/ResourceSwitchInApp.jpg",
imageClickURL:
"https://www.seedcode.com/improved-charts-for-resource-scheduling-filemaker-19/?utm_source=inapp",
content:
"The latest update to DayBack for FileMaker 19 lets you combine all activities into a single curve when charting resources over time.",
buttonTextPrimary: "VIDEO & DETAILS",
buttonURLPrimary:
"https://www.seedcode.com/improved-charts-for-resource-scheduling-filemaker-19/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "69",
date: "2020-08-03",
author: "John Sindelar",
platforms: ["DBKO", "DBKFMWD", "DBKFMJS", "DBKSF", "DBKFM"],
title: "Availability Scheduling",
subhead: "Aug 03, 2020 NEW FEATURE",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2020/08/UnavailInApp.png",
imageClickURL: "https://docs.dayback.com/article/258-availability",
content:
"Show your availability as background events in your calendar, blocking out time around operating hours, vacations, or downtime.",
buttonTextPrimary: "VIDEO & DETAILS",
buttonURLPrimary: "https://docs.dayback.com/article/258-availability",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "68",
date: "2020-07-27",
author: "John Sindelar",
platforms: ["DBKO", "DBKFMWD", "DBKFMJS", "DBKSF", "DBKFM"],
title: "Work vs. System Building",
subhead: "July 27, 2020 PRODUCTIVITY",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2020/07/SystemsFeat.jpg",
imageClickURL:
"https://dayback.com/work-vs-system-building/?utm_source=inapp",
content:
"What’s the balance in your day between producing work and building systems?",
buttonTextPrimary: "TIME FOR SYSTEM-BUILDING",
buttonURLPrimary:
"https://dayback.com/work-vs-system-building/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "67",
date: "2020-07-21",
author: "John Sindelar",
platforms: ["DBKFMWD", "DBKFMJS"],
title: "More Filters",
subhead: "July 21, 2020 CUSTOMIZATION",
imageSourceURL: "",
imageClickURL: "",
content:
"Add your own filters or pre-filter DayBack baseed on global fields in FileMaker. Customize example scripts in DayBack for FileMaker 19.",
buttonTextPrimary: "LEARN MORE",
buttonURLPrimary:
"https://docs.dayback.com/article/254-additional-filters-in-dayback-for-filemaker",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "66",
date: "2020-07-03",
author: "John Sindelar",
platforms: ["DBKO", "DBKFMWD", "DBKFMJS", "DBKSF"],
title: "Default Drawers",
subhead: "July 3, 2020 UPDATE",
imageSourceURL: "",
imageClickURL: "",
content:
"Now automatically open a drawer when creating or editing events. Give your users faster access to button pallets or custom fields.",
buttonTextPrimary: "LEARN MORE",
buttonURLPrimary: "https://docs.dayback.com/article/167-drawers/",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "65",
date: "2020-06-10",
author: "John Sindelar",
platforms: ["DBKFM", "DBKFMJS"],
title: "FileMaker 19 Add-Ons",
subhead: "June 10, 2020 NEW TECH",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2020/06/Addoninapp.jpg",
imageClickURL:
"https://www.seedcode.com/filemaker-19-add-ons/?utm_source=inapp",
content:
"The new add-on capability for FM19 is a game changer. Watch the magic and download an add-on you can play with.",
buttonTextPrimary: "LEARN MORE & DOWNLOAD",
buttonURLPrimary:
"https://www.seedcode.com/filemaker-19-add-ons/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "64",
date: "2020-05-30",
author: "John Sindelar",
platforms: ["DBKFM"],
title: "New for FileMaker 19",
subhead: "MAY 30, 2020 NEW VERSION",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2020/05/17IlFqyr.jpeg",
imageClickURL:
"https://www.seedcode.com/calendar-for-filemaker-19/?utm_source=inapp",
content:
"We’ve been building FileMaker calendars since 2003: this is the calendar we’ve been waiting for. Easier to integrate and customize with access to Google, Office 365, and Basecamp calendar built-in.",
buttonTextPrimary: "THE NEW DAYBACK",
buttonURLPrimary:
"https://www.seedcode.com/calendar-for-filemaker-19/?utm_source=inapp",
buttonTextAlt: "FileMaker 19",
buttonURLAlt:
"https://www.claris.com/blog/2020/claris-launches-filemaker-19",
},
{
id: "63",
date: "2020-05-14",
author: "John Sindelar",
platforms: ["DBKO", "DBKFMWD", "DBKFMJS", "DBKSF"],
title: "Bookmarks",
subhead: "MAY 14, 2020 UPDATE",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2020/05/BookmarksInApp.png",
imageClickURL:
"https://docs.dayback.com/article/103-sharing/?utm_source=inapp",
content:
"Calendars tell stories. And we've just added bookmarks to DayBack so you can easily check in on the stories you're following.",
buttonTextPrimary: "START USING BOOKMARKS",
buttonURLPrimary:
"https://docs.dayback.com/article/103-sharing/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "62",
date: "2020-05-12",
author: "John Sindelar",
platforms: ["DBKO", "DBKFMWD", "DBKFMJS", "DBKSF"],
title: "Enhanced Timezone Support",
subhead: "MAY 12, 2020 CUSTOMIZATION",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2020/05/TZinapp.png",
imageClickURL:
"https://dayback.com/enhanced-timezone-support/?utm_source=inapp",
content:
"Automatically snap your schedule to a different timezone when you're focussing on resources in other regions.",
buttonTextPrimary: "LEARN MORE",
buttonURLPrimary:
"https://dayback.com/enhanced-timezone-support/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "61",
date: "2020-04-28",
author: "John Sindelar",
platforms: ["DBKFM"],
title: "New Google Sheets Integration",
subhead: "APR 28, 2020 INTEGRATION",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2020/04/GsheetsHLogo-White.png",
imageClickURL:
"https://dayback.com/calendar-for-google-sheets/?utm_source=inapp",
content:
"Add rows from any Google Sheet into your calendar. Coming to DayBack for FileMaker with FileMaker 19.",
buttonTextPrimary: "LEARN MORE",
buttonURLPrimary:
"https://dayback.com/calendar-for-google-sheets/?utm_source=inapp",
buttonTextAlt: "DAYBACK in FM19",
buttonURLAlt: "https://dayback.com/filemaker-calendar-add-on/",
},
{
id: "60",
date: "2020-04-28",
author: "John Sindelar",
platforms: ["DBKO", "DBKFMWD", "DBKFMJS", "DBKSF"],
title: "New Google Sheets Integration",
subhead: "APR 28, 2020 INTEGRATION",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2020/04/GsheetsHLogo-White.png",
imageClickURL:
"https://dayback.com/calendar-for-google-sheets/?utm_source=inapp",
content:
"Add rows from any Google Sheet into your calendar. And use automated connections between Sheets and other apps to bring their data into your calendar. In our example, we're comparing our marketing events to sales data from Stripe.",
buttonTextPrimary: "LEARN MORE",
buttonURLPrimary:
"https://dayback.com/calendar-for-google-sheets/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "59",
date: "2020-04-25",
author: "John Sindelar",
platforms: ["DBKO", "DBKFMWD", "DBKFMJS", "DBKFM", "DBKSF"],
title: "New Shortcuts",
subhead: "APR 25, 2020 DOCUMENTATION",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2020/04/ShortcutDocs.jpg",
imageClickURL: "https://docs.dayback.com/article/45-shortcuts/",
content:
"We've updated our documentation with the latest shortcuts to help you get the most out of your calendar.",
buttonTextPrimary: "SHORTCUTS",
buttonURLPrimary: "https://docs.dayback.com/article/45-shortcuts/",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "58",
date: "2020-04-07",
author: "John Sindelar",
platforms: ["DBKO", "DBKFMWD", "DBKFMJS"],
title: "Zoom Meetings in DayBack",
subhead: "APR 7, 2020 INTEGRATION",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2018/08/ZOOMNOTIFICATION.jpg",
imageClickURL:
"https://dayback.com/schedule-zoom-meetings-salesforce/?utm_source=inapp",
content:
"Schedule your Zoom meetings in DayBack and link them to your events. Instructions and examples inluded. (Now updated to take advantage of the latest changes to Zoom)",
buttonTextPrimary: "DETAILS",
buttonURLPrimary:
"https://dayback.com/schedule-zoom-meetings-salesforce/?utm_source=inapp",
buttonTextAlt: "Update Your Copy",
buttonURLAlt:
"https://dayback.com/schedule-zoom-meetings-salesforce/#upgrade",
},
{
id: "57",
date: "2020-04-07",
author: "John Sindelar",
platforms: ["DBKSF"],
title: "Zoom Meetings in Salesforce",
subhead: "APR 07, 2020 INTEGRATION",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2018/08/ZOOMNOTIFICATION.jpg",
imageClickURL:
"https://dayback.com/schedule-zoom-meetings-salesforce/?utm_source=inapp",
content:
"Schedule your Zoom meetings in DayBack and link them to your Salesforce records. Instructions and examples included. (Now updated to take advantage of the latest changes to Zoom)",
buttonTextPrimary: "DETAILS",
buttonURLPrimary:
"https://dayback.com/schedule-zoom-meetings-salesforce/?utm_source=inapp",
buttonTextAlt: "Update Your Copy",
buttonURLAlt:
"https://dayback.com/schedule-zoom-meetings-salesforce/#upgrade",
},
{
id: "56",
date: "2020-03-24",
author: "John Sindelar",
platforms: ["DBKFM"],
title: "Batch Rescheduling",
subhead: "Mar 24, 2020 NEW FEATURE",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2020/03/MultiSelectInApp.jpg",
imageClickURL:
"https://www.seedcode.com/reschedule-multiple-events/?utm_source=inapp",
content:
"Shift-click to select multiple events, then drag to change their place in your calendar. Click 'Undo' to snap your events back and try something else.",
buttonTextPrimary: "MOVIE & DETAILS",
buttonURLPrimary:
"https://www.seedcode.com/reschedule-multiple-events/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "56",
date: "2020-03-24",
author: "John Sindelar",
platforms: ["DBKO", "DBKFMWD", "DBKFMJS", "DBKSF"],
title: "Batch Rescheduling",
subhead: "Mar 24, 2020 NEW FEATURE",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2020/03/MultiSelectInApp.jpg",
imageClickURL:
"https://dayback.com/reschedule-multiple-events-at-once/?utm_source=inapp",
content:
"Shift-click to select multiple events, then drag to change their place in your calendar. Click 'Undo' to snap your events back and try something else.",
buttonTextPrimary: "MOVIE & DETAILS",
buttonURLPrimary:
"https://dayback.com/reschedule-multiple-events-at-once/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "55",
date: "2020-03-19",
author: "John Sindelar",
platforms: ["DBKO", "DBKFMWD", "DBKFMJS", "DBKSF"],
title: "Office 365 Calendars",
subhead: "Mar 19, 2020 PREVIEW",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2020/03/OfficeInApp2.png",
imageClickURL:
"https://dayback.com/dayback-for-office-365-calendar/?utm_source=inapp",
content:
"Preview DayBack's newest integration! See your Office 365 Calendars alongside your other calendars in DayBack-- manage your whole schedule in one place.",
buttonTextPrimary: "LEARN MORE",
buttonURLPrimary:
"https://dayback.com/dayback-for-office-365-calendar/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "54",
date: "2020-03-12",
author: "John Sindelar",
platforms: ["DBKSF"],
title: "Real Estate Scheduling",
subhead: "Mar 12, 2020 CASE STUDY",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2020/03/RealtorInApp.png",
imageClickURL:
"https://dayback.com/real-estate-scheduling-in-salesforce/?utm_source=inapp",
content:
"Schedule viewings, appraisals, and appointments alongside your agents' personal calendars.",
buttonTextPrimary: "LEARN MORE",
buttonURLPrimary:
"https://dayback.com/real-estate-scheduling-in-salesforce/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "53",
date: "2020-03-08",
author: "John Sindelar",
platforms: ["DBKFM"],
title: "Color-Coding by Resource",
subhead: "Mar 8, 2020 CUSTOMIZATION",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2020/03/Second-Color-in-App.png",
imageClickURL:
"https://www.seedcode.com/color-coding-filemaker-calendar/?utm_source=inapp",
content: "Add more color-coding to understand your schedule at a glance.",
buttonTextPrimary: "LEARN HOW",
buttonURLPrimary:
"https://www.seedcode.com/color-coding-filemaker-calendar/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "52",
date: "2020-03-06",
author: "John Sindelar",
platforms: ["DBKO", "DBKFMWD", "DBKFMJS", "DBKSF"],
title: "Color-Coding by Resource",
subhead: "Mar 6, 2020 CUSTOMIZATION",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2020/03/Second-Color-in-App.png",
imageClickURL:
"https://dayback.com/color-coding-by-resource/?utm_source=inapp",
content: "Add more color-coding to understand your schedule at a glance.",
buttonTextPrimary: "LEARN HOW",
buttonURLPrimary:
"https://dayback.com/color-coding-by-resource/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "51",
date: "2020-02-16",
author: "John Sindelar",
platforms: ["DBKO", "DBKFMWD", "DBKFMJS", "DBKSF"],
title: "Cascading Schedule Changes ",
subhead: "Feb 16, 2020 PRODUCTIVITY",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2020/02/CascadeInApp.png",
imageClickURL: "https://dayback.com/cascading-events/?utm_source=inapp",
content:
"Cascade schedule changes through downstream events in your project. The newest calendar action for DayBack shows you the consequences of your decisions.",
buttonTextPrimary: "LEARN MORE",
buttonURLPrimary:
"https://dayback.com/cascading-events/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "50",
date: "2019-12-30",
author: "John Sindelar",
platforms: ["DBKFM"],
title: "Scheduling Grids",
subhead: "Dec 30, 2019 CUSTOMIZATION",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2019/12/PivotAndersFeatINAPP.png",
imageClickURL:
"https://www.seedcode.com/schedule-grid-filemaker/?utm_source=inapp",
content:
"DayBack's scheduling grids highlight gaps in your schedule across multiple weeks, so you know if you're on track or overextended. These multi-week views are designed to be customized.",
buttonTextPrimary: "LEARN MORE",
buttonURLPrimary:
"https://www.seedcode.com/schedule-grid-filemaker/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "49",
date: "2019-12-26",
author: "John Sindelar",
platforms: ["DBKSF"],
title: "Salesforce Contacts in Google Calendar",
subhead: "Dec 26, 2019 INTEGRATIONS",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2019/12/GoogleSFFeatInApp.png",
imageClickURL:
"https://dayback.com/use-your-salesforce-contacts-in-google-calendar/?utm_source=inapp",
content:
"Link your Google Calendar events to your Salesforce contacts, leads, accounts, and opportunities.",
buttonTextPrimary: "LEARN MORE",
buttonURLPrimary:
"https://dayback.com/use-your-salesforce-contacts-in-google-calendar/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "48",
date: "2019-12-14",
author: "John Sindelar",
platforms: ["DBKO", "DBKFMWD", "DBKFMJS", "DBKSF"],
title: "Time Shame",
subhead: "Dec 17, 2019 PRODUCTIVITY",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2019/12/RoadTripInApp.jpg",
imageClickURL:
"https://dayback.com/time-shame-road-trip/?utm_source=inapp",
content:
"Shame isn’t a signal to cram more into your schedule. Instead, plan your day like a road trip and find focus on the one thing that matters most.",
buttonTextPrimary: "It's Time",
buttonURLPrimary:
"https://dayback.com/time-shame-road-trip/?utm_source=inapp",
buttonTextAlt: "",
buttonURLAlt: "",
},
{
id: "48",
date: "2019-12-14",
author: "John Sindelar",
platforms: ["DBKFM"],
title: "How We Spend Our Time",
subhead: "Dec 17, 2019 TIME",
imageSourceURL:
"https://dayback.com/wp-content/uploads/2019/12/RoadTripInApp.jpg",
imageClickURL: