File: NEWS

package info (click to toggle)
shotwell 0.30.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 23,816 kB
  • sloc: xml: 22,715; ansic: 157; python: 85; cpp: 79; sh: 48; makefile: 21
file content (2012 lines) | stat: -rw-r--r-- 75,357 bytes parent folder | download
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
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
Shotwell 0.30.1 - 29 Sep 2018
  * Fix appdata URLs
  * Fix "Show in file manager" issues with single quotes
  * Fix cancelling in sharing dialog
  * Fix progress bar in sharing dialog
  * Piwigo: Fix issue with empty dialog after cancelling upload
  * Fix setting the slideshow delay with the spinner
  * Fix icon fall-back for extensions
  * Fix a critical when an image does not have any meta-data
  * Fix GPS coordinate link in extended information for western longitudes

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=718676
 - https://gitlab.gnome.org/GNOME/shotwell/issues/22
 - https://gitlab.gnome.org/GNOME/shotwell/issues/53
 - https://gitlab.gnome.org/GNOME/shotwell/issues/56

All contributors to this release:
 - Jens Georg <mail@jensge.org>

Shotwell 0.30.0 "Celle" - 10 Sep 2018
  * Translation updates
  * Last-minute fix for random segfaults in GSettings

Bugs fixed in this release:
  https://gitlab.gnome.org/GNOME/shotwell/issues/34

All contributors to this release:
 - Jens Georg <mail@jensge.org>
 - Anders Jonsson <anders.jonsson@norsjovallen.se>
 - Rūdolfs Mazurs <rudolfs.mazurs@gmail.com>
 - gogo <trebelnik2@gmail.com>
 - Balázs Meskó <meskobalazs@fedoraproject.org>

Added/updated translations
 - hr, courtesy of gogo
 - hu, courtesy of Meskó Balázs
 - lv, courtesy of Rūdolfs Mazurs
 - sv, courtesy of Anders Jonsson

Shotwell 0.29.92 - 02 Sep 2018
  * Translation updates and build fixes

All contributors to this release:
 - Jens Georg <mail@jensge.org>
 - Kukuh Syafaat <kukuhsyafaat@gnome.org>
 - Chris Ladd <caladd@particlestorm.net>
 - Cheng-Chia Tseng <pswo10680@gmail.com>
 - Andre Klapper <a9016009@gmx.de>

Added/updated translations
 - fr, courtesy of arverne73
 - id, courtesy of Kukuh Syafaat
 - zh_TW, courtesy of Cheng-Chia Tseng

Shotwell 0.29.91 - 16 Aug 2018
  * Add unstable release flatpakref file
  * Remove use of stderr in thumbnailer
  * Remove Facebook publishing plugin from list of default
    plugins
  * Translation updates

All contributors to this release:
 - Jens Georg <mail@jensge.org>
 - NarendraMA <narendra_m_a@yahoo.com>
 - Jiri Grönroos <jiri.gronroos@iki.fi>
 - Emin Tufan Çetin <etcetin@gmail.com>
 - Daniel Mustieles <daniel.mustieles.contractor@bbva.com>

Added/updated translations
 - es, courtesy of Daniel Mustieles
 - fi, courtesy of Jiri Grönroos
 - tr, courtesy of Emin Tufan Çetin

Shotwell 0.29.4 - 20 Jul 2018
  * Fix unmounting of MTP devices
  * Add work-around for PTP devices not showing up anymore
  * Minor visual fixes for new extended properties view
  * Make it possible to override plugin search path
  * Some icon fixes
  * Add feature to flick through the images of an event
    by mouse hover
  * Remove video sprockets
  * Update libraw in flatpak to 0.18.13
  * Leave import-roll sidebar closed by default
  * French translation of shotwell's help

All contributors to this release:
 - Jens Georg <mail@jensge.org>
 - Carsten Csiky (csicar) <carsten.csiky@gmail.com>
 - Claude Paroz <claude@2xlibre.net>
 - Yi-Soo An <yisooan@gmail.com>
 - Mario Blättermann <mario.blaettermann@gmail.com>

Added/updated translations
 - de, courtesy of Mario Blättermann
 - fr, courtesy of arverne73
 - fr, courtesy of Claude Paroz

Shotwell 0.29.3 - 20 Jun 2018
  * Fix Slideshow settings dialog
  * Re-merge faces branch to master
  * Introduce flatpak infrastructure
  * Fix OAuth2 token fetching from Google login
  * Move extended properties into a sidebar


Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=716192
 - https://bugzilla.gnome.org/show_bug.cgi?id=716704
 - https://bugzilla.gnome.org/show_bug.cgi?id=772339
 - https://bugzilla.gnome.org/show_bug.cgi?id=796370
 - https://gitlab.gnome.org/GNOME/shotwell/issues/10
 - https://gitlab.gnome.org/GNOME/shotwell/issues/12

All contributors to this release:
 - Jens Georg <mail@jensge.org>
 - Ricardo Fantin da Costa <ricardofantin@gmail.com>
 - Piotr Drąg <piotrdrag@gmail.com>
 - Yi-Jyun Pan <pan93412@gmail.com>
 - Rafael Fontenelle <rafaelff@gnome.org>
 - Claude Paroz <claude@2xlibre.net>

Added/updated translations
 - fr, courtesy of arverne73
 - pl, courtesy of Piotr Drąg
 - pt_BR, courtesy of Rafael Fontenelle
 - tr, courtesy of Emin Tufan Çetin
 - zh_TW, courtesy of pan93412

Shotwell 0.29.2 - 22 May 2018
  * Fix "out of memory issue" on HiDPI screens
  * Replace all icons with their symbolic variant
  * General icon clean-up
  * Render CheckerboardLayout with theme colors_changed
  * Remove possibility for custom background color in library
  * Enable dark theme by default (can be switched off in settings)
  * Fix linked tags (broken by out-of-memory fix)
  * Translation updates

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=718212
 - https://bugzilla.gnome.org/show_bug.cgi?id=772339
 - https://bugzilla.gnome.org/show_bug.cgi?id=786702
 - https://bugzilla.gnome.org/show_bug.cgi?id=795719
 - See https://developer.gnome.org/hig/stable/typography.html

All contributors to this release:
 - Jens Georg <mail@jensge.org>
 - Piotr Drąg <piotrdrag@gmail.com>
 - Marek Černocký <marek@manet.cz>
 - Marcos Lans <marcoslansgarza@gmail.com>
 - Joerg C. Frings-Fuerst <bug-reports-extern@jff-webhosting.net>
 - Jens Georg <mail+gitkraken@jensge.org>

Added/updated translations
 - cs, courtesy of Marek Černocký
 - gl, courtesy of marcos
 - pl, courtesy of Piotr Drąg

Shotwell 0.29.1 - 24 Apr 2018
 * Fix issue with meson dist tarball generation

Shotwell 0.29.0 - 24 Apr 2018
  * Fix an issue with undefined symbols with certain compilers
  * Remove autotools supports
  * Add GIF support (read-only, animations not supported)
  * Bump GTK requirement to 3.22 and remove deprecated function calls
  * Change some internal drawing to use GTK+ API instead of using Cairo directly
  * Add import rolls
  * Minor visual improvements
  * Dead code and asset removal

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=716284
 - https://bugzilla.gnome.org/show_bug.cgi?id=717833
 - https://bugzilla.gnome.org/show_bug.cgi?id=718742
 - https://bugzilla.gnome.org/show_bug.cgi?id=772339
 - https://bugzilla.gnome.org/show_bug.cgi?id=783268
 - https://bugzilla.gnome.org/show_bug.cgi?id=794293
 - https://bugzilla.gnome.org/show_bug.cgi?id=794456
 - https://bugzilla.gnome.org/show_bug.cgi?id=794673

All contributors to this release:
 - Jens Georg <mail@jensge.org>
 - Piotr Drąg <piotrdrag@gmail.com>
 - Jens Georg <mail+gitkraken@jensge.org>
 - gogo <trebelnik2@gmail.com>
 - Rūdolfs Mazurs <rudolfsm@src.gnome.org>
 - Marek Černocký <marek@manet.cz>
 - Josef Andersson <l10nl18nsweja@gmail.com>
 - Boyuan Yang <073plan@gmail.com>
 - Alan Mortensen <alanmortensen.am@gmail.com>

Added/updated translations
 - cs, courtesy of Marek Černocký
 - da, courtesy of Alan Mortensen
 - hr, courtesy of gogo
 - lv, courtesy of Rūdolfs Mazurs
 - pl, courtesy of Piotr Drąg
 - sv, courtesy of Josef Andersson
 - zh_CN, courtesy of Boyuan Yang

Shotwell 0.28.0 - 12 Mar 2018
  * Translation updates

All contributors to this release:
 - Jens Georg <mail@jensge.org>
 - Alan Mortensen <alanmortensen.am@gmail.com>

Added/updated translations
 - da, courtesy of Alan Mortensen

Shotwell 0.27.92 - 6 Mar 2018
  * Fix log in to Piwigo if password contains &
  * Fix deleting two photos when pressing Delete
  * Translation updates

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=718742
 - https://bugzilla.gnome.org/show_bug.cgi?id=793818

All contributors to this release:
 - Jordi Mas <jmas@softcatala.org>
 - Jens Georg <mail@jensge.org>
 - Мирослав Николић <miroslavnikolic@rocketmail.com>
 - Tim Sabsch <tim@sabsch.com>
 - Piotr Drąg <piotrdrag@gmail.com>
 - Mario Blättermann <mario.blaettermann@gmail.com>
 - Jiri Grönroos <jiri.gronroos@iki.fi>
 - gogo <trebelnik2@gmail.com>
 - GNOME Translation Robot <gnome-sysadmin@gnome.org>
 - Daniel Korostil <ted.korostiled@gmail.com>
 - Balázs Úr <balazs@urbalazs.hu>

Added/updated translations
 - ca, courtesy of Carles Ferrando Garcia
 - de, courtesy of Mario Blättermann
 - de, courtesy of Tim Sabsch
 - es, courtesy of Daniel Mustieles
 - fi, courtesy of Jiri Grönroos
 - gd, courtesy of GunChleoc
 - hr, courtesy of gogo
 - hu, courtesy of Balázs Úr
 - sr, courtesy of Мирослав Николић
 - sr@latin, courtesy of Miroslav Nikolić
 - uk, courtesy of Yuri Chornoivan

Shotwell 0.27.4 - 5 Feb 2018
  * Fix a crash when importing in-place from DAV
  * Fix a crash when removing the last photo of an event
  * Translation updates

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=786531
 - https://bugzilla.gnome.org/show_bug.cgi?id=792498

All contributors to this release:
 - Jordi Mas <jmas@softcatala.org>
 - Jens Georg <mail@jensge.org>
 - Rafael Fontenelle <rafaelff@gnome.org>
 - Marek Cernocky <marek_cernocky@conel.cz>

Added/updated translations
 - ca, courtesy of Carles Ferrando Garcia
 - cs, courtesy of Marek Černocký
 - pt_BR, courtesy of Rafael Fontenelle

Shotwell 0.27.3 - 9 Jan 2018
  * Fix upgrading from Shotwell 0.7.2
  * Make Histogram widget accessible by keyboard
  * Add F4 as shortcut for the Date/Time dialog
  * Fix an issue where the date/time picker was out-of-sync with the
    calendar widget
  * Refactor shotwell.ui into smaller ui files and make some of the
    dialogs templated
  * Rewrite saved search dialog to use GtkListBox
  * Add a very simple Piwigo server to do offline testing
  * Add labels to sliders in adjustment tool
  * Fix issue where Shotwell would fall back to the internal developer
    if the RAW+JPEG pair did not contain an embedded development in the
    RAW files
  * Fix showing the help when running from build folder
  * Fix issue with linking the plugin interfaces multiple times
  * Fix install location for appdata

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=716431
 - https://bugzilla.gnome.org/show_bug.cgi?id=717126
 - https://bugzilla.gnome.org/show_bug.cgi?id=753943
 - https://bugzilla.gnome.org/show_bug.cgi?id=790185
 - https://bugzilla.gnome.org/show_bug.cgi?id=790469
 - https://bugzilla.gnome.org/show_bug.cgi?id=791893
 - https://bugzilla.gnome.org/show_bug.cgi?id=792058

All contributors to this release:
 - Jens Georg <mail@jensge.org>
 - Rico Tzschichholz <ricotz@ubuntu.com>
 - Kukuh Syafaat <syafaatkukuh@gmail.com>
 - Daniel Mustieles <daniel.mustieles@gmail.com>
 - Cheng-Chia Tseng <pswo10680@gmail.com>

Added/updated translations
 - es, courtesy of Daniel Mustieles
 - id, courtesy of Kukuh Syafaat
 - zh_TW, courtesy of Cheng-Chia Tseng

Shotwell 0.27.2 - 11 Dec 2017
  * Use meson for building the debian package
  * Improve the wording for the "Width or Height" scaling constraint
  * Fix unmounting the camera when it is mounted via mtp, not gphoto2
  * Speed up color transformations
  * Refactor Tumblr and Flickr code to use common OAuth1 base class
  * Flickr: Do the authentication in Shotwell, not calling the system browser
  * Fix sorting by title
  * Fix searching for newly added keywords
  * Make it possible to edit month and year easily in date/time picker
  * Doc: Fix keybord shortcut for publishing pane

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=718977
 - https://bugzilla.gnome.org/show_bug.cgi?id=729857
 - https://bugzilla.gnome.org/show_bug.cgi?id=736643
 - https://bugzilla.gnome.org/show_bug.cgi?id=779677
 - https://bugzilla.gnome.org/show_bug.cgi?id=781472
 - https://bugzilla.gnome.org/show_bug.cgi?id=786821
 - https://bugzilla.gnome.org/show_bug.cgi?id=787553
 - https://bugzilla.gnome.org/show_bug.cgi?id=790668

All contributors to this release:
 - Jens Georg <mail@jensge.org>
 - Piotr Drąg <piotrdrag@gmail.com>
 - Mario Blättermann <mario.blaettermann@gmail.com>
 - Marek Cernocky <marek_cernocky@conel.cz>
 - Josef Andersson <l10nl18nsweja@gmail.com>
 - Cheng-Chia Tseng <pswo10680@gmail.com>
 - Ask Hjorth Larsen <asklarsen@gmail.com>
 - Alan Mortensen <alanmortensen.am@gmail.com>

Added/updated translations
 - cs, courtesy of Marek Černocký
 - da, courtesy of Alan Mortensen
 - de, courtesy of Mario Blättermann
 - pl, courtesy of Piotr Drąg
 - sv, courtesy of Josef Andersson
 - zh_TW, courtesy of Cheng-Chia Tseng

Shotwell 0.27.1 - 21 Oct 2017
  * Properly dist meson files with autotools
  * Dist apport helper with autotools
  * Fix checking against unity
  * Build the graphics-processor binary when building with meson
  * Hide toolbar in fullscreen when disabled in settings
  * When clicking ok in import, hide file selector
  * Properly xml-escape the file names in wallpaper.xml
  * Do not re-encode JPEG previews
  * Only create thumbs for RAW imports once
  * Use APPSTREAM instead of APPDATA
  * Improve RAW/JPEG pair matching by sorting file list
  * Fix deprecated "find" icons
  * Fix help for non-recursive photo import
  * Fix menu-bar injection
  * Avoid data corruption when importing from camera
  * Re-use RAW/JPEG association from camera import
  * Rename backing photo when importing to lower case
  * Improve description of mass-storage cameras
  * Improve top-level tool-tips on navigation tree
  * More unicode use
  * When trashing without trash available, also remove RAW file
  * Fix trimming of EXIF thumbs from Canon cameras
  * Import Videos even if they use application/x-extension-mp4
  * Fix missing event pictures when not copying thumbnails
  * Remove Rajce and Yandex plugin from default build
  * Remove useless submenu on saved searches
  * Fix some criticals on context menu actions
  * Some code clean-ups
  * Remove locale-dependent keyboard shortcuts
  * Fix Help to pass yelp-check
  * Fix crash on removing last photo from import roll
  * Fix window icon of start-up dialog
  * Speed-up event creation on import and merge

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=717735
 - https://bugzilla.gnome.org/show_bug.cgi?id=719142
 - https://bugzilla.gnome.org/show_bug.cgi?id=719186
 - https://bugzilla.gnome.org/show_bug.cgi?id=741962
 - https://bugzilla.gnome.org/show_bug.cgi?id=748666
 - https://bugzilla.gnome.org/show_bug.cgi?id=772339
 - https://bugzilla.gnome.org/show_bug.cgi?id=773206
 - https://bugzilla.gnome.org/show_bug.cgi?id=777626
 - https://bugzilla.gnome.org/show_bug.cgi?id=782753
 - https://bugzilla.gnome.org/show_bug.cgi?id=783956
 - https://bugzilla.gnome.org/show_bug.cgi?id=784661
 - https://bugzilla.gnome.org/show_bug.cgi?id=784883
 - https://bugzilla.gnome.org/show_bug.cgi?id=785196
 - https://bugzilla.gnome.org/show_bug.cgi?id=785503
 - https://bugzilla.gnome.org/show_bug.cgi?id=785711
 - https://bugzilla.gnome.org/show_bug.cgi?id=785761
 - https://bugzilla.gnome.org/show_bug.cgi?id=787400

All contributors to this release:
 - Jens Georg <mail@jensge.org>
 - Mario Blättermann <mario.blaettermann@gmail.com>
 - Piotr Drąg <piotrdrag@gmail.com>
 - Marek Cernocky <marek_cernocky@conel.cz>
 - Jordi Mas <jmas@softcatala.org>
 - Andre Klapper <a9016009@gmx.de>
 - Anders Jonsson <anders.jonsson@norsjovallen.se>
 - Marek Černocký <marek@manet.cz>
 - Kukuh Syafaat <syafaatkukuh@gmail.com>
 - Cheng-Chia Tseng <pswo10680@gmail.com>
 - Мирослав Николић <miroslavnikolic@rocketmail.com>
 - Thomas Moschny <thomas.moschny@gmx.de>
 - Stefan Willinger <stefan.home@aon.at>
 - stefan <stefan.home@aon.at>
 - Rafael Fontenelle <rafaelff@gnome.org>
 - Peter Seiderer <ps.report@gmx.net>
 - Marcos Lans <marcoslansgarza@gmail.com>
 - Jiri Grönroos <jiri.gronroos@iki.fi>
 - Jeremy Bicha <jbicha@ubuntu.com>
 - Isaac F. Ferreira Filho <isaacmob@riseup.net>
 - Gert <gw.fossdev@gmail.com>
 - Daniel Mustieles <daniel.mustieles@gmail.com>
 - Brian Masney <masneyb@onstation.org>
 - Balázs Úr <urbalazs@gmail.com>
 - Balázs Meskó <meskobalazs@fedoraproject.org>
 - Andika Triwidada <atriwidada@gnome.org>

Added/updated translations
 - ca, courtesy of Carles Ferrando Garcia
 - cs, courtesy of Marek Černocký
 - de, courtesy of Mario Blättermann
 - es, courtesy of Daniel Mustieles
 - fi, courtesy of Jir Grönroos
 - gl, courtesy of marcos
 - hu, courtesy of Meskó Balázs
 - id, courtesy of Kukuh Syafaat
 - pl, courtesy of Piotr Drąg
 - pt_BR, courtesy of Isaac Ferreira Filho
 - sr, courtesy of Мирослав Николић
 - sr@latin, courtesy of Miroslav Nikolić
 - sv, courtesy of Anders Jonsson
 - zh_TW, courtesy of Cheng-Chia Tseng

Shotwell 0.27.0 - 19 Jun 2017
  * Remove F-Spot import support
  * Create a commandline utility to test image transformations
  * Speed up color transformations a bit
  * Bump GTK+ requirement to 3.18 and remove deprecated functions
  * Clean-up histogram drawing code
  * Run thumbnailer with nice 19
  * Update VAAPI blacklisting for video thumbnailer and new plugin structure
  * Add configurable image background
  * Split several dialogs from shotwell.ui file
  * Move Tumblr to default plugin set
  * Remove some unnecessary memcpys on import
  * Add Meson build support
  * Some more ngettext for plurals
  * Add --fullscreen/-f option for viewer
  * Add option to install Ubuntu apport hook
  * Fix issue when importing to NTFS-backed vboxfs
  * Fix GSettings schema search path for running out-of-tree
  * Work around "Camera locked: -53" error on GNOME
  * Fix issue with missing highlight on dnd actions

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=716448
 - https://bugzilla.gnome.org/show_bug.cgi?id=716499
 - https://bugzilla.gnome.org/show_bug.cgi?id=716547
 - https://bugzilla.gnome.org/show_bug.cgi?id=716599
 - https://bugzilla.gnome.org/show_bug.cgi?id=716708
 - https://bugzilla.gnome.org/show_bug.cgi?id=716830
 - https://bugzilla.gnome.org/show_bug.cgi?id=717767
 - https://bugzilla.gnome.org/show_bug.cgi?id=718809
 - https://bugzilla.gnome.org/show_bug.cgi?id=718846
 - https://bugzilla.gnome.org/show_bug.cgi?id=719020
 - https://bugzilla.gnome.org/show_bug.cgi?id=719031
 - https://bugzilla.gnome.org/show_bug.cgi?id=719240
 - https://bugzilla.gnome.org/show_bug.cgi?id=733652
 - https://bugzilla.gnome.org/show_bug.cgi?id=742563
 - https://bugzilla.gnome.org/show_bug.cgi?id=752008
 - https://bugzilla.gnome.org/show_bug.cgi?id=760868
 - https://bugzilla.gnome.org/show_bug.cgi?id=768938
 - https://bugzilla.gnome.org/show_bug.cgi?id=773267
 - https://bugzilla.gnome.org/show_bug.cgi?id=774650
 - https://bugzilla.gnome.org/show_bug.cgi?id=780811
 - https://bugzilla.gnome.org/show_bug.cgi?id=781567
 - https://bugzilla.gnome.org/show_bug.cgi?id=781897
 - https://bugzilla.gnome.org/show_bug.cgi?id=783250

All contributors to this release:
 - Jens Georg <mail@jensge.org>
 - Piotr Drąg <piotrdrag@gmail.com>
 - Jordi Mas <jmas@softcatala.org>
 - gogo <trebelnik2@gmail.com>
 - Andika Triwidada <atriwidada@gnome.org>
 - Rafael Fontenelle <rafaelff@gnome.org>
 - Mario Blättermann <mario.blaettermann@gmail.com>
 - Jeremy Bicha <jbicha@ubuntu.com>
 - Enrico Nicoletto <liverig@gmail.com>
 - Emin Tufan Çetin <etcetin@gmail.com>
 - Dušan Kazik <prescott66@gmail.com>
 - Daniel Mustieles <daniel.mustieles@gmail.com>
 - Claude Paroz <claude@2xlibre.net>
 - Anders Jonsson <anders.jonsson@norsjovallen.se>
 - Alan Mortensen <alanmortensen.am@gmail.com>

Added/updated translations
 - ca, courtesy of Jordi Mas
 - da, courtesy of Alan Mortensen
 - de, courtesy of Mario Blättermann
 - es, courtesy of Daniel Mustieles
 - fr, courtesy of Claude Paroz
 - hr, courtesy of gogo
 - id, courtesy of Andika Triwidada
 - pl, courtesy of Piotr Drąg
 - pt_BR, courtesy of Enrico Nicoletto
 - sk, courtesy of Dušan Kazik
 - sv, courtesy of Anders Jonsson
 - tr, courtesy of Emin Tufan Çetin

Shotwell 0.26.2 - 1 Jun 2017
  * Fix issue when minimizing publishing UI on Unity
  * Fix browsing on GVFS-mounted file systems
  * Fix missing linebreaks in comments when writing back meta-data
  * Fix crash when no import plugin is selected
  * Translation updates

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=719240
 - https://bugzilla.gnome.org/show_bug.cgi?id=733652
 - https://bugzilla.gnome.org/show_bug.cgi?id=781897
 - https://bugzilla.gnome.org/show_bug.cgi?id=783250

All contributors to this release:
 - Jens Georg <mail@jensge.org>
 - Andika Triwidada <atriwidada@gnome.org>
 - Мирослав Николић <miroslavnikolic@rocketmail.com>
 - Rafael Fontenelle <rafaelff@gnome.org>
 - Dušan Kazik <prescott66@gmail.com>
 - Daniel Mustieles <daniel.mustieles@gmail.com>

Added/updated translations
 - es, courtesy of Daniel Mustieles
 - id, courtesy of Andika Triwidada
 - pt_BR, courtesy of Rafael Fontenelle
 - sk, courtesy of Dušan Kazik
 - sr, courtesy of Мирослав Николић
 - sr@latin, courtesy of Miroslav Nikolić

Shotwell 0.26.1 - 11 Apr 2017
  * Fix "About" wording
  * Fix missing Keyboard shortcuts
  * Viewer: Fix context menu

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=780415
 - https://bugzilla.gnome.org/show_bug.cgi?id=780811

All contributors to this release:
 - Piotr Drąg <piotrdrag@gmail.com>
 - Jens Georg <mail@jensge.org>
 - Rafael Fontenelle <rafaelff@gnome.org>
 - Mario Blättermann <mario.blaettermann@gmail.com>
 - Anders Jonsson <anders.jonsson@norsjovallen.se>

Added/updated translations
 - de, courtesy of Mario Blättermann
 - pl, courtesy of Piotr Drąg
 - pt_BR, courtesy of Rafael Fontenelle
 - sv, courtesy of Anders Jonsson

Shotwell 0.26.0 - 20 Mar 2017
  * Translation updates
  * Fix build on non-glibc systems
  * Fix missing optimisation in standard configure call

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=779844
 - https://bugzilla.gnome.org/show_bug.cgi?id=780116

All contributors to this release:
 - Jens Georg <mail@jensge.org>
 - Piotr Drąg <piotrdrag@gmail.com>
 - Mario Blättermann <mario.blaettermann@gmail.com>
 - Marek Černocký <marek@manet.cz>
 - Josef Andersson <l10nl18nsweja@gmail.com>
 - gogo <trebelnik2@gmail.com>
 - Daniel Mustieles <daniel.mustieles@gmail.com>
 - Baurzhan Muftakhidinov <baurthefirst@gmail.com>
 - Balázs Úr <urbalazs@gmail.com>

Added/updated translations
 - cs, courtesy of Marek Černocký
 - de, courtesy of Mario Blättermann
 - es, courtesy of Daniel Mustieles
 - hr, courtesy of gogo
 - hu, courtesy of Balázs Úr
 - kk, courtesy of Baurzhan Muftakhidinov
 - lv, courtesy of Rūdolfs Mazurs
 - pl, courtesy of Piotr Drąg
 - sv, courtesy of Josef Andersson

Shotwell 0.25.92 - 13 Mar 2017
  * Fix navigation issue when deleting image in fullscreen view
  * Fix toolbox not visible on Mate in fullscreen view
  * Fix navigation in viewer when saving modified photo
  * Fix wrong macro in manpage
  * Clean-up some dependencies
  * Make it possible to enable/disable individual publishers
  * Remove obsolete UI file
  * Move all icons in the resource file
  * Move ui files into resources
  * Remove obsolete Glade helpers
  * Clean-up printing dialog a little
  * Piwigo: Append .jpg extension to published raw files
  * Fix keyboard accessibility of CCW rotation
  * Fix massive memory consumption when importing videos
  * Fix context menu of viewer
  * Fix a useless string copy
  * Use default measurements depending on locale when none are set
  * Translation updates

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=715501
 - https://bugzilla.gnome.org/show_bug.cgi?id=729091
 - https://bugzilla.gnome.org/show_bug.cgi?id=732663
 - https://bugzilla.gnome.org/show_bug.cgi?id=734816
 - https://bugzilla.gnome.org/show_bug.cgi?id=775158
 - https://bugzilla.gnome.org/show_bug.cgi?id=779558
 - https://bugzilla.gnome.org/show_bug.cgi?id=779844
 - https://bugzilla.gnome.org/show_bug.cgi?id=779989

All contributors to this release:
 - Jens Georg <mail@jensge.org>
 - Мирослав Николић <miroslavnikolic@rocketmail.com>
 - Mario Blättermann <mario.blaettermann@gmail.com>
 - Jörg Frings-Fürst <debian@jff-webhosting.net>
 - Jordi Mas <jmas@softcatala.org>
 - GNOME Translation Robot <gnome-sysadmin@gnome.org>
 - Gábor Kelemen <kelemeng@openscope.org>
 - Baurzhan Muftakhidinov <baurthefirst@gmail.com>
 - Anders Jonsson <anders.jonsson@norsjovallen.se>

Added/updated translations
 - ca, courtesy of Jordi Mas
 - de, courtesy of Mario Blättermann
 - gd, courtesy of GunChleoc
 - hu, courtesy of Gabor Kelemen
 - kk, courtesy of Baurzhan Muftakhidinov
 - sr, courtesy of Мирослав Николић
 - sr@latin, courtesy of Miroslav Nikolić

Shotwell 0.25.90 - 27 Feb 2017
  * Remove obsolete option to create new folders on Picasa web albums
  * Update Google API keys
  * Fix Youtube upload by porting to libgdata
  * Use embedded thumbnails in RAW files when default developer is set to
    Camera
  * Remove accidental raw development while importing
  * Fix "Export" menu accidentally being labelled as "Save As"

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=717305
 - https://bugzilla.gnome.org/show_bug.cgi?id=718248
 - https://bugzilla.gnome.org/show_bug.cgi?id=777910

All contributors to this release:
 - Jens Georg <mail@jensge.org>
 - Мирослав Николић <miroslavnikolic@rocketmail.com>
 - Piotr Drąg <piotrdrag@gmail.com>
 - Jiri Grönroos <jiri.gronroos@iki.fi>

Added/updated translations
 - fi, courtesy of Jiri Grönroos
 - pl, courtesy of Piotr Drąg
 - sr, courtesy of Мирослав Николић
 - sr@latin, courtesy of Miroslav Nikolić

Shotwell 0.25.5 - 31 Feb 2017
  * Fix setting of gamma value and color matrix in libraw
  * Extract web publishing authenticators into separate library. That should
    make it possible to easily support UOA and GOA without patching Shotwell.
  * Translation updates

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=778174

All contributors to this release:
 - Jens Georg <mail@jensge.org>
 - Debarshi Ray <debarshir@gnome.org>
 - Piotr Drąg <piotrdrag@gmail.com>
 - Enrico Nicoletto <liverig@gmail.com>
 - Anders Jonsson <anders.jonsson@norsjovallen.se>
 - Alan Mortensen <alanmortensen.am@gmail.com>

Added/updated translations
 - da, courtesy of Alan Mortensen
 - pt_BR, courtesy of Enrico Nicoletto
 - sv, courtesy of Anders Jonsson

Shotwell 0.25.4 - 31 Jan 2017
  * Publishing: Use HTTPS everywhere
  * Translation updates

All contributors to this release:
 - Jens Georg <mail@jensge.org>
 - Piotr Drąg <piotrdrag@gmail.com>
 - Marek Černocký <marek@manet.cz>
 - Daniel Korostil <ted.korostiled@gmail.com>

Added/updated translations
 - cs, courtesy of Marek Černocký
 - pl, courtesy of Piotr Drąg
 - uk, courtesy of Yuri Chornoivan

Shotwell 0.25.3 - 16 Jan 2017
  * Fix event page context menu
  * Try to guess character set of string when UTF-8 validation fails
  * Fix tags context menu
  * Properly switch menu bar when changing pages
  * Fix rating
  * Fix a critical about reparenting a popup menu
  * Fix sidebar context menu
  * Fix toolbar in camera import page
  * Update glade files for all publishers
  * Flickr: Simplify OAuth parsing by using libsoup
  * Fix accelerators not coming from menu model
  * Add <Ctrl>-f as shortcut for search bar
  * Remove AppMenu, needs more thinking about the design.
  * Flickr: Use human-readable size of upload quota
  * Fix leave fullscreen option
  * Fix upload issues with flickr
  * Fix several disabled actions when switching away from pages
  * Fix actions in fullscreen
  * Fix several typos
  * Piwigo: Fix title and comments on upload
  * Improved duplicate detection
  * Updated translations

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=718107
 - https://bugzilla.gnome.org/show_bug.cgi?id=775196
 - https://bugzilla.gnome.org/show_bug.cgi?id=776298
 - https://bugzilla.gnome.org/show_bug.cgi?id=776527
 - https://bugzilla.gnome.org/show_bug.cgi?id=776589
 - https://bugzilla.gnome.org/show_bug.cgi?id=776614
 - https://bugzilla.gnome.org/show_bug.cgi?id=776664
 - https://bugzilla.gnome.org/show_bug.cgi?id=776839

All contributors to this release:
 - Jens Georg <mail@jensge.org>
 - Piotr Drąg <piotrdrag@gmail.com>
 - Marina Prado <mapraro93@hotmail.com>
 - Richard B. Kreckel <kreckel@ginac.de>
 - Marek Černocký <marek@manet.cz>
 - Dušan Kazik <prescott66@gmail.com>
 - Rafael Fontenelle <rafaelff@gnome.org>
 - Andreas Brauchli <andreas.brauchli@sensirion.com>
 - Amos Brocco <amos.brocco@gmail.com>
 - Alan Mortensen <alanmortensen.am@gmail.com>

Added/updated translations
 - cs, courtesy of Marek Černocký
 - da, courtesy of Alan Mortensen
 - es, courtesy of Daniel Mustieles
 - ko, courtesy of Kim Boram
 - pl, courtesy of Piotr Drąg
 - pt_BR, courtesy of Rafael Fontenelle
 - sk, courtesy of Dušan Kazik
 - sr, courtesy of Мирослав Николић
 - sr@latin, courtesy of Miroslav Nikolić

Shotwell 0.25.2 - 12 Dec 2016
  * Fix missing About action
  * Fix setting of initial action state
  * Fix missing initialization of several states
  * Fix sort order not working
  * Fix a critical on startup
  * Fix initial sort order
  * Fix hiding of search toolbar
  * Fix rating filter menu initially being disabled
  * Use Gtk.Revealer for bottom toolbar
  * Fix a copy and paste error in the publishing result
  * Use Application menu
  * Do not make errors in git version check cause false identification of git
    versions
  * Fix debian scripts
  * Fix filter actions not being active
  * Fix initial search bar state not being persisted
  * Remove deprecated Gtk.IconFactory
  * Add missing keyboard shortcut for setting the background
  * Move some dialogs to GtkTemplate, preparing for issues with valac master
  * Fix context-sensitive label of background menu
  * Fix context-sensitive label of Undo and Redo menu
  * Fix context menu on import page

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=719279
 - https://bugzilla.gnome.org/show_bug.cgi?id=774901

All contributors to this release:
 - Jens Georg <mail@jensge.org>
 - Marina Prado <mapraro93@hotmail.com>
 - Piotr Drąg <piotrdrag@gmail.com>
 - Marek Cernocky <marek_cernocky@conel.cz>
 - Mario Blättermann <mario.blaettermann@gmail.com>
 - gogo <trebelnik2@gmail.com>
 - Gábor Kelemen <kelemeng@openscope.org>
 - Alan Mortensen <alanmortensen.am@gmail.com>

Added/updated translations
 - cs, courtesy of Marek Černocký
 - da, courtesy of Alan Mortensen
 - de, courtesy of Mario Blättermann
 - es, courtesy of Daniel Mustieles
 - hr, courtesy of gogo
 - hu, courtesy of Gabor Kelemen
 - pl, courtesy of Piotr Drąg

Shotwell 0.25.1 - 21 Nov 2016
  * Remove deprecated libsoup API
  * Remove extra box around WebKit authenticator view
  * Tumblr: Fix compile error with recent vala compiler
  * Thumbnailer: Fix an issue with accidental closing of file descriptors
  * Distribute misc.vapi
  * Use proper ngettext for plurals instead of hard-coded >1
  * Fix issue with unique index on MD5 and Format
  * Update Piwigo dialogs
  * Remove most of the deprecated API calls for GTK+ <= 3.14
  * Remove some useless warnings generated by Vala
  * Refactor Plugins to use a common approach to load panes from glade
  * Piwigo: Simplify category parsing
  * Remove GtkUIManager and Gtk*Action* from code
  * Fix a crash when clicking on tool window under Wayland
  * Translation updates

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=767181
 - https://bugzilla.gnome.org/show_bug.cgi?id=768271
 - https://bugzilla.gnome.org/show_bug.cgi?id=771788
 - https://bugzilla.gnome.org/show_bug.cgi?id=772223
 - https://bugzilla.gnome.org/show_bug.cgi?id=774057

All contributors to this release:
 - Jens Georg <mail@jensge.org>
 - Marina Prado <mapraro93@hotmail.com>
 - Piotr Drąg <piotrdrag@gmail.com>
 - Rūdolfs Mazurs <rudolfsm@src.gnome.org>
 - Marek Černocký <marek@manet.cz>
 - Marek Cernocky <marek_cernocky@conel.cz>
 - Rafael Fontenelle <rafaelff@gnome.org>
 - Mario Blättermann <mario.blaettermann@gmail.com>
 - Daniel Mustieles <daniel.mustieles@gmail.com>
 - Damian Pietras <bug1@daper.net>
 - Baurzhan Muftakhidinov <baurthefirst@gmail.com>

Added/updated translations
 - cs, courtesy of Marek Černocký
 - de, courtesy of Mario Blättermann
 - es, courtesy of Daniel Mustieles
 - kk, courtesy of Baurzhan Muftakhidinov
 - lv, courtesy of Rūdolfs Mazurs
 - pl, courtesy of Piotr Drąg
 - pt_BR, courtesy of Rafael Fontenelle

Shotwell 0.25.0 - 24 Oct 2016
  * Add contrast to improvements
  * Add a log when shifting events
  * Add a debug output of the current timezone
  * Fix compilation with recent Vala compiler
  * Fix focus handling of full-screen viewer
  * Remove obsolete CSS style property
  * Support ACDSEE tags
  * Use unicode characters
  * Remove deprecated calls
  * Silence two C warnings that are usually caused by valac
  * Refactor web authenticator
  * Spelling fixes
  * Piwigo: Add option to override SSL certificate handling
  * Piwigo: Add option to show the SSL certificate
  * Remove an old GTK+ work-around
  * Remove deprecated GSettings calls
  * Persist export dialog settings
  * Remove deprecated elements from export dialog
  * Port web plugins to new libsoup API
  * Fix libraw binding
  * Piwigo: Fix new album creation
  * Blacklist vaapi decoder to prevent crashes in video meta data extraction
  * Hide "Folder" side-bar when empty
  * Enable SQL debugging through environment variable

Added/Updated requirements:
  GExiv2 >= 0.10.4
  GCR-3
  GLib >= 2.40
  GTK+ >= 3.14

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=716259
 - https://bugzilla.gnome.org/show_bug.cgi?id=716660
 - https://bugzilla.gnome.org/show_bug.cgi?id=718586
 - https://bugzilla.gnome.org/show_bug.cgi?id=719127
 - https://bugzilla.gnome.org/show_bug.cgi?id=762416
 - https://bugzilla.gnome.org/show_bug.cgi?id=765149
 - https://bugzilla.gnome.org/show_bug.cgi?id=767126
 - https://bugzilla.gnome.org/show_bug.cgi?id=767473
 - https://bugzilla.gnome.org/show_bug.cgi?id=771969
 - https://bugzilla.gnome.org/show_bug.cgi?id=772295
 - https://bugzilla.gnome.org/show_bug.cgi?id=772339
 - https://bugzilla.gnome.org/show_bug.cgi?id=772648

All contributors to this release:
 - Jens Georg <mail@jensge.org>
 - Piotr Drąg <piotrdrag@gmail.com>
 - Marek Černocký <marek@manet.cz>
 - Gábor Kelemen <kelemeng@openscope.org>
 - Rico Tzschichholz <ricotz@ubuntu.com>
 - Rafael Fontenelle <rafaelff@gnome.org>
 - Mario Blättermann <mario.blaettermann@gmail.com>
 - Jordi Mas <jmas@softcatala.org>
 - Josh Freeman <josh@twilightedge.com>
 - Daniel Mustieles <daniel.mustieles@gmail.com>
 - Benedikt M. Thoma <gnome@thomba.net>
 - Balázs Meskó <meskobalazs@gmail.com>
 - Anders Jonsson <anders.jonsson@norsjovallen.se>

Added/updated translations
 - ca, courtesy of Jordi Mas
 - cs, courtesy of Marek Černocký
 - de, courtesy of Christian Kirbach
 - de, courtesy of Mario Blättermann
 - es, courtesy of Daniel Mustieles
 - hu, courtesy of Meskó Balázs
 - pl, courtesy of Piotr Drąg
 - pt_BR, courtesy of Rafael Fontenelle
 - sv, courtesy of Anders Jonsson

Shotwell 0.24.0 - 20 Sep 2016
  * Fix a memory leak in library mode
  * Translation updates

All contributors to this release:
 - Marek Černocký <marek@manet.cz>
 - Jens Georg <mail@jensge.org>
 - Daniel Mustieles <daniel.mustieles@gmail.com>
 - Christian Kirbach <Christian.Kirbach@gmail.com>
 - Bernd Homuth <dev@hmt.im>

Added/updated translations
 - cs, courtesy of Marek Černocký
 - de, courtesy of Bernd Homuth
 - es, courtesy of Daniel Mustieles

Shotwell 0.23.7 - 12 Sep 2016
  * Language updates

All contributors to this release:
 - Marek Černocký <marek@manet.cz>
 - Мирослав Николић <miroslavnikolic@rocketmail.com>
 - Piotr Drąg <piotrdrag@gmail.com>
 - Jens Georg <mail@jensge.org>
 - Boram Kim <boramism@gmail.com>
 - Balázs Úr <urbalazs@gmail.com>

Added/updated translations
 - cs, courtesy of Marek Černocký
 - hu, courtesy of Balázs Úr
 - ko, courtesy of Kim Boram
 - pl, courtesy of Piotr Drąg
 - sr, courtesy of Мирослав Николић
 - sr@latin, courtesy of Miroslav Nikolić

Shotwell 0.23.6 - 29 Aug 2016
  * Fix locale-dependent times
  * Use nl_langinfo instead of custom LConv
  * Fix renaming of tags and saved searches
  * Improve message shown on empty camera
  * Make thm a recognized extension for JPEG files

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=716533
 - https://bugzilla.gnome.org/show_bug.cgi?id=718796
 - https://bugzilla.gnome.org/show_bug.cgi?id=731480
 - https://bugzilla.gnome.org/show_bug.cgi?id=759246

All contributors to this release:
 - Jens Georg <mail@jensge.org>
 - Rūdolfs Mazurs <rudolfsm@src.gnome.org>
 - Piotr Drąg <piotrdrag@gmail.com>
 - Mario Blättermann <mario.blaettermann@gmail.com>
 - Christian Kirbach <Christian.Kirbach@gmail.com>
 - Balázs Úr <urbalazs@gmail.com>
 - Balázs Meskó <meskobalazs@gmail.com>

Added/updated translations
 - de, courtesy of Christian Kirbach
 - hu, courtesy of Balázs Úr
 - hu, courtesy of Meskó Balázs
 - lv, courtesy of Rūdolfs Mazurs
 - pl, courtesy of Piotr Drąg

Shotwell 0.23.5 - 15 Aug 2016
  * Remove obsolete files
  * Plugins: Load icons and GtkBuilder files from GResource
  * Offer a way to hide the bottom toolbar
  * Fix .desktop file generation
  * Use Gtk.MessageDialog's printf-style API for strings
  * Add SQL indexes to PhotoTable
  * Add Language headers to po files
  * Update INSTALL file
  * Really remove reference to external hmac_sha1
  * Disambiguate strings for time ranges
  * Implement linked tags
  * Make it more clear that something failed if SSL conncetion was not
    possible
  * Add option to filter by saved search
  * Explicitly link plugins to their dependencies
  * Fix typo in GSettings schema
  * Re-add --disable-extra-plugins configure option
  * Fix settings migrator and thumbnailer path
  * Bump debian compat for proper --libexecdir parameter

Bugs fixed in this release:
 - https://bugs.archlinux.org/task/50129
 - https://bugzilla.gnome.org/show_bug.cgi?id=717523
 - https://bugzilla.gnome.org/show_bug.cgi?id=717321
 - https://bugzilla.gnome.org/show_bug.cgi?id=741962
 - https://bugzilla.gnome.org/show_bug.cgi?id=742670
 - https://bugzilla.gnome.org/show_bug.cgi?id=747368
 - https://bugzilla.gnome.org/show_bug.cgi?id=750902
 - https://bugzilla.gnome.org/show_bug.cgi?id=767473
 - https://bugzilla.gnome.org/show_bug.cgi?id=768360

All contributors to this release:
 - Jens Georg <mail@jensge.org>
 - Piotr Drąg <piotrdrag@gmail.com>
 - Jordi Mas <jmas@softcatala.org>
 - Yosef Or Boczko <yoseforb@src.gnome.org>
 - Rafael Fontenelle <rafaelff@gnome.org>
 - Mario Blättermann <mario.blaettermann@gmail.com>
 - Enrico Nicoletto <liverig@gmail.com>
 - Dušan Kazik <prescott66@gmail.com>
 - Daniel Landau <daniel@landau.fi>
 - burningTyger <burningTyger@users.noreply.github.com>
 - Andreas Brauchli <a.brauchli@elementarea.net>

Added/updated translations
 - af, courtesy of yorbajim
 - ast, courtesy of Xuacu Saturio
 - bg, courtesy of yorbajim
 - bn, courtesy of yorbajim
 - bn_IN, courtesy of runa
 - ca, courtesy of Jordi Mas
 - de, courtesy of Mario Blättermann
 - en_GB, courtesy of yorbajim
 - et, courtesy of yorbajim
 - gu, courtesy of Ankit Patel
 - he, courtesy of Yosef Or Boczko
 - hi, courtesy of Rajesh Ranjan
 - hr, courtesy of yorbajim
 - it, courtesy of milo
 - lv, courtesy of Rūdolfs Mazurs
 - mk, courtesy of yorbajim
 - ml, courtesy of Ani Peter
 - mr, courtesy of sandeeps
 - nn, courtesy of unhammer
 - or, courtesy of Manoj Kumar Giri
 - pa, courtesy of asaini
 - pl, courtesy of Piotr Drąg
 - pt_BR, courtesy of Enrico Nicoletto
 - sk, courtesy of Dušan Kazik
 - sl, courtesy of ikriznar
 - sr@latin, courtesy of Miroslav Nikolić
 - th, courtesy of yorbajim
 - zh_HK, courtesy of Cheng-Chia Tseng

Shotwell 0.23.4 - 20 Jul 2016
  * Plugins: Fix linking error

Shotwell 0.23.3 - 18 Jul 2016

  * libraw: Fix binding of ProcessedImage.data
  * graw: Prevent needless array duplication
  * Fix screenshot URLs in appdata
  * db: Add option to trace SQL statements
  * Change build system to autotools
  * Add help, appdata, gsettings and desktop files to translation system
  * Change way help is built and installed
  * Always install the manpage
  * Several translation fixes
  * Make message more clear that there are no photos matching a filter

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=715578
 - https://bugzilla.gnome.org/show_bug.cgi?id=717064
 - https://bugzilla.gnome.org/show_bug.cgi?id=719122
 - https://bugzilla.gnome.org/show_bug.cgi?id=719200
 - https://bugzilla.gnome.org/show_bug.cgi?id=730665
 - https://bugzilla.gnome.org/show_bug.cgi?id=730669
 - https://bugzilla.gnome.org/show_bug.cgi?id=740873
 - https://bugzilla.gnome.org/show_bug.cgi?id=741508
 - https://bugzilla.gnome.org/show_bug.cgi?id=744251
 - https://bugzilla.gnome.org/show_bug.cgi?id=744254
 - https://bugzilla.gnome.org/show_bug.cgi?id=744255
 - https://bugzilla.gnome.org/show_bug.cgi?id=768054

All contributors to this release:
 - Jens Georg <mail@jensge.org>
 - Piotr Drąg <piotrdrag@gmail.com>
 - Rafael Fontenelle <rafaelff@gnome.org>
 - Daniel Mustieles <daniel.mustieles@gmail.com>
 - Christian Kirbach <Christian.Kirbach@gmail.com>
 - Tiago Santos <tiagofsantos81@sapo.pt>
 - Stas Solovey <whats_up@tut.by>
 - Rico Tzschichholz <ricotz@ubuntu.com>
 - Lorenz Adam Damara <lorenzadam@resolution-consulting.co.id>
 - Jeremy Bicha <jbicha@ubuntu.com>
 - Dušan Kazik <prescott66@gmail.com>
 - Andreas Brauchli <a.brauchli@elementarea.net>

Added/updated translations
 - de, courtesy of Christian Kirbach
 - es, courtesy of Daniel Mustieles
 - gu, courtesy of Ankit Patel
 - id, courtesy of Andika Triwidada
 - pl, courtesy of Piotr Drąg
 - pt_BR, courtesy of Rafael Fontenelle
 - pt, courtesy of Tiago Santos
 - ru, courtesy of Stas Solovey
 - sk, courtesy of Dušan Kazik

Shotwell 0.23.2 - 20 Jun 2016

  * Use yelp-build to generate HTML docs
  * Remove gphoto-2.4 support
  * Fix background color drawing (#766864)
  * Port GtkNotebook to GtkStack (#744289)
  * Fix missing scroll bars in events (#766864)
  * Fix URLs in manpage
  * Clean up external functions
  * Port librest's internal hmac_sha1 implementation to Vala
  * Fix multiplication of symbols in plugins
  * Request "popup" login in Facebook
  * Update help regarding publishing permissions in Facebook (#766919)
  * Add source SVG for new app icons
  * Update logo for help
  * Remove executable flag on images
  * Piwigo: Let libsoup parse the cookie
  * Remove string utility functions in publishing plugins
  * Remove a libgee work-around, bump to 0.10 minimum version
  * Make filter toolbar buttons contain text and image
  * Move commonly used functions into shared library to prevent multiple
    definition of symbols

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=744289
 - https://bugzilla.gnome.org/show_bug.cgi?id=766864
 - https://bugzilla.gnome.org/show_bug.cgi?id=766919
 - https://bugzilla.gnome.org/show_bug.cgi?id=767042

All contributors to this release:
 - Jens Georg <mail@jensge.org>
 - Wolfgang Steitz <wsteitz@gmail.com>
 - Piotr Drąg <piotrdrag@gmail.com>
 - Mario Blättermann <mario.blaettermann@gmail.com>
 - Marek Černocký <marek@manet.cz>
 - Enrico Nicoletto <liverig@gmail.com>
 - Dušan Kazik <prescott66@gmail.com>
 - Daniel Mustieles <daniel.mustieles@gmail.com>
 - Christian Kirbach <Christian.Kirbach@gmail.com>
 - Andika Triwidada <atriwidada@gnome.org>
 - Anders Jonsson <anders.jonsson@norsjovallen.se>
 - Abel 'Akronix' Serrano Juste <akronix5@gmail.com>

Added/updated translations
 - cs, courtesy of Marek Černocký
 - de, courtesy of Christian Kirbach
 - es, courtesy of Daniel Mustieles
 - id, courtesy of Andika Triwidada
 - pt_BR, courtesy of Enrico Nicoletto
 - sk, courtesy of Dušan Kazik
 - sv, courtesy of Anders Jonsson

Added/Updated dependencies
 - libgee minimal version bumped to 0.10

Shotwell 0.23.1 - 23 May 2016
-----------------------------

  * Update Facebook application id. Facebook integration works again (#748991)
  * Remove obsolete VAPIs
  * Remove custom WEXITSTATUS implementation
  * Fix an assert in file monitor caused by renaming a file (#759403)
  * Rename "Yorba website" to "Shotwell website" in About dialog so it
    actually says what it does.
  * Change the way how shotwell checks whether it runs uninstalled to allow
    running with symlinks (#747374)
  * Copyright was transferred from Yorba to SFC
  * Do not block closing the viewer if there was an issue loading the photo
    (#740436)
  * Remove remaining references to .gnome2 directory (#766339)
  * Update icons to hires versions and add a symbolic one (#717326)
  * If we can't find any pixbuf representation of the Photo, push an empty
    pixmap to force the display of the error message (#766338)
  * Fix a critical when get_metadata returns null
  * Remove deprecated calls to gtk_widget_render_icon() (#719188)
  * Panic out if we cannot open the file in the viewer
  * Make toolbar use GtkOverlay instead of implementing a custom pop-up to
    prevent all kinds of issues with overlaying other applications or
    toolboxes (#756126)
  * Remove criticals caused by mouse hiding algorithm

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=717326
 - https://bugzilla.gnome.org/show_bug.cgi?id=740436
 - https://bugzilla.gnome.org/show_bug.cgi?id=747374
 - https://bugzilla.gnome.org/show_bug.cgi?id=748991
 - https://bugzilla.gnome.org/show_bug.cgi?id=756126
 - https://bugzilla.gnome.org/show_bug.cgi?id=759403
 - https://bugzilla.gnome.org/show_bug.cgi?id=766338
 - https://bugzilla.gnome.org/show_bug.cgi?id=766339

All contributors to this release:
 - Jens Georg <mail@jensge.org>
 - Rafael Fontenelle <rafaelff@gnome.org>
 - Piotr Drąg <piotrdrag@gmail.com>
 - Tiago Santos <tiagofsantos81@sapo.pt>
 - Dušan Kazik <prescott66@gmail.com>
 - Daniel Mustieles <daniel.mustieles@gmail.com>
 - Baurzhan Muftakhidinov <baurthefirst@gmail.com>
 - Balázs Meskó <meskobalazs@gmail.com>
 - Adam Dingle <adam@medovina.org>

Added/updated translations
 - es, courtesy of Daniel Mustieles
 - hu, courtesy of Meskó Balázs
 - kk, courtesy of Baurzhan Muftakhidinov
 - pl, courtesy of Piotr Drąg
 - pt, courtesy of Tiago Santos
 - pt_BR, courtesy of Rafael Fontenelle
 - sk, courtesy of Dušan Kazik

Shotwell 0.23.0 - 25 April 2016
-------------------------------

  * Allow thinner minimum sidebar (#718611)
  * Check .cache directory for read/write permissions (#737747)
  * Fix crash during metadata update (#739917)
  * Fixed Crop Ribbon / Control not visible (#747201)
  * Port to webkit2gtk-4.0 (#751709)
  * Have all soup sessions validate TLS certificates
  * Remove shell magic from Makefile
  * Remove calls to Posix.system()
  * Documentation fixes and improvements (#764800)
  * Fix CSS issue introduced with previous CSS improvements (#747637)
  * Don't use GtkHeaderBar on dialogs if the gtk-dialogs-use-header setting is
    not set (#749874)
  * Use proper umask to create XDG_USER_CACHE and XDG_USER_DATA when they not
    exist (#765182)
  * Don't build the plugin twice
  * Call pkg-config only once, not every compiler call
  * Fix parallel builds not to build plugins several times over
  * Fix contradicting license in rejected.svg (#757643)

Bugs fixed in this release:
 - https://bugzilla.gnome.org/show_bug.cgi?id=747637
 - https://bugzilla.gnome.org/show_bug.cgi?id=749874
 - https://bugzilla.gnome.org/show_bug.cgi?id=751709
 - https://bugzilla.gnome.org/show_bug.cgi?id=757643
 - https://bugzilla.gnome.org/show_bug.cgi?id=764800
 - https://bugzilla.gnome.org/show_bug.cgi?id=765182

All contributors to this release:
 - Marek Černocký <marek@manet.cz>
 - Jens Georg <mail@jensge.org>
 - Wolfgang Steitz <wsteitz@gmail.com>
 - Wolfgang Steitz <wolfer7@web.de>
 - Rafael Fontenelle <rafaelff@gnome.org>
 - Piotr Drąg <piotrdrag@gmail.com>
 - Dušan Kazik <prescott66@gmail.com>
 - Stas Solovey <whats_up@tut.by>
 - Jim Nelson <jim@yorba.org>
 - Tim Waugh <twaugh@redhat.com>
 - Mayela Miranda <mayela0x14@gmail.com>
 - Jordi Mas <jmas@softcatala.org>
 - Trần Ngọc Quân <vnwildman@gmail.com>
 - Michael Catanzaro <mcatanzaro@igalia.com>
 - Yosef Or Boczko <yoseforb@src.gnome.org>
 - Rafael Ferreira <rafael.f.f1@gmail.com>
 - Kjartan Maraas <kmaraas@gnome.org>
 - Kim Boram <boramism@gmail.com>
 - Josef Andersson <josef.andersson@gmail.com>
 - Felipe Braga <fbobraga@gmail.com>
 - Christian Kirbach <Christian.Kirbach@gmail.com>
 - Brian Masney <masneyb@onstation.org>
 - Baurzhan Muftakhidinov <baurthefirst@gmail.com>
 - Aurimas Černius <aurisc4@gmail.com>
 - Мирослав Николић <miroslavnikolic@rocketmail.com>
 - Trinh Anh Ngoc <atw1990@gmail.com>
 - Timo Jyrinki <timo@debian.org>
 - Samir Ribic <samir.ribic@etf.unsa.ba>
 - Robert Ancell <robert.ancell@canonical.com>
 - Pedro Albuquerque <palbuquerque73@gmail.com>
 - Pau Iranzo <paugnu@gmail.com>
 - Muhammet Kara <muhammetk@gmail.com>
 - Mario Blättermann <mario.blaettermann@gmail.com>
 - Maria  Mavridou <mavridou@gmail.com>
 - Josef Andersson <josef.andersson@fripost.org>
 - Jiri Grönroos <jiri.gronroos+l10n@iki.fi>
 - Jiri Grönroos <jiri.gronroos@iki.fi>
 - Iain Lane <iain@orangesquash.org.uk>
 - Gábor Kelemen <kelemeng@openscope.org>
 - Eduardo Arnold <eduardoarnoldh@gmail.com>
 - Daniel Mustieles <daniel.mustieles@gmail.com>
 - Claude Paroz <claude@2xlibre.net>
 - Cheng-Chia Tseng <pswo10680@gmail.com>
 - Cheng-Chia Tseng <>
 - Changwoo Ryu <cwryu@debian.org>
 - Cédric Valmary <cvalmary@yahoo.fr>
 - Boram Kim <boramism@gmail.com>
 - Balázs Úr <urbalazs@gmail.com>
 - Balázs Meskó <meskobalazs@gmail.com>
 - Anders Jonsson <anders.jonsson@norsjovallen.se>
 - Alexandre Franke <alexandre.franke@gmail.com>

Added/updated translations
 - bs, courtesy of Samir Ribic
 - ca, courtesy of Pau Iranzo
 - cs, courtesy of Marek Černocký
 - de, courtesy of Mario Blättermann
 - de, courtesy of Wolfgang Stoeggl
 - el, courtesy of Tom Tryfonidis
 - es, courtesy of Daniel Mustieles
 - fi, courtesy of Jiri Grönroos
 - fr, courtesy of Claude Paroz
 - he, courtesy of Yosef Or Boczko
 - hu, courtesy of Gabor Kelemen
 - hu, courtesy of Meskó Balázs
 - kk, courtesy of Baurzhan Muftakhidinov
 - kn, courtesy of Shankar
 - ko, courtesy of Kim Boram
 - lt, courtesy of Aurimas Černius
 - nb, courtesy of Runar Ingebrigtsen
 - oc, courtesy of Cédric Valmary (totenoc.eu)
 - pl, courtesy of Piotr Drąg
 - pt_BR, courtesy of Rafael Fontenelle
 - pt, courtesy of Pedro Albuquerque
 - ru, courtesy of Stas Solovey
 - sk, courtesy of Dušan Kazik
 - sr, courtesy of Мирослав Николић
 - sr@latin, courtesy of Miroslav Nikolić
 - sv, courtesy of Josef Andersson
 - tr, courtesy of Muhammet Kara
 - vi, courtesy of Trần Ngọc Quân
 - zh_TW, courtesy of Cheng-Chia Tseng

Changed dependencies:
 - webkit2gtk instead of webkitgtk

Shotwell 0.22.0 - 23 March 2015
-------------------------------

  * Improved metadata support for Facebook upload (#742163)
  * Saved search now properly supports text is-set, not-set (#743924, #743923)
  * Import title, exposure time when available
  * User interface improvements (#744291, #719284, more)
  * Sort photos by filename (#717878)
  * Updated translations


Shotwell 0.21.0 - 2 February 2015
---------------------------------

  * User interface refresh (#742326, #742443)
  * Fix Shotwell Viewer .desktop file (#743799)
  * Natural sorting of photo titles (#717960)
  * Improved video thumbnailer (#739396, #741821)
  * Updated translations


Shotwell 0.20.2 - 31 October 2014
---------------------------------

  * Set Desktop Slideshow dialog resource now included in distribution (#739095)
  * Check for rendering failure in video thumbnailer (#738245)
  * Updated translations


Shotwell 0.20.1 - 2 October 2014
--------------------------------

  * Corrects problems with navigating photos in full-screen mode (#737092)
  * Better memory utilization via more conservative pixbuf cache (#715198)
  * Fixes minor bugs detected by better Vala code analysis


Shotwell 0.20.0 - 16 September 2014
-----------------------------------

  * Fix crash when deleting a photo in Shotwell Photo Viewer
  * Fix crash when deleting a photo
  * Better detection of corrupt files while importing
  * Updated translations


Shotwell 0.19.0 - 21 August 2014
--------------------------------

  * Support for Rajce.net and Gallery 3 photo services added
  * Set background image for lock screen
  * Better detection of corrupt images during import
  * Various bug fixes
  * Updated translations


Shotwell 0.18.1 - 30 Jun 2014
-----------------------------

  * Fix Flickr publishing errors due to Flickr moving to HTTPs-only
  * Fix crash when updating photo data/time
  * Fix crash due to nested tag and changing sidebar selection
  * Corrected URLs to point to new gnome.org pages


Shotwell 0.18.0 - 17 March 2014
-------------------------------

  * Compile and install translated help files
  * Updated translations


Shotwell 0.17.2 - 4 March 2014
------------------------------

  * UNIX pipe unnecessarily left open for each imported video
  * Improved searching for event comments and diacritics
  * Update translations


Shotwell 0.17.1 - 17 February 2014
----------------------------------

  * Updated translations
  * Parent folder names as search keywords rolled back (see bgo#722756)


Shotwell 0.17.0 - 4 February 2014
---------------------------------

  * Include parent folder names for keyword search
  * Tumblr publishing fixed
  * Bug fixes
  * Updated translations


Shotwell 0.15.1 - 19 November 2013 - "You're a Cashier!"
--------------------------------------------------------

  * Install Tumblr plugin resources
  * Fix crash when video thumbnails are being inspected and created


Shotwell 0.15.0 - 3 October 2013 - "Fruit's a Gamble"
-----------------------------------------------------

  * Copy and paste color adjustments between photos
  * Highlights detail adjustment
  * YouTube plugin now uses OAuth / OpenID
  * Videos in Missing Files now re-import properly
  * Improvements when thumbnailing videos
  * Numerous bug fixes


Shotwell 0.14.1 - 3 April 2013 - "The Core, Stem, Seeds, Everything"
----------------------------------------------------------------------------

  * Fixes a critical issue where Shotwell could close unexpectedly
    when working with RAW photos in direct-edit mode
  * The Facebook Connector now recovers smoothly from type 7
    errors
  * EXIF-oriented photos uploaded to Facebook now appear in their
    correct orientation, even when the strip metadata option is
    turned on in the Facebook Connector
  * Fixes an issue where incorrect view filter settings were
    applied on tag and event pages
  * The Camera Developer is now disabled for RAW images that lack
    a suitable paired or embedded JPEG
  * Updated translations for many languages, including an updated
    Catalan translation that corrects a problem where incorrect
    event dates were displayed
  * Assorted smaller bug fixes


Shotwell 0.14.0 - 18 March 2013 - "The Baby Shower"
----------------------------------------------------------------------------

  * A folder tree in the sidebar provides a directory-hierarchy
    view of your Shotwell library
  * Dramatically improved user experience for RAW photographers:
    long-standing bugs involving RAW developer switching have been
    fixed
  * Comprehensive logging of photo and video import, including the
    ability to save an import log file to disk. The log tracks which
    files were detected as duplicates as well as files that couldn't
    be imported due to disk or camera problems.
  * The Facebook Connector now uses the Facebook Graph API,
    resulting in a smoother, more stable experience uploading photos
    and videos to Facebook. As a bonus, Shotwell photo titles now
    appear as Facebook photo captions!
  * The Shotwell video subsystem now relies on GStreamer 1.0, making
    for easier, more stable video import, better video thumbnails,
    and better handling of video metadata
  * New slideshow effects, improved Piwigo support, the ability to
    show and hide the main Shotwell sidebar, and numerous bug fixes
    and translation updates!


Shotwell 0.13.1 - 5 October 2012 - "A Date at the Diplomat's Club"
----------------------------------------------------------------------------

  * Fixes an issue in which Shotwell would crash after deleting
    all photos present in a view
  * Fixes an issue where Shotwell would not include all
    selected photos during a Nautilus "Send To..." export
    operation
  * Corrects a problem in which the file chooser dialog
    used to select Shotwell's library location would
    inappropriately select the parent directory of the chosen
    directory
  * Shotwell now properly inhibits the system screensaver when
    playing a slideshow
  * Fixes an issue in which the search filter bar could become
    invisible even though a filter was being applied
  * A progress bar now correctly appears during long batch
    rotate and auto-enhance operations
  * Shotwell no longer crashes when certain kinds of malformed
    responses are received from remote servers during photo
    publishing
  * Corrected translation and desktop integration errors


Shotwell 0.13.0 - 19 September 2012 - "Peanuts, Coffee, Soda, and Magazines"
----------------------------------------------------------------------------

  * The Shotwell Extras plugins now include support for
    publishing photos to Tumblr
  * Shotwell correctly handles dates before 1969
  * Shotwell lets you remove sensitive information from photos
    before publishing them to social media sites
  * Shotwell regenerates thumbnails automatically, making 
    migrating libraries between computers easier
  * The Picasa connector now uses OAuth authentication for
    enhanced security
  * Bug fixes and translation updates


Shotwell 0.12.3 - 9 May 2012 - "It was a million to one shot, Doc."
----------------------------------------------------------------------------

  * Corrects an issue where tags could be inappropriately removed from a
    library.
  * Enhances support for AVCHD-capable cameras.
  * Prevents a soft lockup that could occur when certain very dark images
    were autoenhanced.
  * Corrects an issue where pressing the zoom hotkeys in certain parts
    of the application could cause a crash.


Shotwell 0.12.2 - 9 April 2012 - "It's Made From Fusilli Pasta"
----------------------------------------------------------------------------

  * Corrects an issue where graphical corruption of the UI could
    occur if the user navigated away from a camera page while camera
    previews were being generated.
  * Adds enhanced support for the Unity desktop environment.
  * Clarified several strings.
  * The application now recovers gracefully from corrupted tag data. 


Shotwell 0.12.1 - 28 March 2012 - "Oh No, Not The Knuckle..."
----------------------------------------------------------------------------

  * Corrects a critical issue where the application could not be started in
    direct-edit mode.


Shotwell 0.12.0 - 27 March 2012 - "A Counter-Clockwise Swirl"
----------------------------------------------------------------------------

  * Adds straighten tool
  * Ported from GTK 2 to GTK 3
  * Better handling of importing from Android devices
  * Facebook and Flickr login now use OAuth authentication
  * Numerous enhancements to the plugin subsystem
  * The F-Spot importer is now implemented as a plugin
  * Many, many bugfixes and stability enhancements


Shotwell 0.11.6 - 3 November 2011 - "I know you can't, and I'm positive that
                                     you won't"
----------------------------------------------------------------------------

  * Fixes a critical bug in which adding or modifying tags in the
    single-photo view could result in the loss of tag data


Shotwell 0.11.5 - 18 October 2011 - "I hate anyone that ever had a pony"
------------------------------------------------------------------------

  * Fixes a collection concurrent access issue that could cause
    Shotwell to crash during F-Spot import for users still
    affected by this issue even after installing Shotwell 0.11.4.


Shotwell 0.11.4 - 13 October 2011 - "The Pony Remark"
---------------------------------------------------------------------

  * Fixes two collection concurrent access issues that could cause
    Shotwell to crash during F-Spot import.


Shotwell 0.11.3 - 11 October 2011 - "All Old People Steal"
---------------------------------------------------------------------

  * Fixes a critical issue where Shotwell could crash immediately
    following a photo import
  * Fixes a critical issue where Shotwell could crash if the user
    entered a tag name containing a slash ("/") character
  * Long error messages in the Publishing dialog box are now wrapped
    correctly


Shotwell 0.11.2 - 20 September 2011 - "Strap them to a Rickshaw"
---------------------------------------------------------------------

  * Increases stability working with hierarchical tags
  * Importing hierarchical tags from F-Spot now works properly
  * Fixes "server redirect contained no session key" errors in
    the Facebook Connector
  * Corrects problems with item counts over mixed media
  * Various small fixes and enhancements


Shotwell 0.11.1 - 8 September 2011 - "It's Been Flagged"
---------------------------------------------------------------------

  * RAW+JPEG pairing now works on file import
  * Startup crashes fixed
  * Hierarchical tag issues resolved
  * RAW developer bugs fixed
  * Resolved internationalization problems
  * Various small fixes and enhancements


Shotwell 0.11.0 - 23 August 2011 - "The Bookstore"
---------------------------------------------------------------------

  * Hierarchical tags
  * Support for RAW+JPEG and selectable RAW developer
  * Switched from GConf to GSettings
  * "Hide Photos Already Imported" is now persistent
  * New Saved Search options
  * Mimics no longer stored in home directory
  * Added support for BMP format
  * Many, many bugfixes


Shotwell 0.10.1 - 3 June 2011 - "A Vacation From Ourselves"
---------------------------------------------------------------------

  * Fixes "Hide Photos Already Imported"
  * Multiple editing bugs fixed
  * Resolves crash when two or more cameras have the same name
  * Documentation now includes saved searches
  * Piwigo bugs fixed
  * Translation updates


Shotwell 0.10 - 26 May 2011 - "The Butter Shave"
---------------------------------------------------------------------

  * Dynamic view of photo library through saved search feature
  * Automatic database backup
  * Adjust date/time for videos
  * Added Valadate testing framework
  * Shotwell video thumbnailer eliminates Totem dependency
  * Crop tool is now more flexible
  * Filenames no longer used as titles on Facebook and Picasa uploads
  * Translation corrections
  * Many bug fixes


Shotwell 0.9.3 - 21 April 2011 - "Without Rules There's Chaos"
---------------------------------------------------------------------

  * Resolves issue where setting the desktop background didn't work in Gnome3
  * Mimics are now deleted when a RAW photo is removed
  * Event dates are now only shown once in the Event view
  * Fixes a number of translation issues


Shotwell 0.9.2 - 11 April 2011 - "He's a Mystery Wrapped in a Twinkie"
---------------------------------------------------------------------

  * Resolves translation issue where shotwell.mo is installed in wrong location
  * Fixes issue where cancelling Flickr upload can crash Shotwell
  * Fixes issue where creating a Picasa Web album with an ampersand in the name 
    crashes Shotwell
  * Resolves bug where selecting "Publish" in single photo mode publishes the 
    entire library instead of the selected photo
  * Async I/O in publishing operations is now stopped when the user cancels the 
    operation
  * Issue fixed on Fedora where the text was cut off in publishing dialog
  * Fixes issue with ratings filter where it didn't function when the search bar
    was hidden


Shotwell 0.9.1 - 4 April 2011 - "All I Did was Hand Someone a Bag"
---------------------------------------------------------------------

  * Fixes many crashes and other issues in publishing plugins.
  * Fixes issues where paths and filenames are not displayed correctly after a 
    failed import.
  * Fixed issue where text search in event and camera import pages was a string 
    match instead of a keyword match.
  * For enhanced compatibility with GNOME 3, the desktop name of the Shotwell 
    application has changed from "Shotwell Photo Manager" to simply "Shotwell".
  * Shotwell now provides a configure script option to set the name of the system 
    library directory to either lib or lib64.
  * Enhanced visibility of red-eye reticle.
  * Fixed issue where the Adjust palette could be positioned partially off-screen
  * Plugins now respect --debug switch in configure script.
  * The event containing undated photos could be incorrectly labelled "(null)" in 
    the events directory page.


Shotwell 0.9.0 - 22 March 2011 - "The Big Salad"
---------------------------------------------------------------------

  * New search bar can filter by media type, rating, and text matching.
    (Titles, filename, tag and event names are searched.)
  * TIFF support
  * Extensible plugin framework for Web publishing and slideshow transitions.
  * Print multiple photos, and multiple photos per page.
  * Configurable user directory pattern during import.
  * Edit multiple photo titles at once.
  * Improved rendering of underexposed RAW photos.
  * Various improvements and bug fixes.


Shotwell 0.8.1 - 10 January 2011 - "The Airing of Grievances"
---------------------------------------------------------------------

  * Fixes a problem where Shotwell could crash unexpectedly at
    startup or when reading/writing metadata to files.
  * Fixes a problem where Shotwell could hang when importing
    voice-annotated videos.
  * Fixes a problem where Shotwell failed to import date and time
    information for some camera-generated MP4 videos.
  * Shotwell can now delete video files from camera memory.
  * Shotwell now supports the 3GP video format common on mobile
    phones and RAW files with the SRW suffix generated by Samsung
    cameras.
  * Translation fixes and updates.


Shotwell 0.8.0 - 23 December 2010 - "The Festivus for the Rest of Us"
---------------------------------------------------------------------

  * Video support for Ogg, AVI, MP4, Quicktime, and WMV files.
  * Upload videos to major Web services, including YouTube, Facebook, Flickr,
    and PicasaWeb.
  * Runtime monitoring of library directory and auto-import of newly created
    files.
  * Background writing of metadata (tags, titles, rating, orientation, exposure
    date) to master files (user configurable).
  * Flagging of photos for batch operations.
  * Set multiple photos to desktop background slideshow.
  * Numerous translation updates.
  * Various bug fixes.


Shotwell 0.7.2 - 10 September 2010
----------------------------------

  * Fixed major startup problem when the user's Pictures directory is actually
    a symbolic link.
  * Fixed potential crasher when the user's Pictures directory contains a
    large number of subdirectories.
  * No longer asking if copying or linking if importing from Pictures directory
    (which will always be linked).
  * Fixed issue when logging in to PicasaWeb with a password with a '+'
    character.
  * Fixed update problem when using an external editor on a photo that was
    edited externally in an earlier session.
  * Various bug fixes.
  * Numerous translation updates.


Shotwell 0.7.1 - 26 August 2010
-----------------------------

  * Fixed a critical bug that caused Shotwell to crash when deleting the
    only photo in an event
  * F-Spot import now correctly interprets older databases
  * Fixed an issue where pressing F11 would not exit full-screen mode
  * Translation updates for several languages
  * Updated documentation


Shotwell 0.7.0 - 20 August 2010
-----------------------------

  * Migration support for F-Spot users: Shotwell can import photos directly
    from your F-Spot library, preserving tags and ratings.
  * Photos can be rated on a 1-5 star scale or marked as rejected. A filter
    button supports viewing only photos of a specified rating or better.
  * A new Last Import page in the sidebar gives you instant access to your
    most recently imported photo roll.
  * Sidebar functionality and appearance have been improved with new icons
    and inline renaming.
  * Shotwell scans your library files at startup, looking for changes.
    Maintains library consistency when working with photos in other
    applications.


Shotwell 0.6.1 - 30 June 2010
-----------------------------

  * Added Lithuanian and Serbian translations, updated Italian
    and Spanish translations
  * Fixed a problem with reverting to the default library
    directory
  * Added more zooming shorcuts
  * Shotwell no longer offers to delete photos that failed to
    import from a camera
  * Photos emptied from trash no longer reappear


Shotwell 0.6.0 - 28 June 2010
-----------------------------

  * Basic support for RAW images, including import support for all common
    formats like CR2 and DNG
  * Full support for working with PNG images
  * Users can now zoom into photos to reveal latent detail
  * A new preferences dialog gives users exceptional control over Shotwell's
    functionality and appearance
  * Users can now open photos in an external editor, such as the GIMP, from
    within Shotwell
  * Photo tags and titles are imported automatically from XMP and IPTC metadata
  * A new photo trash can


Shotwell 0.5.2 - 11 May 2010
----------------------------

  * Added Czech, Finnish, Greek, and Ukrainian translations.  Updated Russian 
    translation.
  * Updated codebase to enable building on Vala 0.8.x. Vala 0.8.0 or later is
    now required to build Shotwell.


Shotwell 0.5.1 - 16 March 2010
------------------------------

  * Minor Windows-specific release fixing an installer bug.  No changes to Linux
    version.


Shotwell 0.5.0 - 11 March 2010
------------------------------

  * Photos can be tagged and organized by tag, creating a new tool for managing
    your photo collection
  * Printing
  * Photos can now be published to Google's Picasa Web Albums service
  * Photo exposure date & time can be set and shifted
  * Photos can be set as your desktop background directly from Shotwell
  * Photo import runs in the background, making imports smoother and more fluid
  * Publishing photos to web services is more responsive
  * Numerous bug fixes


Shotwell 0.4.3 - 18 January 2010
--------------------------------

  * Updated Italian and French translations.
  * Windows theme installed correctly.
  * Problems unmounting camera fixed.


Shotwell 0.4.2 - 4 January 2010
-------------------------------

  * Added Bulgarian, Portuguese, and Slovak translations.  Updated 
    German translation.
  * Windows installation fixed.
  * Crash when deleting photos from camera fixed.


Shotwell 0.4.1 - 24 December 2009
---------------------------------

  * Minor update adding a script missing in the 0.4.0 release.


Shotwell 0.4.0 - 23 December 2009
---------------------------------

  * Facebook and Flickr publishing.
  * Events may now be split and merged.
  * Alpha-release of Windows port now available.
  * Undo/redo.
  * Mark photos as favorite or hidden.  View only favorites or show hidden
    photos.
  * Duplicate photos.
  * Numerous bug fixes.


Shotwell 0.3.2 - 11 November 2009
---------------------------------

  * Loosened photo pipeline assertion that checked for pixbuf scaling.
  * Better error handling for situation where the HAL daemon (hald) is not
    running or ready.


Shotwell 0.3.1 - 9 November 2009
--------------------------------

  * Makefile changes to facilitate packaging.
  * Warnings caught by Vala 0.7.8 corrected.
  * Toolbar items now marked "important" where appropriate.
  * Binary dependencies corrected in Debian packaging.


Shotwell 0.3.0 - 2 November 2009
--------------------------------

  * Major update with numerous feature additions and performance and 
    scalability enhancements.
  * Auto enhance button, shadows control, and histogram contrast expansion now
    available.
  * Hierarchical event tree in sidebar.  Events can now be renamed.
  * Background readahead to display full-window and fullscreen photos faster.
  * Crop aspect ratios.
  * Basic information pane to display photo title, exposure time, dimensions,
    and file size.
  * Configurable slideshow delay.
  * Direct edit mode.  Shotwell can open any JPEG file, move between other
    JPEGS in the same directory, and edit them with the same tools available in
    the photo manager.
  * Better keyboard handling for selecting photos and moving between pages on
    the sidebar.
  * In camera view, option to hide photos already imported into Shotwell.
    User now offered full report of imported photos and asked if they wish to
    delete the photos from the camera.
  * User-configurable items now stored persistently via GConf.
  * Code internationalized.  Partial French translation now available.


Shotwell 0.2.0 - 7 August 2009
------------------------------

  * Color histogram now available in adjustment tool.
  * Drag-and-drop now supports the modifier keys for linking and asking
    which operation to perform.
  * Shotwell no longer uses a hardcoded directory for storing imported
    photos.
  * A nasty bug causing the X server to crash under compiz was fixed.
    (#380)
  * Support for libgee-0.3.0.


Shotwell 0.1.2 - 3 August 2009
------------------------------

  * Red-eye reduction feature now available.
  * File/Import From Folder offers one more way to import photos into the
    library.
  * Color adjustment (exposure/saturation/tint/temperature) now available.
  * Support for Vala 0.7.5.


Shotwell 0.1.1 - 30 June 2009
-----------------------------

  * Bug fix: Dragging a selection band to the bottom of the window to start
    scrolling results in compiz crashing.  This fixes that problem, although
    another reported problem still exists (#380).
  * Changed package dependency from vala-1.0 to gee-1.0.  Although Vala is
    required to build Shotwell, it does not need to be installed to execute
    it.  Gee provides the collections library Shotwell requires.
  * Fixed code to compile with Vala 0.7.4.


Shotwell 0.1.0 - 26 June 2009
-----------------------------

  * Initial release.  Features include:
    - Importing photos from file manager or camera via libgphoto2.
    - Photos automatically sorted into time-grouped events.
    - Thumbnails viewable at various sizes.
    - Sort by photo name or date of exposure.
    - Fullscreen mode.
    - Photos may be rotated or cropped.
    - Export photos as stored or at varying dimensions and JPEG quality.
    - Desktop integration with Applications menu and media device handling.