forked from toggl/track-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES
1043 lines (1043 loc) · 30.9 KB
/
CHANGES
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
{
"versions": [
{
"version": "1.11.2",
"rows": [
"Improve settings view for Chrome #1142",
"Fix Rollbar integration #1137",
"Fix Todoist dark mode integration #1134",
"Add support for new Evernote.com layout"
]
},
{
"version": "1.11.1",
"rows": [
"Fix process is undefined in content script #1113",
"Fix Sentry support #1092",
"Fix Google Keep support #1082",
"Fix Intercom support #1015",
"Fix MeisterTask support #1093"
]
},
{
"version": "1.11.0",
"rows": [
"Fix continuing time entries in list #1111",
"Fix API URL #1108",
"Update Help Scout integration #1094",
"Fix pomodoro view in Firefox #1074",
"Package updated to use webpack; please see README for development changes #1090",
"Add Office.com calendar Integration #1073",
"Update Phabricator integration #1022",
"Update YouTrack agile view #924",
"Fix Airtable integration #1013",
"Update JIRA support for the Kanaban Board #1067",
"Update MeisterTask integration #1072",
"Add VivifyScrum integration"
]
},
{
"version": "1.10.9",
"rows": [
"Fix TickTick integration #1044"
]
},
{
"version": "1.10.8",
"rows": [
"Fix issue where no default workspace was present",
"Update Slack integration",
"Fix JIRA integration",
"Fix Trello integration",
"Fix integration with teamwork project ui",
"Added Workast integration",
"Fix Visual Studio Integration",
"Update OpenProject integration to support version 7.4.6",
"Fix Asana integration",
"Add support for Bugherd"
]
},
{
"version": "1.10.7",
"rows": [
"Add Bitbucket Server support",
"Fix Teamweek integration",
"Fix automatic project selection in JIRA Server",
"Trim description in Confluence",
"Handle users without workspaces",
"Make 'Recent entries' non clickable",
"Notify Toggl Webapp that Toggl Button is installed"
]
},
{
"version": "1.10.6",
"rows": [
"Add keyboard support for project autocomplete",
"Add support for Teamwork Desk",
"Add support for Kanboard",
"Add support for HEFLO",
"Add Microsoft Todo integration",
"Fix Targetprocess integration",
"Fix CapsuleCRM integration",
"Fix project autoselect on Todoist",
"Fix user-agent request header"
]
},
{
"version": "1.10.5",
"rows": [
"Fix Asana integration again",
"Fix Jira integration again"
]
},
{
"version": "1.10.4",
"rows": [
"Fix Asana board view integration",
"Fix calculation bugs for the time tracked today/this week",
"Fix sync issue with entry being deleted",
"Add Microsoft Planner Integration",
"Add VersionOne Integration",
"Contrast improvement on the time entry edit form",
"Include Visual Studio's work item id in the time entry description"
]
},
{
"version": "1.10.3",
"rows": [
"Add ManageEngine support",
"Fix Asana project autoselect",
"Fix button not appearing on Jira board modal",
"Small visual fixes for Firefox"
]
},
{
"version": "1.10.2",
"rows": [
"Minor refactoring to comply with Mozilla Add-ons policy"
]
},
{
"version": "1.10.1",
"rows": [
"Fix bug breaking extension when calculating day/week totals"
]
},
{
"version": "1.10.0",
"rows": [
"Add button to JIRA sprint modal",
"Restore old JIRA integration",
"Add day/week total duration text to popup",
"Improve settings dialog layout",
"Fix bug starting timer as 12:00:00 am"
]
},
{
"version": "1.9.0",
"rows": [
"Added support for Sentry.io",
"Fixed button not appearing in Basecamp 3",
"Fixed button not appearing in new Google Calendar UI",
"Fixed button not appearing in Habitica",
"Fixed button not appearing in Remember the Milk",
"Fixed button not appearing in JIRA Boards",
"Fixed misplaced button in Gitlab"
]
},
{
"version": "1.8.0",
"rows": [
"Possibly fixed button in older gitlab versions",
"Added support for ClickUp",
"Added support for Protonmail",
"Added support for Airtable",
"Added support for Onshape",
"Fixed button not appearing in Teamweek",
"In Youtrack now uses the task id on the agile board as well",
"Fixed auto-assigning project in Gitlab if using nested projects"
]
},
{
"version": "1.7.0",
"rows": [
"Added support for Pagerduty",
"Added support for Rollbar",
"Fix button not appearing in Visual Studio Online",
"Fix button not appearing in Zube",
"Fix button not appearing in Gitlab again"
]
},
{
"version": "1.6.0",
"rows": [
"Fixed interval leak in the extension popup",
"Added support for RallyDev",
"Added support for Spidergap",
"Fix button not appearing in Gitlab"
]
},
{
"version": "1.5.0",
"rows": [
"Added keyboard command to start/stop the timer",
"Added duration field to extension popup edit view",
"Added support for Codebase",
"Fixed button in toodledo",
"Fixed some button issues in Asana"
]
},
{
"version": "1.4.0",
"rows": [
"Added signup button to login screen",
"Fixed global default project not being applied",
"Added support for osTicket",
"Added support for DokuWiki"
]
},
{
"version": "1.3.0",
"rows": [
"Fixed button placement in Feedly",
"Fixed Youtrack on custom domains",
"Added tasks & goals support to Google Calendar",
"Fixed button in Backlog",
"Added option to remember last selected project per service/URL"
]
},
{
"version": "1.2.0",
"rows": [
"Fixed button in Toodledo",
"Fixed button in OpenProject 7.0",
"Fixed button in Youtrack",
"Improved dropdown size calculations",
"Added support for Khan Academy",
"Added support for Husky Marketing Planner",
"Added support for Nozbe"
]
},
{
"version": "1.1.6",
"rows": [
"Fixed issue where the extension would sometimes try to interact with a non-website tab",
"Fixed issue where logging out sometimes broke the button",
"Added support for subprojects in Todoist.",
"Fixed pomodoro progress not updating right after clicking Continue"
]
},
{
"version": "1.1.5",
"rows": [
"Fixed button missing on Remember The Milk",
"Fixed github button disappearing when interacting with the sidebar",
"Added namespace to CSS classes to avoid conflicts",
"Fixed getting the correct project name from Bitbucket",
"Added whitespace trimming from pull request description in Bitbucket",
"Added ProcessWire integration",
"Fixed dropdown height calculations when near the bottom edge of the window"
]
},
{
"version": "1.1.4",
"rows": [
"Fixed domain matching problem that broke the button in various services"
]
},
{
"version": "1.1.3",
"rows": [
"Fixed Salesforce on custom domains",
"Fixed Button showing in Salesforce & Salesforce Lightning",
"Fixed Button showing ando other issues in Asana",
"Fixed Button showing in Zube.io",
"Fixed Button showing in Remember The Milk"
]
},
{
"version": "1.1.2",
"rows": [
"Added support for backlog.jp",
"Tags are now filtered by the active workspace",
"Fixed issues with the button not appearing in Github"
]
},
{
"version": "1.1.1",
"rows": [
"Added support for Intercom",
"Moved button in github to sidebar",
"Fixed issues with the button not appearing in Trello"
]
},
{
"version": "1.1.0",
"rows": [
"Added support for Feedly",
"Added support for Teamleader",
"Added support for Asana Boards",
"Updated Workfront integration",
"Fixed Remember the Milk integration",
"Fixed permissions list loading issues",
"Added custom domain settings for Firefox",
"Changed logout link to icon",
"Fixed Toggl Button slowing down Trello issue",
"Fixed custom domain delete issue",
"Avoid edit popup being larger than page height"
]
},
{
"version": "1.0.18",
"rows": [
"Fixed billable flag loading issue",
"Fixed MeisterTask start timer issues",
"Fixed billable flag save issue"
]
},
{
"version": "1.0.17",
"rows": [
"Fixed permission list loading issues",
"Added more error logging",
"Disable start timer link functionality when not logged in"
]
},
{
"version": "1.0.16",
"rows": [
"Fixes for new Asana UI",
"Show list on 5 latest unique time entries",
"Fixed Start timer link placement in Targetprocess table view",
"Added support for desk.com",
"Fixed workspace restriction issues when changing project",
"Fixed no start time saved issue"
]
},
{
"version": "1.0.15",
"rows": [
"Added support for clubhouse.io",
"Text trim fixed for Bitbucket, Fresdesk and Remember The Milk",
"Added more place to show start timer link in eproject.me",
"Fixed Settings permissions tab empty issue",s
"Updated time entry requests to API v9"
]
},
{
"version": "1.0.13",
"rows": [
"Fixed github integration",
"Added table view support to TargetProcess",
"Updated Salesforce integration",
"Fixed redmine dom object check"
]
},
{
"version": "1.0.12",
"rows": [
"Fixed billable updating issue",
"Fixed undefined param issues in content scripts",
"Updated instructions text"
]
},
{
"version": "1.0.11",
"rows": [
"Dynamic content generation security and performance improvements",
"Safer analytics gathering",
"Updated Bugsnag to v3",
"Removed executable json file"
]
},
{
"version": "1.0.10",
"rows": [
"Added support for overv.io",
"Style fixes for autocomplete",
"Improvements for permission enable/disable"
]
},
{
"version": "1.0.9",
"rows": [
"Added support for custom colors",
"Smaller style fixes",
"Firefox conditional logic",
"Meistertask fixes"
]
},
{
"version": "1.0.8",
"rows": [
"Added support for MeisterTask",
"Added support for Taiga 3.0",
"Fixed edit form issues in Trello",
"Fixed resetting edit form on close",
"Fixed tabbing and added keyboard events to submit",
"Smaller style fixes"
]
},
{
"version": "1.0.7",
"rows": [
"Added support for OnlyOffice",
"Fixed Pomodoro loading issues with data outside Toggl Button",
"Fixed Pomodoro notification not triggering",
"Added Billable and tag icon to popup timer",
"Added Billable flag editing",
"Fixed slow Settings loading wiht large amoung of projects",
"Fixed user-agent edit issue",
"Show tool name instead of url in custom domain list"
]
},
{
"version": "1.0.6",
"rows": [
"Fixed same name client issue with multiple workspaces",
"Improvements to disabling all permissions"
]
},
{
"version": "1.0.5",
"rows": [
"Fixes for permission issues",
"Fixed long tag name issue",
"Fixed default project select issue",
"Fixed custom domain remove issue"
]
},
{
"version": "1.0.4",
"rows": [
"Fixes and updates for Youtrack",
"Fixed agenocrm and minicrm issues",
"Added Toggl Button to gitlab merge request",
"Improved permissions handling",
"Fixed issues with pomodoro update and sync",
"Fixed long project name hiding tasks",
"Fixed github private projects name matching",
"Added support for Workfront (attask)",
"Fixed default project setting billable"
]
},
{
"version": "1.0.3",
"rows": [
"Fixed Google Inbox integration",
"Autocomplete style fixes",
"Fixed Google Docs multiple load issue",
"Fixed submitting popup with Enter"
]
},
{
"version": "1.0.2",
"rows": [
"Fixed Default project assignement issues",
"Added project select with autocomplete",
"Added project color bullet to project select",
"Moved task select to project select dropdown",
"Added autocomplete to Tag selection",
"Added possibility to add new tags from edit view",
"Popup view design update to minimalistic icon based layout",
"Updated github integration",
"Updated Zube.io integration",
"Updated Visual Studio on line integration",
"Added Sherpadesk integration",
"Added Exana.io (Phacility) integration",
"Added tasklist item support for Google Keep",
"Added support for new Teamwork Projects UI"
]
},
{
"version": "1.0.1",
"rows": [
"Added support for Bitrix24",
"Added support for Rindle",
"Added support for TickTick",
"Added Eventum to custom domains select",
"Added filter field to the top of Settings permissions list",
"Added Pomodoro progress meter to extension icon",
"Fixed Assembla, Habitica, Youtrack and Visual Studio Online integrations",
"Fixed multiple timer links issue in Bitbucket pull request page",
"Fixed Toggl Button Pomodoro stopping entries created elsewhere"
]
},
{
"version": "1.0.0",
"rows": [
"Implemented new permissions system",
"Added possibility to enable/disable integrations from Settings",
"Added possibility to define custom domains in Settings",
"Fixed Remember the milk search issue",
"Fixed Slack integration"
]
},
{
"version": "0.9.2",
"rows": [
"Updated integrations: Google Calendar, GMail, Google Drive, Evernote, Basecamp 3, Salesforce, Gitlab, Liquid Planner",
"Added support for Salesforce Lightning",
"Improved settings design",
"Added smooth timer update for popup timer",
"Fixed running timer check for 'Start timer' link",
"Added support for mantishub.io",
"Updated Asana description fetching",
"Added improved bugtracking",
"Fixed Todoist freezing issues",
"Added volume control for Pomodoro alarm sound",
"Added support for Bugzilla 5",
"Settings style fixes"
]
},
{
"version": "0.9.1",
"rows": [
"Added support for Basecamp 3",
"Added support for OpenProject",
"Added support for Zube",
"Added support for AgenoCRM and MiniCRM",
"Changed toggl button to minimal in Remember the milk",
"Fixed Teamwork integration",
"Fixed Capsule CRM integration",
"Added project support to Unfuddle",
"Improved description fetch in Xero",
"Improved Wokrsection selectors",
"Updated SifterApp integration",
"Improved link updating for pages with multiple links",
"Added more error logging to detect integration errors",
"Added classic UI support to MantisHub",
"Redesigned login view",
"Fixed 'Forgot password' link",
"Show latest entry name when hovering 'Continue latest' button in dropdown",
"Show latest entry name with pomodoro notification 'Continue latest' button",
"Added setting 'start latest entry automatically on browser start' setting",
"Added setting 'stop running entry automatically on browser quit'",
"Added setting 'Stop time at workday end'",
"Added setting 'Stop entry on pomodoro time end'",
"Added pomodoro support for entries started outside Toggl Button",
"Improved Pomodoro timer calculations",
"Fixed settings view issues and added animation",
"Fixed Trello integration"
]
},
{
"version": "0.9.0",
"rows": [
"Added support for Phacility",
"Added support for LiquidPlanner",
"Added support for Google Keep",
"Added support for Gingko App",
"Added support for Google Inbox",
"Added support for Wordpress",
"Added support for Kanbanery",
"Added support for Planbox",
"Added support for Zoho Books",
"Added support for Slack",
"Added support for Doit.im",
"Added support for Sunrise Calendar",
"Added support for Cloudes.me",
"Added support for eProject.me",
"Added support for Freshdesk",
"Added support for Newsletter2go",
"Added support for DevDocs",
"Added support for SourceLair",
"Added support for Remember The Milk",
"Added support for Evernote",
"Added support for Mantishub",
"Added support for ProWorkflow",
"Added support for TargetProcess",
"Added support for Visual Studio Online",
"Added support for SmartBoard",
"Added support for Confluence",
"Added support for Gogs",
"Improved start link title format",
"Fixed tags saving",
"Fixed description undefined issue",
"Unified Pomodoro Timer notification text with other notfications",
"Added setting for toggl button context menu item",
"Added 'Continue latest' option to dropdown",
"Improved Error handling",
"Fixed Redbooth modal 'Start timer' button issue",
"Fixed 'Start timer' button in GetFlow",
"Added Agile Board support to Youtrack",
"Updated Gitlab to add issue number into description"
]
},
{
"version": "0.8.3",
"rows": [
"Fixed toggl.com url matching",
"Smaller fixes and tweaks"
]
},
{
"version": "0.8.2",
"rows": [
"Fixed escaping issues when saving tag",
"Added possibility to know if user has button installed while on toggl.com webpage"
]
},
{
"version": "0.8.1",
"rows": [
"Fixed card coping issue in Trello",
"Updated extension name and description",
"Default tracking reminder time is 60 minutes",
"Improved user data fetching"
]
},
{
"version": "0.8.0",
"rows": [
"Fixed Pomodoro timer sound issues",
"Updated Trello start time link to match Trello styles",
"Added 'Total time tracked' to Trello cards"
]
},
{
"version": "0.7.9",
"rows": [
"Improved error messages text",
"Fixes for Todoist text fetching",
"Smaller bug fixes"
]
},
{
"version": "0.7.8",
"rows": [
"Improved settings managment",
"Show 'Continue latest' option in Tracking reminder",
"Fixed updating extension icon when logging out",
"Added tabs to settings view",
"Unified input fields design in settings",
"Added animation to subsettings open/close",
"Show error message when time entry start fails",
"Fixed Toggl Button rendering in updated gitlab design",
"Added support for BitBucket pull requests",
"Fixes for Assembla updates",
"Improved Todoist description text fetching",
"Fixed edit form clear issue in dropdown",
"Fixed browser autocomplete issue in dropdown"
]
},
{
"version": "0.7.7",
"rows": [
"Fixed continuing latest entry with task from Pomodoro notification",
"Added failsafe for starting websocket",
"Show project color dot in dropdown edit view",
"Added tooltips to toggl logo and email in dropdown",
"Clicking the email address opens profile view in web",
"Focus description when opening edit view in dropdown"
]
},
{
"version": "0.7.6",
"rows": [
"Fixed Settings saving and loading",
"Fixed extension icon updates",
"When hovering setting show additional info",
"Added 'Continue latest entry' button to Pomodoro timer notification"
]
},
{
"version": "0.7.5",
"rows": [
"Added idle detection notification",
"Show description in dropdown timer",
"Show project name in timer and in timer tooltip",
"Show project color bullet in timer"
]
},
{
"version": "0.7.4",
"rows": [
"Use new way to open Options",
"Added forgot password link to login view",
"Added Pomodoro Setting",
"Added support for Draftin",
"Added support for FogBugz",
"Added Bugsnag bug tracker"
]
},
{
"version": "0.7.3",
"rows": [
"Added Toggl Button to context menu",
"16px Icon improvements",
"Fixed Wrike integration",
"Improved font consistency in edit view",
"Fixed Asana start button",
"Converted to Settings view to Options V2",
"Added support for Salesforce"
]
},
{
"version": "0.7.2",
"rows": [
"Fixed popup font consistency",
"Fixed subtask project selection for Asana",
"Fixed Youtrack project name fetch",
"Added action buttons to tracking reminder",
"Added Start timer buttons to Any.do subtasks",
"Don't show deleted projects in dropdown",
"Added usage statistics gathering",
"Added extension version and change log link to Settings view",
"Fixed task dropdown display in popup"
]
},
{
"version": "0.7.1",
"rows": [
"Focus tags dropdown when it's opened",
"Fixed Wunderlist styles",
"Remove active state from link when clicking on another start link",
"Fixed Toodledo start timer link positioning",
"Fixed tasks selector",
"Fixed hour calculation for durations longer than 24 hours",
"Added new google calendar url",
"X on the icon should never be shown when tracking"
]
},
{
"version": "0.7.0",
"rows": [
"Added Edit form to extension popup",
"Added support for Waffle.io",
"Added support for Assembla",
"Fixed Basecamp 'Start timer' link issues",
"Fixed Any.Do description issue",
"Fixed Google Drive 'Start timer' link"
]
},
{
"version": "0.6.11",
"rows": [
"HabitRPG to Habitica",
"Enabled extension options page"
]
},
{
"version": "0.6.10",
"rows": [
"Fixed Teamweek issues"
]
},
{
"version": "0.6.9",
"rows": [
"Added support for Breeze",
"Added support for BamBam",
"Added support for Wrike",
"Added support for Bugzilla",
"Added support for GQueue",
"Fixed issues with Taiga.io ui",
"Fixed issues with Teamweek ui",
"Show running entry description in running popup item tooltip",
"Fixed project name issue in github",
"Added Worksection .net and .eu domains"
]
},
{
"version": "0.6.8",
"rows": [
"Fixed Google Calendar description issue",
"Fixed http and https url support"
]
},
{
"version": "0.6.7",
"rows": [
"Fixed multi workspace issue in project dropdown",
"Added 'Save Tags' placeholder",
"Improved popup menu syncing",
"Improved Login form styles"
]
},
{
"version": "0.6.6",
"rows": [
"Added sorting for tags",
"Added hover titles to project, tag and task selections"
]
},
{
"version": "0.6.5",
"rows": [
"Added support for TestRail",
"Projects grouped by Workspaces and Clients",
"Added 'Start timer' link to Extension icon menu",
"Added running timer to Extension icon menu",
"Added user email to Extension icon menu",
"Wunderlist UI improvements",
"Teamweek domain name fix"
]
},
{
"version": "0.6.4",
"rows": [
"Fixed edit popup position in Basecamp Next"
]
},
{
"version": "0.6.3",
"rows": [
"Fixed setting entry billable if project is billable"
]
},
{
"version": "0.6.2",
"rows": [
"Added support for Flow",
"Added support for Google Calendar",
"Added support for Sprint.ly",
"Added support for Basecamp Classic (basecamphq.com)",
"Improvements for Taiga.io implementation",
"Improvements for Axosoft implementation",
"Don't display reminders when user is not logged in",
"Improved edit popup position calculations",
"Other smaller improvements and fixes"
]
},
{
"version": "0.6.1",
"rows": [
"Fixed issues with non-www toggl.com login",
"Added support for Help Scout"
]
},
{
"version": "0.6.0",
"rows": [
"Added support for Countersoft Gemini",
"Added support for esa.io",
"Added support for drupal.org",
"Fixed Todoist description parsing for links"
]
},
{
"version": "0.5.11",
"rows": [
"Added atlassian.com to support all JIRA versions"
]
},
{
"version": "0.5.10",
"rows": [
"Added support for Axosoft",
"Updated edit form hide button to use ×",
"Fixed Todoist description parsing"
]
},
{
"version": "0.5.9",
"rows": [
"Added support for Taiga.io",
"Added support for HabitRPG",
"Fixes for GitLab",
"Todoist description parse fix"
]
},
{
"version": "0.5.8",
"rows": [
"Fixed updating Toggl Button link",
"Fixed Toggl Button in Zendesk",
"Fixed Asana new task description issue"
]
},
{
"version": "0.5.7",
"rows": [
"Added support for Google mail"
]
},
{
"version": "0.5.6",
"rows": [
"Fixed minimal mode Toggl Button link refreshing"
]
},
{
"version": "0.5.5",
"rows": [
"Fixed too bold permissions",
"Removed OTRS because of too strong permissions"
]
},
{
"version": "0.5.4",
"rows": [
"Grouping projects by workspaces",
"Show client names in project dropdown",
"Show only active projects in dropdown",
"Added tasks dropdown for Pro users",
"Added support for OTRS"
]
},
{
"version": "0.5.3",
"rows": [
"Fixed Todoist description parsing issue"
]
},
{
"version": "0.5.2",
"rows": [
"Removed references to deprecated api",
"Clear selected tags when reopening edit form",
"Update 'Start timer' link when running entry has changed",
"Reworked user sync so that tabs permission can be removed"
]
},
{
"version": "0.5.1",
"rows": [
"Added support for Teamwork",
"Style fixes"
]
},
{
"version": "0.5.0",
"rows": [
"Updated Toggl button position in toodledo",
"Extension icon updating fix",
"UI fixes for different tools"
]
},
{
"version": "0.4.9",
"rows": [
"Fixed invisible project names in dropdown",
"Fixed some minor UI issues"
]
},
{
"version": "0.4.8",
"rows": [
"Fixed minor UI issues",
"Removed Font Awesome because issues with some tools"
]
},
{
"version": "0.4.7",
"rows": [
"Added Font Awesome icons"
]
},
{
"version": "0.4.6",
"rows": [
"New design for post start popup",
"Fixed Toggl Button in Any.do",
"Added Youtrack 6 support",
"Fixed settings save issue",
"Added duration mode support"
]
},
{
"version": "0.4.5",
"rows": [
"Added dayly automatic sync",
"Added sync menu item"
]
},
{
"version": "0.4.4",
"rows": [
"Added support for Toodledo",
"Fixed toggl-button's location for Teamweek's new design",
"Post start popup is always fully visible",
"Post start popup form style fixes"
]
},
{
"version": "0.4.3",
"rows": [
"Added 'Remind me to track' setting",
"Added tags selection to post start popup"
]
},
{
"version": "0.4.2",
"rows": [
"Added support for Wunderlist",
"Added support for Trac",
"Added websocket support",
"Improved icons",
"Added Settings view",
"Position and z-index fix for post start popup"
]
},
{
"version": "0.4.1",
"rows": [
"Fixed packaging issue"
]
},
{
"version": "0.4.0",
"rows": [
"Convert from Page extension to Browser extension",
"Added post Start popup",
"Added Browser extension popup",
"Added Login and logout functionality",
"Added high resolution icons",
"Added offline/online and running/not running indicators to extension icon"
]
},
{
"version": "0.3.9",
"rows": [
"Github - fix content script for new issues layout",
"Todoist - add button after the notes and strip tags"
]
},
{
"version": "0.3.8",
"rows": [
"Added support for Todoist",