forked from mate-desktop/mate-applets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS.GNOME
3184 lines (2618 loc) · 97.4 KB
/
NEWS.GNOME
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
Changes in GNOME-Applets 2.32.0
===============================
Translation Updates:
Arabic, Basque, Brazilian Portuguese, Catalan, Czech, Danish, Italian,
Japanese, Kazakh, Russian, Traditional Chinese (Hong Kong and Taiwan)
Changes in GNOME-Applets 2.31.92
================================
Translation Updates:
British English, Estonian, Greek, Indonesian,
Polish, Portuguese, Spanish, Tamil
Changes in GNOME-Applets 2.31.91
================================
Invest applet:
- Fixed broken screenshot in the manual. (Enrico Minack)
Translation Updates:
Bulgarian, French, Hungarian, Serbian, Slovenian, Spanish
Changes in GNOME-Applets 2.31.90.1
==================================
General:
- All applets except Invest, Null, and GSwitchIt were ported to new
libgnome-panel-applet API. See bugs 619818 and 571880
Changes in GNOME-Applets 2.31.90
================================
Translation Updates:
Indonesian, Norwegian Nynorsk, Norwegian bokmål, Panjabi, Spanish, Swedish
Documentation Translation Updates:
German
Changes in GNOME-Applets 2.31.6
===============================
Invest applet: (Enrico Minack)
- Improved applet icons, fixes bug 532431.
- Updated documentation and added currency support section.
- Added help button to context menu and preferences, fixes bug 563475.
Sticky Notes: (Neil Bird)
- Fixed missing titlebar menu, bug 601908.
- Fixed clicking on desktop to hide Sticky Notes, fixes bugs 614250, 510933.
Translation Updates:
Galician, German, Hebrew, Norwegian, Romanian, Simplified Chinese,
Slovenian, Spanish, Traditional Chinese (Hong Kong and Taiwan)
Changes in GNOME-Applets 2.31.5
===============================
General:
- Compiles with -DGSEAL_ENABLE, bump GTK+ to 2.20
fixes bug 612473 (Andre Klapper).
Invest applet: (Enrico Minack)
- Do not use deprecated libgnome library, fixes bug 597842.
- Improves visibility of numbers in selected row, fixes bug 508419.
- Fractional cent prices are shown in preferences, fixes bug 593435.
- Parse and format numbers using user's locale, fixes bug 608059.
- Does not crash when gnomeconfd is not available, fixes bug 615662.
- Full currency support added, fixes bug 339127 and 609547.
- Help file seriesid clash fixed, see bug 599728.
Multiload:
- Update the multiload tooltip periodically, see bug 617992 (Max Ulidtko).
Translation Updates:
Armenian, Catalan, Crimean Tatar/Turkish, Esperanto, Estonian, Galician,
Greek, Hebrew, Indonesian, Kannada, Latvian, Occitan, Oriya, Shavian,
Slovenian, Spanish, Thai, Uighur
Documentation Translation Updates:
Danish, Galician, Finnish
Changes in GNOME-Applets 2.30.0
===============================
gswitchit:
- Build a null keyboard indicator applet so that it can be properly
removed from the panel configuration on upgrade.
Weather applet:
- Fix mnemonics for Find Next button (closes bug #612701)
- Fix format security warning (closes bug #610950)
Invest applet:
- Use network-manager to refresh on network connect (closes bug #605739)
- Fix two spelling errors (closes bug #579607)
New translations:
Asturian, Danish documentation.
Translation Updates:
Basque, Bengali, Brazilian Portuguese, British English, Bulgarian, Catalan,
Crimean Turkish, Czech, Danish, Estonian, Finnish, French, Galician, German,
Greek, Hungarian, Italian, Japanese, Korean, Lithuanian, Norwegian bokmål,
Polish, Portuguese, Punjabi, Romanian, Russian, Russian, Serbian, Slovenian,
Spanish, Swedish, Tamil, Thai, Traditional Chinese, Ukrainian
Changes in GNOME-Applets 2.29.5
===============================
Note: the gswitchit applet has been removed, and is now replaced by a
notification icon displayed by gnome-settings-daemon.
Drivemount Applet:
- Remove deprecated glib symbols (Javier Jardón).
Invest Applet:
- Use proper labels for the chart selection combo-box (Callum McKenzie).
Sticky Notes:
- More fixes for duplicate labels in the .ui file (Michael Pryc).
Weather Applet:
- Fix weather applet preferences find function (Ray Strode).
Translation Updates:
Arabic, Catalan, Chinese Estonian, Farsi, Finnish, Georgian, German, Greek,
Hebrew, Hungarian, Kirghiz, Norwegian Bokmal, Norwegian Nynorsk, Qırımtatarca,
Romanian, Shavian, Slovenian, Spanish, Swedish, Tamil, Ukrainian
Changes in GNOME-Applets 2.28.0
===============================
Stickynotes:
- Prevent crash with recent GTK+ due to .ui problems (Callum McKenzie).
Invest Applet:
- Prevent loss of stock data when the update failes (Enrico Minack).
Translation Updates:
Assamese Breton, British, Chinese, Czech, Danish, German, Greek, Hungarian,
Kannada, Lithuanian, Marathi, Oriya, Romanian, Slovenian, Swedish, Telugu,
Ukranian
Changes in GNOME-Applets 2.27.92
================================
Invest Applet:
- Refreshing no longer hangs (Enrico Minack).
- Better debugging support (Enrico Minack).
General:
- Autogenerate .gitignore (Luca Ferretti).
Translation Updates:
Basque, Bengali, Brazilian Portugese, French, Gujarati, Hebrew, Hungarian,
Italian, Malayalam, Polish, Punjabi, Serbian, Tamil, Turkish
Changes in GNOME-Applets 2.27.91
================================
CPU Frequency Applet:
- Port to PolicyKit 1.0.
Invest-Applet:
- Remover the 3 year chart in favour of a 5 year one which
actually works (Enrico Minack).
Mini-Commander:
- Catch gnomeconf errors during install (Callum McKenzie).
Translation Updates:
Arabic, Brazialian Portugese, Breton, Bulgarian, Catalan, Czech,
Estonian, Finnish, Galician, German, Hindi, Irish, Italian, Korean,
Norwegian, Oriya, Spanish, Swedish, Thai
Changes in GNOME-Applets 2.27.4
===============================
General:
- Clean up GTK_ includes (Luis Menina).
- Fix the NetworkManager autoconf script (Callum McKenzie).
Invest Applet:
- Allow the user to add their own labels as well as the ticker
symbol (Enrico Minack).
- Fix a crasher (Enrico Minack).
- Make the selction of stocks nicer (Enrico Minack).
- Select the newly added stock for editing (Enrico Minack).
Stickynotes:
- Only save when we need to, not repeatedly (Callum McKenzie).
Trash Applet:
- Move markup out of the translatable strings.
Translation Updates:
Czech, Estonian, Finnish, French, Hebrew, Spanish, Swedish, Tamil, Ukrainian
Documentation Translation Updates:
Czech, Finnish
Changes in GNOME-Applets 2.27.3
===============================
Note that the ChangeLog is now automatically updated from the git
logs. This should correct the missing entries for the last release.
General:
- Use of NetworkManager can now be turned off via the
--disable-networkmanager argument to configure (Romain Perier, 578951).
- Use quadrigraphs in configure.in messages to reduce quoting (Callum
McKenzie).
- Add support for the pulse website to our documentatio (Paul Cutler,
577197).
Character Picker:
- Accurate documentation about adding palettes (Lucas Lommer, 584238).
Sticky Notes:
- Don't close the prefs dialog when a check-mark is toggled (Sergey
Rudchenko, 567477).
Weather Applet:
- Fix network state detection (Matthias Clasen, 579098).
Translation Updates:
Bengali, Estonian, Hebrew, Hindi, Norwegian bokmål, Spanish, Tamil
Documentation Translation Updates:
Chinese, Czech
Changes in GNOME-Applets 2.27.2
===============================
Please note that the ChangeLogs are slightly inaccurate since I am in
the process of shifting to one generated from git logs. Normal service
should resume bu 2.27.3.
Character Picker:
- Add support for South African languages (Dwayne Bailey,
407409).
Mixer Applet:
- Make the up and down keys (and mouse scroll wheel) work
correctly for the dock slider, despite what GTK thinks
(Callum McKenzie, 581448).
- Fix a reference couting bug that would cause crashes at
exit (Callum McKenzie, 564735).
- Make the dock window multihead aware (Matt Keenan, 583452).
General:
- Make translations easier by removing unnecessary markup
from GtkBuilder .ui files (Callum McKenzie, 112962).
- Remove .glade files now that glade can edit the .ui files
directly.
Translation Updates:
Bulgarian, Danish, Estonian, German, Greek, Italian, Spanish, Tamil
Documentation Translation Updates:
Chinese, Greek
Changes in GNOME-Applets 2.27.1
===============================
Accessibility Applet:
- Show the correct icon (Callum McKenzie).
Drivemount Applet:
- Behave sensibly on gnomeconf corruption or missing icons (Callum McKenzie).
Mini-Commander:
- Add https support.
Null Applet:
- Remove debugging code (Callum McKenzie).
- Mark the applet names for translation.
Stickynotes Applet:
- Add scrollbars if the note gets too large for the screen (Dennis Hilmar).
Weather Applet:
- Protect against crashes when the locations file is missing (Callum
McKenzie).
General:
- Added a DOAP file for the project.
- Trigger timeouts at second boundaries for efficiency (gQuigs).
- Uneeded duplicate images removed from the documentation translations.
Translation Updates:
as, crh, cs, es, kn, sr
Documentation Translation Updates:
el, ru, zh_CN
Changes in GNOME-Applets 2.26.1
===============================
Drivemount Applet:
- Don't crash if the icons can't be found or gnomeconf is down (340410, Callum
McKenzie).
Keyboard Accessibility Indicator:
- Load icons correctly (576707, Callum McKenzie).
Weather Applet:
- Fix a crash if the locations could not be read (554856, Callum McKenzie).
Translation Updates:
ar, as, crh, it, kn, sr
Documentation Translation Updates:
cs, el, ru
Changes in GNOME-Applets 2.26.0
===============================
CPU Frequency Selector:
- Fix crasher for non-authorized users.
Invest Applet:
- Correctly install defs.py without distributing it.
Mixer Applet:
- Hide the applet when the escape key is pressed.
- Sync the dock icon and the panel mute check-box.
Null Applet:
- Correctly replace the mixer applet.
Translation Updates:
af, bn_IN, ca, cs, de, el, gl, gu, he, kn, lt, ml, mr, pl, ru, sv, ta, te
Documentation Translation Updates:
cs, en_GB, hu, it
Changes in GNOME-Applets 2.25.92
================================
mini-commander:
- Make it compilable again. Oops.
Translations:
be, en_GB, fr, ja, ko, or, ro
Documentation Translations:
de eu it
Changes in GNOME-Applets 2.25.91
================================
General:
- Even more deprecated function removal.
Mixer:
- Reload the device list periodically. Prevents 100% CPU use when USB
speakers are plugged in. (Bug 167606/519388).
Translations:
ast, bg, ca, da, eu, fi, gu, hu, it, nb, nl, pt, pt_BR, ro, sv, th, vi, zh_CN, zh_HK, zh_TW
Documentation Translations:
eu de
Changes in GNOME-Applets 2.25.90
================================
*** NOTE ***
The mixer applet has returned to provide an option for those heathens
who have still not converted to the Church of Pulseaudio (and the
gnome-media version of the volume control applet).
- Use ./configure --enable-mixer-applet to enable it. It is disabled
by default.
- Further development of the module will cease after this release cycle.
- GStreamer 0.8 is no longer supported.
************
General:
- There is no explicit dependance on libgnome or libgnomeui. The former
library will still be dragged in via libgnome-panel-applet.
Accessability Applet:
- Replace deprecated function calls and symbols (Maxim Ermilov)
Battstat Applet:
- libgnome removal (Callum McKenzie)
- Fix a reused error object that was causing crashes (Simon Brys)
Character Picker:
- Replace deprecated function calls and symbols (Maxim Ermilov)
Mixer Applet:
- UI cleanups (Callum McKenzie)
- Remove gstreamer 0.8 support (Callum McKenzie)
Modem Lights:
- This has been disabled completely until the build errors can be
fixed. It hasn't worked for some time.
Stickynotes Applet:
- Remove remaining libgnome code (Diego Escalante Urrelo)
Trash Applet:
- Replace main function with a standard macro (Ryan Lortie)
- Improve the context menu (Ryan Lortie)
Weather Applet:
- Replace deprecated function calls and symbols (Maxim Ermilov)
Translations:
ca, es, es_ES, fi, hu, ko, lv, nb, or, pt_BR
Documentation Translations:
de
Changes in GNOME-Applets 2.25.4
===============================
The major change in this release is work by Diego Escalante Urrelo to
remove the dependance on libgnome and libgnomeui. We aren't there yet,
but we're getting close.
Aside from the steady stream of translation work, nothing else got
done on gnome-applets this time around. Sorry.
Translations:
el, es, nb
Documentation Translations:
de
Changes in GNOME-Applets 2.25.3
===============================
*** NOTE ***
As promised in the last release, the mixer applet has been
removed. The gnome-media package now provides an equivalent.
************
CPU Frequency Applet:
- Remove unecessary callbacks (Carlos Garcia Campos)
Invest Applet:
- Allow fractional shares in the Amount field. This is useful for
mutual funds (Callum McKenzie).
Mini Commander:
- This is now buildable again (Matthias Clasen)
Trash Applet:
- Scaling improvements to match other panel features (Ryan Lortie).
- Don't generate WM_TRANSIENT_FOR the root window (Ryan Lortie).
- Set the icon image directly (Ryan Lortie).
Translations:
es, nb
Changes in GNOME-Applets 2.25.2
===============================
*** NOTE ***
The gnome-media package now provides its own panel mixer control (in
the notification area). This renders the current mixer control
obsolete and this will be the last release containing the mixer applet
(at least in its current form).
************
General:
- Fix the build with recent libpanel (Lucas Rocha).
- Rationalise include files (Maxim Ermilov).
- Check for the existence on NetworkManager (Callum McKenzie).
CPU Frequency Applet:
- Fix switching between graph and textmodes (Diego Escalante Urrelo/
Carlos Garcia Campos).
- Fix orientation sizing issues (Carlos Garcia Campos).
- Fix compiler warnings (Carlos Garcia Campos).
Keyboard Switching Applet:
- Fix a leak.
Mixer:
- Change the orientation of the volume control and add a mute and a
"volume control" button (Callum McKenzie).
Multiload:
- Report total bandwidth in the tooltip rather than percentage since
the later number is meaningless (Eric Piel/Benoit Dejean).
Stickynotes:
- Reduce I/O by batching configuration saves (Callum McKenzie).
Weather Applet:
- Use NetworkManager signals and check the weather when the network
comes back up (Matthias Clasen).
Translations:
bg, es, he, it, nb, pt_BR, sk
Docs:
de
Changes in GNOME-Applets 2.25.1
===============================
General:
- Tag the GtkBuilder files so they are translated properly.
(Changwoo Ryu, 555656.)
Drivemount Applet:
- Support authentication (Matthias Clasen, 553960).
- Code cleanups.
Invest Applet:
- Catch errors in parsing the downloaded files (Callum McKenzie, 554425).
- Add a test suite (Callum McKenzie).
- Don't ship generated files (553611).
Multiload Applet:
- Change the old classifications from slip/plip/ethernet/other to
in/out/local. The colours have also been changed to hilight this.
(Eric Piel, 327509.)
Stickynotes:
- Clicking on the applet now hides the stickynotes if they are visible, just
as doing so shows them if they are hidden. (Josselin Mouette, 505475.)
- Be nice to gnomeconf when installing (Remi Cadrona, 554311.)
Changes in GNOME-Applets 2.24.0.1
=================================
Trash Applet
- Fix crash (Callum McKenzie/553418).
Translations:
- sq
Changes in GNOME-Applets 2.24.0
===============================
Since 2.23.92:
- Fix a memory leak in the trash applet (Matthias Clasen/552577).
- Use an explicit COPYING file rather than relying on the autotools
provided one.
- Make policykit optional even if it is availabled (Nirbheek Chauhan/551763).
- Remove references to the unused system-tools-backends (552040).
- Fix the playback of DVDs with the drivemount applet and avoid a crash
(Callum McKenzie/551669).
Translations:
- ar, bn_IN, bg, ca, da, dz, el, et, gu, hu, hr, it, mr, sr, ta, tr, ro
Documentations translations:
- da, el, fr, sv
Changes in GNOME-Applets 2.23.92
================================
Codename: My codename list is running out!
General:
- Remove the explicit dependence on libgail (Pedro Fragoso/540403).
Invest Applet:
- Remove a stray character (550981).
Keyboard Accessibility Status:
- Make sure a colormap is set (Matt Keenan/549722).
Translations:
de, en_GB, et, ga, hr, ko, nl, pl, pt, sl, sq, zh_CN
Changes in GNOME-Applets 2.23.91
================================
Codename: Bora Horza Gobuchul
Warning: This version of gnome-applets requires a recent version of
GTK+ and glib. This is necessary due to the move from the deprecated
library gnome-vfs to its replacement, GIO.
General:
- Install icons in a theme-friendly manner (Philipp Kerling).
- Use the correct DESTDIR (Phillip Kerling).
Drivemount Applet:
- Port to GIO (Pierre Ossman).
Keyboard Switcher:
- Fix a memory leak (Matthias Clasen)
Doc translations:
pt_BR
Translations:
cs, de, es, eu, fi, fr, gl, lt, mai, mk, nb, sv, vi, zh_HW, zh_TW
Changes in GNOME-Applets 2.23.90
================================
Codename: Prime Mover
- Invest Applet
- Remove gnome-vfs dependence (Matteo Zandi).
- Mixer Applet
- Fixes to window positioning and decoration for the popup window (Callum
McKenzie).
- Multiload Applet
- Spelling fixes (Og Maciel).
- Trash Applet
- Remove residual gnome-vfs code (Andre Klapper).
Doc translations:
Translations:
ar, bn_IN, es, fi, gl, he, nb, pt, pt_BR, th
Changes in GNOME-Applets 2.23.4
===============================
Codename: Irregular Apocalyse
- General
- Change the build conditions for gnomeweather to be based on libgnomeweather
and not gnome_vfs.
- Mixer Applet
- Avoid polling for external volume changes if gstreamer can signal us
instead (Bastien Nocera).
- Code cleanups for the dock window and make its behaviour a bit more like
the other dock windows (e.g. the clock applet) (Callum McKenzie).
Doc translations:
ca, fi, ko, sv
Translations:
ar, ca, es, et, gl, he, it, nb, nl, ps, pt_BR, ru, sv, th
Changes in GNOME-Applets 2.23.3
===============================
Codename: Sacrificial Victim
- Character Picker
- Fix the build for gucharmap-2 (Christian Persch)
- CPU Frequency Applet
- Use PolicyKit (when available) instead of installing the binary suid
(Carlos Garcia Campos).
- Increase dbus/dbus-glib dependency to 1.1.2/0.74.
- Invest Applet
- Add a border to the popup window to make it prettier (Callum McKenzie).
- Bring up the preferences window if no stocks are configured
(Callum McKenzie).
- Bring up a warning if no stock data is available rather than doing
nothing (Callum McKenzie).
- Make the debugging flag useful (Callum McKenzie).
Translations:
ar, es, et, gl, nb, nl, vi
Documentation translations:
hu
Changes in GNOME-Applets 2.23.2
===============================
Codename:
- Character Picker
- Use the standard Tango icon (Jaap Haitsma).
- Invest Applet
- Fix the daily change percentage (Matteo Zandi).
- Add documentation (Terry).
- Keyboard Indicator
- Code cleanup (Yuriy).
- C89 fixes (Jens Granseuer).
- Fixed authors email address.
- Mixer Applet
- Fixed the volume calculation for some unusual audio devices (Tim-Philipp
Muller).
- Multiload Applet
- Make the program launched when the applet is clicked configurable via gnomeconf
(Arthur Taylor).
- Memory leak fixed (Vincent Untz).
- Trash Applet
- Make the border wider to make the icon match the others in size (Matthias
Clasen).
- Weather Applet
- Removed the unusable short-cut keys (Callum McKenzie)
Translations: es, gl, he, hu, is, nb,
Docs: fi, pt_BR
Changes in GNOME-Aplets 2.23.1
==============================
Codename: So Much For Subtlety
Changes since 2.22:
- General
- General conversion from glade to gtk-builder for all applets
(Jaap Haitsma).
- Accessx
- Fix the launching of the properties dialog (Matthias Clasen).
- Battstat
- Docs updates (Leonardo Ferreira).
- Invest applet
- Major UI renovation, including a better indicator, spark-lines and
labels on the stocks drop-down window (Matteo Zandi).
- Mini-commander
- Set the window hins for compositing window managers (Danny Baumann).
- Mixer
- Better window type hints for compositing window managers (Danny Baumann).
- Keyboard Indicator
- Replace deprecated functions (Sergey Udaltsov).
- Sticky Notes
- Use the correct icon in the about dialog (Jaap Haitsma).
- Weather
- Move the XML parsing code to libgnomeweather (Vincent Untz).
Translations: bg en_GB es et nb pl sk sv te
Documentation translations: da el fi
Changes in GNOME-Applets 2.22.0
===============================
Codename: "Of Course I Still Love You"
Major changes since 2.20:
- libgnomeweather has been broken out into its own library so it can
be used throughout GNOME.
- The battery status applet handles older systems better.
- The keyboard indicator can now print the keyboard layout.
- Lots of bug fixes.
Updates since 2.21.92:
Accessibility Status: Run the correct command to bring up the
configuration dialog.
Translations: ar, bn_IN, cs, da, el, en_GB, es, gu, hi, hu, it, lt, pt_BR,
ru, sq, uk, zh_HK, zh_TW
Documentation: ca, es, pt_BR, ru
Changes in GNOME-Applets 2.21.92
================================
Codename: "belle pour sébastien"
Changes since the 2.21.91 release:
Trash Applet:
- move to GIO/gvfs
- considerable changes. Please watch for bugs. :)
- requires a somewhat up-to-date gvfs install to support
trash::item-count attribute on trash:/.
Translation updates:
ja pt_BR et fi it tr kn(new) nl nb ar th be@latin eu
ca fr de ko sv it mk gl ne pt fi es pl oc fi th pl
Docs Translations:
mixer: new Brazilian Portuguese translation (Amadeu A. Barbosa Junior)
multiload: updated Korean translation (Changwoo Ryu)
Changes in GNOME-Applets 2.21.91
================================
Codename: "Ablation"
Changes since the 2.21.4 release:
Battstat Applet:
- Fix punctuation in schema names (Kjartan Maraas).
Charpicker applet:
- Fix punctuation in schema names (Kjartan Maraas).
- Add support for transparent panels (Callum McKenzie/Florian Mutter).
CPU Freq. Applet:
- Signed vs. Unsigned fix (Kjartan Maraas).
Stickynotes Applet:
- Fix punctuation in schema names (Kjartan Maraas).
- Don't crash when the panel is very thin (Brian Cameron).
Trash Applet:
- Fix to work with the latest glib (Christian Persch).
Weather Applet:
- Really, really, fix the locations file location.
Translations:
ar as be cs de es eu ja mk nb pl pt si sv th tr zh
Docs Translations:
fr sv
Changes in GNOME-Applets 2.21.4
===============================
Codename: "Fate Still Amenable to Change"
A quick release to ensure the package builds with the latest
libgnomeweather.
Changes in GNOME-Applets 2.21.3
===============================
Codename: "Fate Amenable to Change"
One really big change: libgnomeweather has been moved off to it's own
module, so if you want to build gnome-applets, you'll need that
too. The module is, naturally enough, named libgnomeweather. The benefit
of this change is that you'll soon be seeing weather related info
elsewhere in your desktop.
Changes since the 2.21.2 release:
Accessx Status Applet:
- Make bug buddy work for this applet (Kjartan Maraas).
Character Picker:
- Documentation fixes.
CPU Frequency Monitor:
- Fix memory leaks (kripkensteiner@gmail.com).
Keyboard Indicator:
- The layout can now be printed from the preview (Sergey Udaltsov).
- Require libgnomekbd 2.21.4.1 or later (Sergey Udaltsov).
Mixer:
- Accelerators have been removed from the menu since they were
virtually never usable and now you won't be tempted to type Ctrl-T
in an unfortunate context. The normal under-score style menu
sortcuts are still available (Ted Gould).
Null Applet:
- Make sure our example doesn't crash (Ray Strode).
Sticky Notes:
- Better alignment in the UI (Christian Rose, Andrew Burton).
General:
- Don't install documentation from obsolete applets (Kjartan Maraas).
Translations:
ar, ca, es, et, eu, ga, he, nb, nn, oc, vi, sk, sv,
Documentation Translations:
ca, sv
Changes in GNOME-Applets 2.21.2
===============================
Codename: "Unfortunate Conflict of Evidence"
Changes since the 2.21.1 release:
Battstat Applet:
- Fix crashes with the /proc/acpi fallback code. This should
resolve occaisional crashes when the HAL daemon isn't running.
(Tom Parker)
- Fix the order of the list of translatable files so they get
translated.
Documentation:
- Widespread Korean documentation updates. (Changwoo Ryu)
- New Greek translations. (Koras Papadimas)
- A better abstract for the weather applet documentation (Andreas
Freund).
Weather Applet:
- Added White Rock to the locations (Kip).
- Make the preferences dialog resizeable to make navigating the
locations list easier. (Callum)
- We mispelled Fort Worth in the locations list! (Callum)
- Rename Nottingham East Midlands back to East Midlands because
certain airport authorities just cannot make up their minds (James
Ogley).
- Fix icon theming for the weather conditions and remove the old
versions that were statically compiled in. (Matthias Clasen)
- Removed unused code. (Callum)
- Prevent a space randomly appearing in the weather report (Michael
Vrable)
Translation updates:
be, es, sl
Changes in GNOME-Applets 2.21.1
================================
Codename: "Cargo Cult"
This release is mostly a pile of patches from Bugzilla thrown together
in the hope of producing a general improvement in the code.
Changes since the 2.20.0 release:
Battstat Applet:
- Make error messages translatable (Takao Fujiwara).
- Ensure all strings are translated (Takao Fujiwara).
Drive Mount Applet:
- Make the applet work on the second login (Alex Jones).
Eyes Applet:
- This has been renamed from Geyes to Eyes there by removing the last
g-ish from the applets (Matthias Clasen).
Investment Applet:
- Sort the stocks list to avoid a random list (Matt Chisholm).
- Remove the dead URL in the about dialog (Matt Chisholm,
Andrew Burton).
- Make the pop-window size properly (Matt Chisholm).
- Avoid a division by zero when stocks were free (Callum McKenzie).
Mixer:
- Ellipsise excessively long device names (Bastien Nocera).
- Fix a memory leak (Kjartan Marass).
- Convert the code to use G_DEFINE_TYPE macros (Jaap Haitsma).
- Reduce the rate of callbacks for the mixer applet when idling (Brian
Cameron).
Modem Applet:
- Convert the code to use G_DEFINE_TYPE macros (Jaap Haitsma).
Trash Applet:
- Convert the code to use G_DEFINE_TYPE macros (Jaap Haitsma).
Weather Applet:
- Updates for Virginia (serac).
- All Missouri locations are now covered by a forecast (Michael Crider,
Callum McKenzie).
- Fix the use of nl_langinfo (Matthias Clasen).
- Misc. code fixes (Matthias Clasen).
- Use proper unicode temperature degree symbols (Alex Jones).
- Ensure the library .pc file includes the correct linker flags (Matthias
Clasen).
General:
- A better test for the nl_langinfo function (Matthias Clasen).
Translations (docs + UI):
ar, be, bg, bn, ca, da, de, es, et, fi, gl, hu, lt, nb, pt, ru, si, sl, sv
Changes in GNOME-Applets 2.20.0
================================
Codename: "Trade Surplus"
Changes since the 2.19.91 release:
Trashapple:
- Changed the icon to match the new default theme (Luca Ferretti).
Translations:
ar, as, bn, eu, fr, hu, mk, pl, si, sr, zh_CN
Documentation translations:
it
Changes in GNOME-Applets 2.19.91
================================
Codename: "Excuses And Accusations"
Changes:
Keyboard Indicator:
- Make sure the keyboard applet works after the first login (Sergey Udaltsov).
- Added a "Plugins" menu item (Sergey Udaltsov).
Disk Mounter:
- C89 compatibility fix (Jens Granseuer).
Translations:
as, be, bn_IN, en_CA, es, et, gu, ja, nb, pt_BR, si, ta, vi
Documentation Translations:
ca, oc
Changes in GNOME-Applets 2.19.1
===============================
Codename: "Ablation"
Changes:
- Use a release version of intltool rather than an SVN version.
- Fix a technical mistake in the Dutch documentation translation for
the weather applet.
Translations:
sv
Changes in GNOME-Applets 2.19.0
===============================
Codename: "Only Slightly Bent"
Changes:
General:
- Use the gtk-about stock icon (Jaap Haitsma).
- Use g_set_application (Jaap Haitsma).
- Update to use the new tooltips API (Jaap Haitsma).
- Update minimum GTK/glib to 2.11.0/2.13.0 (Jaap Haitsma).
- Fixes to POTFILES.* and removed unused files (Claude Paroz).
- BSD Makefile compatibility fixes (Joe Marcus Clarke).
Mixer:
- Remove *_DISABLED_DEPRECATED (Callum McKenzie).
GSwitchit:
- Improve bugzilla support (Sergey Udaltsov).
- Drop an uneeded schema (Sergey Udaltsov).
Battstat:
- Kernel 2.6.21 compatibility fix (Daniel Drake/Alan Swanson).
Stickynotes:
- BSD Makefile compatibility fixes (Callum McKenzie).
Gweather/libgnomeweather:
- Add zones to Wisconsin cities (Alex Mauer).
- Fix the day number calculation for observation times
(Elliott Hughes/Callum McKenzie).
- Make sunrise/sunset calculation use the current time (Callum McKenzie).
- Add GNOME_APPLETS_CFLAGS to find the correct includes (Kjartan Marass).
Invest-Applet:
- Fix file encodings (Raphael Slinckx).
- Fix error when Yahoo returns N/A (Raphael Slinckx).
- Fix division by zero (Raphael Slinckx).
- Don't install a desktop file since we're an applet (Raphael Slinckx).
Drivemount:
- Handle icon theme changes (Jesse Stockall/Davyd Madeley).
Trashapplet:
- Handle icon theme changes (Jesse Stockall/Davyd Madeley).
Translations:
ar, be, bg, ca, cs, da, de, dz, el, en_GB, es, eu, fi, fr, gl, gu,
he, it, ja, ka, ko, lt, mk, nl, oc, pl, pt, pt_BR, ro, ru, sl, sv,
ta, th, uk, zh_CN
Changes in GNOME-Applets 2.18.0
================================
"Codename Squishy"
GNOME 2.18 release.
Changes in GNOME-Applets 2.17.90
================================
Codenamed the "someone else should really help maintain this module" release.
See above.
Changes in GNOME-Applets 2.17.1
===============================
Codenamed the "Davyd sucks and had to be publicly shamed before he did this"
release.
See above.
Changes in GNOME-Applets 2.16.1
===============================
"Codename Shiny Disco Balls"
The first point release of the GNOME 2.16 branch of GNOME-Applets.
Changes:
- ensure we link against D-BUS even when we don't use HAL (Sergey Udaltsov)
- battstat: do less polling (Ryan Lortie)
- gswitchit: gcc295 fixes (Jens Granseuer)
- mixer, trashapplet: icon resizing fixes (Matthias Clasen)