-
Notifications
You must be signed in to change notification settings - Fork 3
/
ChangeLog
2390 lines (1447 loc) · 68.5 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 1cfbca423b866d897eb0c783b25228f5ba38fc2b
Author: Florian Rivoal <[email protected]>
Date: Thu Sep 30 18:22:39 2010 +0900
Add a POTFILES.skip
cpugraph.desktop.in is reported as missing from POTFILES.in by "make
distcheck", but it needn't be there since cpugraph.desktop.in.in is.
Create a POTFILES.skip, and add it there.
commit e3fe1b94fdb45346a42ff4961fa3002ea210d47c
Author: Florian Rivoal <[email protected]>
Date: Thu Sep 30 01:22:39 2010 +0900
Explicitly license as GPLv2+
CPU Graph used to be quite ambiguous about its license terms, some parts
refering to the GPLv2+, some to a 2-clause BSD.
I am now explicitly licensing the whole thing under the GPLv2+. This is
possible for three reasons:
1) A combination of GPLv2+ and 2-clause BSD software can (and actually
can only) be licensed under the terms of the GPLv2+
2) I contacted and got explicit permission from the following
contributors to relicense under GPLv2+:
Alexander Nordfelth
Agustin "gatopeich" Ferrin Pozuelo
Angelo Arrifano
Ludovic "Lidiriel" Mercier
3) I put all the code I wrote under GPLv2+
commit 44b6728aae06ca9e4c781a49eaf30fa2cd834a2b
Author: Florian Rivoal <[email protected]>
Date: Thu Sep 30 00:34:10 2010 +0900
Update the documentation
Reflect recent changes in the documentation, and describe more
completely the options in the README file.
commit c4054133dff24bc0c35a98c28be54df9737bdc7b
Author: Florian Rivoal <[email protected]>
Date: Fri Aug 13 08:58:09 2010 +0900
Update the list of languages
Add all languages to the LINGUAS file, and delete an empty po file.
commit 2ece976439574e55134236e8fdd43fa6b4ef606e
Author: Florian Rivoal <[email protected]>
Date: Fri Jul 30 10:02:21 2010 +0900
Fix Danish translation
There were a few stray characters in one of the translated messages.
Remove them.
commit e2aeb44fd49d1b5ac5a2f8ff88e6e69c3b90cd56
Author: Florian Rivoal <[email protected]>
Date: Tue Jul 27 09:03:26 2010 +0900
Remove dead code
A little bit of cruft had accumulated. Remove it.
commit c1480e3f9976e614aaf1cd0966504fc92eb00579
Author: Bauzhan Muftakhidinov <[email protected]>
Date: Fri Aug 13 11:19:25 2010 +0200
l10n: New translation to Kazakh.
New status: 35 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit f4548f7fad8fefdda2360a1b60bcfac619583d50
Author: Gheyret Kenji <[email protected]>
Date: Thu Aug 5 09:49:06 2010 +0200
l10n: Updated Uyghur (ug) translation to 100%
New status: 33 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 2bdf1290d6b88d85168ed056f0796aa5143184b6
Author: Gheyret Kenji <[email protected]>
Date: Fri Jul 30 02:38:55 2010 +0200
l10n: Uyghur translation
New status: 12 messages complete with 0 fuzzies and 21 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 406553c8d2a5a984038d2ec845e0a98271a14a40
Author: Florian Rivoal <[email protected]>
Date: Sun Jul 25 01:09:28 2010 +0900
Fix reading cpu data on FreeBSD
The data reading logic was broken, and now it should be sane. This fixes
Bug 6530.
commit 72b960fbb3efe667fc448447e745c4594928eb31
Author: Florian Rivoal <[email protected]>
Date: Sun Jul 25 00:36:50 2010 +0900
Fix intermitent crash bug
Fix an off by one error in allocating an array, causing all sorts of
intermitent problems as other memory got overwritten, including crashes.
commit 1a426686c3b82a69f06419268227868def793fc1
Author: Yarema aka Knedlyk <[email protected]>
Date: Thu Jul 1 14:49:18 2010 +0200
l10n: Updated Ukrainian (uk) translation to 100%
New status: 35 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 3421ae047decf1ce514b945818934cda577c66a8
Author: Florian Rivoal <[email protected]>
Date: Tue Jun 22 09:54:19 2010 +0900
Fix compilation on FreeBSD
Fix a typo that prevented the FreeBSD version from building. This
addresses bug 6517.
commit c717a437063669dc7a23faa7cbaa15a5867b93c1
Author: Cheng-Chia Tseng <[email protected]>
Date: Mon Jun 28 07:34:02 2010 +0200
l10n: Updated Chinese (Taiwan) (zh_TW) translation to 94%
New status: 33 messages complete with 0 fuzzies and 2 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit cceda147d92b13bedfdf2dc8c6f1dd4ef2cfafe5
Author: Cheng-Chia Tseng <[email protected]>
Date: Mon Jun 28 07:32:34 2010 +0200
l10n: Updates to Traditional Chinese translation
New status: 32 messages complete with 0 fuzzies and 3 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit ec0234720061684dfee41448849279d7e0ede9ea
Author: Paul Seyfert <[email protected]>
Date: Thu Jun 24 22:19:25 2010 +0200
l10n: Updated German (de) translation to 100%
New status: 35 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 2259d68c30db0a0f1d6000e98cfc092874b4c888
Author: Andhika Padmawan <[email protected]>
Date: Wed Jun 23 19:05:01 2010 +0200
l10n: Updated Indonesian (id) translation to 100%
New status: 35 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit fcdd2f7d8da650ad4e8bf05b61a21b50fd4845d3
Author: Jeff Bailes <[email protected]>
Date: Wed Jun 23 03:10:27 2010 +0200
l10n: Updated English (United Kingdom) (en_GB) translation to 100%
New status: 35 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit bbee060f148cedc2eeccf46cb90ab6ab8bd89db2
Author: Cristian Marchi <[email protected]>
Date: Tue Jun 22 13:46:33 2010 +0200
l10n: Updated Italian (it) translation to 100%
New status: 35 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 789626008a6e56cdd4e55530f7f6bd3cfe726cb5
Author: Masato Hashimoto <[email protected]>
Date: Tue Jun 22 11:54:55 2010 +0200
l10n: Updated Japanese (ja) translation to 100%
New status: 35 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 96986e0454cca23cbc95f1ae4819649c03131d57
Author: Aleksandr Ponomarenko <[email protected]>
Date: Tue Jun 22 05:50:31 2010 +0200
l10n: Updated Russian (ru) translation to 100%
New status: 35 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 29a99fe7b39df3000bae008eda09359de403179f
Author: Paul Seyfert <[email protected]>
Date: Mon Jun 21 23:09:20 2010 +0200
l10n: Updated German (de) translation to 100%
New status: 35 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 55872e927427fda80c394b6527ff639f0c4d19c6
Author: Mike Massonnet <[email protected]>
Date: Mon Jun 21 18:33:45 2010 +0200
l10n: Updated French (fr) translation to 100%
New status: 35 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 3930fc38d9cc820f3a924e2013f57735a0283bac
Author: Jari Rahkonen <[email protected]>
Date: Mon Jun 21 18:20:39 2010 +0200
l10n: Updated Finnish (fi) translation to 100%
New status: 35 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit d3367c5defaae98ff31649e9b14d7cdbda649c26
Author: Leandro Regueiro <[email protected]>
Date: Mon Jun 21 18:08:11 2010 +0200
l10n: Updated Galician (gl) translation to 100%
New status: 35 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 0b42b3514f1a042d0ce3e4203b67a6b90f6b4dac
Author: Florian Rivoal <[email protected]>
Date: Sat Jun 12 12:51:58 2010 +0900
Add missing headers
The recent header cleanup had left some files out, causing compilation
warnings.
commit fb4bd9d08afa9dbbcf9b5690f5b018323de68a1b
Author: Yarema aka Knedlyk <[email protected]>
Date: Thu Jun 17 15:24:05 2010 +0200
l10n: Updated Ukrainian (uk) translation to 97%
New status: 34 messages complete with 1 fuzzy and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit ede3b241b0d29cf7b60ee6d215d5bd67f9015892
Author: Abel Martín <[email protected]>
Date: Tue Jun 15 16:47:34 2010 +0200
l10n: Updated Spanish (Castilian) (es) translation to 100%
New status: 35 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 9b43f76a7ff6ba05d6c9b91b15cbf80d4645a741
Author: Harald Servat <[email protected]>
Date: Wed Jun 9 15:43:29 2010 +0200
l10n: Updated Catalan (Valencian) (ca) translation to 100%
New status: 35 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit f87649c43ed30fb4ef7175a6673e5cee1d982559
Author: Per Kongstad <[email protected]>
Date: Tue Jun 8 21:50:45 2010 +0200
l10n: Updated Danish (da) translation to 100%
New status: 35 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 6d3e8a802629c5045c68155963d3f84af1ae85d2
Author: Sergio Marques <[email protected]>
Date: Tue Jun 8 18:05:03 2010 +0200
l10n: Updated Portuguese (pt) translation to 100%
New status: 35 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 4c2642e04ab6b079ed651884a9bc961ebd0abbd6
Author: Florian Rivoal <[email protected]>
Date: Sat Jun 5 00:26:10 2010 +0900
Implement 4819: support for tracking only one cpu
It is now possible to track only one cpu or core in a particular
cpugraph, even on systems that have many cpus or cores.
The os dependent part still fetches data for all cores, but that data is
only used to display information about one of them. This helps keep the
design simple.
commit 2029bcfecfd60ec1acb1d6de011d6cee54709aff
Author: Abel Martín <[email protected]>
Date: Fri Jun 4 10:06:14 2010 +0200
l10n: Updated Spanish (Castilian) (es) translation to 100%
New status: 33 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 3f853fccffd6d58cdc78c1f49d9fe341bdc33c64
Author: Florian Rivoal <[email protected]>
Date: Mon May 31 23:53:48 2010 +0900
Improve header usage
Include system headers in the c file when possible, rather than in
central header files.
commit 505a9fa19a7b9c3ff48a161cd1c392e07a2db94b
Author: Florian Rivoal <[email protected]>
Date: Mon May 31 23:49:39 2010 +0900
Fix bug 6479
Make the necessary adjustments to build cpugraph with xfce 4.7 headers.
Patch from Mike Massonnet.
commit 694e926cbe1caf5f4d6ff773d759dd7fbd3ff6d3
Author: Florian Rivoal <[email protected]>
Date: Mon May 31 11:04:54 2010 +0900
Set a better default to the size
Having options is nice, but not needing them is better. A good default
size is subjective, but a size similar to the size of the panel is
about what I like to use, so that's a start.
commit cf07dff98ef98e6c9d9be1c0a3b6f9eaa5626ed9
Author: Florian Rivoal <[email protected]>
Date: Sun May 30 19:37:58 2010 +0900
Improve the migration from the previous release
In the previous release (0.4.0), the associated command was neither
launched in a terminal nor using startup notifications. Now, depending
on whether xfce4-taskmanager is present in the system, one of these
settings will be turned on by default when creating a new cpugraph, or
when running this version of cpugraph for the first time on a system
that has a setting file for 0.4.0.
The default command of 0.4.0 was "xterm -e top". Running this with
either startup notification or in a terminal is not appropriate.
The name of the entry in the rc file used to save the associated command
is now different from the one used in 0.4.0. This means that the old
setting, if it exists, will be ignored, and cpugraph will use the new
default setting. For people who had kept the old default, people who had
changed it to xfce4-taskmanager, or who had changed it to run top in
their favorite terminal, this is likely to be the best thing to do, and
I suspect that these cases cover most people.
People who had set a different custom command will need to set it again,
but depending on what their actual command is, they probably would have
need to tweak it anyway, because of the new "Startup notification" and
"Run in terminal" options.
commit 209f7f249badfbafb2a40308c08ee4f383fa1651
Author: Florian Rivoal <[email protected]>
Date: Sun May 30 19:07:57 2010 +0900
Autodetect the default command.
xfce4-taskmanager is a better default command than top, but I was using
top as a default because xfce4-taskmanager isn't guaranteed to be around.
With this change, xfce4-taskmanaer will be used as a default if
available, and top will be used instead if not. The autodetection is
only used when a there are no saved settings, that is, only when adding
a new cpugraph to the pannel.
Adapted from a patch by Mike Massonnet.
commit 16367c76f05cb59dd869c1f3cc0a0d111400c92c
Author: Florian Rivoal <[email protected]>
Date: Sat May 29 17:40:05 2010 +0900
Fix 64bit linux support
Scannf was trying to store longs in ints, which works on 32
bit systems, but not on 64 bit ones. Should be better now.
commit 2a7565903fed17213576222d3968fe82573ef5cb
Author: Dmitry Nikitin <[email protected]>
Date: Fri May 28 15:19:21 2010 +0200
l10n: Updated Ukrainian (uk) translation to 100%
New status: 33 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 6f659ee74bb7b078f6d715aff778b3a03cc90502
Author: Dmitrij Smirnov <[email protected]>
Date: Sat May 22 19:26:45 2010 +0200
l10n: Updated Russian (ru) translation to 100%
New status: 33 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit d456dc47204b2b299dc2bf5b8e269688fffd9431
Author: Dmitrij Smirnov <[email protected]>
Date: Sat May 22 19:19:20 2010 +0200
l10n: Updated Russian (ru) translation to 96%
New status: 32 messages complete with 1 fuzzy and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 9f0672337598c130e27b510b1211f7296ad810b2
Author: Dmitrij Smirnov <[email protected]>
Date: Sat May 22 19:08:52 2010 +0200
l10n: Updated Russian (ru) translation to 96%
New status: 32 messages complete with 1 fuzzy and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit b0c53cc47ac40599b7674b012c455b268aba5dab
Author: Gabor Kelemen <[email protected]>
Date: Thu May 20 16:21:03 2010 +0200
l10n: Updated Hungarian (hu) translation to 100%
New status: 33 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit c3fc59ac6d4a104e518c153fcabd4a7342e354ee
Author: Dmitrij Smirnov <[email protected]>
Date: Sun May 16 11:48:52 2010 +0200
l10n: Updated Russian (ru) translation to 96%
New status: 32 messages complete with 1 fuzzy and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 599c3e02c4d7e75cfc631a8637065658a0a7e9fd
Author: Piarres Beobide <[email protected]>
Date: Thu May 6 10:03:46 2010 +0200
l10n: Updated Basque (eu) translation to 100%
New status: 33 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 3753f561774a56a8dcb5a4ec21a455efed835f9b
Author: Leandro Regueiro <[email protected]>
Date: Tue May 4 17:52:20 2010 +0200
l10n: Updated Galician (gl) translation to 100%
New status: 33 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 2da0944c5f498d8be65340af6cd0e84e63494bf0
Author: Florian Rivoal <[email protected]>
Date: Thu Apr 29 13:52:42 2010 +0900
Fix support for NetBSD
Fix the code reading cpu state on NetBSD, and support multiple CPUs
while I am at it.
commit d5077564dbe61e86ef7a0504daa4a41ddb6a3a1c
Author: Florian Rivoal <[email protected]>
Date: Thu Apr 29 13:07:12 2010 +0900
Fix support for OpenBSD
Fix the code that reads the cpu state for OpenBSD, and include support
for multiple CPUs. Patch by Landry Breuil.
commit af1261b66a362c04c0678b0156578957e037f892
Author: Nuno Miguel <[email protected]>
Date: Wed Apr 28 17:08:41 2010 +0200
l10n: Updated Portuguese (pt) translation to 100%
New status: 33 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 654e1f4772a892986a3f301252da99b794b0bbad
Author: Cristian Marchi <[email protected]>
Date: Mon Apr 26 20:49:33 2010 +0200
l10n: Updated Italian (it) translation to 100%
New status: 33 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 359e288ebacde1ea2a16328e5b65b32e472e6339
Author: Cristian Marchi <[email protected]>
Date: Mon Apr 26 20:47:59 2010 +0200
l10n: Updated Italian (it) translation to 100%
New status: 33 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 517f42c367c81447cb02efc08e53f0550cc1a17c
Author: Andres Kovtunos <[email protected]>
Date: Fri Apr 23 05:49:20 2010 +0200
l10n: Updated Russian (ru) translation to 96%
New status: 32 messages complete with 1 fuzzy and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 43d0816ace0c8deea4566ea4ff5878275dfae2d1
Author: Andres Kovtunos <[email protected]>
Date: Fri Apr 23 04:42:28 2010 +0200
l10n: Updated Russian (ru) translation to 96%
New status: 32 messages complete with 0 fuzzies and 1 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit f70f24580d6d8701105eb267f2f95dd1b0f9c942
Author: Andres Kovtunos <[email protected]>
Date: Fri Apr 23 04:41:27 2010 +0200
l10n: Updated Russian (ru) translation to 90%
New status: 30 messages complete with 1 fuzzy and 2 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit b9e7a26f46b9b483439be49ed4113f93e66e33b2
Author: Sergio Marques <[email protected]>
Date: Mon Apr 19 15:15:52 2010 +0200
l10n: Updated Portuguese (pt) translation to 100%
New status: 33 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 826d6a7fc5b79e7a769f35019a7aac3d7777c3bf
Author: Harald Servat <[email protected]>
Date: Mon Apr 19 10:07:05 2010 +0200
l10n: Updated Catalan (Valencian) (ca) translation to 100%
New status: 33 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit d18d5110a98615a05cd4e2abd75ae6cfedec0b8d
Author: Florian Rivoal <[email protected]>
Date: Mon Apr 19 15:04:53 2010 +0900
Repalce xfce4-taskmanager by top
xfce4-taskmanager is not always installed, and isn't even properly
available on non linux systems, so having a dependency on it isn't too
nice. Instead of it, launch top in a terminal when the plugin is
clicked. This is user configurable, so this change only affects the
default.
commit 1e731c3db3b6e0e4b98e9e46ac6b8d5a82eddba3
Author: Harald Servat <[email protected]>
Date: Sun Apr 18 20:01:42 2010 +0200
l10n: Updated Catalan (Valencian) (ca) translation to 100%
New status: 33 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit e8b38672e4455ad16ebf543448ee7d04f5b97e04
Author: Per Kongstad <[email protected]>
Date: Sun Apr 18 13:24:20 2010 +0200
l10n: Updated Danish (da) translation to 100%
New status: 33 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 48b256d15c52f968ea784f1a45314560ba196b28
Author: Xu Meihong <[email protected]>
Date: Sun Apr 18 10:43:48 2010 +0200
l10n: Updated Chinese (China) (zh_CN) translation to 100%
New status: 33 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 77c229184bf798ece34542d818c72b644898a707
Author: Fabian Nowak <[email protected]>
Date: Sun Apr 18 10:40:30 2010 +0200
l10n: Updated German (de) translation to 100%
New status: 33 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 21a89fe6639e83e3c3c716961042ebfcd8d4ae85
Author: Florian Rivoal <[email protected]>
Date: Sun Apr 18 16:59:17 2010 +0900
Create module.xml
Set up the module.xml file.
commit 87517e49fd386e48d8c1f99ddc6beadc0ed1e3dd
Author: Florian Rivoal <[email protected]>
Date: Sun Apr 18 16:21:27 2010 +0900
Minor adjustements to the japanese translation
Fixed the rule for plurals, removed obsolete translations, and replaced
〜 by 約 in the translation, as this is closer to the intended meaning
in english.
commit c5873f3052644aad129c74daeb87a3cc1b5787db
Author: Masato Hashimoto <[email protected]>
Date: Sun Apr 18 08:25:01 2010 +0200
l10n: Updated Japanese (ja) translation to 100%
New status: 33 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 866b1373a646c0f34a95d4f3a429f4d6c3b92c7b
Author: Florian Rivoal <[email protected]>
Date: Sun Apr 18 14:20:06 2010 +0900
Update translation files
Update the LINGUAS file and all the .po files.
commit 7cc4b20cfd569fb3702d42124d5c5344422a0825
Author: Florian <[email protected]>
Date: Sat Apr 17 23:55:19 2010 +0900
Add support for GNU/kFreeBSD
Compile as if on linux when on GNU/kFreeBSD. FreeBSD offers linux /proc
emulation, so it should work just fine. Fix bug 3041.
commit 6d680d270c0793a7249791512a582ceb6da46758
Author: Florian <[email protected]>
Date: Tue Mar 30 10:04:39 2010 +0900
Work on the english text
Improve consistency of the english text, and try to make it a little bit
better.
commit f7727ad35f2c33887626578edfa6701ed3aaedba
Author: Florian <[email protected]>
Date: Mon Mar 29 22:42:35 2010 +0900
Remove extra alignment instruction
Make the properties alittle bit more compact by not alligning things
that don't need to be.
commit a825506ae7947ed7b4099756f939cb1c85d699d9
Author: Florian <[email protected]>
Date: Mon Mar 29 22:16:51 2010 +0900
Check gtk's version
Add and XDT macro in configure.ac to check for the minimum version of
gtk we can use. The dependency on that version is due to using the
gtk_tooltip API.
commit 9626720bb7b25d9a851985393d792874e182dc93
Author: Florian <[email protected]>
Date: Mon Mar 29 12:35:20 2010 +0900
Work on the auto* system
Some macros used in configure.ac are documented as obsolete. Use the
appropriate replacement. Also fix things it warns about, and use the new
version of XDT_I18N.
commit 11305a011760d3d45e82e69a29a1187cc21e4189
Author: Florian <[email protected]>
Date: Mon Mar 29 12:15:05 2010 +0900
Replace deprecated GTK widget
GtkOptionMenu is deprecated. Replace it with a GtkComboBox.
commit a15c2fc21774263eab6cd171d2a062ac66974913
Author: Florian <[email protected]>
Date: Sun Mar 21 23:44:19 2010 +0900
Remove the POT file
The CPUGraph's POT file was outdated, and this is a file that can be
automatically generated anyway.
commit a39f1f0d8ee016dabb4683c333b78c8dc065094e
Author: Florian <[email protected]>
Date: Wed Mar 24 10:34:05 2010 +0900
Remove redundant headers
More headers than necessary were included. Remove the extraneous ones.
commit 75bc87304761a3710950e12f1126c260ea0ff346
Author: Florian <[email protected]>
Date: Sun Mar 21 23:35:35 2010 +0900
Udate POTFILES.in to match the source
Recent changes have moved the code around, and POTFILES.in needed an
update.
commit e580a99d44dc98422aa026769c32aff5eef9c1f0
Author: Florian <[email protected]>
Date: Sun Mar 21 20:13:58 2010 +0900
Use the ngettext on "Show bar(s)"
Use ngettext to display the correct form of the string "Show bar(s)" in
English, and to allow for proper translations of it.
commit 4f993015f474b4501c95c772baa1a2f8c2bb9be4
Author: Florian <[email protected]>
Date: Sat Mar 20 22:11:03 2010 +0900
Fix the tooltip
The tooltip would not be displayed if the refresh rate of the graph was
faster than the tooltip timeout. Also, the tooltip's text didn't use
gettext. Fix these two problems.
commit cfdc1cd8aaae8f6e4bed10aeb26c84965355101f
Author: Florian <[email protected]>
Date: Sat Mar 20 13:41:03 2010 +0900
Properly load the size
The size property was saved and loaded under different names,
effectively not being remembered accros restarts. Fix that.
commit d6609fd7f3106caedeaeca06adf5d16548db1817
Author: Florian <[email protected]>
Date: Mon Mar 15 23:09:33 2010 +0900
Clean up the code
Clean up, mostly focused on naming and using the g* functions or type
where it makes sense.
commit ee6f87b76b9bd8e296061ad1b2b02e3343cbdfbf
Author: Florian <[email protected]>
Date: Mon Mar 15 09:46:58 2010 +0900
Rename some variables
Make some variable names a bit more explicity and in line with the code
conventions, and fix a couple of missing or wrong references in the
process.
commit 6881b079c577cc963a9028e37f17f1095f19998a
Author: Florian <[email protected]>
Date: Sat Mar 13 00:53:23 2010 +0900
Turn on the frame by default
commit 9f7574bbd0e41f6980db58445bffd907a24e2c6d
Author: Florian <[email protected]>
Date: Sat Mar 13 00:39:28 2010 +0900
Work on the click command
Add the option to run the command launched when the plugin is
clicked in a terminal, and to use startup notifications for it. Also
replace top by xfce4-taskmanager as the default command.
commit 8228669b2e2c132ef7fb99e55039ab1aee5a2635
Author: Florian <[email protected]>
Date: Fri Mar 12 11:33:31 2010 +0900
Clean up some cruft
Remove things that don't really help from cpu.c
commit 55bf6f0f9bae6e6e22cd137722023e2deb5e9333
Author: Florian <[email protected]>
Date: Thu Mar 11 22:47:43 2010 +0900
Make the cpu bars optional
The progress bars used to show the level of activity on each cpu were
not part of the early versions of cpugraph, and some user liked it
better without. Make it possible to turn them off. This resolves the
second issue of bug 5433.
commit b3e6892eb8a2eda35c13ac2a10e0a9a2791fe227
Author: Florian <[email protected]>
Date: Thu Mar 11 10:24:42 2010 +0900
Fix the border
Put the border on the right component, and use the right size, to match
the visual style of other xfce pannel plugins. On the other hand, the
border takes space. Making it optional allows for more efficient use of
screen real estate if wanted. This resolves bug 6257 and the first issue
of bug 5433.
commit e1d75ed7673c6624e24f41b954fbb28bdf4e8af8
Author: Florian <[email protected]>
Date: Thu Mar 11 10:13:30 2010 +0900
Fix cpu reading when only reading the total usage
On systems like *BSDs where we currently only track the total cpu usage,
regardless of the number of cores, the code that updates the bars was
wrong, trying to read from a non existing data source for the first
core, instead of the one for total cpu usage.
commit 40d3a89b75febda48e91af6c8c4a4ef1ba8a10e0
Author: Florian <[email protected]>
Date: Thu Mar 11 00:35:50 2010 +0900
Clean up the OS dependent code
Make some legiility and code corectness improvements in the os dependant
code, and depening areas.
commit 85a30ad7d54438ada913826f5cd6bde6f721420a
Author: Florian <[email protected]>
Date: Tue Mar 9 10:20:45 2010 +0900
Reorganize code
Change a little which files contain what part of the code, and improve
consistency in naming.
commit 8432c0feedb6990942b200fa93f235666ec55882
Author: Florian Rivoal <[email protected]>
Date: Sun Mar 7 21:08:32 2010 +0900
Add missing return value
Fix the last remaining of the problems described in bug 2690. The
others have already been taken care of.
commit 9393bdb00aa1c174e29fc8ff49b0963a2052077e
Author: Florian Rivoal <[email protected]>
Date: Sun Mar 7 20:02:34 2010 +0900
Fix bug 2845
int and long are different on 64 bit cpus, so don't use them
interchangeably.
commit 25ef685df3b0a62ac0dc1420a904ce6216842500
Author: Florian Rivoal <[email protected]>
Date: Sun Mar 7 19:37:10 2010 +0900
Fix OpenBSD support (Bug 4228)
Apply the patch offered in bug 4228 by Landry Breuil, to fix OpenBSD
support.
commit 3a14e29e4bc658ed32b83ef6e1e605902206bdb4
Author: Florian <[email protected]>
Date: Tue Mar 2 10:05:46 2010 +0900
Fix the Led mode drawing code
The led drawing mode had 2 bugs. In fire mode, it would crash if the cpu
usage reached 100%, and the colors were miscalculated. Reorganize the
code to be clearer, and the bugs go away amlost by themselves.
commit 67776854c6f200ae41561f1d3d4145c11d108edc
Author: Florian <[email protected]>
Date: Mon Mar 1 21:21:12 2010 +0900
Change the way drawing code is called
Don't preallocate resources that the various drawing modes may or may
not need, and let them do it. Also, use proper gtk background settings
rather than pait the entire widget manually with the background color.
commit 4690fcbad685a0cdda13c95a57714b6b0a58d5ee
Author: Florian <[email protected]>
Date: Sun Feb 28 01:47:58 2010 +0900
Fix the resizing logic
The code that determined the size of the history was quite broken, most
often resulting in someting that was larger than necessary, but also in
some cases too small.
commit 358c62c0c9abb7e4f74d5fa802a2a53a8303a520
Author: Florian <[email protected]>
Date: Sat Feb 27 23:29:01 2010 +0900
Clean up the grid rendring code
The grid rendering code was a bit dusty, now it is shiny.
commit 10e904cee3dd59e1efee1f6cb2d25488cead1d5c
Author: Florian <[email protected]>
Date: Sat Feb 27 22:46:15 2010 +0900
Get rid of non working code
There was a bunch of cpuFreq code lying around, but the critical part
about getting the data didn't work. Maybe this should be fixed, but in
the meanwhile, there is no point in keeping the rest of the system.
Also, when resising history, the past would be filled with invalid data.
Zeroing it is both quicker and more accurate.
commit e2ede49414d3d4aac031206e8a98e92a96de28b9
Author: Florian <[email protected]>
Date: Sat Feb 27 18:31:40 2010 +0900
Cleanup the Normal rendering mode
General code clean up in the normal rendering mode, and remove mistaken
shift in the normal mode even though the optional frame is drawn outside
of the graph area, the drawing code for the Normal mode tried to
compensate for it.
commit 19f98ab2cff4421efebfe207d4041ca48caa5fa0
Author: Florian <[email protected]>
Date: Sat Feb 27 16:08:08 2010 +0900
Fix the No History mode rendering
A bug caused the No History mode to be drawn in black rather than the
selected color when choosing None as a color mode. Fix that, and do a
general clean up of the code involved in drawing the No History mode.
commit 117cc231611b2ef75ff0884dde5e583b84f43b15
Author: Florian <[email protected]>
Date: Sat Feb 27 15:37:45 2010 +0900
Overhaul the internal handling of colors
There was a lot of duplication or quasi duplication in the code that
deals with the color settings and their handling in the properties
dialog, so a refactoring was in order.
commit 910f847f21e83f1128d21df1c073029618f1ef0b
Author: Florian <[email protected]>