forked from KDE/rsibreak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
11193 lines (7950 loc) · 348 KB
/
ChangeLog
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
commit 57598faed1a739fb15e0f17968122b0bb2275c2b
Author: Albert Astals Cid <aacid@kde.org>
Date: Mon Aug 31 00:08:18 2015 +0200
Remove the show timer reset settings option
People can just configure the notifications as they wish
src/rsibreak.notifyrc | 4 ++--
src/rsiwidget.cpp | 7 -------
src/rsiwidget.h | 1 -
src/setupgeneral.cpp | 27 ---------------------------
src/setupgeneral.h | 3 ---
5 files changed, 2 insertions(+), 40 deletions(-)
commit 84a4ff511ab9dd7b164d539cae0c67f46f764b13
Author: Albert Astals Cid <aacid@kde.org>
Date: Mon Aug 31 00:08:07 2015 +0200
remove \n
src/setupmaximized.cpp | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
commit 5c3b15d7cbc9981f46023e79aadd0567616caa56
Author: Albert Astals Cid <aacid@kde.org>
Date: Sun Aug 30 23:49:41 2015 +0200
Various coding fixes
* Remove rsibreakui.rc, was unused
* Remove hability for user to trigger a break via dbus
* Move checking if the patience popup is enabled to the timer and
not the popup itself
This makes the non popup scenario work better since patience is
not taken into account
* Remove the m_ignoreIdleForTinyBreaks was wrongly named, it did
actually define if to
take into account activity while the patience popup is enabled,
but it only makes sense to
so i've removed the setting altogether
* Fixed so that if you have activity when the patience has run out
you always get the full
break time
* Removed the hability of enablign resetting timers after idle,
it only makes sense to use it
* Exit the timer thread properly when changing from idle to no idle
and viceversa
* Only enable the patience popup section on the settings if using
the activity based timer
* Some wording improvements on the settings
src/main.cpp | 1 -
src/org.rsibreak.rsiwidget.xml | 4 -
src/rsibreakui.rc | 8 --
src/rsidock.cpp | 5 -
src/rsidock.h | 7 --
src/rsirelaxpopup.cpp | 4 -
src/rsirelaxpopup.h | 1 -
src/rsitimer.cpp | 226
++++++++++++-----------------------------
src/rsitimer.h | 40 ++------
src/rsiwidget.cpp | 2 +-
src/rsiwidget.h | 7 --
src/setup.cpp | 3 +
src/setupgeneral.cpp | 59 +++--------
src/setupgeneral.h | 6 +-
src/setupmaximized.cpp | 54 ++++++----
src/setupmaximized.h | 3 +
src/setuptiming.cpp | 8 +-
17 files changed, 135 insertions(+), 303 deletions(-)
commit f3db162f816fca416f83c8379f22035121757475
Author: Albert Astals Cid <aacid@kde.org>
Date: Thu Aug 20 01:15:19 2015 +0200
Fix porting bug
src/setupmaximized.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit f896f388664dfa4837391d26ad8aa26420380eba
Author: Albert Astals Cid <aacid@kde.org>
Date: Thu Aug 20 01:10:40 2015 +0200
Kill mainWidget we don't need it
src/rsidock.cpp | 2 --
1 file changed, 2 deletions(-)
commit 2d904c6451174cc011fa307654021aa6f4c4063d
Author: Albert Astals Cid <aacid@kde.org>
Date: Thu Aug 20 01:08:40 2015 +0200
Don't set the spacing, let the style be itself
src/rsistatwidget.cpp | 1 -
1 file changed, 1 deletion(-)
commit a6a095557cfa8f5cb7d004e0c7bd4697e796e6b4
Author: Albert Astals Cid <aacid@kde.org>
Date: Wed Aug 19 01:08:55 2015 +0200
include fixing
src/rsiglobals.cpp | 4 ++--
src/rsitimer.cpp | 1 -
2 files changed, 2 insertions(+), 3 deletions(-)
commit e0544dc6272947549a5a3d6abc4b11f72f4a08a2
Author: Albert Astals Cid <aacid@kde.org>
Date: Sat Aug 15 17:19:00 2015 +0200
convert the maps to vectors, save access time
src/rsiglobals.cpp | 1 +
src/rsiglobals.h | 14 ++++++----
src/rsistats.cpp | 81
+++++++++++++++++++++++++-----------------------------
src/rsistats.h | 4 +--
src/rsitimer.cpp | 2 +-
src/rsitimer.h | 3 +-
6 files changed, 50 insertions(+), 55 deletions(-)
commit 764c39d48a5089d87c9f71d0be60e3f0144f3c1a
Author: Albert Astals Cid <aacid@kde.org>
Date: Sat Aug 15 16:55:56 2015 +0200
Don't create a KFormat and QLocale every time
Along the day it adds up
src/rsiglobals.cpp | 3 +--
src/rsiglobals.h | 6 ++++--
2 files changed, 5 insertions(+), 4 deletions(-)
commit 1543f7a719780c182d5ae49f1293c79d3f418d20
Author: Albert Astals Cid <aacid@kde.org>
Date: Sat Aug 15 16:12:32 2015 +0200
dcop died a long time ago :D
src/rsiglobals.h | 5 -----
1 file changed, 5 deletions(-)
commit 9880ca1414f17887d0a62b12b16460b1da0a72ef
Author: Albert Astals Cid <aacid@kde.org>
Date: Sat Aug 15 16:10:27 2015 +0200
Use enums instaed of qstring for qmap key for intervals
src/rsiglobals.cpp | 28 +++++++++++-----------
src/rsiglobals.h | 13 +++++++++--
src/rsistats.cpp | 4 ++--
src/rsitimer.cpp | 68
+++++++++++++++++++++++++++---------------------------
src/rsitimer.h | 4 +++-
5 files changed, 64 insertions(+), 53 deletions(-)
commit b32484298318a5800bc5b2dd7972ffb33423f975
Author: Albert Astals Cid <aacid@kde.org>
Date: Sat Aug 15 14:29:07 2015 +0200
remove old docu, add myself
doc/index.docbook | 34 +---------------------------------
1 file changed, 1 insertion(+), 33 deletions(-)
commit 516adec51e2aac8479d024cecdc9923667f7d403
Author: Albert Astals Cid <aacid@kde.org>
Date: Sat Aug 15 14:28:06 2015 +0200
Increase the version
NEWS | 3 +++
doc/index.docbook | 4 ++--
src/main.cpp | 2 +-
3 files changed, 6 insertions(+), 3 deletions(-)
commit 4f02f3819167ed08e5bdca4f0c62805c69488cec
Author: Albert Astals Cid <aacid@kde.org>
Date: Sat Aug 15 14:25:57 2015 +0200
Use the C++11 way of connecting actions instead of SLOT()
src/rsidock.cpp | 46
+++++++++++++++++++++++++---------------------
src/rsirelaxpopup.cpp | 2 +-
src/rsiwidget.cpp | 2 +-
src/slideshoweffect.cpp | 2 +-
4 files changed, 28 insertions(+), 24 deletions(-)
commit d848c84fe7050a9f87e8213e7459ebdb11c83293
Author: Albert Astals Cid <aacid@kde.org>
Date: Sat Aug 15 13:47:25 2015 +0200
Don't use XGetScreenSaver to check if the screensaver is inhibited
All the modern desktops i could find, plasma, gnome, unity set this
to 0 in their daemons startup
since they are handling screensavers on their own
Unfortunately rsibreak sometimes starts before the daemon sets it
to 0, sees a change and thinks
the screensaver is inhibited, need to find a modern way to check
for this
CMakeLists.txt | 1 -
src/CMakeLists.txt | 2 +-
src/rsitimer.cpp | 41 +++--------------------------------------
src/rsitimer.h | 1 -
4 files changed, 4 insertions(+), 41 deletions(-)
commit 3044c718b0a2508a857eabced24302e2b14f304e
Author: Albert Astals Cid <aacid@kde.org>
Date: Tue Aug 11 16:22:48 2015 +0200
remove debug
src/rsidock.cpp | 1 -
1 file changed, 1 deletion(-)
commit b2304fc25090e73a0836fde0a5f54f98b5f784c0
Author: Albert Astals Cid <aacid@kde.org>
Date: Mon Aug 10 00:30:26 2015 +0200
Make autostart work for non KDE based desktops too
src/CMakeLists.txt | 2 +-
src/main.cpp | 20 +++++++++-
src/rsibreak_autostart.desktop | 88
++++++++++++++++++++++++++++++++++++++++++
3 files changed, 107 insertions(+), 3 deletions(-)
commit 34cffe5f337c293ecff8329ce08f1b3338694a67
Author: Albert Astals Cid <aacid@kde.org>
Date: Sun Aug 2 23:31:02 2015 +0200
Install the notifyrc file into the proper place
src/CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit b1a64c38f0f1f027c9905db7d6935b390714196c
Author: Albert Astals Cid <aacid@kde.org>
Date: Sun Aug 2 20:44:05 2015 +0200
DBUS -> DCOP ^_^
src/rsibreak.desktop | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit b84fc3b7b80370c6fdf80f41f8246e019cd71732
Author: Albert Astals Cid <aacid@kde.org>
Date: Sun Aug 2 20:09:16 2015 +0200
Remove the plasmoid
It's pretty useless since it needs the app running anyway and all it
does is show three items that are easily accessible in the app itself
CMakeLists.txt | 4 -
plasma/CMakeLists.txt | 23 -
plasma/Messages.sh | 2 -
plasma/engine.cpp | 70 --
plasma/engine.h | 46 -
plasma/plasma-applet-rsibreak.desktop | 94 --
plasma/plasma-engine-rsibreak.desktop | 87 --
plasma/rsibreak.cpp | 73 --
plasma/rsibreak.h | 45 -
plasma/rsibreak.svg | 1607
---------------------------------
10 files changed, 2051 deletions(-)
commit 0332b53903e3a5fd078085a4adbda2066c3847ef
Author: Albert Astals Cid <aacid@kde.org>
Date: Sun Aug 2 19:53:57 2015 +0200
Remove installing chapter
It points to non existed webpage and if you have the doc, most
probably you've installed it already
doc/index.docbook | 26 --------------------------
1 file changed, 26 deletions(-)
commit b635f8de2ae6b1a11f7619474afdde6235d5ba2e
Author: Albert Astals Cid <aacid@kde.org>
Date: Sun Aug 2 18:28:55 2015 +0200
Fix Layout
src/setupmaximized.cpp | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
commit 1ceaed1494a1d4f2d0afee7cf047b672b0a431fa
Author: Albert Astals Cid <aacid@kde.org>
Date: Sun Aug 2 17:36:08 2015 +0200
Move to Plasma 5 dbus interface to show the dashboard
src/plasmaeffect.cpp | 8 ++++----
src/rsiwidget.cpp | 1 -
2 files changed, 4 insertions(+), 5 deletions(-)
commit 0596db3f4603d009d77a5082d2c9dfd132754efa
Author: Albert Astals Cid <aacid@kde.org>
Date: Sun Aug 2 17:16:27 2015 +0200
Better X11 cmake detection/use
CMakeLists.txt | 1 +
src/CMakeLists.txt | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
commit c175d08253ed46da5498f5a1336299385748d12c
Author: Albert Astals Cid <aacid@kde.org>
Date: Sun Aug 2 17:00:57 2015 +0200
Fix code to detect if dialog is on current desktop
src/rsidock.cpp | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
commit 9c9253643cdcc42e22b2a88c970dffe4b9072896
Author: Albert Astals Cid <aacid@kde.org>
Date: Sun Aug 2 16:56:55 2015 +0200
Nicer sorting in the CMake file
src/CMakeLists.txt | 16 +++++++++++++++-
1 file changed, 15 insertions(+), 1 deletion(-)
commit aad16cda16ac047f7dc61ec8249695b9eda90a9f
Author: Albert Astals Cid <aacid@kde.org>
Date: Sun Aug 2 16:51:00 2015 +0200
reenable the dbus adaptor
src/CMakeLists.txt | 9 ++++-----
src/rsiwidget.cpp | 6 ++----
2 files changed, 6 insertions(+), 9 deletions(-)
commit 668e543fa69590332e7503b5196e07fcd957abd0
Author: Albert Astals Cid <aacid@kde.org>
Date: Sun Aug 2 14:03:39 2015 +0200
TODO checked
src/rsistats.cpp | 1 -
1 file changed, 1 deletion(-)
commit aef2413298f12f6ebc2150c6e55770f9f0989b8a
Author: Albert Astals Cid <aacid@kde.org>
Date: Sun Aug 2 14:03:02 2015 +0200
Nicer time formating this way
src/rsistats.cpp | 2 +-
src/rsistatwidget.cpp | 1 -
2 files changed, 1 insertion(+), 2 deletions(-)
commit 6bcae63f4feecd5ebd9a5881d5f4491dfb7656ef
Author: Albert Astals Cid <aacid@kde.org>
Date: Sun Aug 2 13:47:18 2015 +0200
TODO has been checked
src/setupmaximized.cpp | 1 -
1 file changed, 1 deletion(-)
commit 4c0bb1b5255ee072ffd213e1b55d1531dd141206
Author: Albert Astals Cid <aacid@kde.org>
Date: Sun Aug 2 13:45:18 2015 +0200
Implement KAboutData porting TODO
src/rsidock.cpp | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
commit f9c97b346eedd8cb678939f59b6663ff43c22469
Author: Albert Astals Cid <aacid@kde.org>
Date: Sun Aug 2 13:42:26 2015 +0200
TODO checked
src/setuptiming.cpp | 1 -
1 file changed, 1 deletion(-)
commit ca41b3e74d33366c9da885e4ca0ecc69085fe9b4
Author: Albert Astals Cid <aacid@kde.org>
Date: Sun Aug 2 13:41:19 2015 +0200
make unique app
src/main.cpp | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
commit 9e24cdde6c9222b237e639439016013692878ffa
Author: Albert Astals Cid <aacid@kde.org>
Date: Sun Aug 2 13:39:12 2015 +0200
implement i18n and config migration todos
src/main.cpp | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
commit 1f51b1ae2ae3242c24168a9e9c1dd171c328bd78
Author: Albert Astals Cid <aacid@kde.org>
Date: Sun Aug 2 13:29:37 2015 +0200
Use sizeHint instead of minimumSizeHint
src/setuptiming.cpp | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
commit c762487262f7c69d6fa62050f2a9bf160bc9235f
Author: Albert Astals Cid <aacid@kde.org>
Date: Sun Aug 2 13:24:01 2015 +0200
Fix broken layout
src/setupmaximized.cpp | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
commit edd0e02add153a72bfc43ea4efe2fb43617485a6
Author: Albert Astals Cid <aacid@kde.org>
Date: Sun Aug 2 13:17:13 2015 +0200
no need to adapt anything
src/main.cpp | 1 -
1 file changed, 1 deletion(-)
commit 71445146c40eef319753d7f21c1f790b83d647c0
Author: Albert Astals Cid <aacid@kde.org>
Date: Sun Aug 2 13:16:45 2015 +0200
Fix auto script mistakes
src/rsidock.cpp | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
commit fe8b35d55c4d4918c6f852380a5f6a798456a90c
Author: Albert Astals Cid <aacid@kde.org>
Date: Sun Aug 2 13:13:16 2015 +0200
Add some override
src/breakbase.h | 8 ++++----
src/breakcontrol.h | 2 +-
src/grayeffect.h | 4 ++--
src/passivepopup.h | 2 +-
src/plasmaeffect.h | 4 ++--
src/popupeffect.h | 6 +++---
src/rsistatitem.h | 2 +-
src/rsistatwidget.h | 4 ++--
src/rsitimer.h | 2 +-
src/slideshoweffect.h | 4 ++--
10 files changed, 19 insertions(+), 19 deletions(-)
commit 8c2facdd5b07fcfa6000302e7961f11421c281e0
Author: Albert Astals Cid <aacid@kde.org>
Date: Sun Aug 2 13:04:13 2015 +0200
remove unused m_parent member
src/rsiwidget.h | 1 -
1 file changed, 1 deletion(-)
commit 8b76abf6696023b7be904a75a29815a8d162a400
Author: Albert Astals Cid <aacid@kde.org>
Date: Sun Aug 2 13:00:40 2015 +0200
remove unused m_parent member
src/breakbase.cpp | 1 -
src/breakbase.h | 1 -
2 files changed, 2 deletions(-)
commit 8e29a60c818d29bd6c5fddb3de89cf947e911fe2
Author: Albert Astals Cid <aacid@kde.org>
Date: Sun Aug 2 12:55:19 2015 +0200
Move to new connect syntax
src/breakbase.cpp | 6 +++---
src/breakcontrol.cpp | 9 ++++-----
src/plasmaeffect.cpp | 4 ++--
src/rsidock.cpp | 10 ++++-----
src/rsirelaxpopup.cpp | 6 +++---
src/rsitimer.cpp | 24 +++++++++++-----------
src/rsitimer.h | 2 +-
src/rsiwidget.cpp | 54
+++++++++++++++++++++++--------------------------
src/setup.cpp | 2 +-
src/setupgeneral.cpp | 6 ++----
src/setupmaximized.cpp | 12 +++++------
src/setuptiming.cpp | 3 +--
src/slideshoweffect.cpp | 8 +++-----
13 files changed, 66 insertions(+), 80 deletions(-)
commit 4850b0ed36722d648f8d8265ca7c933a2a257ad2
Author: Albert Astals Cid <aacid@kde.org>
Date: Sun Aug 2 01:52:23 2015 +0200
compile the doc
CMakeLists.txt | 4 +++-
doc/CMakeLists.txt | 2 +-
doc/index.docbook | 2 +-
3 files changed, 5 insertions(+), 3 deletions(-)
commit b1260b5dbef01ee2398139e7cad40808e75a8d72
Author: Albert Astals Cid <aacid@kde.org>
Date: Sun Aug 2 01:52:03 2015 +0200
fix icon names
icons/128-app-rsibreak.png | Bin 12174 -> 0 bytes
icons/128-apps-rsibreak.png | Bin 0 -> 12174 bytes
icons/16-action-rsibreak0.png | Bin 738 -> 0 bytes
icons/16-action-rsibreak1.png | Bin 738 -> 0 bytes
icons/16-action-rsibreak2.png | Bin 781 -> 0 bytes
icons/16-action-rsibreak3.png | Bin 777 -> 0 bytes
icons/16-action-rsibreak4.png | Bin 649 -> 0 bytes
icons/16-action-rsibreakx.png | Bin 825 -> 0 bytes
icons/16-actions-rsibreak0.png | Bin 0 -> 738 bytes
icons/16-actions-rsibreak1.png | Bin 0 -> 738 bytes
icons/16-actions-rsibreak2.png | Bin 0 -> 781 bytes
icons/16-actions-rsibreak3.png | Bin 0 -> 777 bytes
icons/16-actions-rsibreak4.png | Bin 0 -> 649 bytes
icons/16-actions-rsibreakx.png | Bin 0 -> 825 bytes
icons/16-app-rsibreak.png | Bin 747 -> 0 bytes
icons/16-apps-rsibreak.png | Bin 0 -> 747 bytes
icons/22-action-rsibreak0.png | Bin 1139 -> 0 bytes
icons/22-action-rsibreak1.png | Bin 1161 -> 0 bytes
icons/22-action-rsibreak2.png | Bin 1231 -> 0 bytes
icons/22-action-rsibreak3.png | Bin 1256 -> 0 bytes
icons/22-action-rsibreak4.png | Bin 1026 -> 0 bytes
icons/22-action-rsibreakx.png | Bin 1330 -> 0 bytes
icons/22-actions-rsibreak0.png | Bin 0 -> 1139 bytes
icons/22-actions-rsibreak1.png | Bin 0 -> 1161 bytes
icons/22-actions-rsibreak2.png | Bin 0 -> 1231 bytes
icons/22-actions-rsibreak3.png | Bin 0 -> 1256 bytes
icons/22-actions-rsibreak4.png | Bin 0 -> 1026 bytes
icons/22-actions-rsibreakx.png | Bin 0 -> 1330 bytes
icons/22-app-rsibreak.png | Bin 1185 -> 0 bytes
icons/22-apps-rsibreak.png | Bin 0 -> 1185 bytes
icons/32-action-duringbreaks.png | Bin 565 -> 0 bytes
icons/32-action-rsibreak0.png | Bin 1726 -> 0 bytes
icons/32-action-rsibreak1.png | Bin 1784 -> 0 bytes
icons/32-action-rsibreak2.png | Bin 1889 -> 0 bytes
icons/32-action-rsibreak3.png | Bin 1932 -> 0 bytes
icons/32-action-rsibreak4.png | Bin 1610 -> 0 bytes
icons/32-action-rsibreakx.png | Bin 2101 -> 0 bytes
icons/32-action-timings.png | Bin 1796 -> 0 bytes
icons/32-actions-duringbreaks.png | Bin 0 -> 565 bytes
icons/32-actions-rsibreak0.png | Bin 0 -> 1726 bytes
icons/32-actions-rsibreak1.png | Bin 0 -> 1784 bytes
icons/32-actions-rsibreak2.png | Bin 0 -> 1889 bytes
icons/32-actions-rsibreak3.png | Bin 0 -> 1932 bytes
icons/32-actions-rsibreak4.png | Bin 0 -> 1610 bytes
icons/32-actions-rsibreakx.png | Bin 0 -> 2101 bytes
icons/32-actions-timings.png | Bin 0 -> 1796 bytes
icons/32-app-rsibreak.png | Bin 1796 -> 0 bytes
icons/32-apps-rsibreak.png | Bin 0 -> 1796 bytes
icons/48-action-rsibreak0.png | Bin 3861 -> 0 bytes
icons/48-action-rsibreak1.png | Bin 3933 -> 0 bytes
icons/48-action-rsibreak2.png | Bin 3945 -> 0 bytes
icons/48-action-rsibreak3.png | Bin 4003 -> 0 bytes
icons/48-action-rsibreak4.png | Bin 3514 -> 0 bytes
icons/48-action-rsibreakx.png | Bin 4813 -> 0 bytes
icons/48-actions-rsibreak0.png | Bin 0 -> 3861 bytes
icons/48-actions-rsibreak1.png | Bin 0 -> 3933 bytes
icons/48-actions-rsibreak2.png | Bin 0 -> 3945 bytes
icons/48-actions-rsibreak3.png | Bin 0 -> 4003 bytes
icons/48-actions-rsibreak4.png | Bin 0 -> 3514 bytes
icons/48-actions-rsibreakx.png | Bin 0 -> 4813 bytes
icons/CMakeLists.txt | 2 +-
61 files changed, 1 insertion(+), 1 deletion(-)
commit 072bb4eab4e303347df759bdb3bd10690f1f5bb8
Author: Albert Astals Cid <aacid@kde.org>
Date: Sun Aug 2 01:46:06 2015 +0200
Initial port to KF5
Compiles and runs
There's lots of obvious stuff needing fixing
CMakeLists.txt | 47 +++++++++++-------
icons/128-app-rsibreak.png | Bin 0 -> 12174 bytes
icons/16-action-rsibreak0.png | Bin 0 -> 738 bytes
icons/16-action-rsibreak1.png | Bin 0 -> 738 bytes
icons/16-action-rsibreak2.png | Bin 0 -> 781 bytes
icons/16-action-rsibreak3.png | Bin 0 -> 777 bytes
icons/16-action-rsibreak4.png | Bin 0 -> 649 bytes
icons/16-action-rsibreakx.png | Bin 0 -> 825 bytes
icons/16-app-rsibreak.png | Bin 0 -> 747 bytes
icons/22-action-rsibreak0.png | Bin 0 -> 1139 bytes
icons/22-action-rsibreak1.png | Bin 0 -> 1161 bytes
icons/22-action-rsibreak2.png | Bin 0 -> 1231 bytes
icons/22-action-rsibreak3.png | Bin 0 -> 1256 bytes
icons/22-action-rsibreak4.png | Bin 0 -> 1026 bytes
icons/22-action-rsibreakx.png | Bin 0 -> 1330 bytes
icons/22-app-rsibreak.png | Bin 0 -> 1185 bytes
icons/32-action-duringbreaks.png | Bin 0 -> 565 bytes
icons/32-action-rsibreak0.png | Bin 0 -> 1726 bytes
icons/32-action-rsibreak1.png | Bin 0 -> 1784 bytes
icons/32-action-rsibreak2.png | Bin 0 -> 1889 bytes
icons/32-action-rsibreak3.png | Bin 0 -> 1932 bytes
icons/32-action-rsibreak4.png | Bin 0 -> 1610 bytes
icons/32-action-rsibreakx.png | Bin 0 -> 2101 bytes
icons/32-action-timings.png | Bin 0 -> 1796 bytes
icons/32-app-rsibreak.png | Bin 0 -> 1796 bytes
icons/48-action-rsibreak0.png | Bin 0 -> 3861 bytes
icons/48-action-rsibreak1.png | Bin 0 -> 3933 bytes
icons/48-action-rsibreak2.png | Bin 0 -> 3945 bytes
icons/48-action-rsibreak3.png | Bin 0 -> 4003 bytes
icons/48-action-rsibreak4.png | Bin 0 -> 3514 bytes
icons/48-action-rsibreakx.png | Bin 0 -> 4813 bytes
icons/CMakeLists.txt | 4 +-
icons/hi128-app-rsibreak.png | Bin 12174 -> 0 bytes
icons/hi16-action-rsibreak0.png | Bin 738 -> 0 bytes
icons/hi16-action-rsibreak1.png | Bin 738 -> 0 bytes
icons/hi16-action-rsibreak2.png | Bin 781 -> 0 bytes
icons/hi16-action-rsibreak3.png | Bin 777 -> 0 bytes
icons/hi16-action-rsibreak4.png | Bin 649 -> 0 bytes
icons/hi16-action-rsibreakx.png | Bin 825 -> 0 bytes
icons/hi16-app-rsibreak.png | Bin 747 -> 0 bytes
icons/hi22-action-rsibreak0.png | Bin 1139 -> 0 bytes
icons/hi22-action-rsibreak1.png | Bin 1161 -> 0 bytes
icons/hi22-action-rsibreak2.png | Bin 1231 -> 0 bytes
icons/hi22-action-rsibreak3.png | Bin 1256 -> 0 bytes
icons/hi22-action-rsibreak4.png | Bin 1026 -> 0 bytes
icons/hi22-action-rsibreakx.png | Bin 1330 -> 0 bytes
icons/hi22-app-rsibreak.png | Bin 1185 -> 0 bytes
icons/hi32-action-duringbreaks.png | Bin 565 -> 0 bytes
icons/hi32-action-rsibreak0.png | Bin 1726 -> 0 bytes
icons/hi32-action-rsibreak1.png | Bin 1784 -> 0 bytes
icons/hi32-action-rsibreak2.png | Bin 1889 -> 0 bytes
icons/hi32-action-rsibreak3.png | Bin 1932 -> 0 bytes
icons/hi32-action-rsibreak4.png | Bin 1610 -> 0 bytes
icons/hi32-action-rsibreakx.png | Bin 2101 -> 0 bytes
icons/hi32-action-timings.png | Bin 1796 -> 0 bytes
icons/hi32-app-rsibreak.png | Bin 1796 -> 0 bytes
icons/hi48-action-rsibreak0.png | Bin 3861 -> 0 bytes
icons/hi48-action-rsibreak1.png | Bin 3933 -> 0 bytes
icons/hi48-action-rsibreak2.png | Bin 3945 -> 0 bytes
icons/hi48-action-rsibreak3.png | Bin 4003 -> 0 bytes
icons/hi48-action-rsibreak4.png | Bin 3514 -> 0 bytes
icons/hi48-action-rsibreakx.png | Bin 4813 -> 0 bytes
src/CMakeLists.txt | 14 +++---
src/breakbase.cpp | 19 ++++----
src/breakcontrol.cpp | 17 +++----
src/grayeffect.cpp | 6 ---
src/main.cpp | 83 +++++++++++++-------------------
src/passivepopup.cpp | 3 --
src/plasmaeffect.cpp | 9 ++--
src/popupeffect.cpp | 9 ++--
src/rsidock.cpp | 59 +++++++++++++++--------
src/rsidock.h | 4 +-
src/rsiglobals.cpp | 15 +++---
src/rsirelaxpopup.cpp | 30 ++++++++----
src/rsistats.cpp | 9 ++--
src/rsistatwidget.cpp | 13 +++--
src/rsitimer.cpp | 45 ++++++++----------
src/rsitimer_dpms.cpp | 52 --------------------
src/rsitimer_dpms.h | 25 ----------
src/rsiwidget.cpp | 28 +++++------
src/rsiwidget.h | 3 +-
src/setup.cpp | 26 +++++-----
src/setupgeneral.cpp | 14 +++---
src/setupmaximized.cpp | 95
+++++++++++++++++++++----------------
src/setupnotifications.cpp | 2 -
src/setuptiming.cpp | 80 ++++++++++++++++++-------------
src/slideshoweffect.cpp | 10 ++--
87 files changed, 333 insertions(+), 388 deletions(-)
commit 5e9d393802cd963ebdfcb6ebd302132f1b507cbd
Author: Yury G. Kudryashov <urkud.urkud@gmail.com>
Date: Sun May 5 18:47:42 2013 +0400
Drop config-rsibreak.h
The HAVE_LIBXSS macro defined in this file was unused since the
previous
commit.
config-rsibreak.h.cmake | 6 ------
src/CMakeLists.txt | 3 ---
src/rsitimer.cpp | 2 --
src/rsiwidget.cpp | 2 --
4 files changed, 13 deletions(-)
commit 095aeb1017bdddcdbcbc1a0d8223b2526fbfce2a
Author: Script Kiddy <scripty@kde.org>
Date: Tue Jul 24 19:22:30 2012 +0200
SVN_SILENT made messages (.desktop file)
src/rsibreak.notifyrc | 9 +++++++++
1 file changed, 9 insertions(+)
commit 563bec9b537fc18d8ce5b5fdf5187c88adfbb0d4
Author: Script Kiddy <scripty@kde.org>
Date: Fri May 4 10:25:43 2012 +0200
SVN_SILENT made messages (.desktop file)
plasma/plasma-applet-rsibreak.desktop | 2 ++
plasma/plasma-engine-rsibreak.desktop | 2 ++
src/rsibreak.desktop | 2 ++
src/rsibreak.notifyrc | 13 +++++++++++++
4 files changed, 19 insertions(+)
commit cdc2f04798feb040351d0d61efd134ee05e3fd82
Author: Script Kiddy <scripty@kde.org>
Date: Thu Mar 1 09:41:59 2012 +0100
SVN_SILENT made messages (.desktop file)
plasma/plasma-applet-rsibreak.desktop | 1 +
src/rsibreak.desktop | 1 +
src/rsibreak.notifyrc | 1 +
3 files changed, 3 insertions(+)
commit f3955ffce7d7bda3a765fed30dd9727a2e322dcb
Author: Script Kiddy <scripty@kde.org>
Date: Wed Jan 4 09:27:26 2012 +0100
SVN_SILENT made messages (.desktop file)
plasma/plasma-applet-rsibreak.desktop | 1 +
src/rsibreak.desktop | 1 +
src/rsibreak.notifyrc | 1 +
3 files changed, 3 insertions(+)
commit 005e5903a12c86f0dac0eec44f17b38732f73ab6
Author: Script Kiddy <scripty@kde.org>
Date: Tue Jul 26 11:07:00 2011 +0200
SVN_SILENT made messages (.desktop file)
src/rsibreak.notifyrc | 3 +++
1 file changed, 3 insertions(+)
commit 47827bef25b4e886c4e86d324b8bddfb296ce130
Author: Script Kiddy <scripty@kde.org>
Date: Tue May 17 10:45:31 2011 +0200
SVN_SILENT made messages (.desktop file)
plasma/plasma-applet-rsibreak.desktop | 2 ++
plasma/plasma-engine-rsibreak.desktop | 1 +
src/rsibreak.desktop | 1 +
3 files changed, 4 insertions(+)
commit ca84ca67ac125448f6a09b1981319231e299ffb4
Author: Script Kiddy <scripty@kde.org>
Date: Mon May 9 07:26:55 2011 +0000
SVN_SILENT made messages (.desktop file)
svn path=/trunk/extragear/utils/rsibreak/; revision=1230980
src/rsibreak.notifyrc | 1 +
1 file changed, 1 insertion(+)
commit 9e26eca1de3c3f86a4315eab6b35543394102156
Author: Aurélien Gâteau <agateau@kde.org>
Date: Mon Apr 4 20:44:33 2011 +0000
Add 48x48 versions of the action icons
This fixes the blurry icon in the tooltip
svn path=/trunk/extragear/utils/rsibreak/; revision=1227120
icons/hi48-action-rsibreak0.png | Bin 0 -> 3861 bytes
icons/hi48-action-rsibreak1.png | Bin 0 -> 3933 bytes
icons/hi48-action-rsibreak2.png | Bin 0 -> 3945 bytes
icons/hi48-action-rsibreak3.png | Bin 0 -> 4003 bytes
icons/hi48-action-rsibreak4.png | Bin 0 -> 3514 bytes
icons/hi48-action-rsibreakx.png | Bin 0 -> 4813 bytes
6 files changed, 0 insertions(+), 0 deletions(-)
commit 425659ab8cadb5a823dbd2fda96c0214d2a86e6e
Author: Aurélien Gâteau <agateau@kde.org>
Date: Sun Apr 3 22:06:07 2011 +0000
Add myself to the authors of RSIDock class
svn path=/trunk/extragear/utils/rsibreak/; revision=1227002
src/rsidock.cpp | 1 +
src/rsidock.h | 2 ++
2 files changed, 3 insertions(+)
commit 3f261910b3adbd06571137a772220b2a6415604b
Author: Aurélien Gâteau <agateau@kde.org>
Date: Sun Apr 3 22:06:05 2011 +0000
Merged RSIToolTip into RSIDock
svn path=/trunk/extragear/utils/rsibreak/; revision=1227001
src/CMakeLists.txt | 1 -
src/rsidock.cpp | 45 +++++++++++++++++++++++++++++
src/rsidock.h | 3 ++
src/rsitooltip.cpp | 85
------------------------------------------------------
src/rsitooltip.h | 55 -----------------------------------
src/rsiwidget.cpp | 7 +----
src/rsiwidget.h | 2 --
7 files changed, 49 insertions(+), 149 deletions(-)
commit 4943c6bc44ec63ad66718f8cdf34309258d473d6
Author: Aurélien Gâteau <agateau@kde.org>
Date: Sun Apr 3 22:06:03 2011 +0000
Hard-code position of popup to bottom-center
svn path=/trunk/extragear/utils/rsibreak/; revision=1227000
src/passivepopup.cpp | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
commit 29e43d7e1444ec96db6ab144d6a2b62c6171229e
Author: Aurélien Gâteau <agateau@kde.org>
Date: Sun Apr 3 22:06:01 2011 +0000
Ported tooltip
svn path=/trunk/extragear/utils/rsibreak/; revision=1226999
src/rsidock.cpp | 3 +-
src/rsitooltip.cpp | 86
++++++++++++++++++++----------------------------------
src/rsitooltip.h | 29 ++++++------------
src/rsiwidget.cpp | 10 ++-----
4 files changed, 45 insertions(+), 83 deletions(-)
commit d8c278c58fdcd028f452ffca6d03f883cff066a6
Author: Aurélien Gâteau <agateau@kde.org>
Date: Sun Apr 3 22:05:57 2011 +0000
Started porting to KStatusNotifierItem
svn path=/trunk/extragear/utils/rsibreak/; revision=1226998
src/passivepopup.cpp | 10 +++-----
src/passivepopup.h | 2 +-
src/popupeffect.cpp | 7 +-----
src/popupeffect.h | 3 ---
src/rsidock.cpp | 64
++++++++++++++-------------------------------------
src/rsidock.h | 34 +++------------------------
src/rsirelaxpopup.cpp | 7 +++---
src/rsirelaxpopup.h | 4 +---
src/rsitooltip.h | 2 +-
src/rsiwidget.cpp | 23 ++++++++----------
10 files changed, 40 insertions(+), 116 deletions(-)
commit f65767b2a3cc511cbdf0cc5c7478681b82bd8d28
Author: Juan Luis Baptiste <juan.baptiste@kdemail.net>
Date: Mon Mar 28 02:23:52 2011 +0000
Added postpone break statistics and
fixed skip break statistic count, it was always counting all skipped
breaks as
tiny breaks.
svn path=/trunk/extragear/utils/rsibreak/; revision=1226248
src/rsiglobals.h | 2 ++
src/rsistats.cpp | 13 +++++++++++++
src/rsistatwidget.cpp | 6 ++++--
src/rsitimer.cpp | 12 +++++++++---
4 files changed, 28 insertions(+), 5 deletions(-)
commit 6f3635324f29b23a22725b624ecff3b359bdeb0a
Author: Tom Albers <toma@kde.org>
Date: Fri Jan 14 21:46:59 2011 +0000
That todo is done.
svn path=/trunk/extragear/utils/rsibreak/; revision=1214488
TODO | 3 ---
1 file changed, 3 deletions(-)
commit 04eb3213dee24930262adb33c2ccfa5e5f7a98c3
Author: Tom Albers <toma@kde.org>
Date: Fri Jan 14 21:46:07 2011 +0000
Prepare for release.
svn path=/trunk/extragear/utils/rsibreak/; revision=1214487
ChangeLog | 108 ++++++++++++++++++++
NEWS | 4 +
kidle.diff | 327
-----------------------------------------------------------
src/main.cpp | 2 +-
4 files changed, 113 insertions(+), 328 deletions(-)
commit 76d877f88925e8a0a197358146b891a696fbe3de
Author: Script Kiddy <scripty@kde.org>
Date: Sat Dec 4 05:21:36 2010 +0000
SVN_SILENT made messages (.desktop file)
svn path=/trunk/extragear/utils/rsibreak/; revision=1203464
src/rsibreak.notifyrc | 1 +
1 file changed, 1 insertion(+)
commit 27a5b4286a498250442ecd3e4be21cfaee86fc70
Author: Tom Albers <toma@kde.org>
Date: Thu Dec 2 23:12:03 2010 +0000
Rewrite the ignore-idle-time-on-short-breaks-setting in a different
way. Solves endless loop.
BUG=253335
svn path=/trunk/extragear/utils/rsibreak/; revision=1202979
src/rsitimer.cpp | 13 +++++++++++--
1 file changed, 11 insertions(+), 2 deletions(-)
commit c1c1a17b8f337c8e5d4ec50ebdc43e89979dd69d
Author: Script Kiddy <scripty@kde.org>
Date: Sat Nov 27 11:01:10 2010 +0000
SVN_SILENT made messages (.desktop file)
svn path=/trunk/extragear/utils/rsibreak/; revision=1201320
plasma/plasma-engine-rsibreak.desktop | 1 +
1 file changed, 1 insertion(+)
commit 14eced9ae6eae377207316189f1fa7d6f9e8fccb
Author: David Faure <faure@kde.org>
Date: Thu Oct 21 15:44:39 2010 +0000
Make executable the Type=Application .desktop files we install,
so that they can be used even from a KDE running in another prefix
(http://markmail.org/message/4p3krovtnzwx35zd)
svn path=/trunk/extragear/utils/rsibreak/; revision=1188173
src/CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit b128331be816ca3d96723987c51c0b97a9e471d3
Author: Juan Luis Baptiste <juan.baptiste@kdemail.net>
Date: Fri Oct 15 00:53:01 2010 +0000
Added a configuration option to hide the postpone break button.
GUI
svn path=/trunk/extragear/utils/rsibreak/; revision=1186028
src/breakbase.cpp | 5 +++++
src/breakbase.h | 1 +
src/breakcontrol.cpp | 5 +++++
src/breakcontrol.h | 1 +
src/rsirelaxpopup.cpp | 4 ++++
src/rsirelaxpopup.h | 5 ++++-
src/rsiwidget.cpp | 3 +++
src/setupmaximized.cpp | 11 ++++++++++-
8 files changed, 33 insertions(+), 2 deletions(-)
commit 35c6f7e3b435192d51844773863093128c8b426c
Author: Juan Luis Baptiste <juan.baptiste@kdemail.net>
Date: Thu Oct 14 05:12:00 2010 +0000
Added postpone break feature.
BU=G199793
svn path=/trunk/extragear/utils/rsibreak/; revision=1185664
src/breakbase.cpp | 2 ++
src/breakbase.h | 2 ++
src/breakcontrol.cpp | 7 +++++++
src/breakcontrol.h | 3 +++
src/rsiglobals.cpp | 3 +++
src/rsirelaxpopup.cpp | 5 +++++
src/rsirelaxpopup.h | 5 +++++
src/rsitimer.cpp | 19 +++++++++++++++++++
src/rsitimer.h | 10 +++++++++-
src/rsiwidget.cpp | 3 +++
src/setuptiming.cpp | 27 +++++++++++++++++++++++++++
11 files changed, 85 insertions(+), 1 deletion(-)
commit f02fa41ef927c456c247b705effc46da375e29a2