summaryrefslogtreecommitdiff
path: root/NEWS
blob: 1d5346e0027debec4492b0ad38409dd0c15078a7 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
===============
Version 1.9.90
===============

Update to api changes for MateRR* in mate-desktop (thanks monsta for testing)

===============
Version 1.8.0
===============

Show date and time in lock dialog.
Add theme to use GNOME foot logo as floaters screensaver
Rename Floating Feet as Floating MATE
Add GTK3 support

===============
Version  1.1.0
===============

First MATE release.


===============
Version  2.30.2
===============

Brown paper-bag release. Fix unclosed quote in sed in configure.ac.


===============
Version  2.30.1
===============

Non-maintainer release. Translation updates and fixes for systems that don't
support fading, properly grabbing input after wake from suspend, starting DBUS
if needed, and building without XF86VMODE.

Shortlog below:

Carles Ferrando (1):
      Updated Catalan (Valencian) translation

Chris Coulson (1):
      Don't crash on systems that don't support XF86VM or XRANDR gamma fade

Gil Forcada (1):
      Minor fix in Catalan translation

Ivar Smolin (1):
      Estonian translation updated

Jordi Serratosa (1):
      Fixes to Catalan translation

Manoj Kumar Giri (1):
      Updated Oriya Translation

Matthias Clasen (1):
      Bump version

Olav Vitters (1):
      Fix doap file

Ray Strode (1):
      Add session service activation file

Rudols Mazurs (1):
      Updated Latvian translation.

William Jon McCann (2):
      Properly handle monitor configuration changes
      Fix building without XF86VMODE gamma

Wouter Bolsterlee (3):
      Dutch translation updated by Wouter Bolsterlee
      Fix compiler warning by adding GTK_WIDGET() cast


===============
Version  2.30.0
===============

Translation updates

===============
Version 2.29.92
===============

Fixed bugs:
 - Build fix for systems with x11 < 1.3

===============
Version 2.29.91
===============

Fixed bugs:
 - #609789 - CVE-2010-0422, handle monitor hotplugging more securely
 - Fix screen dirt in floaters screensaver

===============
Version 2.29.90
===============

Fixed bugs:
 - #609337, CVE-2010-0414, handle monitor removal more securely

===============
Version 2.29.1
===============

Fixed bugs:
 - #597874, Use xrandr 1.2 gamma fading
 - RH bug #546656, Fix crash in popsquares
 - #598476, Don't crash when lock dialog dies during shake
 - #593616, Fix multi-head issues
 - #600488, Remove session inhibitors if the originator falls of the bus


===============
Version 2.28.0
===============

Fixed bugs:

 - #444927, get idle time from xorg
 - #463010, Port mate-screensaver from libglade to gtkbuilder
 - #564061, Install .desktop file
 - #570402, screensaver crash if number of screens changes
 - #570941, String not marked for translation mate-screensaver-command.c
 - #574896, [Leave message] Cancel button should clean clipboard buffe
 - #576463, can't unlock screen after upgrade until restarting mate-
            screensaver
 - #581995, Fade out doesn't properly fall back to gamma number if X server
            only supports 0-size ramp
 - #586174, Encoding key in desktop files is deprecated
 - #589728, mate-screensaver: implicit declaration g_printf
 - #590776, screensaver is never activated
 - #591193, Update/Create .gitignore
 - #591194, Add Comment and Icon in mate-screensaver.desktop
 - #594082, mate-screensaver ignores input when fading to black

Translators:

- Khaled Hosny (ar)
- Amitakhya Phukan (as)
- Alexander Shopov (bg)
- Runa Bhattacharjee (bn_IN)
- Jamil Ahmed (bn)
- Denis ARNAUD (br)
- Carles Ferrando (ca@valencia)
- Petr Kovar (cz)
- Ask H. Larsen (da)
- Mario Blättermann, Christian Kirbach (de)
- Philip Withnall (en_GB)
- Jorge González (es)
- Ivar Smolin, Mattias Põldaru (et)
- Inaki Larranaga Murgoitio (eu)
- Tommi Vainikainen (fi)
- Claude Paroz (fr)
- Seán de Búrca (ga)
- Antón Méixome (gl)
- Sweta Kothari (gu)
- Yaron Shahrabani (he)
- Rajesh Ranjan (hi)
- Gabor Kelemen (hu)
- Luca Ferretti (it)
- Shankar Prasad (kn)
- Changwoo Ryu (ko)
- Gintautas Miliauskas (lt)
- Rajesh Ranjan (mai)
- Ani (ml)
- Sandeep Shedmake (mr)
- Kjartan Maraas (nb)
- Niels-Christoph Fiedler (nds)
- Manoj Kumar Giri (or)
- A S Alam (pa)
- Tomasz Dominikowski (pl)
- Rodrigo L. M. Flores, Krix Apolinário (pt_BR)
- Duarte Loreto (pt)
- Lucian Adrian Grijincu (ro)
- Matej Urbančič (sl)
- Miloš Popović (sr@latin)
- Miloš Popović (sr)
- Daniel Nylander (sv)
- ifelix (ta)
- krishnababu k (te)
- Theppitak Karoonboonyanan (th)
- Maxim V. Dziumanenko (uk)
- Chao-Hsiung Liao (zh_HK)
- Chao-Hsiung Liao (zh_TW)

===============
Version 2.27.0
===============

- Add an autostart file for mate-screensaver (#585485)

Updated Translations: Telugu, Catalan, zh_CN, Crimean Tatar

===============
Version 2.26.1
===============

- Fixed #572955, audit GError usage (William Jon McCann)
- Fixed #572956, use g_strerror (William Jon McCann)
- Fixed #573495, logout_command setting may be overwritten with keyboard_command value (William Jon McCann)
- Fixed #577739, mate-screensaver-gl-helper calls gdk_x11_visual_get_xvisual with NULL visual (William Jon McCann)
- Fixed #578669, Screenserver (William Jon McCann)

Translations:
- Updated crh: Reşat SABIQ
- Updated ja: Takeshi AIHANA
- Updated kn: Shankar Prasad

===============
Version 2.26.0
===============

- Remove power notice signal
- Rely on MATE session idle detection
- Proxy g-s inhibitors over to the session
- Read status message from session
- Accept a full path for theme (Matthias Clasen)

===============
Version 2.25.2
===============

- Fix pixmap leak (Matthias Clasen)
- Fix dialog border width

===============
Version 2.25.1
===============

- Add bevel around dialog
- Fixed #444927, get idle time from xorg
- Fixed #492949, screensavers-personal-slideshow should not show hidden directories (Jörg)
- Fixed #530561, "Random" preview is always the last saver (Maxim Ermilov)
- Fixed #561855, Calls wrong slideshow binary if there is one installed in $PATH (Frederic Crozat)

Translations:
None

===============
Version 2.24.1
===============

- Fixed #555701, libmate-desktop:mate_bg_create_pixmap() leaks pixmaps and X clients (Scott Remnant)
- Fixed #451498, Preview of "Blank screen" is not consistent (Neil Patel)
- Fixed #552119, Add GTK and MATE to screensaver desktop (William Jon McCann)
- Fixed #552523, Screensaver suddenly stopped working (William Jon McCann)
- Fixed #555254, mate-screensaver-dialog NULL pointer crash (William Jon McCann)
- Fixed #555491, mate-screensaver should release mouse/keyboard when failed to grab both of them (Joey Yu Zheng)
- Fixed #560456, Cleaning up GTK Includes in mate-screensaver (Maxim Ermilov)

Translations:
- Updated ar: Djihed Afifi
- Updated ast: Andre Klapper, Astur
- Updated be@latin: Ihar Hračyška, Ihar Hrachyshka
- Updated pt_BR: Leonardo Ferreira Fontenelle, Vladimir Melo


===============
Version 2.24.0
===============

- Updated LINGUAS, sr@latin.po, sr@Latn: Arangel Angov
- Updated ar: Djihed Afifi, Khaled Hosny
- Updated bg: Alexander Shopov
- Updated bn_IN: Runa Bhattacharjee
- Updated ca: Gil Forcada
- Updated da: Kenneth Nielsen
- Updated de: Hendrik Richter
- Updated dz: Pema Geyleg, Dawa pemo
- Updated en_GB: Philip Withnall, David Lodge
- Updated et: Ivar Smolin
- Updated fr: Claude Paroz
- Updated ga: Seán de Búrca
- Updated hr: Robert Sedak, Ante Karamatić
- Updated hu: Gabor Kelemen
- Updated it: Luca Ferretti
- Updated kn: Shankar Prasad
- Updated ko: Changwoo Ryu
- Updated mk: Arangel Angov, Clytie Siddall <clytie@riverland.net.au>
- Updated ml: Praveen Arimbrathodiyil, പ്രവീണ്‍ അരിമ്പ്രത്തൊടിയില്‍
- Updated mr: Sandeep Shedmake
- Updated nl: Wouter Bolsterlee
- Updated pl: Wadim Dziedzic, wadim dziedzic
- Updated pt_BR: Vladimir Melo
- Updated ro: Mugurel Tudor, Mișu Moldovan
- Updated sr.po, sr@latin: Goran Rakić
- Updated ta: I. Felix
- Updated tr: Baris Cicek


===============
Version 2.23.90
===============

- use standard icon names (Matthias Clasen)
- Paint widget background color as face background color.
- Add/remove windows as necessary in response to RANDR 1.2 events
- Honor the disable_user_switching lockdown key.
- Fixed #547013, The dialog incorrectly tell that the numlock is on (William Jon McCann)

Translations:
- Updated LINGUAS, sr@latin.po, sr@Latn: Goran Rakic
- Updated ar: Khaled Hosny
- Updated cs: Petr Kovar
- Updated eu: Inaki Larranaga Murgoitio, Iñaki Larrañaga Murgoitio
- Updated fi: Ilkka Tuohela, Timo Jyrinki
- Updated gu: Daniel Nylander, Sweta Kothari
- Updated he: Yair Hershkovitz  <yairhr@gmail.com>, Yaniv Abir <yanivabir at gmail dot com>
- Updated ja: Takeshi AIHANA
- Updated lt: Gintautas Miliauskas
- Updated pt: Duarte Loreto
- Updated pt_BR: Vladimir Melo
- Updated sv: Daniel Nylander

Help Manual Translations:
None

===============
Version 2.23.3
===============

        * Fix build issue (Wouter Bolsterlee)
        * Add a simple frame around user icon
        * Add a new child widget to use for themes to draw on

===============
Version 2.23.2
===============

        * Fix gamma lost during fade
        * Show default desktop background behind lock dialog
        * Add reporting of inhibitors to --query command

===============
Version 2.22.2
===============

        * Add a 160 char limit to the message text box.

===============
Version 2.22.1
===============

       * Fix for bug 525785 – CVE-2008-0887

===============
Version 2.22.0
===============

  Translators

        - Updated oc: Yannig Marchegay
        - Updated ca: Gil Forcada
        - Updated eu: Inaki Larranaga Murgoitio, Djihed Afifi <djihed@gmail.com>
        - Updated as: Amitakhya Phukan
        - Updated ar: Artur Flinta, Djihed Afifi <djihed@gmail.com>
        - Updated cs: Petr Kovar, Clytie Siddall <clytie@riverland.net.au>
        - Updated et: Priit Laes  <plaes at svn dot mate dot
        - Updated gl: Ignacio Casal Quinteiro
        - Updated es: Jorge Gonzalez, Djihed Afifi <djihed@gmail.com>
        - Updated bn_IN: Runa Bhattacharjee
        - Updated nl: Wouter Bolsterlee
        - Updated pt: Duarte Loreto
        - Updated nb: Kjartan Maraas
        - Updated tr: Baris Cicek
        - Updated ne: Pawan Chitrakar
        - Updated lt: Gintautas Miliauskas
        - Updated th: Theppitak Karoonboonyanan
        - Updated zh_TW: Taiwan
        - Updated en_GB: Philip Withnall
        - Updated be: Alexander Nyakhaychyk
        - Updated fr: Claude Paroz
        - Updated zh_HK: Hong Kong
        - Updated pt_BR: Leonardo Ferreira Fontenelle
        - Updated de: Andre Klapper
        - Updated hu: Gabor Kelemen
        - Updated fi: bug #518255, Ilkka Tuohela
        - Updated da: Kenneth Nielsen
        - Updated ja: Takeshi AIHANA
        - Updated he: Yair Hershkovitz  <yairhr@gmail.com>
        - Updated be@latin: Ihar Hrachyshka
        - Updated ko: Changwoo Ryu
        - Updated sv: Daniel Nylander
        - Updated mk: Arangel Angov, Ignacio Casal Quinteiro  <nacho.resa@gmail.com>, Clytie Siddall <clytie@riverland.net.au>
        - Updated sk: Marcel Telka
        - Updated pl: Artur Flinta
        - Updated uk: Maxim Dziumanenko
        - Updated mr: Rahul Bhalerao, mr

===============
Version 2.21.6
===============

        * New theme transfer progress dialog. (John Millikin)
        * Migrate mate-vfs to GIO (John Millikin)
        * Set default action after cancelling note.

===============
Version 2.20.0
===============

  mate-screensaver

        * Fixed #442853, Unlock dialog shows Switch User button when /apps/mate-screensaver/user_switch_enabled is false (William Jon McCann)

  Translators

        * Updated el: Nikos Charonitakis
        * Updated vi: Clytie Siddall
        * Updated ca: Gil Forcada
        * Updated it: Luca Ferretti
        * Updated ar: Djihed Afifi <djihed@gmail.com>
        * Updated et: Priit Laes
        * Updated ru: Nickolay V. Shmyrev
        * Updated nl: Wouter Bolsterlee
        * Updated pt: Duarte Loreto
        * Updated nb: Kjartan Maraas
        * Updated tr: Baris Cicek
        * Updated lt: Gintautas Miliauskas
        * Updated ro: Mugurel Tudor
        * Updated ta: I. Felix
        * Updated fr: Stéphane Raimbault
        * Updated da: Kenneth Nielsen
        * Updated hu: Gabor Kelemen
        * Updated ja: Takeshi AIHANA
        * Updated ml: Ani Peter
        * Updated mk: Jovan Naumovski  <jovan@lugola.net>
+
        * Updated sk: Andre Klapper
        * Updated si: Danishka Navin
        * Updated uk: Maxim Dziumanenko



===============
Version 2.19.7
===============

  mate-screensaver

        * Fixed #437225, Solaris needs additional libs linked with to build (William Jon McCann)
        * Fixed #463754, remove last dep on libmate (Jani Monoses)
        * Initialize XWindowAttributes (Rodrigo Moya)
        * Improvements to slideshow (Frederic Crozat)

  Translators

        * Updated gu: Ankit Patel
        * Updated be@latin: Ihar Hrachyshka
        * Updated pt_BR: Leonardo Ferreira Fontenelle
        * Updated ml: Ani Peter
        * Updated de: Hendrik Richter
        * Updated ko: Changwoo Ryu
        * Updated sv: Daniel Nylander
        * Updated es: Jorge Gonzalez
        * Updated th: Theppitak Karoonboonyanan
        * Updated fi: Ilkka Tuohela
        * Updated eu: Inaki Larranaga Murgoitio
        * Updated et: Priit Laes
        * Updated te: Sunil Mohan Adapa
        * Updated ja: Takeshi AIHANA
        * Updated pl: Artur Flinta



===============
Version 2.19.6
===============

  mate-screensaver

        * Fixed #327602, mate-screensaver never propagates the environment to its helper dialog (William Jon McCann)
        * Fixed #456705, useless message on stdout (Bill Nottingham)
        * Fixed #461028, console-kit ActiveChanged (VC switch) does not trigger unlock request (Ian Jackson)
        * Fixed #461722, Add support to disable slideshow randomization (Frederic Crozat)
        * Fixed #461814, Allow to specify background color for image slideshow (Frederic Crozat)
        * Fixed #461824, remove libexif dependency (Frederic Crozat)

  Translators

        * Updated mn: Djihed Afifi <djihed@gmail.com>
        * Updated nl: Wouter Bolsterlee
        * Updated be@latin: Ihar Hrachyshka
        * Updated vi: Nguyễn Thái Ngọc Duy, Clytie Siddall
        * Updated nb: Kjartan Maraas
        * Updated de: Andre Klapper
        * Updated sv: Daniel Nylander
        * Updated mk: Daniel Nylander
        * Updated hu: Gabor Kelemen
        * Updated lv: Daniel Nylander, Djihed Afifi <djihed@gmail.com>
        * Updated si: I. Felix, si
        * Updated en_GB: David Lodge
        * Updated dz: Pema Geyleg
        * Updated pl: Artur Flinta
        * Updated th: Theppitak Karoonboonyanan
        * Updated fi: Ilkka Tuohela
        * Updated et: Priit Laes
        * Updated ja: Takeshi AIHANA
        * Updated es: Jorge Gonzalez
        * Updated ta: I. Felix, I Felix



===============
Version 2.19.5
===============

  mate-screensaver

        * Fixed #331515, No translation for themes in command line help (William Jon McCann)
        * Fixed #354663, lock dialog not visible when using nvidia clone (William Jon McCann)
        * Fixed #434712, mate-screensaver crashes without dbus system bus (William Jon McCann)
        * Fixed #436818, replace mate_help_display (William Jon McCann)
        * Fixed #445443, Screensaver deactivation is not correct (William Jon McCann)

  Translators

        * Updated be@latin: Ihar Hrachyshka
        * Updated vi: Nguyễn Thái Ngọc Duy, Clytie Siddall
        * Updated nb: Kjartan Maraas
        * Updated sv: Daniel Nylander
        * Updated lv: Daniel Nylander
        * Updated si: I. Felix, si
        * Updated en_GB: David Lodge
        * Updated dz: Pema Geyleg
        * Updated es: Jorge Gonzalez
        * Updated th: Theppitak Karoonboonyanan
        * Updated et: Priit Laes
        * Updated pl: Artur Flinta
        * Updated ta: I Felix


===============
Version 2.19.1
===============

  mate-screensaver

        * Fixed #384509, mate-screensaver could allow users to leave notes when screen is locked (William Jon McCann)
        * Fixed #411252, Use xdg-user-dirs to find pictures directory (William Jon McCann)
        * Fixed #428199, Make fast-user-switching work with mdm configurations involving multiple X servers (William Jon McCann)


===============
Version 2.18.1
===============

  mate-screensaver

        * Fixed #424165, power management button should reflect g-p-m status (William Jon McCann)
        * Fixed #425550, mate-screensaver should probably require mouse grab to lock (Ray Strode)

  Translators

        * Updated zh_CN: Funda Wang
        * Updated ca: Josep Puigdemont i Casamajó
        * Updated da: Peter Bach
        * Updated lv: Raivis Dejus
        * Updated sl: Matic Zgur
        * Updated eu: Inaki Larranaga Murgoitio
        * Updated gl: Ignacio Casal Quinteiro


===============
Version 2.18.0
===============

  mate-screensaver

        * Fixed #412486, mate-screensaver doesn't work with xnest (William Lachance)
        * Fixed #412492, mate-screensaver won't build
        * Fixed #417323, build from trunk fails; undefined reference to pango symbols (Elijah Newren)
        * Fixed #417538, unapproved change broke theme management (William Jon McCann)

  Translators

        * Updated ru: Nickolay V. Shmyrev
        * Updated gu: Ankit Patel
        * Updated zh_HK.po, zh_TW: Abel Cheung
        * Updated it: Luca Ferretti
        * Updated mk: Jovan Naumovski  <jovan@lugola.net>
+
        * Updated lt: Gintautas Miliauskas
        * Updated ar: Djihed Afifi <djihed@gmail.com>
        * Updated dz: Pema Geyleg
        * Updated pl: Artur Flinta
        * Updated he: Yair Hershkovitz



===============
Version 2.17.8
===============

  mate-screensaver

        * Fixed #400579, mate-screensaver fails to compile against openpam (Ray Strode)
        * Fixed #407524, Freeze on unlock screen (William Jon McCann)
        * Fixed #407964, direct fast user switching (William Jon McCann)
        * Fixed #411393, 'switch user' button needs to turn inactive on selection (William Jon McCann)
        * Set ConsoleKit idle-hint state

  Translators

        * Updated bg: Alexander Shopov
        * Updated pt: Duarte Loreto
        * Updated ko: Changwoo Ryu
        * Updated hu: Gabor Kelemen
        * Updated lt: Gintautas Miliauskas
        * Updated uk: Maxim Dziumanenko
        * Updated fi: Ilkka Tuohela
        * Updated ja: Takeshi AIHANA
        * Updated pl: Artur Flinta



===============
Version 2.17.7
===============

  mate-screensaver

        * #402183, use mdm socket command to start a login procedure when available (Matthias Clasen)
        * #403936, Specifically block shaping the window (William Jon McCann)
        * Sync FUSA code with upstream

  Translators

        * Updated fr: Stéphane Raimbault
        * Updated nl: Wouter Bolsterlee
        * Updated ca: Josep Puigdemont i Casamajó
        * Updated pt_BR: Leonardo Ferreira Fontenelle
        * Updated da: Lasse Bang Mikkelsen


===============
Version 2.17.6
===============

  mate-screensaver

        * Categorize preferences for the control center (Denis Washington)

  Translators

        * Updated nb: Kjartan Maraas
        * Updated ca: Josep Puigdemont i Casamajó

===============
Version 2.17.5
===============

  mate-screensaver

        * Fix some PAM threading issues
        * Fixed #387572, auth hangs when password is expired
        * Fixed #392780, Pass DBUS_SESSION_BUS_ADDRESS into hack environment

  Translators

        * Updated lv: Raivis Dejus
        * Updated et: Priit Laes
        * Updated ar: Djihed Afifi <djihed@gmail.com>
        * Updated en_GB: British
        * Updated vi: Clytie Siddall


===============
Version 2.17.4
===============

  mate-screensaver

        * Fix non-ramp gamma fading
        * Add script to help debugging
        * Be sure to initialize threading

  Themes

        * (slideshow) Check for empty file list

  Translators

        * Khaled Hosny (ar)
        * Francisco Javier F. Serrador (es)
        * Kjartan Maraas (nb)
        * Theppitak Karoonboonyanan (th)

===============
Version 2.17.3
===============

  mate-screensaver

        * Convert PAM messages to UTF-8 (Ray Strode)
        * Make PAM authentication async (Ray Strode)

  Translators

        * Ivar Smolin (et)
        * Daniel Nylander (sv)

===============
Version 2.17.2
===============

  mate-screensaver

        * Remove the pointer polling
        * Add a keyboard layout indicator (Sergey Udaltsov)
        * Only notice mouse motion of 10% of screen width (Thomas Andersen)
        * Add SessionPowerManagementIdleChanged D-Bus signal
        * Add GetInhibitors D-Bus method

  mate-screensaver-preferences

        * Add a button to launch the power management preferences

  mate-screensaver-command

        * Add option to how long screensaver was active (Patrick McLean)

  Translators

        * Francisco Javier F. Serrador (es)
        * Ivar Smolin (et)
        * Ilkka Tuohela (fi)
        * Ankit Patel (gu)
        * Jovan Naumovski (mk)
        * Kjartan Maraas (nb)

===============
Version 2.17.1
===============

  mate-screensaver

        * Don't poll in dialog

  mate-screensaver-preferences

        * Don't show expander column

  Translators

        * Gil Forcada (ca)
        * Jakub Friedl (cs)
        * Ivar Smolin (et)
        * Ignacio Casal Quinteiro (gl)

===============
Version 2.16.1
===============

  mate-screensaver

        * Set the correct value of DISPLAY for the gl helper
        * Don't queue keys that may cause focus navigation (Bruno Boaventura)

  mate-screensaver-preferences

        * Don't explicitly set icon sizes in preview bar (Dimitur Kirov)

  Translators

        * David Lodge (en_GB)
        * Ivar Smolin (et)
        * Rajesh Ranjan (hi)
        * Luca Ferretti (it)
        * Satoru SATOH (ja)
        * Leonardo Ferreira Fontenelle (pt_BR)

===============
Version 2.16.0
===============

  Translators

        * Kostas Papadimas (el)
        * Iñaki Larrañaga Murgoitio (eu)
        * Meelad Zakaria (fa)
        * Robert-André Mauchin (fr)
        * Rajesh Ranjan (hi)
        * Gabor Kelemen (hu)
        * Gintautas Miliauskas (lt)
        * Raivis Dejus (lv)
        * Jovan Naumovski (mk)
        * Subhransu Behera (or)
        * Duarte Loreto (pt)
        * Matic %GŽ%@gur (sl)
        * Theppitak Karoonboonyanan (th)
        * Deniz Koçak (tr)
        * Ching-Hung Lin (zh_HK)
        * Ching-Hung Lin (zh_TW)

===============
Version 2.15.7
===============

  Translators

        * Rostislav \"zbrox\" Raykov (bg)
        * Gil Forcada (ca)
        * Hendrik Richter (de)
        * Ivar Smolin (et)
        * Ilkka Tuohela (fi)
        * Ankit Patel (gu)
        * Gabor Kelemen (hu)
        * Satoru SATOH (ja)
        * Vladimer Sichinava (ka)
        * Changwoo Ryu (ko)
        * rizoye-xerzi (ku)
        * Ani Peter (ml)
        * Badral (mn)
        * Wouter Bolsterlee (nl)
        * Subhransu Behera (or)
        * Leonid Kanter (ru)
        * Daniel Nylander (sv)
        * Maxim V. Dziumanenko (uk)
        * Clytie Siddall (vi)

===============
Version 2.15.6
===============

  mate-screensaver

        * Support drag-n-drop of themes to preferences dialog
        * Add support for embedding a keyboard in window
        * More memory usage reduction
        * Only allow a small number of queued key events

  Translators

        * Francisco Javier F. Serrador (es)
        * Ivar Smolin (et)
        * Ilkka Tuohela (fi)
        * Christophe Merlet (RedFox) (fr)
        * Ankit Patel (gu)
        * ahmad riza h nst (id)
        * %GŽ%@ygimantas Beru%Gč%@ka (lt)
        * Jovan Naumovski (mk)
        * Kjartan Maraas (nb)
        * Matic %GŽ%@gur (sl)
        * Theppitak Karoonboonyanan (th)

===============
Version 2.15.5
===============

  mate-screensaver

        * Turn off themes when screen is not visible
        * Make the unlock dialog show on correct window under Xinerama
        * Prevent theme flickering from watchdog timer
        * Listen for HAL coffee key events
        * Ignore brightness key events

  mate-screensaver-preferences

        * Populate themes list in an idle after startup

  Translators

        * Mahay Alam Khan (bn_IN)
        * Gil Forcada (ca)
        * Jakub Friedl (cs)
        * Hendrik Richter (de)
        * Kostas Papadimas (el)
        * Francisco Javier F. Serrador (es)
        * Priit Laes (et)
        * Ankit Patel (gu)
        * Rajesh Ranjan (hi)
        * Changwoo Ryu (ko)
        * Fano Rajaonarisoa (mg)
        * Daniel Nylander (sv)
        * Theppitak Karoonboonyanan (th)

===============
Version 2.15.4
===============

  mate-screensaver

        * Override gtk+ theme background style
        * Use helper command to get best GL visual
        * Add a blocking inhibit option to the command-line tool
        * Add short options to the command-line tool
        * Misc memory reduction

  Translators

        * Rostislav \"zbrox\" Raykov (bg)
        * Mahay Alam Khan (bn_IN)
        * Jakub Friedl (cs)
        * Hendrik Richter (de)
        * Francisco Javier F. Serrador (es)
        * Ilkka Tuohela (fi)
        * Robert-André Mauchin (fr)
        * Ignacio Casal Quinteiro (gl)
        * Ankit Patel (gu)
        * Yaniv Abir (he)
        * Rajesh Ranjan (hi)
        * Raivis Dejus (lv)
        * Jovan Naumovski (mk)
        * Kjartan Maraas (nb)
        * Shyam Krishna Bal (ne)
        * Daniel Nylander (sv)
        * Felix (ta)
        * Theppitak Karoonboonyanan (th)

===============
Version 2.15.3
===============

  mate-screensaver

        * Fully support PAM driving the unlock dialog
        * Only support one auth backend configured at build time
        * Don't try to unlock using root's password
        * DBUS API changes based on XDG feedback
        * Add docbook documentation (Richard Hughes)
        * Use replacable tokens in the lock dialog theme glade file
        * Set lock flag before activating (Rodrigo Moya)
        * Fix support for RUNNING_UNDER_MDM environment variable
        * Increase minimum distance the mouse must move to detect motion
        * Add theme engine profiling support
        * Switch user when double clicking in treeview
        * Don't reset throttle when deactivating
        * Try to grab keyboard before doing idle notice fade-out
        * Make activation wait for fade to complete.

  mate-screensaver-preferences

        * Print a warning that locking is disabled when running as root

  Themes

        * (slideshow) Performance improvements (L. David Baron)

  Translators

        * Jakub Friedl (cs)
        * Francisco Javier F. Serrador (es)
        * Ankit Patel (gu)
        * Kjartan Maraas (nb)
        * Theppitak Karoonboonyanan (th)
        * Clytie Siddall (vi)

===============
Version 2.15.2
===============

  mate-screensaver

        * Sync with FUSA code (fixes MDM configuration)
        * Make cancel close the unlock dialog
        * Make button presses and scroll events request an unlock
        * Send DBUS signals before/after authentication is requested
        * Various fixes for async fade out
        * Fix potential crasher when poked while fading
        * Support short username in themed dialog (Matthias Clasen)

  Themes

        * (popsquares) Fix crash when window is NULL (Joe Marcus Clarke)

  Translators

        * Francisco Javier F. Serrador (es)
        * Ignacio Casal Quinteiro (gl)
        * Ankit Patel (gu)
        * Kjartan Maraas (nb)
        * Chao-Hsiung Liao (zh_HK)
        * Chao-Hsiung Liao (zh_TW)

===============
Version 2.15.1
===============

  mate-screensaver

        * Add support for theming the lock dialog
        * Use OpenGL to get the best visual and use it
        * Shorten mouse poll interval
        * New DBUS API for throttle and inhibit
        * Support themes in all XDG dirs (including $HOME)
        * Make caps-lock warning more accurate

  mate-screensaver-preferences

        * Add fullscreen preview
        * Update wording

  Translators

        * Priit Laes (et)
        * Ilkka Tuohela (fi)
        * Ignacio Casal Quinteiro (gl)
        * Ankit Patel (gu)
        * Clytie Siddall (vi)

===============
Version 2.14.1
===============

  mate-screensaver

        * Detect button press activity (Ray Strode)
        * Make operation after system suspend (Ray Strode)
        * Cygwin build fix
        * Use GTimer for portability
        * Obtain new Kerberos credentials when unlocking screen

  Themes

        * (floaters) Use the entire screen at start

  Translators

        * Lukas Novotny (cs)
        * Ivar Smolin (et)
        * Benoît Dejean (fr)
        * Wouter Bolsterlee (nl)
        * Andrzej PolatyÅski (pl)
        * Theppitak Karoonboonyanan (th)
        * Clytie Siddall (vi)

===============
Version 2.14.0
===============

  mate-screensaver

        * Removed unused MateConf keys from schemas
        * Don't queue keypad enter keypresses
        * Use black circle as invisible character in password entry

  Translators

        * Rostislav \"zbrox\" Raykov (bg)
        * Mahay Alam Khan (bn)
        * Gil Forcada (ca)
        * Petr Tomeš (cs)
        * Rhys Jones (cy)
        * David Nielsen (da)
        * Frank Arnold (de)
        * Ivar Smolin (et)
        * Rajesh Ranjan (hi)
        * Luca Ferretti (it)
        * Young-Ho Cha (ko)
        * Kjartan Maraas (nb)
        * Kjartan Maraas (no)
        * Raphael Higino (pt_BR)
        * Duarte Loreto (pt)
        * Laurent Dhima (sq)
        * Daniel Nylander (sv)
        * Maxim V. Dziumanenko (uk)

===============
Version 2.13.92
===============

  mate-screensaver

        * Fix problems when some other program has keyboard grabbed
        * Add a pkg-config file for out of tree themes
        * Use a black bullet character instead of * for password entry
        * Capitalize DBUS method names that weren't already

  mate-screensaver-preferences

        * Track mateconf key changes for themes

  Translators

        * Kostas Papadimas (el)
        * Francisco Javier F. Serrador (es)
        * Ilkka Tuohela (fi)
        * Ignacio Casal Quinteiro (gl)
        * Ankit Patel (gu)
        * Gabor Kelemen (hu)
        * Luca Ferretti (it)
        * Satoru SATOH (ja)
        * Vladimer SIchinava (ka)
        * Hyun-Jin Moon (ko)
        * Žygimantas BeruÄka (lt)
        * Kjartan Maraas (nb)
        * Tino Meinen (nl)
        * Kjartan Maraas (no)
        * Raphael Higino (pt_BR)
        * Leonid Kanter (ru)
        * Theppitak Karoonboonyanan (th)
        * Clytie Siddall (vi)

===============
Version 2.13.91
===============

  mate-screensaver

        * Maintain a pointer grab unless the unlock dialog is up
        * Convert the real and user names to UTF8
        * Use G_GUINT32_FORMAT for communicating XID
        * Start themes after grabbing window
        * Handle broken grabs
        * Don't abort when fade isn't available
        * Display host name in unlock dialog

  mate-screensaver-preferences

        * Add help
        * Don't make heading bold or indent under it

  Themes

        * (floaters) More performance work (Ray Strode)

  Translators

        * Gil Forcada (ca)
        * Lukas Novotny (cs)
        * Žygimantas BeruÄka (lt)
        * Ãivind Hoel (nb)

===============
Version 2.13.90
===============

  mate-screensaver

        * Ignore our windows when watching for map and configure events
        * Clear window after showing to prevent flashing
        * Don't start child processes in home directory

  themes

        * (floaters) Cap update rate (Ray Strode)

  Translators

        * Rostislav \"zbrox\" Raykov (bg)
        * Hendrik Brandt (de)
        * Ilkka Tuohela (fi)
        * Ignacio Casal Quinteiro (gl)
        * Ankit Patel (gu)
        * Tino Meinen (nl)
        * Theppitak Karoonboonyanan (th)
        * Chao-Hsiung Liao (zh_HK)
        * Chao-Hsiung Liao (zh_TW)

==============
Version 2.13.5
==============

  mate-screensaver

        * Move DPMS functionality to mate-power-manager
        * Rename the DBUS interface from screensaver to ScreenSaver
        * Disable the X.org grab smasher
        * Don't do the slow fade if we are inhibited
        * Fix screen flashing after idle activation

  mate-screensaver-preferences

        * Rework dialog for setting session idle timeout
        * Remove unused help button

  Translators

        * Rostislav \"zbrox\" Raykov (bg)
        * Adam Weinberger (en_CA)
        * Francisco Javier F. Serrador (es)
        * Ilkka Tuohela (fi)
        * Ignacio Casal Quinteiro (gl)
        * Takeshi AIHANA (ja)
        * Tino Meinen (nl)
        * Clytie Siddall (vi)
        * Abel Cheung (zh_HK)
        * Abel Cheung (zh_TW)

==============
Version 0.0.24
==============

  mate-screensaver

        * Add proper session idle reporting
        * Clear all children of toplevel windows

  Translators

        * Josep Puigdemont i Casamajó (ca)
        * Adam Weinberger (en_CA)
        * Francisco Javier F. Serrador (es)
        * Ilkka Tuohela (fi)
        * Ankit Patel (gu)
        * Žygimantas BeruÄka (lt)
        * Tino Meinen (nl)
        * Слободан Ð. СÑедоÑÐµÐ²Ð¸Ñ (sr)
        * Theppitak Karoonboonyanan (th)
        * Clytie Siddall (vi)

==============
Version 0.0.23
==============

  mate-screensaver

        * Fix idle warning cancellation
        * Changes to D-Bus API
        * Add --debug command line option
        * Build fix when DPMS disabled

  themes

        * (floaters) New theme engine (Ray Strode et al)

  Translators

        * Francisco Javier F. Serrador (es)
        * Ignacio Casal Quinteiro (gl)
        * Ankit Patel (gu)
        * Takeshi AIHANA (ja)
        * Theppitak Karoonboonyanan (th)

==============
Version 0.0.22
==============

  mate-screensaver

        * Don't mess up event mask for root window.

  Translators

        * Miloslav Trmac (cs)
        * Gabor Kelemen (hu)
        * Kjartan Maraas (nb)
        * Kjartan Maraas (no)

==============
Version 0.0.21
==============

  mate-screensaver

        * Try to prevent popups over screensaver window
        * Use an interruptable slow fade before idle activation

  Translators

        * Rostislav \"zbrox\" Raykov (bg)
        * Ilkka Tuohela (fi)
        * Åygimantas BeruÄka (lt)
        * Amanpreet Singh Alam (pa)
        * Marcel Telka (sk)
        * Theppitak Karoonboonyanan (th)

==============
Version 0.0.20
==============

  mate-screensaver

        * Fix blanking when running under Xnest

==============
Version 0.0.19
==============

  mate-screensaver

        * Allow trying password after auth failure
        * Allow more space for user list
        * Make unlock dialog centered vertically
        * Use OverrideRedirect windows
        * Sync with latest FUSA version
        * Add test for window/dialog subsystem
        * Fix leaking of signal handlers
        * Misc correctness fixes

  Translators

        * Adam Weinberger (en_CA)
        * Francisco Javier F. Serrador (es)
        * Davy Defaud (fr)
        * Takeshi AIHANA (ja)
        * Åygimantas Beruka (lt)

==============
Version 0.0.18
==============

  mate-screensaver

        * UI tweaks for unlock dialog
        * Fix Intel compiler warnings (Kjartan Maraas)
        * Do more error checking of MateConf input
        * Check for command parsing errors
        * Fix leaks
        * Redesign the idle watcher and fix leaks
        * Solaris build fixes (Damien Carbery)

  mate-screensaver-preferences

        * Make lock toggle work again

  Translators

        * Miloslav Trmac (cs)
        * Adam Weinberger (en_CA)
        * Francisco Javier F. Serrador (es)
        * Davy Defaud (fr)
        * Gabor Kelemen (hu)
        * Takeshi AIHANA (ja)
        * Tino Meinen (nl)

==============
Version 0.0.17
==============

  mate-screensaver

        * Restart idle watch if can't grab keyboard
        * Make timeout in preferences work again
        * Daemonize process by default
        * Add option --no-daemon
        * Don't use any icon if face image is not found

  Translators

        * Adam Weinberger (en_CA)
        * Kjartan Maraas (nb)
        * Kjartan Maraas (no)

==============
Version 0.0.16
==============

  mate-screensaver

        * Shake the dialog when authentication fails
        * Maintain nicer aspect ratio on unlock dialog
        * Only notice motion of 10 pixels or more
        * Periodically raise windows
        * Don't emit duplicate response signals from dialog
        * Make dialog buttons insensitive when input isn't allowed
        * Add a mateconf setting for the logout command

  themes

        * (slideshow) Skip thumbnail images

  Translators

        * Rostislav \"zbrox\" Raykov (bg)
        * Adam Weinberger (en_CA)
        * Francisco Javier F. Serrador (es)
        * Takeshi AIHANA (ja)
        * Tino Meinen (nl)
        * Funda Wang (zh_CN)

==============
Version 0.0.15
==============

  mate-screensaver

        * First version with working power management
        * Add Gamma fade out
        * Don't forward first enter or space to unlock dialog
        * Make poke command work when screen is blanked
        * Add getIdleTime dbus method
        * Translation fixes

  themes

        * (slideshow) Optionally use EXIF info to rotate images
                (torkel@acc.umu.se)

  Translators

        * Rostislav \"zbrox\" Raykov (bg)
        * Miloslav Trmac (cs)
        * Adam Weinberger (en_CA)
        * Žygimantas BeruÄka (lt)
        * Kjartan Maraas (nb)
        * Tino Meinen (nl)
        * Kjartan Maraas (no)

==============
Version 0.0.14
==============

  mate-screensaver

        * Don't drop keypresses before unlock dialog appears
        * Use .desktop files and menu spec to find themes
        * Simplify unlock dialog
        * Make user switching a mateconf option (Matthias Clasen)
        * Make user switching disabled by default
        * Fix a crash due to a missing error handler

  mate-screensaver-preferences

        * Use new themes API that will theme list to be
          modified by distro/sysadmin/user.

  Translators

        * Ilkka Tuohela (fi)
        * Luca Ferretti (it)
        * Takeshi AIHANA (ja)
        * Tino Meinen (nl)
        * Clytie Siddall (vi)

==============
Version 0.0.13
==============

  mate-screensaver

        * Fix problem when starting MATE from KDM
        * Only look for theme files that end in .xml
        * Look for xscreensaver themes in a few more places

==============
Version 0.0.12
==============

  mate-screensaver

        * Fix crasher caused by destroying NULL hash table
        * Don't activate after last inhibitor is removed

  Translators

        * Adam Weinberger (en_CA)

==============
Version 0.0.11
==============

  mate-screensaver

        * Make unlock dialog show more quickly
        * Support the mateconf cycle timeout key
        * Add system name to unlock dialog

  mate-screensaver-preferences

        * Add random theme (Rodrigo)

  Translators

        * Francisco Javier F. Serrador (es)
        * Tino Meinen (nl)
        * Clytie Siddall (vi)

==============
Version 0.0.10
==============

  mate-screensaver

        * Fix hang on system resume
        * Actually use the mateconf lock key
        * Add configure option to look for xscreensaver hacks (Rodrigo)

  mate-screensaver-preferences

        * Add checkbox to enable/disable locking (Rodrigo)
        * Make type ahead find work correctly
        * HIG fixes (Dennis Cranston)

  Translators

        * Adam Weinberger (en_CA)
        * Eric Maeker (fr)
        * Takeshi AIHANA (ja)
        * Clytie Siddall (vi)

=============
Version 0.0.9
=============

  mate-screensaver

        * Added slideshow theme engine
        * Display username if real name is unknown (Rodrigo)

  themes

        * Added personal slideshow theme
        * Added cosmos slideshow theme

  Translators

        * Rostislav \"zbrox\" Raykov (bg)
        * Tommi Vainikainen (fi)
        * Maxim V. Dziumanenko (uk)

=============
Version 0.0.8
=============

  mate-screensaver

        * Add Dbus API for inhibiting the idle activation
        * Integrate fast-user-switching directly into the unlock dialog.
        * Restart unlock dialog timer after every keystroke
        * Fix leaks
        * Fix xauth problems for some displays

  Translators

        * Adam Weinberger (en_CA)
        * Takeshi AIHANA (ja)
        * Tino Meinen (nl)
        * Abel Cheung (zh_TW)

=============
Version 0.0.7
=============

  mate-screensaver

        * Fix authentication on SuSE/Novell
        * Automatically find the SuSE/Novell mdm.conf file
        * Don't require the mdm.conf file to exist at build time
        * Actually ship the translations
        * Fix crash in popsquares
        * Reset throttle value after deactivation

  Translators

        * Hendrik Richter (de)
        * Adam Weinberger (en_CA)
        * Takeshi AIHANA (ja)
        * Christian Rose (sv)

=============
Version 0.0.6
=============

  mate-screensaver

        * Added Multi-head/Xinerama support
        * Added screensaver throttle capability
        * Depend on dbus >= 0.3
        * Use property based dbus methods/signals
        * Fix Solaris build
        * Install own PAM configuration instead of relying on xscreensaver
        * Add ability to disable 'New Login' button

  mate-screensaver-preferences

        * Support drag and drop of theme configuration files
        * Display a nicer form of the activation time value

  Translators

        * Frank Arnold (de)
        * Adam Weinberger (en_CA)
        * James Ogley (en_GB)
        * Francisco Javier F. Serrador (es)
        * Raphael Higino (pt_BR)
        * Christian Rose (sv)
        * Funda Wang (zh_CN)

=============
Version 0.0.5
=============

  mate-screensaver

        * Support user themes in USER_DATA_DIR/mate-screensaver/themes/
        * Send activation/deactivation signals on session message bus
        * Added DPMS support
        * Added xscreensaver compatible XML configuration for themes
        * Add optional logout button after a specified amount of time
        * Fix leaking of file descriptors

  mate-screensaver-preferences

        * Added configuration applet
        * Use screensaver icon

  themes

        * Added version of popsquares that follows MATE theme