-
Notifications
You must be signed in to change notification settings - Fork 43
/
NEWS
2801 lines (2444 loc) · 105 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.32.1 (stable) - 09 May 2023
* Fix version display in about dialog when not building from git
* Fix settings schema migration when source is using obsolete
keys
* Fix setting slideshow duration settings
* Make facedetect helper somewhat more robust if opencv calls
fail
* Explicitly handle BigTIFF
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/shotwell/issues/5040
Merge requests included in this release:
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/73
All contributors to this release:
- Matt Turner <mattst88@gmail.com>
- Jens Georg <mail@jensge.org>
Shotwell 0.32.0 (stable) - 22 Apr 2023
* Fix generating video thumbnails if debugging is enabled
* Add JPEG XL support
* Fix display of duplicate tags in suggestion popup
* Support more variants of HEIF
* Translation updates
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/shotwell/issues/5034
Merge requests included in this release:
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/72
All contributors to this release:
- Jens Georg <mail@jensge.org>
- Philipp Kiemle <philipp.kiemle@gmail.com>
- Kukuh Syafaat <kukuhsyafaat@gnome.org>
- Sabri Ünal <libreajans@gmail.com>
- Piotr Drąg <piotrdrag@gmail.com>
- Aleksandr Melman <Alexmelman88@gmail.com>
- Yuri Chornoivan <yurchor@ukr.net>
- Ekaterine Papava <papava.e@gtu.ge>
- Anders Jonsson <anders.jonsson@norsjovallen.se>
- Mike Auty <mike.auty@gmail.com>
Added/updated translations:
- de.po, courtesy of Philipp Kiemle
- id.po, courtesy of Kukuh Syafaat
- ka.po, courtesy of Ekaterine Papava
- pl.po, courtesy of Piotr Drąg
- ru.po, courtesy of Aleksandr Melman
- sv.po, courtesy of Anders Jonsson
- tr.po, courtesy of Sabri Ünal
- uk.po, courtesy of Yuri Chornoivan
Shotwell 0.31.90 (beta) - 04 Apr 2023
* Fix display of f-number
* Fix several issues with unset exposure times
* Properly read exposure time from video files with GStreamer
* Fix display of time shift in AdjustDateTime dialog
* Support HEIF/HEVC files
* Support MXF files
* Fix issues with continously shifting images by time zone offset
* Minor UX enhancements with profile editor
* Fix alternate month names in sidebar
* Support .nomedia files when importing from folder
* Fix missing icon on import page
* Enable face recognition
* Clean up face detection and recognition helper
* Update haarcascade file
* Support profile haarcascade
* Support HiDPI for photo viewer and tools
* Translation updates
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/shotwell/issues/124
- https://gitlab.gnome.org/GNOME/shotwell/issues/162
- https://gitlab.gnome.org/GNOME/shotwell/issues/203
- https://gitlab.gnome.org/GNOME/shotwell/issues/220
- https://gitlab.gnome.org/GNOME/shotwell/issues/289
- https://gitlab.gnome.org/GNOME/shotwell/issues/336
- https://gitlab.gnome.org/GNOME/shotwell/issues/5000
- https://gitlab.gnome.org/GNOME/shotwell/issues/5017
- https://gitlab.gnome.org/GNOME/shotwell/issues/5022
- https://gitlab.gnome.org/GNOME/shotwell/issues/5024
- https://gitlab.gnome.org/GNOME/shotwell/issues/5027
- https://gitlab.gnome.org/GNOME/shotwell/issues/5028
- https://gitlab.gnome.org/GNOME/shotwell/issues/5029
Merge requests included in this release:
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/66
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/68
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/69
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/67
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/66
All contributors to this release:
- Jens Georg <mail@jensge.org>
- Yuri Chornoivan <yurchor@ukr.net>
- Anders Jonsson <anders.jonsson@norsjovallen.se>
- Sabri Ünal <libreajans@gmail.com>
- Mike Auty <mike.auty@gmail.com>
- Sergej A <asvmail.as@gmail.com>
- Aleksandr Melman <Alexmelman88@gmail.com>
- Piotr Drąg <piotrdrag@gmail.com>
- Cheng-Chia Tseng <pswo10680@gmail.com>
- Asier Sarasua Garmendia <asiersarasua@ni.eus>
- Kukuh Syafaat <kukuhsyafaat@gnome.org>
- Jürgen Benvenuti <jbenvenuti@gnome.org>
- Irénée THIRION <irenee.thirion@e.email>
- Jordi Mas <jmas@softcatala.org>
- Andika Triwidada <atriwidada@gnome.org>
- Balázs Úr <balazs@urbalazs.hu>
- Aurimas Černius <aurisc4@gmail.com>
- Hugo Carvalho <hugokarvalho@hotmail.com>
- Martin <miles@filmsi.net>
- Yosef Or Boczko <yoseforb@gnome.org>
- Rico Tzschichholz <ricotz@ubuntu.com>
- Mike Playle <mike@mythik.co.uk>
- Ngọc Quân Trần <vnwildman@gmail.com>
- Goran Vidović <trebelnik2@gmail.com>
- Alan Mortensen <alanmortensen.am@gmail.com>
- Rafael Fontenelle <rafaelff@gnome.org>
- Quentin PAGÈS <pages_quentin@hotmail.com>
- Ekaterine Papava <papava.e@gtu.ge>
- Olga Smirnova <mistresssilvara@hotmail.com>
Added/updated translations:
- ru.po, courtesy of Ser82-png
- sv.po, courtesy of Anders Jonsson
- uk.po, courtesy of Yuri Chornoivan
- ca.po, courtesy of Jordi Mas i Hernàndez
- da.po, courtesy of Alan Mortensen
- de.po, courtesy of Jürgen Benvenuti
- eu.po, courtesy of Asier Sarasua Garmendia
- fr.po, courtesy of Irénée Thirion
- he.po, courtesy of Yosef Or Boczko
- hr.po, courtesy of gogo
- hu.po, courtesy of Balázs Úr
- id.po, courtesy of Andika Triwidada
- ie.po, courtesy of OIS
- ka.po, courtesy of Ekaterine Papava
- lt.po, courtesy of Aurimas Černius
- pl.po, courtesy of Piotr Drąg
- pt.po, courtesy of Hugo Carvalho
- pt_BR.po, courtesy of Rafael Fontenelle
- ru.po, courtesy of Aleksandr Melman
- sl.po, courtesy of Martin Srebotnjak
- sv.po, courtesy of Anders Jonsson
- tr.po, courtesy of Sabri Ünal
- uk.po, courtesy of Yuri Chornoivan
- vi.po, courtesy of Trần Ngọc Quân
- zh_TW.po, courtesy of Cheng-Chia Tseng
Shotwell 0.31.7 (development) - 03 Dec 2022
* Actually run database upgrage necessary for date/time changes
* Fix comparing unset date/time values
All contributors to this release:
- Jens Georg <mail@jensge.org>
Shotwell 0.31.6 (development) - 03 Dec 2022
* Improved interaction when exporting files that end up
with a similar name
* Google Photos: Fix batch uploading
* Tumblr: Fix not remembering login credentials
* Improve handling of images that do not have a GPS altitude
* Have import from folder follow symlinks
* Add an user interface to interact with the new profile
feature
* Make a couple of UI strings clearer
* Remove video interpreter state handling - completely broken
and potentially responsible for causing indefinite re-checking
of video files
* Improve touchpad scaling vs scrolling
* Always enable face tagging. Face detection and recognition is
still opt-in on compile time due to the rather large OpenCV
dependency
* Support creating hierarchical tags by using /a/sytax/with/slashes
* Use libportal to implement SendTo and Wallpaper settings
* Initial support for having multiple accounts per publishing service
So far only works for Piwigo instances
* Create a new plugin preferences panel (prepare for account management)
* Convert all publishing processes to async libsoup3. With HTTPS/2
becoming more prominent, the old method broke really hard and was
a bad habit anyway.
* Fix an issue with the Saturation slider
* Remove a bunch of deprecated calls
* Remove deprecated date/time handling. Use DateTime more or less everywhere.
* Allow media to have exposure dates before 1.1.1970 00:00
* Lots of translation updates
Bugs fixed in this release:
- Closes: https://gitlab.gnome.org/GNOME/shotwell/-/issues/92
- https://gitlab.gnome.org/GNOME/shotwell/issues/18
- https://gitlab.gnome.org/GNOME/shotwell/issues/222
- https://gitlab.gnome.org/GNOME/shotwell/issues/281
- https://gitlab.gnome.org/GNOME/shotwell/issues/2830
- https://gitlab.gnome.org/GNOME/shotwell/issues/326
- https://gitlab.gnome.org/GNOME/shotwell/issues/44
- https://gitlab.gnome.org/GNOME/shotwell/issues/4947
- https://gitlab.gnome.org/GNOME/shotwell/issues/4978
- https://gitlab.gnome.org/GNOME/shotwell/issues/4984
- https://gitlab.gnome.org/GNOME/shotwell/issues/4985
- https://gitlab.gnome.org/GNOME/shotwell/issues/4989
- https://gitlab.gnome.org/GNOME/shotwell/issues/4990
- https://gitlab.gnome.org/GNOME/shotwell/issues/4993
- https://gitlab.gnome.org/GNOME/shotwell/issues/4996
- https://gitlab.gnome.org/GNOME/shotwell/issues/5014
- https://gitlab.gnome.org/GNOME/shotwell/issues/5015
- https://gitlab.gnome.org/GNOME/shotwell/issues/92
Merge requests included in this release:
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/24
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/61
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/60
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/58
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/59
All contributors to this release:
- Jens Georg <mail@jensge.org>
- Yuri Chornoivan <yurchor@ukr.net>
- Anders Jonsson <anders.jonsson@norsjovallen.se>
- Sabri Ünal <libreajans@gmail.com>
- Piotr Drąg <piotrdrag@gmail.com>
- Balázs Úr <balazs@urbalazs.hu>
- Zurab Kargareteli <zuraxt@gmail.com>
- Aleksandr Melman <Alexmelman88@gmail.com>
- Goran Vidović <trebelnik2@gmail.com>
- Kukuh Syafaat <kukuhsyafaat@gnome.org>
- Enrico Nicoletto <hiko@duck.com>
- Jordi Mas <jmas@softcatala.org>
- maf <maf@tkrat.org>
- Quentin PAGÈS <pages_quentin@hotmail.com>
- Rico Tzschichholz <ricotz@ubuntu.com>
- Bartłomiej Piotrowski <b@bpiotrowski.pl>
- Emin Tufan Çetin <etcetin@gmail.com>
Added/updated translations:
- sv.po, courtesy of Anders Jonsson
- uk.po, courtesy of Yuri Chornoivan
- ca.po, courtesy of Jordi Mas i Hernàndez
- hr.po, courtesy of gogo
- hu.po, courtesy of Balázs Úr
- id.po, courtesy of Kukuh Syafaat
- ka.po, courtesy of Temuri Doghonadze
- pl.po, courtesy of Piotr Drąg
- pt_BR.po, courtesy of Enrico Nicoletto
- ru.po, courtesy of Aleksandr Melman
- sv.po, courtesy of Anders Jonsson
- tr.po, courtesy of Sabri Ünal
- uk.po, courtesy of Yuri Chornoivan
Shotwell 0.31.5 (development) - 19 Jul 2022
* Port to libsoup3
Merge requests included in this release:
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/56
All contributors to this release:
- Jens Georg <mail@jensge.org>
- Piotr Drąg <piotrdrag@gmail.com>
- Julia Dronova <juliette.tux@gmail.com>
- Rafael Fontenelle <rafaelff@gnome.org>
Added/updated translations:
- pt_BR.po, courtesy of Rafael Fontenelle
- ru.po, courtesy of Ser82-png
Shotwell 0.31.4 (development) - 21 Jun 2022
* Move video meta-data reading into external process
* Fix memory leak while importing from camera
* Speed up raw meta-data reading
* Improve Welcome Dialog wording
* Improve google photos upload for > 50 photos
* Support CR3 files
* Use mail portal instead of nautilus-sendto
* Support AVIF files
* Fix import from SONY A7C
* Remove Map widget
* Translation updates
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/shotwell/issues/111
- https://gitlab.gnome.org/GNOME/shotwell/issues/111
- https://gitlab.gnome.org/GNOME/shotwell/issues/128
- https://gitlab.gnome.org/GNOME/shotwell/issues/199
- https://gitlab.gnome.org/GNOME/shotwell/issues/286
- https://gitlab.gnome.org/GNOME/shotwell/issues/286
- https://gitlab.gnome.org/GNOME/shotwell/issues/286
- https://gitlab.gnome.org/GNOME/shotwell/issues/4927
- https://gitlab.gnome.org/GNOME/shotwell/issues/4927
- https://gitlab.gnome.org/GNOME/shotwell/issues/4929
- https://gitlab.gnome.org/GNOME/shotwell/issues/4929
- https://gitlab.gnome.org/GNOME/shotwell/issues/4929
- https://gitlab.gnome.org/GNOME/shotwell/issues/4930
- https://gitlab.gnome.org/GNOME/shotwell/issues/4930
- https://gitlab.gnome.org/GNOME/shotwell/issues/4930
- https://gitlab.gnome.org/GNOME/shotwell/issues/4946
- https://gitlab.gnome.org/GNOME/shotwell/issues/4977
Merge requests included in this release:
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/55
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/53
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/52
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/51
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/50
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/48
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/47
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/46
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/45
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/44
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/42
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/40
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/39
All contributors to this release:
- Jens Georg <mail@jensge.org>
- Piotr Drąg <piotrdrag@gmail.com>
- Yuri Chornoivan <yurchor@ukr.net>
- Anders Jonsson <anders.jonsson@norsjovallen.se>
- Matej Urbančič <mateju@src.gnome.org>
- Jordi Mas <jmas@softcatala.org>
- Мирослав Николић <miroslavnikolic@rocketmail.com>
- Marek Černocký <marek@manet.cz>
- Quentin PAGÈS <pages_quentin@hotmail.com>
- Balázs Úr <balazs@urbalazs.hu>
- sicklylife <translation@sicklylife.jp>
- Rafael Fontenelle <rafaelff@gnome.org>
- Phred <fearphage@gmail.com>
- Hugo Carvalho <hugokarvalho@hotmail.com>
- Philipp Kiemle <philipp.kiemle@gmail.com>
- Boyuan Yang <073plan@gmail.com>
- Kukuh Syafaat <kukuhsyafaat@gnome.org>
- Goran Vidović <trebelnik2@gmail.com>
- Daniel Mustieles <daniel.mustieles@gmail.com>
- Rico Tzschichholz <ricotz@ubuntu.com>
- Andika Triwidada <atriwidada@gnome.org>
- Aurimas Černius <aurisc4@gmail.com>
- Eric <eric.daigle@zaclys.net>
- Sergej A <asvmail.as@gmail.com>
- Cheng-Chia Tseng <pswo10680@gmail.com>
- Richard B. Kreckel <rbk@in.terlu.de>
- Sergej A <sw@atrus.ru>
- Alan Mortensen <alanmortensen.am@gmail.com>
- Yosef Or Boczko <yoseforb@gnome.org>
- Mike Auty <mike.auty@gmail.com>
- Matheus Barbosa <mdpb.matheus@gmail.com>
- Niklas Srich <sirniklax@gmail.com>
- Claude Paroz <claude@2xlibre.net>
- Eli Schwartz <eschwartz@archlinux.org>
- Aleksandr Melman <Alexmelman88@gmail.com>
- Emin Tufan Çetin <etcetin@gmail.com>
- Rodrigo Lledó <rodhos92@gmail.com>
- Isak Bergdahl <isak.bergdahl@yahoo.com>
- Dz Chen <wsxy162@gmail.com>
- Gun Chleoc <fios@foramnagaidhlig.net>
- Ngọc Quân Trần <vnwildman@gmail.com>
- Joseph Bylund <joseph.bylund@gmail.com>
- Andre Klapper <a9016009@gmx.de>
- Florentina Mușat <florentina.musat.28@gmail.com>
Added/updated translations:
- ca.po, courtesy of Jaume Jorba
- cs.po, courtesy of Marek Černocký
- sv.po, courtesy of Anders Jonsson
- uk.po, courtesy of Yuri Chornoivan
- ca.po, courtesy of Jordi Mas i Hernàndez
- cs.po, courtesy of Marek Černocký
- da.po, courtesy of Alan Mortensen
- de.po, courtesy of Philipp Kiemle
- es.po, courtesy of Daniel Mustieles García
- fr.po, courtesy of J-Paul Bérard
- gd.po, courtesy of GunChleoc
- he.po, courtesy of Yosef Or Boczko
- hr.po, courtesy of gogo
- hu.po, courtesy of Balázs Úr
- id.po, courtesy of Kukuh Syafaat
- ja.po, courtesy of sicklylife
- lt.po, courtesy of Aurimas Černius
- pl.po, courtesy of Piotr Drąg
- pt.po, courtesy of Hugo Carvalho
- pt_BR.po, courtesy of Matheus Barbosa
- ro.po, courtesy of Florentina Mușat
- ru.po, courtesy of Ser82-png
- sl.po, courtesy of Matej Urbančič
- sr.po, courtesy of Мирослав Николић
- sv.po, courtesy of Anders Jonsson
- tr.po, courtesy of Emin Tufan Çetin
- uk.po, courtesy of Yuri Chornoivan
- vi.po, courtesy of Trần Ngọc Quân
- zh_CN.po, courtesy of Boyuan Yang
- zh_TW.po, courtesy of Cheng-Chia Tseng
Shotwell 0.31.3 (development) - 22 Dec 2020
* Store publishing secrets using libsecret
* Fix rotation keybinding for viewer
* Fix a missing menu item
* Many translation updates
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/shotwell/issues/218
- https://gitlab.gnome.org/GNOME/shotwell/issues/260
- https://gitlab.gnome.org/GNOME/shotwell/issues/290
- https://gitlab.gnome.org/GNOME/shotwell/issues/301
- https://gitlab.gnome.org/GNOME/shotwell/issues/312
Merge requests included in this release:
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/37
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/36
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/35
All contributors to this release:
- Jens Georg <mail@jensge.org>
- Yuri Chornoivan <yurchor@ukr.net>
- Jordi Mas <jmas@softcatala.org>
- sicklylife <translation@sicklylife.jp>
- Anders Jonsson <anders.jonsson@norsjovallen.se>
- Andika Triwidada <atriwidada@gnome.org>
- Daniel Mustieles <daniel.mustieles@gmail.com>
- Jordan Petridis <jpetridis@gnome.org>
- Emin Tufan Çetin <etcetin@gmail.com>
- Piotr Drąg <piotrdrag@gmail.com>
- Enrico Nicoletto <liverig@gmail.com>
- Marek Černocký <marek@manet.cz>
- Goran Vidović <trebelnik2@gmail.com>
- Balázs Úr <balazs@urbalazs.hu>
- Asier Sarasua Garmendia <asiersarasua@ni.eus>
- Rafael Fontenelle <rafaelff@gnome.org>
- Baurzhan Muftakhidinov <baurthefirst@gmail.com>
- Florentina Mușat <emryslokadottir@gmail.com>
Added/updated translations:
- ca.po, courtesy of Jaume Jorba
- cs.po, courtesy of Marek Černocký
- id.po, courtesy of Andika Triwidada
- sv.po, courtesy of Anders Jonsson
- uk.po, courtesy of Yuri Chornoivan
- ca.po, courtesy of Jordi Mas i Hernàndez
- cs.po, courtesy of Marek Černocký
- es.po, courtesy of Daniel Mustieles
- eu.po, courtesy of Asier Sarasua Garmendia
- hr.po, courtesy of gogo
- hu.po, courtesy of Balázs Úr
- id.po, courtesy of Andika Triwidada
- ja.po, courtesy of sicklylife
- kk.po, courtesy of Baurzhan Muftakhidinov
- pl.po, courtesy of Piotr Drąg
- pt_BR.po, courtesy of Enrico Nicoletto
- ro.po, courtesy of Florentina Mușat
- sv.po, courtesy of Anders Jonsson
- tr.po, courtesy of Emin Tufan Çetin
- uk.po, courtesy of Yuri Chornoivan
Shotwell 0.31.2 - 22 May 2020
* Documentation updates and clean-up
* Drop obsolete settings
* Add WEBP and GIF to viewer's desktop file
* Use new mapbox tiles for the map view
* Flickr: Upload description and title
* General OAuth1 clean-up and simplifications
* Flickr: Show the new quotas (images uploaded)
* Make face detection and recognition compatible with OpenCV 4
* Fix shortcuts for previous/next photo in menus
* Migrate GSettings from org.yorba to org.gnome
* Fix initialization of the theme being too late
* Bring some consistency into the settings summaries and descriptions
* Google Photos: Fix a critical when target album is not available
* YouTube: Remove an obsolete label from the publishing dialog
* Authenticator: Make links in the shown web page open in external browser
* Google Photos/YouTube: Update explanatory texts before log in.
* Flickr: Fix the log in
* Many translation updates
Bugs fixed in this release:
- https://gitlab.gnome.org/GNOME/shotwell/issues/157
- https://gitlab.gnome.org/GNOME/shotwell/issues/193
- https://gitlab.gnome.org/GNOME/shotwell/issues/212
- https://gitlab.gnome.org/GNOME/shotwell/issues/216
- https://gitlab.gnome.org/GNOME/shotwell/issues/217
- https://gitlab.gnome.org/GNOME/shotwell/issues/221
- https://gitlab.gnome.org/GNOME/shotwell/issues/223
- https://gitlab.gnome.org/GNOME/shotwell/issues/226
- https://gitlab.gnome.org/GNOME/shotwell/issues/242
Merge requests included in this release:
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/33
All contributors to this release:
- Jens Georg <mail@jensge.org>
- Piotr Drąg <piotrdrag@gmail.com>
- Daniel Mustieles <daniel.mustieles@gmail.com>
- Yuri Chornoivan <yurchor@ukr.net>
- Anders Jonsson <anders.jonsson@norsjovallen.se>
- sicklylife <translation@sicklylife.jp>
- Cheng-Chia Tseng <pswo10680@gmail.com>
- Andre Klapper <a9016009@gmx.de>
- Justin van Steijn <jvs@fsfe.org>
- Kukuh Syafaat <kukuhsyafaat@gnome.org>
- Rafael Fontenelle <rafaelff@gnome.org>
- scootergrisen <scootergrisen@gmail.com>
Added/updated translations:
- es.po, courtesy of Daniel Mustieles
- id.po, courtesy of Kukuh Syafaat
- ja.po, courtesy of sicklylife
- nl.po, courtesy of Justin van Steijn
- pl.po, courtesy of Piotr Drąg
- pt_BR.po, courtesy of Rafael Fontenelle
- sv.po, courtesy of Anders Jonsson
- te.po, courtesy of Krishnababu Krothapalli
- uk.po, courtesy of Yuri Chornoivan
- zh_TW.po, courtesy of Cheng-Chia Tseng
Shotwell 0.31.1 - 4 Mar 2020
* Fix an issue when pressing the down key in a slideshow
* Face recognition: Properly fall back to face detection when there is no DNN
file
* GPS: Export GPS meta-data
* GPS: Changed GPS will trigger meta-data export
* Piwigo: Fix crash when the certificate information is broken
* Add profiles
* Fix an issue with git annex due to not properly recognizing symlinks
* Doc: Update the manpage
* Google Photos: Do not crash if title is missing
* Authenticator: Do not crash if service connection fails
* Doc: Various syntax fixes in help files
* Fix Camera detection and unmounting
* Speed up browsing directories of large files
* Fix localization of month in the DateTime dialog
* Tumblr: Fix upload
* Respect rotation information of videos
* Piwigo: Enable uploading of rating
* Port thumbnailer spawning to GLib.Subprocess
* Remove a couple of deprecated TimeVal uses
* Fix a couple of "potential null access" warnings during compilation
* Some code clean-ups
Bugs fixed in this release:
- https://bugzilla.gnome.org/show_bug.cgi?id=716418
- https://gitlab.gnome.org/GNOME/shotwell/issues/122
- https://gitlab.gnome.org/GNOME/shotwell/issues/134
- https://gitlab.gnome.org/GNOME/shotwell/issues/149
- https://gitlab.gnome.org/GNOME/shotwell/issues/158
- https://gitlab.gnome.org/GNOME/shotwell/issues/166
- https://gitlab.gnome.org/GNOME/shotwell/issues/19
- https://gitlab.gnome.org/GNOME/shotwell/issues/196
- https://gitlab.gnome.org/GNOME/shotwell/issues/202
- https://gitlab.gnome.org/GNOME/shotwell/issues/211
- https://gitlab.gnome.org/GNOME/shotwell/issues/38
- https://gitlab.gnome.org/GNOME/shotwell/issues/80
Merge requests included in this release:
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/31
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/22
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/20
All contributors to this release:
- Jens Georg <mail@jensge.org>
- Jordi Mas <jmas@softcatala.org>
- Daniel Mustieles <daniel.mustieles@gmail.com>
- Goran Vidović <trebelnik2@gmail.com>
- Piotr Drąg <piotrdrag@gmail.com>
- Ryuta Fujii <translation@sicklylife.jp>
- Balázs Úr <balazs@urbalazs.hu>
- Rafael Fontenelle <rafaelff@gnome.org>
- Kukuh Syafaat <kukuhsyafaat@gnome.org>
- Asier Sarasua Garmendia <asier.sarasua@gmail.com>
- Sabri Ünal <libreajans@gmail.com>
- sicklylife <translation@sicklylife.jp>
- Daniel Korostil <ted.korostiled@gmail.com>
- Anders Jonsson <anders.jonsson@norsjovallen.se>
- Marek Černocký <marek@manet.cz>
- David Welch <techy121592@gmail.com>
- Andre Klapper <a9016009@gmx.de>
- Hyunsu Shin <sephiron@hanmail.net>
- Bruce Cowan <bruce@bcowan.me.uk>
- Joseph Bylund <joseph.bylund+github@gmail.com>
- Suen Chun Hui <23443533+suenchunhui@users.noreply.github.com>
- Andika Triwidada <atriwidada@gnome.org>
- Andre Klapper <aklapper@wikimedia.org>
- Jiri Grönroos <jiri.gronroos@iki.fi>
- Jor Teron <jor.teron@gmail.com>
- Stas Solovey <whats_up@tut.by>
- Tim Sabsch <tim@sabsch.com>
Added/updated translations:
- ca.po, courtesy of Jaume Jorba
- cs.po, courtesy of Marek Černocký
- es.po, courtesy of Daniel Mustieles
- as.po, courtesy of Nilamdyuti Goswami
- ca.po, courtesy of Jordi Mas i Hernàndez
- cs.po, courtesy of Marek Černocký
- de.po, courtesy of Tim Sabsch
- en_GB.po, courtesy of Bruce Cowan
- es.po, courtesy of Daniel Mustieles
- eu.po, courtesy of Asier Sarasua Garmendia
- fi.po, courtesy of Jiri Grönroos
- hr.po, courtesy of gogo
- hu.po, courtesy of Balázs Úr
- id.po, courtesy of Kukuh Syafaat
- ja.po, courtesy of sicklylife
- ko.po, courtesy of Shin Hyunsu
- mjw.po, courtesy of Jor Teron
- pl.po, courtesy of Piotr Drąg
- pt_BR.po, courtesy of Rafael Fontenelle
- ru.po, courtesy of Stas Solovey
- sv.po, courtesy of Anders Jonsson
- tr.po, courtesy of Sabri Ünal
- uk.po, courtesy of Yuri Chornoivan
Shotwell 0.31.0 - 27 Mar 2019
* Reorganize source tree
* Visually clean-up saved search editing dialog
* Use org.freedesktop.FileManager1 instead of calling nautilus directly.
* Fix some deprecated calls in faces code
* Fix icon fall-back
* Add support for reading WEBP
* Some appdata fixes
* Skip hidden folders such as .thumbnails
* Fix missing icons in sidebar
* Use Gtk.FileChooserNative for nicer portal integration
* flatpak: several updates of dependencies
* flatpak: strip-down OpenCV
* Fix another "unknown source-id" warning
* Stop spinning the event loop when changing window cursors
* Several fixes to scroll events
* Fix tooltips on overview pages
* Fix issue with ImageHeight and ImageWidth mix-up
* Strip diacritics from events and tags for better searching
* Support gexiv2 0.12
* Add -p/--show-metadata option to Shotwell for dumping meta-data
* Increase comment limit to 4k chars
* Fix deprecations in Piwigo builder files
* Do not make Cancel the default action in the authenication panel
* Clean-up in several places in the publishers
* Split-up some of the publishing panel code and move to GtkBuilder
* Simplify the login landing page for publishing
* Remove non-functional Facebook publisher code
* Split-up CheckerBoardLayout.vala file
* Use nicer messages on empty filters etc.
* Merge face recognition code
* Fix fall-back icon for cameras
* Fix CSS and icon theme initialization code
* Fix an issue with chaining up the constructors for the main window classes
* Fix issue with ACDSEE tags parser attaching all known tags to all imported
images
* Mege Map support
* Use my mapbox API token for map support
* Minor refactor of Page.vala eliminating duplicated code
* Drop conditionals for old Vala
* Several fixes with recent Vala versions
* Page.vala code split-up
* Various typo fixes
* Fix issue with artist containing an email address
* Add optional private DBus communication for faces recognition binary
Bugs fixed in this release:
- https://bugs.launchpad.net/ubuntu/+source/shotwell/+bug/1723973
- https://bugzilla.gnome.org/show_bug.cgi?id=717880
- https://bugzilla.gnome.org/show_bug.cgi?id=718676
- https://gitlab.gnome.org/GNOME/shotwell/issues/101
- https://gitlab.gnome.org/GNOME/shotwell/issues/11
- https://gitlab.gnome.org/GNOME/shotwell/issues/112
- https://gitlab.gnome.org/GNOME/shotwell/issues/22
- https://gitlab.gnome.org/GNOME/shotwell/issues/26
- https://gitlab.gnome.org/GNOME/shotwell/issues/34
- https://gitlab.gnome.org/GNOME/shotwell/issues/53
- https://gitlab.gnome.org/GNOME/shotwell/issues/58
- https://gitlab.gnome.org/GNOME/shotwell/issues/60
- https://gitlab.gnome.org/GNOME/shotwell/issues/60
- https://gitlab.gnome.org/GNOME/shotwell/issues/67
- https://gitlab.gnome.org/GNOME/shotwell/issues/73
- https://gitlab.gnome.org/GNOME/shotwell/issues/75
- https://gitlab.gnome.org/GNOME/shotwell/issues/80
- https://gitlab.gnome.org/GNOME/shotwell/issues/89
- https://gitlab.gnome.org/GNOME/shotwell/issues/94
- https://gitlab.gnome.org/GNOME/shotwell/issues/97
- 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/19
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/11
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/17
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/16
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/15
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/12
- https://gitlab.gnome.org/GNOME/shotwell/merge_requests/8
All contributors to this release:
- Jens Georg <mail@jensge.org>
- Andreas Brauchli <a.brauchli@elementarea.net>
- Piotr Drąg <piotrdrag@gmail.com>
- Anders Jonsson <anders.jonsson@norsjovallen.se>
- Rafael Fontenelle <rafaelff@gnome.org>
- Jordi Mas <jmas@softcatala.org>
- Balázs Úr <balazs@urbalazs.hu>
- Rico Tzschichholz <ricotz@ubuntu.com>
- Daniel Mustieles <daniel.mustieles@gmail.com>
- Alan Mortensen <alanmortensen.am@gmail.com>
- Ryuta Fujii <translation@sicklylife.jp>
- Kukuh Syafaat <kukuhsyafaat@gnome.org>
- gogo <trebelnik2@gmail.com>
- Christian Kirbach <christian.kirbach@googlemail.com>
- Timo Jyrinki <timo.jyrinki@iki.fi>
- Daniel Korostil <ted.korostiled@gmail.com>
- Sabri Ünal <libreajans@gmail.com>
- Daniel Mustieles <daniel.mustieles.contractor@bbva.com>
- Ask Hjorth Larsen <asklarsen@gmail.com>
- NMA <narendra_m_a@yahoo.com>
- Claude Paroz <claude@2xlibre.net>
- Daniel Köb <daniel.koeb@peony.at>
- IBBoard <dev@ibboard.co.uk>
- Yi-Jyun Pan <pan93412@gmail.com>
- Moritz <mo@oclab.net>
- Rodrigo Lledó <rodhos92@gmail.com>
- Mario Blättermann <mario.blaettermann@gmail.com>
- Marek Cernocky <marek_cernocky@conel.cz>
- Rūdolfs Mazurs <rudolfs.mazurs@gmail.com>
- Balázs Meskó <meskobalazs@fedoraproject.org>
Added/updated translations:
- es.po, courtesy of Daniel Mustieles
- hu.po, courtesy of Balázs Úr
- pt_BR.po, courtesy of Rafael Fontenelle
- sv.po, courtesy of Anders Jonsson
- ca.po, courtesy of Jordi Mas i Hernàndez
- cs.po, courtesy of Marek Černocký
- da.po, courtesy of Alan Mortensen
- de.po, courtesy of Mario Blättermann
- es.po, courtesy of Daniel Mustieles
- fi.po, courtesy of Jiri Grönroos
- fr.po, courtesy of Claude Paroz
- hr.po, courtesy of gogo
- hu.po, courtesy of Balázs Úr
- id.po, courtesy of Kukuh Syafaat
- ja.po, courtesy of sicklylife
- lv.po, courtesy of Rūdolfs Mazurs
- pl.po, courtesy of Piotr Drąg
- pt_BR.po, courtesy of Rafael Fontenelle
- sv.po, courtesy of Anders Jonsson
- tr.po, courtesy of Emin Tufan Çetin
- uk.po, courtesy of Yuri Chornoivan
- zh_TW.po, courtesy of pan93412
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 Flickr 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