-
Notifications
You must be signed in to change notification settings - Fork 21
/
NEWS
1809 lines (1513 loc) · 38.3 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
Overview of changes in 43.0
===============================
* Drop flickr plugin: It pulls soup2 - Bilal Elmoussaoui
* build: reduce libdazzle usage - Stephan Vedder
* Translations updates
Overview of changes in 43.beta
===============================
* Build with soup3, drops libgfbgraph as it is not compatible with soup3 / rest 1.0 - Bilal Elmoussaoui
* Use Wallpaper portal for setting as a background/lockscreen - Bilal Elmoussaoui
* stop using deprecated gexiv2 API - Stephan Vedder
* Translations updates
Overview of changes in 42.0
===============================
* appdata: Update screenshots
* tracker: Correctly pass IndexLocation flags
* Fix headerbar button vertical alignment
Overview of changes in 41.alpha
===============================
Overview of changes in 40.beta
==============================
* Bugs fixed:
!132 Use libhandy Hdy.ViewSwitcher instead of Gtk.StackSwitcher
!135 Generate queries using SPARQL templates
!136 query-builder: Use GDateTime instead of deprecated GTimeVal
!140 flatpak: Update LibRaw to 0.20.0
!141 flatpak: Enable native language support in exiv2
!142 flatpak: Update exiv2 to 0.27.3
!146 Switch to private instances of the Tracker 2.x daemons
!147 tracker-controller: Label unit of timing measurements
!148 utils: Avoid a potential build failure due to undefined M_PI constant
!149 Fix various CRITICALs from Tracker
!150 build: Rename a variable for consistency
!151 flatpak: Remove unsed tracker-miner build option
!152 appdata: Add release notes for 3.38.0
!153 Add a manual
!155 embed, main-toolbar, main-window: Use HdyWindow and HdyHeaderBar
!158 build, embed: Style fixes
!160 photos-empty-results-box: Use HdyStatusPage
!162 domain-ontology-rule: Use private locations for the cache & the journal
!164 search-type-manager: Rename variables
!165 search-type, search-type-manager: Simplify code
!166 item-manager: Port to TrackerNotifier
!167 build: Don't hard code the application ID in the Tracker domain config
!168 build: Don't generate code for org.freedesktop.Tracker1.Resources
!169 application: Style fix
!170 application: Add explicit cast
!171 query-builder: Use TrackerResource
!173 query-builder, sparql-template: Style fixes
#77 Use g_autoptr*
#152 Port to Tracker 3
* Updated translations:
Basque
Catalan
Traditional Chinese (Taiwan)
Czech
Danish
Dutch
English (British)
Finnish
French
Friulian
Galician
German
Greek
Hebrew
Hungarian
Indonesian
Italian
Japanese
Kazakh
Korean
Latvian
Lithuanian
Norwegian bokmål
Persian
Polish
Portuguese
Portuguese (Brazilian)
Punjabi
Romanian
Serbian
Slovak
Slovenian
Spanish
Swedish
Turkish
Ukrainian
Overview of changes in 3.37.91.1
================================
* Bugs fixed:
!138 build: Unbreak the installed tests
Overview of changes in 3.37.91
==============================
* Add a new magic filter called Trencin
* Bugs fixed:
!133 CI: Drop MESON_ARGS, and detect them from the Flatpak manifest
* Updated translations:
Catalan
Simplified Chinese
Croatian
Czech
Finnish
French
Friulian
Galician
Greek
Indonesian
Kazakh
Central Kurdish
Lithuanian
Persian
Polish
Portuguese (Brazilian)
Romanian
Slovenian
Spanish
Swedish
Turkish
Ukrainian
Overview of changes in 3.37.2
=============================
* Drop the Autotools build system (!113)
* Bugs fixed:
!118 flatpak: Fix the tracker and tracker-miners builds
!119 help-overlay: Add the shortcut for showing the help overlay itself
!120 help: Update the application icon
!121 application: Support zooming using the keyboard's numeric keypad keys
!122 flatpak: Sandbox GSettings use by dropping the dconf permissions
!123 CI: Use the new template
!124 flatpak: Fix the grilo-plugins build
!126 test-gegl: Unbreak /gegl/buffer/zoom/in* with Babl 0.1.67
!127 appdata: Add release notes for 3.34.0
!128 base-item: Use GDateTime instead of deprecated GTimeVal
#143 help: No more 'Recent' tab, replaced by 'Photos' tab
#149 Fix the build with GEGL 0.4.23
* Updated translations:
Basque
Catalan
Simplified Chinese
Traditional Chinese (Taiwan)
English (British)
French
Galician
Hebrew
Indonesian
Japanese
Malay
Persian
Portuguese (Brazilian)
Punjabi
Romanian
Slovak
Spanish
Swedish
Turkish
Ukrainian
Overview of changes in 3.33.91
==============================
* Bugs fixed:
!101 appdata: Add release notes for Flathub
!103 flatpak: Fix the exiv2 build
!105 flatpak: Delete CMake-specific build files
!107 build: Style fixes
!109 flatpak: Update LibRaw to 0.19.4
!110 flatpak: Fix the exiv2 build
!111 flatpak: Switch babl to Meson
!112 flatpak: Switch GEGL to Meson
#128 flatpak: Switch libgdata to Meson
#129 icons: Update the application icon
* Updated translations:
Croatian
Danish
Icelandic
Karbi
Overview of changes in 3.32.0
=============================
* Updated translations:
Basque
Dutch
French
German
Italian
Korean
Latvian
Lithuanian
Portuguese (Brazilian)
Russian
Serbian
Vietnamese
Overview of changes in 3.31.91
==============================
* Bugs fixed:
!83 application, main-toolbar: Rename "app.gear-menu" as "app.preview-menu"
!86 flatpak: Fix the exiv2 build
!87 flatpak: Don't build the exiv2 command and the sample programs
!88 flatpak: Delete CMake-specific build files
!89 flatpak: Update LibRaw to 0.19.2
!90 flatpak: Fix the LibRaw build
!91 flatpak: Explicitly specify the LibRaw build options
!92 test-gegl: Simplify code
!94 main-toolbar: Enable the gear menu only when the item is loaded
!99 test-gegl: Assert the bounding box when zooming GeglBuffers
#77 Use g_auto*
#117 Remove app menu
* Updated translations:
Catalan
Traditional Chinese (Taiwan)
Czech
Danish
Finnish
Friulian
Galician
Greek
Hungarian
Icelandic
Indonesian
Kazakh
Polish
Romanian
Slovenian
Spanish
Swedish
Turkish
Overview of changes in 3.31.3
=============================
* Bugs fixed:
!81 flatpak: Update the build flags for gexiv2
!84 tests: Test the GEGL utilities
#120 tracker-controller: Be direct when Tracker can't be found
* Updated translations:
Spanish
Overview of changes in 3.31.2
=============================
* Bugs fixed:
!68 Propagate any GError while loading a BaseItem
!71 build: Avoid requiring Git for release tarballs
!77 application, thumbnailer: Remove redundant GResource registration
!79 build: Update glib-tap.mk from GLib
!80 Start adding some unit tests
#77 Use g_auto*
* Updated translations:
Esperanto
Malayalam
Slovenian
Overview of changes in 3.31.1
=============================
* Bugs fixed:
!46 Add Flatpak CI, and deliver bundles with each commit
!55 Update the application icon for the GNOME 3.32 redesign
!58 build: Remove redundant if branch
!59 build: Ensure that the Git submodules are kept updated
!63 facebook-item: Don't leak the GFBGraphGoaAuthorizer
!65 Remove unused GTypes for enums, and declarations from the thumbnailer
!66 flatpak: Tell Tracker not to use a media extractor and switch
geocode-glib to Meson
#63 Split some code into a private shared library and return a GFile after
downloading it
#77 Use g_auto*
#114 device-item, local-item: Convert to UTF-8 before displaying the path
#115 base-item: Don't attempt to load non-UTF-8 paths
* Updated translations:
Croatian
Czech
Danish
Italian
Latvian
Russian
Serbian
Overview of changes in 3.29.92
==============================
* Bugs fixed:
!48 Port to Meson build system
* Updated translations:
Traditional Chinese (Taiwan)
English (British)
Finnish
Galician
Hungarian
Icelanding
Indonesian
Kazakh
Korean
Swedish
Overview of changes in 3.29.91
==============================
* Bugs fixed:
!44 build: Update the Git submodule URL after GitLab migration
!45 flatpak: Switch Grilo to Meson
!49 flatpak: Fix the exiv2 build
* Updated translations:
French
German
Greek
Lithuanian
Polish
Romanian
Slovenian
Turkish
Overview of changes in 3.29.4
=============================
* Bugs fixed:
!41 source: Add an error handler for GIcon instance
#77 Use g_auto*
#108 flatpak: Disable -Werror for gexiv2
* Updated translations:
Friulian
Portuguese (Brazilian)
Romanian
Spanish
Overview of changes in 3.29.3
=============================
* Unbreak the "Empty Trash" button on GNOME >= 3.24
* Bugs fixed:
!36 main-window: Update copyright years in the about dialog
!39 Add OARS and update description to be more confident
#77 Use g_auto*
#86 Drop copy-pasted src/egg-*.[ch] code
#100 tests: Update for renamed application ID
#105 Delete *.gnome-photos files with XML depicting an empty GEGL graph
* Updated translations:
Catalan
Simplified Chinese
Traditional Chinese (Taiwan)
Croatian
Czech
Friulian
Greek
Indonesian
Romanian
Russian
Slovenian
Spanish
Swedish
Overview of changes in 3.28.0
=============================
* Bugs fixed:
#89 Don't use an intermediate Imports sub-directory for imported content
* Updated translations:
Traditional Chinese (Taiwan)
Croatian
Danish
Dutch
English (British)
French
Friulian
Galician
Greek
Indonesian
Serbian
Serbian Latin
Slovak
Spanish
Swedish
Turkish
Overview of changes in 3.27.92
==============================
* Bugs fixed:
!23 Install appstream metadata to non-deprecated location
#77 Use g_auto*
#87 Store edits in side-car files
#88 properties-dialog: Use ngettext for plural forms
#89 Various improvements to user-visible strings and controls used for
importing from devices
#94 flatpak: Fix detection of attached devices
* Updated translations:
Catalan
Traditional Chinese (Taiwan)
Croatian
Czech
Danish
Dutch
Finnish
Friulian
Galician
Gaelic (Scottish)
German
Hungarian
Indonesian
Italian
Kazakh
Korean
Latvian
Lithuanian
Polish
Portuguese (Brazilian)
Serbian
Serbian Latin
Slovak
Spanish
Vietnamese
Overview of changes in 3.27.90
==============================
* Import from device (#29)
* Bugs fixed:
#6 Pre-select the exported file when opening the export directory with
Nautilus
#7 Pre-select local files in a Flatpak-friendly way
#43 Cancel or remove pending internal asynchronous operations or sources
during destruction
#44 Convert jobs API to async calls
#65 Exporting a photo can create a directory with an initial space
#77 Use g_auto*
#85 Drop built-in implementation of shadows-highlights and use GEGL's
759413 Pre-select the file when opening a local source with Nautilus from
Properties
774297 Revamp empty states
782479 Merge PhotosHeaderBar into PhotosMainToolbar
786936 Unbreak progressive loading of collection contents
* Updated translations:
Traditional Chinese (Taiwan)
Finnish
Friulian
Galician
German
Hungarian
Indonesian
Polish
Spanish
Overview of changes in 3.27.4
=============================
* Bugs fixed:
788174 Use g_auto*
790191 Avoid Encapsulated PostScript (EPS) files
791274 Animate updates to the crop rectangle due to preset changes
* Updated translations:
Czech
Finnish
Friulian
German
Serbian
Spanish
Turkish
Overview of changes in 3.27.3
=============================
* Support shadows and highlights adjustment (788201)
* Bugs fixed:
781736 Items with embedded orientation are slow to load
785376 The link "Settings" in the "No Photos Found" screen does not work
788174 Use g_auto*
789196 Complete support for EXIF orientation values when rendering
789977 Log the total processing time for the GeglProcessor
791082 Drop unnecessary packed attribute
* Updated translations:
Croatian
Czech
Friulian
German
Indonesian
Norwegian bokmål
Overview of changes in 3.27.1
=============================
* Clarify that the final binaries are under GPLv3+
* Bugs fixed:
763712 Use G_DECLARE_FINAL_TYPE
777505 Show a notification when an item has been successfully shared
783922 Support GtkGestureZoom for zooming
785115 tool-crop: Don't show the orientation controls if it doesn't make
sense for the "original" aspect ratio
786936 Various clean-ups and fixes to the searchbar handling code
787833 Provide more context when logging the SPARQL queries
788042 Edits are not applied when setting a background
788715 Can't discard all edits directly from the overview without previewing
the BaseItem
789002 Make the Git repositories and submodules work with Web proxies
* Updated translations:
Basque
Catalan
Catalan (Valencian)
Traditional Chinese (Taiwan)
Croatian
Czech
Danish
Dutch
Finnish
French
Friulian
Galician
German
Greek
Hungarian
Icelandic
Italian
Korean
Lithuanian
Persian
Polish
Portuguese (Brazilian)
Serbian
Serbian Latin
Slovak
Slovenian
Spanish
Swedish
Turkish
Overview of changes in 3.25.92
==============================
* Bugs fixed:
763712 Use G_DECLARE_FINAL_TYPE
786936 Various clean-ups and fixes to the searchbar handling code
787105 Migrate from Intltool to Gettext
* Updated translations:
Traditional Chinese (Taiwan)
Finnish
Friulian
Hungarian
Korean
Latvian
Lithuanian
Slovak
Slovenian
Swedish
Turkish
Vietnamese
Overview of changes in 3.25.91
==============================
* Bugs fixed:
780692 Titles are no longer displayed in the album grid
* Updated translations:
Arabic
Catalan
Croatian
Czech
Finnish
French
Friulian
Galician
German
Hungarian
Icelandic
Indonesian
Kazakh
Polish
Serbian
Slovenian
Spanish
Swedish
Turkish
Overview of changes in 3.25.4
=============================
* Support GEGL >= 0.3.16
* Bugs fixed:
763329 thumbnailer: Fix typo and complete the right D-Bus call
763712 Use G_DECLARE_FINAL_TYPE
781134 Support changing the orientation of the crop rectangle
* Updated translations:
Hungarian
Indonesian
Vietnamese
Overview of changes in 3.25.3
=============================
* Support zooming (742662)
* Bugs fixed:
763712 Use G_DECLARE_FINAL_TYPE
764423 Use G_DECLARE_INTERFACE
776082 Port PhotosSearchbar to GtkSearchBar
778354 photos:insta-curve should support buffers with alpha channel
780424 Port widgets to templates
782012 Remove the g_auto* macros for GEGL
* Updated translations:
Friulian
German
Indonesian
Kazakh
Polish
Spanish
Overview of changes in 3.25.1
=============================
* Bugs fixed:
763712 Use G_DECLARE_FINAL_TYPE
765136 Changing the aspect ratio of the crop can make the selection larger
than the image
780424 Port widgets to templates
* Updated translations:
Croatian
Greek
Gujarati
Latvian
Occitan
Polish
Russian
Overview of changes in 3.23.92
==============================
* Bugs fixed:
763712 Use G_DECLARE_FINAL_TYPE
777869 Letterbox photo thumbnails
779380 Add a flatpak manifest
779589 Emit GdMainBox::selection-changed only after updating the selection
* Updated translations:
Traditional Chinese (Taiwan)
Czech
Danish
Galician
Italian
Korean
Lithuanian
Serbian
Slovak
Swedish
Vietnamese
Overview of changes in 3.23.91
==============================
* Bugs fixed:
690255 Fix distorted and wrongly scaled thumbnails
763329 Thumbnails don't reflect edited state
763712 Use G_DECLARE_FINAL_TYPE
777867 Closing the properties before determining the edited state of an item
shouldn't affect subsequent attempts to load the same item
778620 appdata: Add screenshot of sharing feature
778925 Exported and shared items have their orientation applied twice
778967 po, source-notification: Fix typo
* Updated translations:
Basque
Finnish
French
Friulian
German
Hungarian
Indonesian
Kazakh
Norwegian bokmål
Polish
Portuguese (Brazilian)
Serbian
Spanish
Ukrainian
Overview of changes in 3.23.90
==============================
* Bugs fixed:
690255 Try to avoid low resolution thumbnails
763712 Use G_DECLARE_FINAL_TYPE
777053 tests: Wait for the UI to be drawn completely
777492 Notify when an online account needs attention
778620 Appdata uses screenshots of older version
* Updated translations:
Catalan
Czech
Danish
Finnish
Friulian
German
Indonesian
Kazakh
Polish
Slovak
Swedish
Ukrainian
Overview of changes in 3.23.4
=============================
* Bugs fixed:
690623 Port to GtkFlowBox
747123 Show GPS information in properties
763712 Use G_DECLARE_FINAL_TYPE
775700 Remove PhotosSettings
776133 GdMainView: The DnD selection counter is broken on HiDpi
776565 Crashed right after creating a new album
776670 application: Add F1 accelerator to show help
* Updated translations:
Catalan
Icelandic
Overview of changes in 3.23.3
=============================
* Bugs fixed:
763712 Use G_DECLARE_FINAL_TYPE
774191 item-manager: Emit GListModel::items-changed
775153 Forget the last non-range selection when leaving selection mode
775562 Don't use PhotosViewModel in PhotosMainToolbar
775754 Find an alternative to PhotosPreviewModel
763908 tracker-controller: Don't use g_cancellable_reset
Overview of changes in 3.23.2
=============================
* Bugs fixed:
763712 Use G_DECLARE_FINAL_TYPE
764423 Use G_DECLARE_DERIVABLE_TYPE
770342 item-manager: Avoid CRITICALs when favouriting contents of collections
771995 SIGILL on Intel Core 2 Duo caused by __builtin_ia32_rdtscp in
egg_get_current_cpu_rdtscp()
772443 Wrong extension when exporting anything that's not JPEG or PNG
772813 properties-dialog: Don't show the modification status for collections
774191 Turn PhotosBaseManager into a GListModel
774253 Unable to find Photos by browsing in Software (not listed in relevant
categories)
* Updated translations:
Catalan
Simplified Chinese
Traditional Chinese (Taiwan)
Danish
Friulian
Gaelic (Scottish)
Italian
Norwegian bokmål
Persian
Ukrainian
Overview of changes in 3.21.92
==============================
* Bugs fixed:
764801 pipeline: Place gegl:crop before photos:magic-filter, and rethink some
implementation details
770267 Link the original and shared copies in Tracker
770342 Fix a typo in photos_item_manager_clear
770782 Don't use an undefined ?item variable
770823 Items are not removed from FAVORITES when unfavorited
* Updated translations:
English (British)
Finnish
Galician
Greek
Hebrew
Kazakh
Korean
Latvian
Lithuanian
Portuguese
Swedish
Vietnamese
Overview of changes in 3.21.91
==============================
* Bugs fixed:
763712 Use G_DECLARE_FINAL_TYPE
764423 Use G_DECLARE_DERIVABLE_TYPE
770342 Remove the mode-specific filtering from PhotosViewModel
* Updated translations:
Czech
French
Friulian
German
Hungarian
Indonesian
Polish
Portuguese (Brazilian)
Serbian
Slovak
Slovenian
Spanish
Overview of changes in 3.21.90
==============================
* Experimental sharing support (751181)
* Bugs fixed:
760839 Improvements to the size guessing API
763156 Allow discarding all edits
770157 Split ItemManager to have a separate child manager for each mode
* Updated translations:
Czech
Finnish
French
Friulian
German
Hebrew
Hungarian
Icelandic
Indonesian
Portuguese
Slovak
Spanish
Overview of changes in 3.21.4
=============================
* Bugs fixed:
760839 base-item: Improvements to the size-guessing API
763712 Use G_DECLARE_FINAL_TYPE
763908 done-notification: Remove unnecessary references
764086 Convert jobs API to async calls
765105 Implicitly process the pipeline during add, remove and revert
765340 Use GtkMenuButton in the overview searchbar
766162 Can't export photos from online accounts
767892 item-manager: Fix the lifetime of the changes-pending handler
768130 Keyboard activation leads to a CRITICAL and opens the wrong item
768291 source: Add photos_source_get_icon
768500 The sources of remote collections are not shown in
OrganizeCollectionView
768548 base-item: Don't leak the cursor data while refreshing
* Updated translations:
Arabic
Gujarati
Portuguese
Punjabi
Overview of changes in 3.21.3
=============================
* Bugs fixed:
760796 Doesn't have a --version flag
763908 preview-view: Hold the UI while saving the pipeline
764076 application: Add API to prevent the main window from getting destroyed
* Updated translations:
Catalan
Gaelic (Scottish)
Indonesian
Norwegian bokmål
Occitan
Portuguese
Portuguese (Brazilian)
Spanish
Turkish
Overview of changes in 3.21.1
=============================
* Bugs fixed:
762725 Avoid GIFs
763292 Improve the alignment of notifications
763908 Cancel or remove pending internal asynchronous operations or sources
during destruction
763881 edit-palette-row: Don't leak the PhotosTool
764076 application: Make app.quit use the same path as the close button
764083 Add guards to methods in BaseItem which do not operate on collections
764086 Convert jobs API to async calls
764680 Disable favouriting albums
764681 Prevent nested collections
* Updated translations:
Basque
Catalan
Simplified Chinese
Traditional Chinese (Taiwan)
Danish
French
Friulian
Italian
Japanese
Kazakh
Korean
Persian
Polish
Swedish
Ukrainian
Vietnamese
Overview of changes in 3.19.92
==============================
* Bugs fixed:
762027 Fix possible integer overflow flaw (CVE-2013-7447)
762318 Don't overwrite exported photos
762942 Update the crop presets
763096 Add notification when user clicks Done
763131 Add translation context for string "None"
763133 Ambiguous string needing translator comment
763500 Fix PrintOperation object leak
* Updated translations:
Traditional Chinese (Taiwan)
Czech
Finnish
Friulian
Galician
German
Greek
Hebrew