forked from GNOME/shotwell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNEWS
2138 lines (1816 loc) · 78 KB
/
NEWS
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
Shotwell 0.30.8 - 03 Jan 2020
* Fix keyboard shortcut for adding tags
* Fix Tumblr publishing
* Fix month name translation in date/time chooser
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/shotwell/issues/166
- https://gitlab.gnome.org/GNOME/shotwell/issues/196
All contributors to this release:
- Jens Georg <mail@jensge.org>
- Asier Sarasua Garmendia <asier.sarasua@gmail.com>
- Ryuta Fujii <translation@sicklylife.jp>
- Daniel Mustieles <daniel.mustieles@gmail.com>
- Marek Černocký <marek@manet.cz>
Added/updated translations:
- cs.po, courtesy of Marek Černocký
- es.po, courtesy of Daniel Mustieles
- cs.po, courtesy of Marek Černocký
- eu.po, courtesy of Asier Sarasua Garmendia
- ja.po, courtesy of sicklylife
Shotwell 0.30.7 - 20 Aug 2019
* Fix compatibility with Vala 0.46
Shotwell 0.30.6 - 20 Aug 2019
* Fix issue with Flickr authentication introduced in 0.30.5
Shotwell 0.30.5 - 14 Aug 2019
* Update appdata release information
* Fix crash in Piwigo if system certificate store is empty
* Fix crash in Google Photos if album has no title
* Fix crash in Google Photos and Flickr if the OAuth flow fails in WebKit
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/shotwell/issues/134
- https://gitlab.gnome.org/GNOME/shotwell/issues/149
- https://gitlab.gnome.org/GNOME/shotwell/issues/158
All contributors to this release:
- Jens Georg <mail@jensge.org>
- Daniel Mustieles <daniel.mustieles@gmail.com>
- Stas Solovey <whats_up@tut.by>
- Serdar Sağlam <teknomobil@msn.com>
- Kukuh Syafaat <kukuhsyafaat@gnome.org>
Added/updated translations:
- es.po, courtesy of Daniel Mustieles
- id.po, courtesy of Kukuh Syafaat
- ru.po, courtesy of Stas Solovey
- tr.po, courtesy of Serdar Sağlam
Shotwell 0.30.4 - 24 Apr 2019
* Re-release of 0.30.3 with proper version number
Shotwell 0.30.3 - 24 Apr 2019
* Fix building against GExiv2 0.12 and later
* Fix camera fall-back icon
* Fix icon resource fall-backs
* Fix issue with ACDSEE hierarchical tags
* Fix compile issue with recent vala
* Fix focus issue in slideshow
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/shotwell/106
- https://gitlab.gnome.org/GNOME/shotwell/122
- https://gitlab.gnome.org/GNOME/shotwell/75
- https://gitlab.gnome.org/GNOME/shotwell/89
All contributors to this release:
- Jens Georg <mail@jensge.org>
- Rico Tzschichholz <ricotz@ubuntu.com>
- Timo Jyrinki <timo.jyrinki@iki.fi>
- Bernd Homuth <dev@hmt.im>
- Daniel Mustieles <daniel.mustieles@gmail.com>
Added/updated translations:
- de.po, courtesy of Bernd Homuth
- es.po, courtesy of Daniel Mustieles
- fi.po, courtesy of Jiri Grönroos
Shotwell 0.30.2 - 07 Feb 2019
* Fix maximize on Wayland when double-clicking on title-bar
* Do not hide the cursor when showing the slideshow settings dialog
* Fix compatibility with recent vala compilers
* Fix crash when dismissing file modifications on close
* Fix issues with google and flickr not being able to log in
* Replace picasaweb publishing with Google Photos publishing
* Comply with Flick API TOS
Bugs fixed in this release:
- https://bugs.launchpad.net/ubuntu/+source/shotwell/+bug/1723973
- https://gitlab.gnome.org/GNOME/shotwell/issues/101
- https://gitlab.gnome.org/GNOME/shotwell/issues/26
- https://gitlab.gnome.org/GNOME/shotwell/issues/67
- https://gitlab.gnome.org/GNOME/shotwell/issues/80
- https://gitlab.gnome.org/GNOME/shotwell/issues/97
- https://retrace.fedoraproject.org/faf/reports/2020125/
Merge requests included in this release:
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/12
All contributors to this release:
- Jens Georg <mail@jensge.org>
- Ryuta Fujii <translation@sicklylife.jp>
- Balázs Úr <balazs@urbalazs.hu>
- Anders Jonsson <anders.jonsson@norsjovallen.se>
- Piotr Drąg <piotrdrag@gmail.com>
- Rafael Fontenelle <rafaelff@gnome.org>
- Daniel Mustieles <daniel.mustieles.contractor@bbva.com>
- Claude Paroz <claude@2xlibre.net>
- Daniel Mustieles <daniel.mustieles@gmail.com>
Added/updated translations:
- es.po, courtesy of Daniel Mustieles
- hu.po, courtesy of Balázs Úr
- sv.po, courtesy of Anders Jonsson
- es.po, courtesy of Daniel Mustieles
- fr.po, courtesy of Claude Paroz
- hu.po, courtesy of Balázs Úr
- ja.po, courtesy of sicklylife
- pl.po, courtesy of Piotr Drąg
- pt_BR.po, courtesy of Rafael Fontenelle
- sv.po, courtesy of Anders Jonsson
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