-
Notifications
You must be signed in to change notification settings - Fork 21
/
NEWS
3092 lines (2617 loc) · 113 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
Version 3.12.6
~~~~~~~~~~~~~~
Released: 2024-03-10
Features:
* WebAlbums: allow Exif image title to be used. (Linas Vepstas)
Bugfixes:
* Fixed 'could not perform operation' when editing a modified image.
* Video thumbnailer: use the default thumbnail size if invalid. (Linas Vepstas)
* Video thumbnailer: avoid a null pointer dereference and crash. (Linas Vepstas)
Translations:
* Slovenian (Martin Srebotnjak)
Version 3.12.5
~~~~~~~~~~~~~~
Released: 2024-02-18
Bugfixes:
* Add to catalog: show the next image only when in viewer mode (!313)
* jxl: added support for version 0.9.0 (Timo Gurr) (!306)
* Commenting a picture deletes its Color Profile tag. This only
happened when the 'Store metadata inside files if possible' option
was active. (!293)
Translations:
* Chinese/Traditional (Cheng-Chia Tseng)
* Turkish (Sabri Ünal)
* čeština (Daniel Rusek)
Version 3.12.4
~~~~~~~~~~~~~~
Released: 2023-10-10
Bugfixes:
* Crop: lost the custom sizing for Aspect Ratio "Other" (!298)
* Do not use symbols not available in glib 2.54.0 (!294)
* Build failed (!292)
Translations:
* Belarusian (Yuras Shumovich)
* Catalan (Jordi Mas i Hernàndez)
* Deutsch (Jürgen Benvenuti)
* Hungarian (Balázs Úr)
Version 3.12.3
~~~~~~~~~~~~~~
Released: 2023-08-27
Features:
* Added ability to open the image stored in the clipboard with Ctrl+Shift+V (!243)
* Added ability to sort folders by modification time from the context menu
* Media viewer: added ability to copy the current frame to the clipboard with Ctrl+Shift+C
* Tiff and TGA files: added support for transparency
* Image viewer: added support for the zoom gesture (!50)
* Drag&Drop: allow to copy pressing Shift (matthewmelvin)
* Image tools: allow to use Return to apply the changes
* Rename series: added special code to add the filename without extension
* Rename series: added ability to specify the current time
* Crop: added 1.91:1 to the list of predefined ratios
* Added an internal video thumbnailer
* Try to load the parent folder if the startup folder doesn't exist
* Make keypad keys equivalent to the non-keypad counterpart (!238) (!239)
* Improved usability when editing metadata in browser mode (!267)
* Zoom slider: set the zoom range from 5% to 1000%
Bugfixes:
* Allow to compile without clutter-gtk (Matt Turner) (!222)
* Fixed build with exiv2 version 0.28 (Alex and Antonio Rojas)
* Fixed build with libraw 0.21
* Reduced memory usage by keeping in memory only the visible thumbnails
* Rename series: fixed date format not applied correctly; preview does not show example values
* Desktop background: fixed when using the dark color scheme
* Fixed memory leaks
* Fixed directory not loaded when cancelling the thumbnailer
* Help: Added gThumb icon (Sabri Ünal)
* TGA files displayed pixelated
* Status bar reappears after exiting from full screen
Translations:
* Basealt (Aleksandr Melman)
* Basque (Asier Sarasua Garmendia)
* Brazilian Portuguese (Enrico Nicoletto)
* catalan (Jordi Mas i Hernàndez)
* Chinese - China (Boyuan Yang)
* Croatian (gogo)
* Danish (Alan Mortensen)
* Deutsch (Jürgen Benvenuti)
* Finnish (Jiri Grönroos)
* French (Guillaume Bernard)
* Georgian (Temuri Doghonadze)
* German (Jürgen Benvenuti)
* Hebrew (Yosef Or Boczko)
* Hungarian (Balázs Úr)
* Icelandic (Sveinn í Felli)
* IE (OIS)
* Indonesian (Kukuh Syafaat) (Andika Triwidada)
* Lietuvių (Aurimas Černius)
* Polish (Piotr Drąg)
* Português (Hugo Carvalho)
* Serbian <српски (Мирослав Николић)
* Spanish - Spain (Daniel Mustieles García)
* Swedish (Anders Jonsson)
* Turkish (Sabri Ünal)
* Ukrainian (Yuri Chornoivan)
* čeština (Marek Černocký)
Version 3.12.2
~~~~~~~~~~~~~~
Released: 2022-04-03
Features:
* Added support for larger thumbnail sizes: 512, 768 and 1024 pixels.
Bugfixes:
* Fixed possible crash when changing directory during thumbnails creation.
Translations:
* Dutch (Nathan Follens)
* Hungarian (Balázs Úr)
* Polish (Piotr Drąg)
* Swedish (Anders Jonsson)
* Ukrainian (Yuri Chornoivan)
Version 3.12.1
~~~~~~~~~~~~~~
Released: 2022-03-21
Bugfixes:
* PNG loader ignores gAMA. (#194)
* Transparent webp images are rendered incorrectly. (#199)
* Crash when dropping files on an empty folder/catalog. (#220)
* Fixed location loading after mounting volume.
* JPEG image dimensions not displayed for files inside the trash. (#214)
* Infinite Loop when viewing more than 50 thumbnails. (Kendy Kutzner)
* X11 window title is not set. (Bruno Vasselle)
* Copy release notes on build from NEWS to metainfo file. (Federico Bruni)
* Fixed build if appstream >= 0.14.6 is not available.
* Fix incorrect usage of shared_module in extensions. (Jakub Jirutka)
* cli: mention that user can open files and/or directories. (#167)
Translations:
* Basealt (Olesya Gerasimenko)
* Catalan (Jordi Mas)
* Croatian (gogo)
* Dutch (Nathan Follens)
* Hebrew (Yosef Or Boczko)
* Japanese (sicklylife)
* Swedish (Anders Jonsson)
* Turkish (Emin Tufan Çetin)
* српски (Мирослав Николић)
Contributors:
Kendy Kutzner, Bruno Vasselle, Federico Bruni, Jakub Jirutka,
Olesya Gerasimenko, Jordi Mas, gogo, Nathan Follens, Yosef Or Boczko
sicklylife, Anders Jonsson, Emin Tufan Çetin, Мирослав Николић
Version 3.12.0
~~~~~~~~~~~~~~
Released: 2021-09-19
Bugfixes:
* Fix memory leak when loading webp, jxl, avif images. (Jürg Billeter)
* Check if image is null before using it. (!189)
* Added a Flatpak manifest. (AsciiWolf)
Translations:
* Catalan (Jordi Mas)
* Finnish (Jiri Grönroos)
* Hungarian (Balázs Úr)
* Indonesian (Andika Triwidada)
* Lietuvių (Aurimas Černius)
* Spanish - Spain (Daniel Mustieles)
* Swedish (Anders Jonsson)
* čeština (Marek Černocký)
Version 3.11.4
~~~~~~~~~~~~~~
Released: 2021-08-22
Features:
* Added ability to load AVIF/HEIF images using libheif.
* Added ability to save images as AVIF.
* Allow to set shortcuts to activate filters.
* Added a template editor to edit text values with special codes:
script commands, rename templates, print header and footer, etc.
* Faster navigation when a directory contains thousands of images.
* File list: start more thumbnailers in parallel.
* Allow to mount unmounted volumes.
* Color picker: added other formats: rgb in % and hsl.
* Allow to keep browsing while executing long-running external tools.
* Status bar: added button to show the progress dialog.
* File properties: do not reset the selection after showing another image.
* Histogram: show the properties in a single column to save horizontal space.
Bugfixes:
* Install the gThumb import desktop file. (Bruce Schultz)
* Contact sheet: fixed themes list always empty.
* Thumbnailer: try with the system thumbnailer if the image is null
(!184)
* Include locale.h for LC_NUMERIC (!180)
* Raw: Make compatible with LibRaw 0.21 (Chris Mayo)
* Folder context menu: do not allow to move if cannot delete.
* Folder context menu: do not allow to copy not mounted volumes.
* Terminal: enable only for local folders.
* File chooser: correctly get the filename extension.
Translations:
* Basque (Asier Sarasua Garmendia)
* Brazilian Portuguese (Rafael Fontenelle)
* Chinese - China (Boyuan Yang)
* Danish (Ask Hjorth Larsen)
* Indonesian (Andika Triwidada)
* Polish (Piotr Drąg)
* Romanian (Adi Roiban)
* Spanish - Spain (Daniel Mustieles)
* Swedish (Anders Jonsson)
* Turkish (Emin Tufan Çetin)
* Ukrainian (Yuri Chornoivan)
Version 3.11.3
~~~~~~~~~~~~~~
Released: 2021-04-11
Features:
* Add JPEG XL (*.jxl) read support. (Ian Tester)
* File manager: added file actions to the viewer context menu. (!102)
* Extensions: removed facebook and picasaweb uploaders.
Bugfixes:
* Fixed possible build error.
* Continuously reloads image when it is only image in folder (!153)
* Webp can have transparency as well.
Translations:
* Basque (Asier Sarasua Garmendia)
* Brazilian Portuguese (Enrico Nicoletto)
* catalan (Jordi Mas)
* Dutch (Nathan Follens, Paul Matthijsse)
* Finnish (Jiri Grönroos)
* Hungarian (Balázs Úr)
* Indonesian (Kukuh Syafaat)
* Lietuvių (Aurimas Černius)
* Polish (Piotr Drąg)
* Romanian (Adi Roiban)
* Spanish - Spain (Daniel Mustieles)
* Swedish (Anders Jonsson)
* Turkish (Muhammet Kara)
* Ukrainian (Yuri Chornoivan)
* čeština (Marek Černocký)
* српски (Мирослав Николић)
* עברית (Yaron Shahrabani)
Version 3.11.2
~~~~~~~~~~~~~~
Released: 2021-01-10
Features:
* Image viewer: use a proportional zoom increment. (#104)
* Image viewer: keep the same pixel under the pointer after zooming. (#129)
* Read color profiles from png files as well.
* Media viewer: use accurate seeking when clicking on the progress bar.
* Media viewer: show the pointed time when hovering over the progress bar.
* Browser: added support for back and forward mouse buttons. (#120)
* Preferences: added option to show/hide the statusbar.
* Rename files: added a button to revert to the last used template.
Bugfixes:
* Image viewer: fixed bright line visual artifacts. (#118)
* gThumb opens import tool if the import tool is already opened. (#133)
* Fixed jump to bottom when selecting thumbnails with mouse. (#147)
* exiv2: remove the charset= prefix from strings. (#137)
* Search: do not count duplicated files.
* Search: stop searching if the user changes location.
* Search: stop the previous search before starting the new one.
Translations:
* Brazilian Portuguese (Enrico Nicoletto)
* catalan (Jordi Mas)
* Hungarian (Balázs Úr)
* Indonesian (Andika Triwidada)
* Japanese (sicklylife)
* Lietuvių (Aurimas Černius)
* Polish (Piotr Drąg)
* Slovenian (Matej Urbančič)
* Swedish (Anders Jonsson)
* Turkish (Emin Tufan Çetin)
* Ukrainian (Yuri Chornoivan)
* čeština (Marek Černocký)
Version 3.11.1
~~~~~~~~~~~~~~
Released: 2020-09-20
Features:
* Added configurable shortcuts for Save and Save As. (Joerg Fellmann)
* Media player: adjust the pitch if not played at normal speed.
* Media viewer: added keyboard shortcuts.
* Media viewer: added actions to skip forward/backward.
* Media viewer: fixed hardware accelerated playback.
* Desktop file: added a 'New Window' action.
* File list: always allow to use Control-A to select all files.
Bugfixes:
* WebP loader: fixed an infinite loop when the operation is cancelled. (Jürg Billeter)
* Jpeg loader: fixed crash in case of some malformed jpegs. (Joerg Fellmann)
* Fixed crash when selecting other images after deleting. (#126)
* Fixed long UI freeze after cutting/pasting many files.
Translations:
* Brazilian Portuguese (Henrique Machado Campos)
* Catalan (Jordi Mas)
* Chinese/Traditional (Cheng-Chia Tseng)
* Finnish (Jiri Grönroos)
* French (Charles Monzat)
* German - Germany (Christian Kirbach)
* Indonesian (Andika Triwidada)
* Italian (Gianvito Cavasoli)
* Japanese (sicklylife)
* Lietuvių (Aurimas Černius)
* Polish (Piotr Drąg)
* Spanish - Spain (Daniel Mustieles)
* Swedish (Anders Jonsson)
* Ukrainian (Yuri Chornoivan)
Version 3.10.0
~~~~~~~~~~~~~~
Released: 2020-04-19
Features:
* Edit metadata dialogs: moved the lock button on the header bar; show the
navigation bar only when the lock button is active.
* Open location dialog: allow to use tilde as a home folder shortcut.
Bugfixes:
* Install missing .ui file
Translations:
* Brazilian Portuguese (Rafael Fontenelle)
* Dutch (Justin van Steijn)
* Indonesian (Andika Triwidada)
* Italiano (Gianvito Cavasoli)
* Japanese (sicklylife)
* Polish (Piotr Drąg)
* Spanish - Spain (Daniel Mustieles)
* Swedish (Anders Jonsson)
* Turkish (Emin Tufan Çetin)
* Ukrainian (Yuri Chornoivan)
Version 3.9.1
~~~~~~~~~~~~~
Released: 2020-03-07
Features:
* Added ability to customize the keyboard shortcuts.
* Added a shortcuts window to show the available shortcuts.
* Added option to change the mouse wheel action.
* Image viewer: added ability to define the transparency style.
* Video viewer: allow to view the video at the original size; show the zoom
factor in the statusbar.
* Edit comment/tags dialogs: use the header bar; allow to change the current
image from the dialog.
* Add to catalog: use the header bar; allow to change the current image from
the dialog.
* Search: added ability to search in multiple folders.
* Scripts: added %T to insert a timestamp in the command.
* Folder tree:
* better drag&drop support: allow to move a catalog into a library, and a
library into another library, show an error if the drop operation is not
possible;
* added an 'Open in Terminal' command in the context menu.
* Overwrite dialog: show video previews as well, fixed dialog size.
* Preferences: allow to specify a catalog or any other location as startup
location.
* Trash/Delete files: show progress for long operations.
* File properties: added the file size in bytes.
* File properties: added a context menu command to customize the visibile
properties.
* Toolbar: show edit comment/tags in browser mode as well.
* Export tools: removed from the toolbar. Some tools moved to the tools
menu, others as a submenu in the gears menu.
* Fixed window size when started the first time.
* Updated app icon to follow the new GNOME style.
* Rewritten README in markdown, updated screenshots.
* Appdata: added release and OARS tags for flathub compatibility. (Tobias Mueller)
Bugfixes:
* gThumb hangs when some mount point is unavailable. (!75)
* Jpeg loader: crash when the original size is too big for a cairo surface.
* PNG loader: correctly load images with transparency.
* Fixed run-time errors if exiv2 is not used.
* Catalog: preserve the list order after saving the properties.
* Scripts: fixed task cancellation when using a shell script.
Notes:
* Utility functions refactoring.
* Added tests for the utility functions.
version 3.8.2
-------------
User visible changes:
* Use menus instead of popovers for menu buttons on the header bar,
to show icons and accelerators.
* Header bar: align menus to the right for menu buttons on the right side.
* Tools menu: show the accelerators.
* Search: show the matching files during the search operation.
* Rename dialog: activate on enter. (Ivan Ershov)
Bugs fixed:
* Fixed filesize test for big files.
* Overwrite dialog: do not show an error after cancelling the operation.
* Fixed crash when moving files to the trash.
* Install missing UI files. (Dan Horák)
* Added image/webp support in .desktop file. (Baltix Mantas) (!55)
* Fix callback signature for value-changed signal when setting zoom
(Dan Horák) (!54)
* Help: corrected wiki link. (Wylel) (!2)
New or updated application translations:
* Catalan (Jordi Mas)
* Italiano (Gianvito Cavasoli)
New or updated manual translations:
* Spanish - Spain (Daniel Mustieles)
version 3.8.1
-------------
Bugs fixed:
* Selections: fixed possible crash after reordering the files.
New or updated application translations:
* Basque (Alexander Gabilondo)
* catalan (Jordi Mas)
* Croatian (gogo)
* Dutch (Paul Matthijsse)
* Turkish (Sabri Ünal)
version 3.8.0
-------------
New features and user visible changes:
* Delete dialog: make the delete button red
Bugs fixed:
* build error when JPEG_LIB_VERSION < 80 (!44)
version 3.7.2
-------------
New features and user visible changes:
* Added ability to drag an image from the viewer. (!24)
* Image viewer: use a checked pattern as background for transparent images.
* Thumbnails: do not use a white background for images with
transparencies. (!37)
* Photo importer: remember the last used filter.
Bugs fixed:
* Deleting picture sometimes removes wrong file. (!29)
* When changing a file metadata update the folder as well. (!28)
* New library: always shows 'name already used' error. (!43)
* Fixed crash when deleting files and moving to trash is not possible.
* JPEG loader: fixed possible crash when a jpeg image is broken.
* Fixed JPEG lossless rotation. (!22)
* Fixed git url in README. (!40)
* Fix the build with exiv2 0.27 (Kalev Lember) (!30)
* Fails to build when passing -Dgstreamer=false (!35)
* Fixed other build issues. (Kalev Lember) (Timo Gurr)
* Preferences dialog: fix link to "More extensions".
* Grid view: fixed layout after changing thumbnail size.
* Bookmarks dialog: fixed icons color.
New or updated application translations:
* catalan (Jordi Mas)
* Dutch (Nathan Follens)
* Finnish (Jiri Grönroos)
* French (Claude Paroz)
* German (Mario Blättermann)
* Indonesian (Kukuh Syafaat)
* Italiano (Gianvito Cavasoli)
* Lietuvių (Aurimas Černius)
* Portuguese - Brazil (Rafael Fontenelle)
* српски (Марко М. Костић)
New or updated manual translations:
* Dutch (Paul Matthijsse)
version 3.7.1
-------------
New features and user visible changes:
* Removed the application menu.
* Sidebar: show the property views in expandable sections.
* Thumbnail list: spread the thumbnails horizontally to fill the available
space.
* Video viewer: added option to use opengl instead of cairo.
* Show the rating as a sequence of stars.
* Color picker: use lowercase letters for the hexadecimal value.
* Contact sheet: set the current directory as destination if possible.
* Script dialog: wider list to make all columns visible.
* Use meson as build system.
Bugs fixed:
* Image navigator: fixed popup positioning.
* Preferences: fixed crash when setting the current location as default.
* About dialog: fixed website url.
* Jpeg loader: try to load broken images.
* Contact sheet: error if the theme file could not be loaded. (issue 18)
* Removed deprecated functions.
version 3.6.1
-------------
Bugs fixed:
* Fixed crash when browsing folders with images and videos. (#760214)
New or updated application translations:
* Brazilian Portuguese (Isaac Ferreira Filho)
* Croatian (gogo)
* es (Daniel Mustieles)
* Esperanto (Kristjan SCHMIDT)
* Hungarian (Balázs Úr)
New or updated manual translations:
* es (Daniel Mustieles)
version 3.6.0
-------------
Bugs fixed:
* Numeric keypad nav keys don't work (#667390)
New or updated application translations:
* Danish (Alan Mortensen)
version 3.5.4
-------------
Bugs fixed:
* No application icon on Wayland.
* Tags dialog: improved usability. Do not select the entry content after
opening the dialog; add a comma at the end of the tags entry to simplify
the addition of a new tag; support keyboard navigation. (#777234)
* Hi-DPI: "High" quality zoom is pixelated on hi-dpi monitors. (#779340)
* Web services: fixed errors and removed features no longer supported by
the APIs:
* Facebook: fixed authorization process; removed photo importer.
* PicasaWeb: removed album creation; remember application
authorization. (#784142)
* Photobucket: removed uploader.
* Image viewer: use a white background for transparency. (#780207)
* Fixed saving of uris in settings. (#783498)
* Color manager: fixed crash when no device is found. (#789347)
* Do not save selections. This broke workflows where selections were involved.
* Removed obsolete file gthumb.convert (#767034)
New or updated application translations:
* Danish (Alan Mortensen)
* Indonesian (Kukuh Syafaat)
* Latvian (Rūdolfs Mazurs)
* Lietuvių (Aurimas Černius)
* Swedish (Anders Jonsson)
New or updated manual translations:
* Deutsch (Mario Blättermann)
version 3.5.3
-------------
New features and user visible changes:
* Add app menu entries to the gear menu if the app menu is not supported by
the desktop environment.
* Updated appdata file.
* Fixed help markup. (Andre Klapper)
New or updated application translations:
* Brazilian Portuguese (Rafael Fontenelle)
* catalan (Jordi Mas)
* Chinese/Traditional (Cheng-Chia Tseng)
* Danish (Ask Hjorth Larsen)
* Deutsch (Mario Blättermann)
* es (Daniel Mustieles)
* French (Claude Paroz)
* Hungarian (Balázs Úr)
* Indonesian (Kukuh Syafaat)
* Italiano (Gianvito Cavasoli)
* Polish (Piotr Drąg)
* srpski (Miroslav Nikolić)
* Swedish (Josef Andersson)
* čeština (Marek Černocký)
* српски (Мирослав Николић)
New or updated manual translations:
* es (Daniel Mustieles)
* čeština (Marek Černocký)
version 3.5.2
-------------
New features and user visible changes:
* Faster image loading.
* Fixed big memory leak and other minor memory leaks.
* Aspect ratio filtering. (Vasdi)
* Video player works on wayland as well.
* Color profiles work on wayland as well (requires colord).
* Show the color profile description in the property view.
* Headerbar: show the tools menu button in viewer mode as well; added a
button to go to the catalogs root; added a button to go to the home folder.
* Scripts: allow to specify a generic accelerator.
* Selections: save at exit and restore at start.
* Video player: added a loop button.
* Use Unicode in translatable strings. (Piotr Drąg) (#782038)
Bugs fixed:
* Slideshow: no need to specify autoaudiosink as audio-sink. It is
already the default audio sink. (#785612)
* SEGFAULT when a svg image could not be loaded (784886)
* Do not process bitmap thumbnails with invalid color settings.
(Jan de Groot) (#778556)
* Fixed possible crash when switching from the image viewer to another viewer.
New or updated application translations:
* Brazilian Portuguese (Rafael Fontenelle)
* Deutsch (Mario Blättermann)
* es (Daniel Mustieles)
* French (Julien Hardelin)
* Hungarian (Balázs Úr)
* Indonesian (Kukuh Syafaat)
* Italiano (Gianvito Cavasoli)
* Lietuvių (Aurimas Černius)
* Polish (Piotr Drąg)
* Swedish (Anders Jonsson)
* čeština (Marek Černocký)
* Русский (Stas Solovey)
New or updated manual translations:
* French (Julien Hardelin)
* Swedish (Anders Jonsson)
version 3.5.1
-------------
New features and user visible changes:
* Added support for double click activation.
* Added option to open files in fullscreen mode.
* Added a zoom popover with various zoom commands and a zoom slider.
* Added a color picker.
* All dialogs: use the headerbar if supported by the desktop environment
(if 'gtk-dialogs-use-header' is set).
* App menu: added 'keyboard shortcuts'.
* Tag filter: added ability to filter using a regular expression.
* Sort catalogs by name, then by date.
* Gif animations: allow to pause and view the next frame.
* Added the control-o accelerator to open the location dialog.
* Keep the zoom buttons on the headerbar if the tool allow to zoom the image.
* Added a fullscreen button to the headerbar in viewer mode.
* Find duplicates: speed optimizations.
* New folder: open the folder after creating it.
* Hide the image frame when in fullscreen mode.
* Moved the photo importer preferences to the extension section.
* Find duplicates: more responsive when the duplicate list is huge.
* Added support for image/x-fuji-raf raw files. (Michael J. Chudobiak) (#709385)
* Fixed RTL icons and arrow rendering. (Michael J. Chudobiak) (#747380)
Bugs fixed:
* Ensure the settings have been saved before exiting.
* Desktop background: always create a unique filename to force an update.
* Desktop background: fixed error when setting an xcf image as background.
* Resize: fixed wrong aspect ratio after opening. (Vaclav Brozek)
* Slideshow: start on the same monitor of the window.
* Sizing issues in gthumb preferences under gtk+ git master. (#770546)
* Adjust contrast: better description of the stretch method (#767615)
* Removed deprecated gnome-common macros (#768528)
* Fixed scrollbars resetting their position when changing image.
* Fixed theme errors with gtk+ 3.20.
* Do not show rotation tools for animations.
* Crash after pressing shift-arrow. (#760050)
* Stopping slideshow freezes entire program. (#759787)
* Disambiguate labels of various metadata "date" fields. (#728471)
* Crash if trying to delete image on sftp mounted. (#759727)
* Crash when deleting duplicate. (#750142)
* Various minor typos fixed. (Michael J. Chudobiak) (#756486)
New or updated application translations:
* Albanian (Laurent Dhima)
* Amharic (Ge'ez Frontier Foundation)
* Arabeyes (Djihed Afifi)
* Azerbaijani (Metin Amiroff)
* Brazilian Portuguese (Rafael Fontenelle)
* Bulgarian (Julia Velkova)
* Canadian English (Adam Weinberger)
* catalan (Jordi Mas)
* catalan (Sílvia Miranda)
* Chinese (Hong Kong) (taijuin)
* Chinese (simplified) (tuhaihe)
* Chinese/Traditional (Cheng-Chia Tseng)
* Croatian (gogo)
* Danish (Ask Hjorth Larsen)
* Deutsch (Wolfgang Stoeggl)
* Dzongkha (sonam pelden)
* English/GB (David Lodge)
* es (Daniel Mustieles)
* Esperanto (Kristjan SCHMIDT)
* French (Claude Paroz)
* Galego (Francisco Diéguez)
* Gujarati (Sweta Kothari)
* Hindi (Rajesh Ranjan)
* Hungarian (Balázs Úr)
* Icelandic (Sveinn í Felli)
* Indonesian (Andika Triwidada)
* Irish (Alastair McKinstry)
* Italiano (Gianvito Cavasoli)
* Kannada (Shankar Prasad)
* Kinyarwanda (Steve Murphy)
* Korea (Young-Ho Cha)
* Latvian (Rūdolfs Mazurs)
* Lietuvių (Aurimas Černius)
* Low German (Nils-Christoph Fiedler)
* Macedonian (Arangel Angov)
* Malay (Hasbullah Bin Pit)
* Malayalam (FSF-India)
* Nepali (Shyam Krishna Bal)
* Norwegian Nynorsk (Åsmund Skjæveland)
* Norwegian/Bokmaal (Kjartan Maraas)
* Occitan (Yannig Marchegay (Kokoyaya))
* Pashto (Zabeeh Khan)
* Persian (Meelad Zakaria)
* Polish (Piotr Drąg)
* Português (Pedro Albuquerque)
* Punjabi/Panjabi (A S Alam)
* Romanian (Adi Roiban)
* Slovak (Peter Tuhársky)
* Slovenian (Matej Urbančič)
* srpski (Miroslav Nikolić)
* Swedish (Anders Jonsson)
* Thai (Sira Nokyoongtong)
* Turkish (Simge Sezgin)
* Ukrainian (Maxim Dziumanenko)
* Vietnamese (Clytie Siddall)
* Xhosa (Canonical Ltd)
* čeština (Marek Černocký)
* Русский (Yuri Myasoedov)
* српски (Мирослав Николић)
* עברית (Yosef Or Boczko)
New or updated manual translations:
* Czech (Marek Černocký)
* Deutsch (Christian Kirbach)
* Español; Castellano (Daniel Mustieles)
* Hungarian (Balázs Úr)
* Swedish (Anders Jonsson)
version 3.4.1
-------------
Bugs fixed:
* Fixed build on Fedora 23 (Kalev Lember) (#747982)
* Allow cross-compiling (Quentin Glidic) (#755390)
New or updated application translations:
* Catalan (Sílvia Miranda)
* Español; Castellano (Daniel Mustieles)
* Hungarian (Balázs Úr)
* Icelandic (Sveinn í Felli)
* Italiano (Gianvito Cavasoli)
* Lietuvių (Aurimas Černius)
* Polish (Piotr Drąg)
* Русский (Stas Solovey)
New or updated manual translations:
* Hungarian (Balázs Úr)
* Spanish (Daniel Mustieles)
version 3.4.0
-------------
Bugs fixed:
* Media player: smoother volume change.
* History: do not remove other occurrences of the current location.
* Don't merge translations into gschema file.
* Facebook: fixed the authorization process.
* Contact sheet: fixed header color not set when creating a new theme.
New or updated application translations:
* French (Claude Paroz)
* עברית (Yosef Or Boczko)
version 3.3.4
-------------
New features and user visible changes:
* Image viewer: added 'fit to height' button.
* Drag&Drop: move files by default.
* Ask confirmation before moving files with a drag&drop operation.
* Make 'delete files' and 'trash files' asyncronous.
* Use the default gtk+ style for message dialogs. Use the header-bar for
request dialogs.
* Changed 'adjust contrast' shortcut to 'a'. 'h' is now used to fit to height.
* Added a symbolic application icon.
* Fixed comment pane style with gtk+ 3.16.
* Show the app menu on the headerbar if the shell doesn't show it.
* Preferences dialog: fixed extensions activation/deactivation.
Bugs fixed:
* Webalbums: do not exit if a fatal error is issued (#744530)
* Build failure on x32 (kilobyte)
* Image viewer: the overview quickly appears and disappears sometimes.
New or updated application translations:
* Bosnian (Samir Ribic)
* Czech (Marek Černocký)
* Hungarian (Balázs Úr)
* Lietuvių (Aurimas Černius)
* Polish (Piotr Drąg)
* Swedish (Daniel Nylander)
* Ελληνικά, Σύγχρονα (Tom Tryfonidis)
* עברית (Yosef Or Boczko)
New or updated manual translations:
* Czech (Marek Černocký)
* Greek (Maria Mavridou)
* Swedish (Daniel Nylander)
version 3.3.3
-------------
New features and user visible changes:
* Allow to apply the embedded color profile for jpeg images.
* New image tools: special effects; curves.
* Unified 'equalize histogram' and 'adjust contrast': show a preview of the
various contrast filters.
* Grayscale tool: show a preview of the different filters.
* Fixed the interface style when used with gtk+ 3.14
* File propery view: use a switcher; added a details page that show all the
metadata, show only the important exif fields in the properties page.
* UI changes to the preferences dialog: use a sidebar instead of a notebook
to avoid a large dialog with some translations; better spacing; removed
the Ok button.
* Video player: save the screenshot without showing the dialog. Allow to set
the screenshots location in the extension preferences dialog. Show a message
in the statusbar after saving.
* Gear menu: use the new icon if using gtk+ 3.13 or newer
Bugs fixed:
* video player: do not hide the mediabar when using the volume control
* Forbidden when trying to upload to Flickr (#732557)
* Build against either webkit2gtk-3.0 or webkit2gtk-4.0 (Dominique Leuenberger)
New or updated application translations:
* Basque (Iñaki Larrañaga Murgoitio)
* Brazilian Portuguese (Rafael Ferreira)
* Chinese/Traditional (Cheng-Chia Tseng)
* Czech (Marek Černocký)
* Español; Castellano (Daniel Mustieles)
* Finnish (Lasse Liehu)
* Hungarian (Balázs Úr)
* Indonesian (Andika Triwidada)
* Polish (Piotr Drąg)
* Serbian (Мирослав Николић)
* Serbian (Miroslav Nikolić)
* Swedish (Daniel Nylander)
* עברית (Yosef Or Boczko)
New or updated manual translations:
* čeština (Marek Černocký)
version 3.3.2
-------------
Bugs fixed:
* Allow the user to edit tags using the contextual menu also (#728467)
* Special directories: added DOWNLOAD, removed DESKTOP (#728445,#728446)
* Web album: fixed thumbnail size (#727775)
* Desktop background: use the stretched option in some cases (#726708)
* Make copy and paste in same folder equivalent to duplicating
(#722726)
* Can view tiff files, but can not print. (#726260)
* image viewer: use a smaller frame border (#726091)
* Extra image appears in image viewer (#722631)
* Added AppData file for GNOME Software Center (#722770)
* Ctrl+P doesn't work (#722707)
* Script editor: help buttons don't work (#722925)
* Toolbox: Fix the undo and the redo symbols in RTL (Yosef Or Boczko)
(#723542)
* Sharpen: Fix the undo symbols in RTL (Yosef Or Boczko) (#723542)
* Rotate image: Fix the undo symbols in RTL (Yosef Or Boczko)
(#723542)
* Adjust colors: Fix the undo symbols in RTL (Yosef Or Boczko)
(#723542)
* Updated obsolete info in license text. updated using a script
written by Andika Triwidadan (#721455)
* gThumb doesn't honour privacy settings (#722349)
* Remove unnecessary gdkx.h include from gth-screensaver. (Robert
Roth) (#597594)
* Use unity-control-center if in Unity (Rober Ancell) (#722233)
* Fix build failing without libtiff installed. (Robert Roth) (#722183)
* Cannot Save As with uppercase .JPG (#721281)
New or updated application translations:
* Brazilian Portuguese (Rafael Ferreira)
* Czech (Marek Černocký)
* Deutsch (Christian Kirbach)
* Español (Daniel Mustieles)
* Hungarian (Balázs Úr)
* Indonesian (Andika Triwidada)
* Italiano (Gianvito Cavasoli)
* Lietuvių (Aurimas Černius)
* Polish (Piotr Drąg)
* Serbian (Miroslav Nikolić)
* Serbian (Мирослав Николић)
* Greek (Dimitris Spingos (Δημήτρης Σπίγγος))
* עברית (Yosef Or Boczko)
New or updated manual translations:
* Greek (Dimitris Spingos (Δημήτρης Σπίγγος))
* Español (Daniel Mustieles)
* čeština (Marek Černocký)
version 3.3.1
-------------
New features and user visible changes:
* Use a GtkHeaderBar instead of a menu and a toolbar.
* Use the dark theme.
* Better raw image support, using libraw instead of libopenraw.
* Image viewer: show a frame around the image; use an overview
window to scroll the image instead of the scrollbars;
better quality for zoomed out images.
* Faster image loader for big images.
* Media player: hide the mediabar after a timeout.
* Filterbar: added buttons to view the selections.
* File properties: show only the basic properties, allow to
show all of them.
* Image tools: use a grid layout for the buttons
* Use a separate dialog for the file tool options.
* Use symbolic icons everywhere.
* Added a custom tiff loader.
* Add a rating-based filter. (Louis-Marie Mouton)
* App menu: removed 'keyboard shortcuts'.
* Histogram view: save and restore the scale type.
Bugs fixed:
* Help: fix calling help from withing the application. (Dominique Leuenberger) (#710573)
* Fixed saving of TGA files
* Fixed the video player stopping after saving a screenshot.
* Rotating image destroys XMP and IPTC metadata (#719622)