-
Notifications
You must be signed in to change notification settings - Fork 202
/
Copy pathchanges.yaml
1183 lines (1093 loc) · 44.1 KB
/
changes.yaml
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
---
releases:
- version: 1.11.0-rc.1
date: 2025-01-07T17:49:37+01:00
short: |-
Workrave 1.11.0-rc.1 has been released.
changes:
- Fix issue where a different window is focused after a break warning.
- version: 1.11.0-beta.16
date: 2024-11-19T20:01:18+01:00
short: |-
Workrave 1.11.0-beta.16 has been released.
changes:
- updated tamil Translation (#581, TamilNeram)
- Fix GNOME extension (#582, J. J. Ramsey)
- version: 1.11.0-beta.15
date: 2024-10-13T20:47:29+02:00
short: |-
Workrave 1.11.0-beta.15 has been released.
changes:
- Follow OS dark/light mode on Windows (#529)
- Fix dark mode on Windows (#537)
- Fix Linux crash (#575, ValdikSS)
- Fix translations in the exercises (#574)
- Fix link to Workrave's website in about window (#573)
- Fix issues where menu items could not be selected on Windows
- Fix update applet icon for first start (#578, klim-iv)
- Fix crash on wlroots compositors when break starts (#550,#552,#553,#554, Kirill Primak)
- Updated Tamil translation (#579, TamilNeram)
- Updated French translations (#545, WedoneOfficiel)
- Updated Indonesian translation (#560, Andika Triwidada)
- Enable application autostart across all Linux desktop managers (#548, Jon Petrissans)
- Python scripts for Waybar and Yambar applets (557,#558,#559,#561,#562, J. J. Ramsey)
- Reworked workrave-break-info.py into something that can be used as a Python module (#563, J. J. Ramsey)
- Beta channel now also receives release candidates and final releases
- version: 1.11.0-beta.14
date: 2024-06-15T14:29:23+02:00
short: |-
Workrave 1.11.0-beta.14 has been released.
changes:
- Start workrave after automatic update on Windows
- Save statistics before starting the automatic update
- version: 1.11.0-beta.13
date: 2024-06-11T12:30:10+02:00
short: |-
Workrave 1.11.0-beta.13 has been released.
changes:
- Improved handling of hibernate/suspend (#539,#540)
- version: 1.11.0-beta.12
date: 2024-03-21T19:48:51+01:00
short: |-
Workrave 1.11.0-beta.12 has been released.
changes:
- Fix installer integrity check
- version: 1.11.0-beta.11
date: 2024-03-19T19:57:38+01:00
short: |-
Workrave 1.11.0-beta.11 has been released.
changes:
- Support status icons using the StatusNotifierItem protocol (#447)
- Fix GNOME Shell 46 support (#532)
- Allow compilation without Wayland support (#523)
- Fix Wayland on KDE6 (#523)
- Fix force X11 option (#525)
- Prevent focus stealing on Windows when break window is closed
- version: 1.11.0-beta.10
date: 2024-02-02T18:57:28+01:00
short: |-
Workrave 1.11.0-beta.10 has been released.
changes:
- Fix issue where after installing an update, some files got removed after the first reboot.
- Fix issue where the main window is reopened after the screen is unlocked.
- Fix issue where the rest break window is opened below other Workrave windows.
- Add activity monitoring for KDE on Wayland
- Improved Wayland support on KDE (and other Wayland compositors that support the Layer Shell protocol)
- version: 1.11.0-beta.9
date: 2023-12-01T15:52:20+01:00
short: |-
Workrave 1.11.0-beta.9 has been released.
changes:
- Update Brazilian Portuguese translation (#512, Paulo Haddad Martim)
- Fix build on Ubuntu 20.04 and 22.04.
- version: 1.11.0-beta.8
date: 2023-11-26T18:49:51+01:00
short: |-
Workrave 1.11.0-beta.8 has been released.
changes:
- Workrave now always shows the exercises during a restbreak on the primary monitor
- version: 1.11.0-beta.7
date: 2023-08-14T22:34:36+02:00
short: |-
Workrave 1.11.0-beta.7 has been released. Note: automatic update from beta.6 is broken.
Please download the installer from GitHub (https://github.com/rcaelers/workrave/releases)
changes:
- Fix download of automatic update
- Support HTTP proxies for automatic update downloads
- Support Unicode characters in the automatic update changelog
- |-
Updated Translations:
- Created Tamil translation (#498, TamilNeram)
- Updated Italian translation (#496, albanobattistella)
- version: 1.11.0-beta.6
date: 2023-07-03T20:25:24+02:00
short: |-
Workrave 1.11.0-beta.6 has been released.
changes:
- Fix preferences icons on Linux
- Improve High-DPI icons on Windows
- Support GNOME Shell 44 (#471, Jeremy Bicha)
- Support GNOME Shell 44 in combination with Gtk 4 (#487)
- On Windows, Workrave now raises the main window when clicking on the pinned application icon.
- |-
Bug fixes:
- Fix "Start Workrave on logon" (#462)
- Fix Assertion 'GDK_IS_DISPLAY (display)' failed (#472)
- Several build fixes (#468, #469, #473, #474, wojnilowicz)
- Status window is no longer displayed when not configured (#444)
- |-
Updated Translations:
- Updated Polish translation (#465, ChuckMichael)
- Updated Italian translation (#489, #490, albanobattistella)
- Updated Polish translation (#484, Hanna Kraska)
- Updates Spanish translation (#494, Cristian Martínez)
- version: 1.11.0-beta.5
date: 2023-01-12T17:29:18+01:00
short: |-
Workrave 1.11.0-beta.5 has been released.
changes:
- Added preferences for the experimental auto-update feature
- Preliminary support for custom user defined exercises
- Redesigned the preferences dialog
- |-
Bug fixes:
- Fixed language selection on Windows
- Fixed special characters in the Windows status icon menu
- Fixed issue where sound could not be disabled (#443)
- Fixed issue where the status window could not be disabled (#444)
- The installer now removes files no longer required (#446)
- version: 1.11.0-beta.2
date: 2022-11-08T19:35:00+01:00
short: |-
Workrave 1.11.0-beta2 has been released.
changes:
- Updates Polish translation (#423 by ChuckMichael)
- Update Dutch translation (#437 by WKobes)
- Support GNOME Shell 43 (#430 by Jeremy Bicha)
- Add option to force the use of the X11 Gtk backend on Wayland
- Experimental auto-update feature
- |-
Bug fixes:
- Fix 'Lock screen' functionality from rest break window
- Fix showing natural break window when screen is unlocked
- version: 1.11.0-alpha.3
date: 2022-06-30T16:53:59+02:00
short: |-
Workrave 1.11.0-alpha3 has been released.
This release fixes the GNOME shell applet.
changes:
- Fix GNOME shell applet loading on Ubuntu Focal
- version: 1.11.0-alpha.2
date: 2022-05-31T17:52:34+02:00
short: |-
Workrave 1.11.0-alpha2 has been released.
changes:
- Networking suport was removed
- Focus assist settings moved from menu to preferences
- The menus are no longer accessible during a break (#394 by 1Jesper1)
- |-
Bug fixes:
- Fix GNOME shell applet on GNOME 42 (#396)
- The installer will ask for a reboot if in-use files were overwritten
- The installer will terminate Workrave when it is running
- The application icon is now properly displayed
- The break warning window no longer disappears when moving aside
- |-
Translations:
- Updated Simplified Chinese translation (#391 by sr093906)
- Updated Italian translation (#403 by albanobattistella)
- version: 1.11.0-alpha.1
date: 2022-02-27T11:02:33+01:00
short: |-
Workrave 1.11.0-alpha1 has been released.
Workrave 1.11 has received limited testing and may not be as stable as Workrave 1.10.
changes:
- Major internal code cleanup and code modernization.
- Initial (incomplete) port to macOS using Qt6
- The default sound theme was changed to the "Subtle" theme (#362)
- You can now change the operation mode for a limited amount of time (#98,#305)
- A portable version is now available for Windows and Linux (#180)
- Workrave now follows the XDG basedirectory specification (#192)
- The Windows version is now 64 bit (#295)
- Workrave can now automatically change the operation mode based on Windows Focus Assist (#255,#226)
- A dark UI theme is now supported on Windows (#214)
- |-
Bug fixes:
- Fixed Windows system tray menu that would not always properly open (#373)
- Fixed vertical positioning of GNOME shell applet (#356)
- GGOME shell applet is now compatible with GNOME up to version 42 (#342, #352, #355)
- DPI scaling with multiple monitor has been fixed (#308, #315)
- Fixed the description of the backward shoulder stretch exercise (#354)
- Add version number to installer to support Microsoft's Windows Package Manager (winget) (#349, #353 by Kaleb Luedtke)
- |-
Translations:
- Complete overhaul of Simplified Chinese translation (#385 by sr093906)
- Updated Hebrew translation (#361 by Omer I.S.)
- Updated Italian translation (#359 by albanobattistella)
- Updated Persian translation (#358 by MSKF)
- Updated Catalan translation (#338 by Jordi Mallach)
- and more... (the final 1.11 release will have a more complete list of changes)
- version: 1.10.50
date: 2022-04-01T14:35:10+02:00
short: |-
Workrave 1.10.50 has been released. This release brings a number of small improvements.
changes:
- The "Restbreak now" button in the main window no longer responds to keyboard (#368)
- Allow installation on Windows without administrator rights.
- Fix vertical alignment of GNOME shell applet (#356)
- Support GNOME Shell 42 (#396)
- Restore support for Windows Vista and up (#367)
- The 'Backward shoulder stretch' exercises now plays a sound twice matching the description (#354)
- version: 1.10.49
date: 2022-01-05T15:05:19+01:00
short: |-
Workrave 1.10.49 has been released. This release adds support for GNOME Shell 41.
changes:
- Adds support for GNOME Shell 41 (#342, Timo Jyrinki)
- Inno Setup improvement (#353, Kaleb Luedtke)
- version: 1.10.48
date: 2021-08-03T17:26:00+02:00
short: |-
Workrave 1.10.48 has been released. This release fixes the GNOME Shell applet on GNOME Shell 3.30 and older.
changes:
- Fixed GNOME Shell applet on Ubuntu 18.04 (#281)
- version: 1.10.47
date: 2021-07-26T14:20:30+02:00
short: |-
Workrave 1.10.47 has been released. This release fixes an number of bugs and add support for GNOME Shell 40.
changes:
- Fixed a crash of the GNOME Shell applet (#281)
- Adds support for GNOME Shell 40 (#288)
- Fixed issue where the installer would fail when installing as system user (#291)
- Fixed incorrect disabling of postpone/skip button (#301)
- Warn if operation mode is not 'normal' after unlocking the screen (Windows only for now)
- version: 1.10.45
date: 2021-03-27T14:19:02+01:00
short: |-
Workrave 1.10.45 has been released. This release adds a new sound theme and several small improvements.
changes:
- |-
Micro breaks without a postpone button could be postponed by starting a
rest break while the break prompt window was visible and then clicking
postpone in the rest break window. The postpone button is now disabled
when the micro break is overdue, and the maximum number of break prompts
was reached.
- A new sound theme calls 'Bells' has been added (#225, Pieter De Decker)
- Added support for High-DPI displays in the Windows Applet.
- The Windows applet now correctly enforces a minimum size (#252)
- Initial support for icon themes.
- |-
Fixes:
- Fixed build issue with libayatana-indicator3
- Fixed issue where Workrave would show 2 status icons on Linux (#258)
- Fixed a deprecation warning in the Gnome Shell applet (#251)
- The cinnamon applet is no longer bouncing up and down (#253)
- Fixed issue where the current language was always "Unrecognized language"
- Fixed issue where activity monitoring would stop after restarting Gnome Shell
- Fixed issue that caused the main window to disappear (#244, #259)
- |-
Translation updates:
- Updated Chinese translation (#232, wintertee)
- Updated French translation (Darialalala)
- Updated Dutch translation (Matthias Huijgen)
- Fixed typo in the Italian translation (#234, albanobattistella)
- version: 1.10.44
date: 2020-05-09T12:52:50+02:00
changes:
- |-
Update Italian translation (Albano Battistella)
- |-
Support libayatana-indicator3 (Kentaro Hayashi/Rob Caelers)
- |-
Fixed issue on Gnome where Workrave would not detect that the user is
idle (#181)
- version: 1.10.43
date: 2020-04-13T14:43:20+02:00
changes:
- |-
Fix issue where a break window could disappear after a few seconds.
- |-
Fix issue where the Gnome Shell applet would be reload on Ubuntu 18.04.
- |-
Update Traditional Chinese translation (Yuenfu Chiu)
- version: 1.10.42
date: 2020-04-10T15:14:17+02:00
changes:
- Fix Gnome Shell applet compatibility issue with Ubuntu 18.04.
- version: 1.10.41
date: 2020-04-05T18:09:55+02:00
changes:
- |-
Fix incomplete Gnome Shell applet menu with latest version of Gnome
Shell
- version: 1.10.40
previous_version: 1.10.37
date: 2020-04-04T17:45:06+02:00
changes:
- Fix creation for source tarball.
- version: 1.10.39
date: 2020-04-04T16:28:37+02:00
changes:
- |-
When it is time to take a micro break, Workrave may start a rest break
instead. This happens when the rest break would start within 30 seconds
of the micro break. If the postpone or skip buttons are disabled on the
micro break, they will be temporarily disabled on the rest break window.
A small progress bar indicates how long the buttons are disabled.
Previously, Workrave would restart the micro break when pressing the
skip or postpone button.
- |-
Support applets on Gnome 3.35.1+ using libgnome-panel (Alberts
Muktupāvels).
- Added Indonesian translation (Andika Triwidada).
- Fixed issue where Workrave was not properly terminated on reinstall.
- version: 1.10.38
date: 2020-03-20T16:34:00+02:00
changes:
- Show operation mode in Gnome applet.
- Fixed focus issue on rest break window that caused muted (grey) text.
- version: 1.10.37
previous_version: 1.10.34
date: 2020-03-17T18:30:15+01:00
changes:
- Add Ubuntu 19.10 / 20.04 to Workrave PPA
- version: 1.10.36
date: 2020-03-16T20:44:08+01:00
changes:
- Update Irish translation (Seanán Ó Coistín)
- new Portuguese translation (pmraps)
- Non-blocking break windows are now centered on Wayland/mutter (#163)
- Support display scaling
- version: 1.10.34
date: 2019-06-04T20:29:00+02:00
changes:
- Ubuntu Trusty and Xenial build fixes.
- version: 1.10.33
date: 2019-06-02T16:27:57+02:00
changes:
- Packaging fixes.
- version: 1.10.32
date: 2019-06-02T14:53:40+02:00
changes:
- |-
Fixed a bug that caused high CPU load when the main window was open for
a long time.
- |-
\[internal change\] Python 2 is no longer required for building Workrave.
The Python2-only Cheetah dependency has been replaced by Jinja 2
(python3-jinja2). Additionally, Boost >= 1.52 is now required
(libboost-dev).
- version: 1.10.31
date: 2019-03-26T21:13:04+01:00
previous_version: 1.10.23
changes:
- Add GetTimerRemaining dbus function.
- version: 1.10.30
date: 2019-03-24T19:48:28+01:00
changes:
- Prevent "Workrave wants to inhibit shortcuts" on Wayland
- Fix timer bar text color under Wayland
- Do not dim text in time bar when window is not focused.
- version: 1.10.29
date: 2019-03-21T22:47:10+01:00
changes:
- Fix PPA upload
- version: 1.10.28
date: 2019-03-21T21:36:38+01:00
changes:
- Fix PPA upload
- version: 1.10.27
date: 2019-03-21T19:52:21+01:00
changes:
- Fix menu in Cinnamon applet
- Fix bouncing Cinnamon applet
- version: 1.10.26
date: 2019-03-20T21:42:31+01:00
changes:
- Fix Gnome Shell applet for Gnome Shell v3.30
- Reduce padding in timer window
- version: 1.10.25
date: 2019-03-19T17:27:56+01:00
changes:
- Packaging fixes
- version: 1.10.24
date: 2019-03-18T20:44:13+01:00
changes:
- Fix AppStream metadata (Balló György)
- Update Slovak translation (Jose Riha)
- version: 1.10.23
date: 2018-09-30T22:33:43+02:00
changes:
- Packaging fixes
- version: 1.10.22
date: 2018-09-30T18:04:46+02:00
changes:
- Fix size of Xfce applet
- version: 1.10.21
date: 2018-09-09T12:59:19+02:00
changes:
- Support MATE applet with Gtk+3
- Support Xfce applet with Gtk+3
- version: 1.10.20
date: 2017-11-06T16:22:18+01:00
changes:
- Fix activity monitoring on non-Gnome desktop environments
- version: 1.10.19
date: 2017-10-27T16:00:37+02:00
changes:
- Fix crash because of missing setting
- Fix Gnome Shell applet
- version: 1.10.18
date: 2017-10-23T20:10:42+02:00
changes:
- Support Gnome Shell 3.24/26
- macOS compilation fixes (Tom Parker)
- version: 1.10.17
date: 2017-09-03T04:52:32+02:00
changes:
- Update Czech translation (Pavel Bborecki)
- version: 1.10.16
date: 2016-09-15T16:51:21+02:00
changes:
- Mark applet as compatible with GNOME 3.22 (Francois Marier)
- Fix text alignment time bar.
- Fix resuming microbreak after postponing restbreak
- version: 1.10.15
date: 2016-05-11T18:14:20+02:00
changes:
- Fix crash when no shutdown/hibernate options are available.
- Updated traditional Chinese translation (Kevin Kuan)
- version: 1.10.14
date: 2016-05-01T12:54:25+02:00
changes:
- |-
Fixed issue where pressing the down key during a restbreak would lock
the screen (bug #1242)
- version: 1.10.13
date: 2016-04-27T13:01:08+02:00
changes:
- |-
Use button instead of combobox if only 'Lock' is available in restbreak
window (pedantic-git)
- Update german translation (rsnitsch)
- Support Gnome Shell 3.20 (Francois Marier)
- version: 1.10.12
date: 2016-03-27T13:38:09+02:00
changes:
- Updated Catalan translation (Jordi Mallach)
- Fixed Gnome Shell applet (Amir Mohammadi)
- version: 1.10.11
date: 2016-01-07T19:35:00+01:00
changes:
- |-
Improved security of network protocol.
NOTE: this is a backward incompatible change. This version of Workrave
will no longer connect to older Workrave versions.
- Minor improvements
- version: 1.10.9
date: 2015-12-12T14:10:11+01:00
changes:
- UI tweak
- version: 1.10.8
date: 2015-10-24T11:53:10+02:00
changes:
- |-
Extra statistics:
- Weekly usage statistics (Rob Caelers)
- Monthly usage statistics (Denis Nikolaenko)
- Fix gtkmm 3.18 compilation (Javier Tia, Denis Nikolaenko)
- Support Gnome 3.16
- version: 1.10.7
date: 2015-03-26T18:58:00+01:00
changes:
- |-
Update translations:
- Spanish (Fco. Javier Serrador)
- version: 1.10.6
date: 2014-12-24T18:29:26+01:00
changes:
- Improved screen lock and shutdown in break window (Mateusz Jończyk)
- Add suspend/hibernate option to break window on Linux (Mateusz Jończyk)
- Gnome applet updated to work with latest Gnome 3 flashback (Dmitry Shachnev)
- Applets added for Cinnamon, XFCE and MATE.
- |-
Bug fixes:
- Break window was transparent when blocking mode was set to 'input and screen'
- Text background in exercises window was black, making the text unreadable.
- In some cases the timers were shown twice in the panel
- version: 1.10.5
date: 2014-08-15T19:31:40+02:00
changes:
- |-
Updated translations:
- Danish (Frederik Svarre)
- Updates Desktop files (Francois Marier, Mike Manger)
- version: 1.10.4
date: 2014-04-27T14:36:12+02:00
changes:
- Fix gnome-shell applet for Gnome 3.12.
- version: 1.10.3
date: 2014-02-11T20:39:55+01:00
changes:
- |-
Bug fixes:
- bug 1113: Unity Indicator icon doesn't change when in suspended mode
- bug 1114: Closing timer window closes program.
- bug 1120: make the GNOME shell extension compatible with GNOME 3.8
- bug 1136: Status window always appears on startup
- bug 1137: Make Workrave start up optional
- bug 1146: dconf changes not honored for /org/workrave/general/operation-mode
- bug 1147: Suspend timer during screensaver
- bug 1148: Double deallocation causes crashes during Workrave shutdown
- Fix Workrave icon on Unity
- Fix size of prelude window
- Fix size of unity indicator timebar
- Fixed compatibility with gnome-shell 3.10
- Allow Gnome Shell status icon to be enabled/disabled
- version: 1.10.1
date: 2013-06-12T18:41:04+02:00
changes:
- Fix uninstall on Windows.
- version: 1.10.0
date: 2013-01-13T11:25:29+01:00
changes:
- |-
Split "show 'postpone' and 'skip'" checkbox into two checkboxes. (Egbert
Teeselink)
- |-
Add the capability to delete all stored statistics (Ray Satiro)
- |-
Workrave now supports DBus on window.
DBus can be used to control Workrave by an external program.
- |-
Workrave now offers a Gnome 3 applet. Applets for both Gnome 3 classic
and the Gnome shell are available.
- |-
Workrave now offers an application indicator (applet) in Unity.
- |-
On Windows, Workrave does not stay in the 'suspended' mode after
resuming from hibernate/sleep.
- |-
On Unix, Workrave adds a new activity monitoring method that can be
used instead of the XRECORD based monitoring. XRECORD monitoring
appear be causing X crashes for some people
(See http://issues.workrave.org/show_bug.cgi?id=1066)
- |-
Infrastructure update. Workrave now supports:
- Gtk3/Gtkmm3 (only on Gnome 3; Gtk2/Gtkmm2 is still used on Gnome 2)
- Configuration in GSettings (instead of GConf)
- GIO based DBus (instead of freedesktop.org DBus)
- |-
Obsolete KDE3 support has been dropped.
- |-
Translation updates:
- Mykola Rykov translated Workrave into Ukrainian.
- Ivan Barkovic translated Workave into Croatian.
- Moein Gh translated Workave into Persian.
- Jyri-Petteri Paloposki translated Workrave into Finnish
- Goran Maričić translated Workrave into Serbian.
- Igor Zinovik updated the Russian translation.
- Gabor Kelemen updated the Hungarian translation.
- Alick Zhao updated the Chinese translation.
- Andrey Bondrov updated the Russian translation.
- Paweł Szerszon updated the Polish translation.
- Plus many small fixes and improvements (Ray Satiro, Rob Caelers)
- version: 1.9.4
date: 2011-03-24T17:42:45+01:00
changes:
- |-
The automatic start of a restbreak when the screen is locked is now
configurable.
- |-
Fixed crash when the 'mute all audio during breaks' option is enabled.
- |-
The skip and postpone button now have keyboard shortcuts (Alt-S and
Alt-P in the English version).
- |-
Fixed issue where Workrave remains suspended after hibernate/standby on
Window 7.
- |-
Fixed issue where the reading mode was reset after changing settings.
- |-
On Windows, Workrave shows a reminder balloon when Workrave starts up in
suspended or quiet mode.
- |-
The (un)installer now automatically shuts down Workrave before
(un)installation.
- |-
It is no longer possible to disable both the notification icon and the
main window.
- version: 1.9.3
date: 2010-12-11T18:10:11+01:00
changes:
- |-
Seanán Ó Coistín translated Workrave into Irish.
- |-
김재용 translated Workrave into Korean.
- |-
Workrave now stops all timers when the screen is locked. When the screen
in unlocked, a natural restbreak is started.
- |-
Audio muting improvements:
- Audio is now muted after the start break sound is played.
- Audio is now unmuted when the user becomes active after the break has
ended instead of immediately after the break ended.
- |-
By default, the RECORD extension is now mandatory on X windows systems.
- |-
Bug fixes:
- Fixed crash on Windows systems without audio installed.
- Fixed translucency of Deskband applet on Windows 7/Vista.
- Fixed Reading mode menu entry in Windows and Gnome applet.
- Networking now supports IPV6 addresses.
- Activity monitor should now filter out mouse jitter.
- Fixed monitoring of (Wacom) tablets.
- version: 1.9.2
date: 2010-08-29T10:08:38+02:00
changes:
- |-
Reading mode
The activity insensitive breaks have been replaced by a 'reading mode'.
This mode can easily be activated from the menu.
- |-
Workrave can now mute all audio during breaks.
- |-
Workrave now properly remembers the Window hide/show notification icon
settings.
- |-
The Workrave applet is functional again on Windows 7
- |-
Updated translations:
- Brazilian Portuguese
- Catalan
- Hungarian
- Hebrew
- Polish
- Many bug fixes.
- version: 1.9.1
date: 2009-10-24T10:16:12+02:00
changes:
- |-
Updated translations:
- new Romanian translation (Alexandru Szasz)
- new Estonian translation (Marko Väljaots)
- Removed extra "2" character in the Hungarian translation (Márton Németh)
- Update of Hungarian translation
- Update of Swedish translation
- |-
Many bug fixes. Including:
- Fix saving the username in the networking preferences (Francois Marier)
- Fix KDE compilation errors (Stanislav Brabec)
- Fixed issue where autostart settings on Windows was not stored
- Fixed crashes when trying to add a host in networking preferences
- User activity is now recognized on Xorg 1.6.0
- Fixed color in dark UI themes on Gnome.
- Workrave no longer shows two icons on GNOME notification panel
- Fixed tray icon tranparency
- Fixed issue on Vista where the break window is not on top of other windows (Ray Satiro)
- Improved volume control on Windows
- version: 1.9.0
date: 2008-07-21T11:01:33+00:00
changes:
- |-
Many small bugfixes
- |-
Fixed transparency of tray icon on Linux.
- |-
New alternate activity moniting for Windows (Ray Satiro)
- |-
Additional tooltips (Ray Satiro)
- |-
Improved 64 bit support (Ray Satiro)
- |-
Improved Vista support (Ray Satiro)
- |-
Exercises are now randomized
- |-
On Windows, the language can now be selected in the preferences
- |-
The option 'Start Workrave when windows starts' has been added to the
preferences
- |-
Extended DBUS support on Unix
- |-
Initial OSX port
- |-
Networking supports can now be enabled without accepting incoming
connections from other Workraves (Francois Marier)
- |-
Sounds:
- A sound has been added that indicates a next step in the exercise.
- The volume can now be configured
- All sounds can now be configured
- A new sound theme has been added (Ruairi Fullam)
- version: 1.8.5
date: 2007-09-16T09:59:37+00:00
changes:
- |-
Lots of changes by Ray Satiro.
- |-
Task manager is never blocked by Workrave (Ray Satiro)
- |-
Workaround for focus loss on Vista (Ray Satiro)
- |-
Vanja Cvelbar translated Workrave into Slovenian.
- |-
Many bug fixes, the most visible ones:
- Fixed breaks that have 'suspend timer when inactive' disabled (Ray Satiro)
- Improved Windows responsiveness under high load. (by reverting a 1.8.4 change)
- Mode menu fixed.
- Gnome applet no longer 'hangs'.
- Gnome applet no longer crashes Workrave.
- Fixed crashes during startup on Windows.
- Fixed 'end-of-microbreak' sound.
- Fixed bug in multi-head support where Workrave showed multiple windows on a single screen.
- Fixed locking on Gnome with xscreensaver installed (Philipp Kern)
- version: 1.8.4
date: 2007-03-04T19:18:53+00:00
changes:
- |-
Eraldo Girardi translated Workrave into Italian.
- |-
Better support for vertical applets on Unix.
- |-
Tao WEI translated Workrave into simplified Chinese.
- |-
Peter Tuharsky translated Workrave into Slovak.
- |-
Prokopis Prokopidis translated Workrave into Greek.
- |-
The status window used to appear empty, only to be resized and filled
with the timers shortly thereafter. Now it appears right away in the
proper size.
- |-
The operation mode (normal/quiet/suspended) now persists across Workrave
sessions.
- |-
Enver Altin translated Workrave into Turkish.
- |-
Masanobu Yokota translated Workrave into Japanese.
- |-
Ivan Dimov translated Workrave into Bulgarian.
- |-
ORY Mate translated Workrave into Hungarian.
- |-
Fixed KDE sound events (Phuah Yee Keat)
- |-
Fixed Gnome sound events
- |-
Fixed negative mouse usage when date is changed.
- |-
Fixed text color on Gnome themes with dark backgrounds (i.e. high
contrast inverse)
- |-
Gnome applets now support transparency.
- |-
The 'datadir' configuration option in workrave.ini can now be a relative
path:
```
[general]
datadir=.\\Data
```
This will store all Workrave data in the 'Data' directory below the
Workrave root directory. (Note the double backslash)
- |-
Daily limit now properly resets when hibernated.
- version: 1.8.3
date: 2006-05-12T22:04:47+00:00
changes:
- |-
Daniel Nylander translated Workrave into Swedish.
- |-
Jordi Mallach translated Workrave into Catalan.
- |-
Support for storing configuration in a .ini file This feature can be
enabled by creating an empty 'workrave.ini' file in '~/.workrave' (on
Unix) or in 'c:\Program files\Workrave\etc' (on Window, assuming
Workrave is installed in this directory)
- |-
Support for configuring the data storage directory. Add the following
two lines to your workrave.ini
```
[general]
datadir=C:\\Workrave\\Data
```
This feature can be used to run Workrave from an USB memory stick. Note:
On Windows, you have to use double backslashes like in the example
above!
- |-
Support for Gnome screen saver added (Matt Zimmerman).
- |-
Workrave no longer consumes 100% CPU is if a break is started while the
screen is locked.
- |-
The applet popup menu is now accessible when all timers hidden.
- |-
Fix czech translation (Jiri Palecek).
- |-
Fixed a bug that could cause breaks to stop running when 'suspend timer
while inactive' was disabled.
- version: 1.8.2
date: 2006-01-28T14:42:00+00:00
changes:
- |-
Fixed a crash when a third party gtk runtime is used.
- |-
Fixed bug that caused status windows to be disabled when the microbreak
timer was hidden.
- |-
Fixed translations.
- |-
Better hibernate/standby support on Unix.
- |-
System tray menu on Windows now disappears when focus is lost.
- version: 1.8.1
date: 2006-01-28T14:42:00+00:00
changes:
- Fixed a crash when blocking mode is set to 'none'
- version: 1.8.0
date: 2005-06-29T13:59:00+00:00
changes:
- |-
Jon Otegi translated Workrave into Basque.
- |-
Artūras Šlajus translated Workrave into Lithuanian.
- |-
Morten Lunde translated Workrave into Norwegian.
- |-
Juraj Kubelka translated Workrave into Czech.
- |-
Haggai Eran translated Workrave into Hebrew.
- |-
Workrave now gives additional feedback when becoming active during a
break by flashing the break window border.
- |-
Workrave now uses the system tray icon to visualize the current mode
(normal, suspended or quiet).
- |-
Added "Restbreak now" button to microbreak window.
- |-
KDE improvements. Workrave now has a native KDE applet and supports KDE
sound events.
- |-
Decent tooltips for Workrave system tray icon.
- |-
Miscellaneous distribution improvements.
- version: 1.6.2
date: 2004-07-13T20:52:28+00:00
changes:
- |-
Added a Brazilian Portuguese translation, thanks to Claudio Ferreira
Filho!
- |-
Workrave now respects the "gtk-button-images" property.
- |-
Upgraded GTK runtime to version 2.4, fixing some minor UI quirks.
- |-
Fixed some high-profile bugs, especially activity monitoring problems
when running X.
- version: 1.6.1
date: 2004-05-13T18:43:07+00:00
changes:
- |-
A bug was introduced in version 1.6.0 which could cause the status
window to disappear. Version 1.6.1 is only a minor bug fix release that
addresses this problem.
- version: 1.6.0
date: 2004-04-30T21:21:35+00:00
changes:
- |-
Workrave has been translated into Chinese thanks to Rex Tsai, into
Russian thanks to Sergey Kirkinsky, and into French thanks to Thomas
Basset and Benjamin Siband.
- |-
The explanation of an exercise is now scrollable, if it does not fit
onscreen.
- |-
The Windows version now includes a taskbar applet version of the status
window. After installation of Workrave, right click your taskbar and
select "Workrave" from the list of toolbars.
- |-
Timers can be configured to ignore activity.
- |-
Bloat removal: removed the "Resets at" option from the daily limit panel.
- |-
Exercises are no longer read at program startup, and are released from
memory when not needed anymore.
- |-
Terminology: we now use the term "micro-break" instead of "micro-pause".
- |-
When block mode "Block all" is used, we display the break window on top
of your current desktop background (wallpaper), instead of on a
semi-transparent screen snapshot.
- |-
Fixed screen locking on X11: previously only xlock was detected and used
without passing a display parameter. Now, the proper screen lock command
is invoked on the right display. For example, if KDE is detected its
kdesktop_lock is executed.
- |-
High-profile bug fixes (Windows): activity monitoring when working in
Exceed has been restored, and ZoneLab interaction problems (hangups)
have been corrected.
- version: 1.4.1
date: 2003-11-03T20:32:00+00:00
changes:
- |-
Replaced the "Block input" setting (which was available per break) by a
global "Block mode" setting, located in the GUI preferences. The
available block modes are "None" (NEW: no input is blocked and break
windows have a title bar and can be dragged), "Block input" (blocks
input, break windows are fixed), "Block all" (NEW: blocks input and