File: NEWS

package info (click to toggle)
gnome-photos 3.22.5-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 7,584 kB
  • ctags: 4,869
  • sloc: ansic: 40,397; sh: 4,125; xml: 910; makefile: 881; python: 68
file content (1055 lines) | stat: -rw-r--r-- 23,131 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
Overview of changes in 3.22.5
=============================

* Bugs fixed:
 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


Overview of changes in 3.22.4
=============================

* Bugs fixed:
 776565 Crashed right after creating a new album
 776670 application: Add F1 accelerator to show help
 777053 tests: Wait for the UI to be drawn completely

* Updated translations:
 Icelandic


Overview of changes in 3.22.3
=============================

* Bugs fixed:
 774253 Unable to find Photos by browsing in Software (not listed in relevant
        categories)
 775153 Forget the last non-range selection when leaving selection mode
 776133 GdMainView: The DnD selection counter is broken on HiDpi

* Updated translations:
 Russian


Overview of changes in 3.22.2
=============================

* Bugs fixed:
 770342 item-manager: Avoid CRITICALs when favouriting contents of collections
 772813 properties-dialog: Don't show the modification status for collections

* Updated translations:
 Simplified Chinese
 Traditional Chinese (Taiwan)
 Norwegian bokmål


Overview of changes in 3.22.1
=============================

* Bugs fixed:
 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

* Updated translations:
 Catalan
 Danish


Overview of changes in 3.22.0
=============================

* Updated translations:
 Danish
 Gaelic (Scottish)
 Italian
 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
 Hungarian
 Kazakh
 Korean
 Latvian
 Lithuanian
 Polish
 Portuguese (Brazilian)
 Russian
 Serbian
 Slovak
 Spanish
 Swedish
 Ukrainian


Overview of changes in 3.19.91
==============================

* Bugs fixed:
 761587 Use GAction for properties
 761683 Fix resetting crop tool
 762046 Cancel reverts editings to previous set
 762371 Add notifications when photos are exported

* Updated translations:
 Catalan
 Traditional Chinese (Taiwan)
 Czech
 Galician
 German
 Greek
 Hebrew
 Kazakh
 Occitan
 Polish
 Portuguese (Brazilian)
 Serbian
 Slovak
 Spanish
 Swedish

Overview of changes in 3.19.90
==============================

* Bugs fixed:
 758227 Crop palette improvements
 759155 Better ranges for the contrast and denoise sliders
 759460 help-overlay: Various improvements
 760838 Support exporting from selection mode
 760931 Cropping not being applied after clicking "Done"
 761076 Add keyboard shortcuts for edit and export
 761158 Filter tool doesn't reflect the previously applied filter when
        re-activated
 761559 Replace gegl-gtk with a simpler and streamlined widget
 761587 Centralize action toggle logic
 761626 tool-filter-button: Selected icon is not centered on the image
 761674 Restarting the app and trying to re-crop a cropped item leads to black
        areas

* Updated translations:
 Catalan
 Traditional Chinese (Taiwan)
 Danish
 German
 Greek
 Hungarian
 Kazakh
 Latvian
 Polish
 Portuguese (Brazilian)
 Serbian
 Slovak
 Spanish


Overview of changes in 3.19.4
=============================

* Support saturation adjustment

* Bugs fixed:
 746940 preview-nav-buttons: Crashes if shutdown and fade_out_button coincide
 759155 tool-colors: Restrict the range of the brightness slider
 759156 application, base-item: Preserve metadata when saving
 759331 Don't show empty albums in favorites
 759363 Explicit exports functionality with more options
 759521 application: Adapt to Grilo 0.3.0 API changes
 760865 theme: Don't use deprecated pseudo classes

* Updated translations:
 Czech
 Finnish
 German
 Hebrew
 Lithuanian
 Norwegian bokmål
 Portuguese (Brazilian)
 Slovak
 Spanish


Overview of changes in 3.19.3
=============================

* Bugs fixed:
 740434 Be more robust when opening with an external application
 757363 selection-toolbar: Unbreak printing
 758227 Crop palette improvements
 758352 Cropping is broken on HiDpi screens
 758554 edit-palette, edit-palette-row: Add a vertical accordian effect
 758809 Use icons in the selection toolbar

* Updated translations:
 Greek
 Kazakh
 Portuguese
 Slovak
 Spanish


Overview of changes in 3.19.2
=============================

* Experimental editing support

* Bugs fixed:
 733660 Let photos be deleted from the preview
 734766 properties-dialog: Be more forgiving of unknown nmm:flash values
 747446 Fix HiDpi rendering
 757015 Clicking the favorite button doesn't update the UI immediately
 757199 Crash when quitting due to the ViewModel outliving the Embed
 757363 Don't use g_list_length unless we really need to

* Updated translations:
 Czech
 Finnish
 Gaelic (Scottish)
 German
 Hebrew
 Hungarian
 Norwegian bokmål
 Portuguese
 Spanish


Overview of changes in 3.19.1
=============================

* Bugs fixed:
 688566 offset-controller: Prevent loading more items than there actually is
 729072 Rename "Recent" view to "Photos"
 725508 Can not handle window manager's unfull/full screen operation
 732799 Unusual behaviour while displaying on DLNA renderers
 733660 Let photos be deleted from the preview
 737071 Merge PhotosModeController into PhotosItemManager
 741593 No pagination buttons when previewing search results
 744627 Search provider starts a lot of miners
 751106 Don't toggle the star button and use a filled/unfilled icon instead of
        coloring it
 755600 Fix the background of GdTaggedEntry tags
 756131 Disable can-fullscreen when going back, and simplify the state
        changes / signal emissions
 756221 Disabling application menu adds a redundant toolbar

* Updated translations:
 Czech
 Portuguese
 Swedish


Overview of changes in 3.18.0
=============================

* Bugs fixed:
 747446 gegl-gtk-view-helper, preview-view: Merge AUTOSCALE_CONTENT logic
 754233 Fix GdTaggedEntry theming

* Updated translations:
 Traditional Chinese (Taiwan)
 Friulian
 Korean
 Latvian
 Persian
 Polish
 Portuguese
 Romanian
 Serbian
 Serbian Latin
 Spanish


Overview of changes in 3.17.2
=============================

* Bugs fixed:
 726462 Improve keyboard navigation for searchbar
 745756 delete-notification: Improve the message
 745972 Update to latest AX_* macros from upstream
 746104 Fix the lifetime of the signal handlers
 746152 Arrow keys doesn't work after nav buttons auto hide
 746252 Google album titles appear htmlescaped
 746731 Let GtkApplication load the app menu automatically
 747696 local-item: Use the trash

* Updated translations:
 Aragonese
 Basque
 Bosnian
 Catalan
 Simplified Chinese
 Traditional Chinese (Taiwan)
 Czech
 Danish
 Esperanto
 Finnish
 French
 Galician
 German
 Greek
 Hebrew
 Hungarian
 Indonesian
 Italian
 Japanese
 Kazakh
 Korean
 Lithuanian
 Norwegian bokmål
 Occitan
 Polish
 Portuguese (Brazilian)
 Russian
 Slovak
 Slovenian
 Spanish
 Swedish
 Tajik
 Turkish
 Ukrainian


Overview of changes in 3.15.91
==============================

* Bugs fixed:
 738527 Fix crash when trying to use window after it has been destroyed
 740425 base-item: Thumbnail local items before remote ones
 744841 main-window: Prevent multiple about dialogs from opening
 745070 indexing-notification: Fix the lifetime of the miners-changed handler
 745071 application: Fix a crash when stopping the miners
 745072 view-model: Fix the lifetime of the info-updated handler

* Updated translations:
 Traditional Chinese (Taiwan)
 Czech
 French
 German
 Greek
 Hebrew
 Hungarian
 Kazakh
 Lithuanian
 Polish
 Portuguese (Brazilian)
 Russian
 Serbian
 Slovak
 Slovenian
 Spanish
 Swedish
 Ukrainian


Overview of changes in 3.15.90
==============================

* Bugs fixed:
 711505 Documentation updates
 731391 Sluggish next/previous buttons
 731437 Port to GEGL 0.3
 733213 Jerky transition when opening some photos from the grid
 737990 icons: Use symbolics for HighContrast icons
 743853 view-container: Use edge-reached signal instead of edge-overshot
 744305 Add basic debugging infrastructure
 744309 Remove use of deprecated gnome-common
 744590 base-item: Silence -Waggregate-return

* Updated translations:
 Basque
 Czech
 Galician
 Greek
 Hebrew
 Hungarian
 Norwegian bokmål
 Russian
 Slovak
 Slovenian
 Spanish
 Turkish


Overview of changes in 3.15.4
=============================

* Bugs fixed:
 688566 Replace "Load More" button with edge hit detection
 736551 empty-results-box: Change text and icon for favorites
 741590 Allow setting the lock screen background from the preview

* Updated translations:
 Basque
 Czech
 Friulian
 Galician
 Hungarian
 Indonesian
 Portuguese (Brazilian)
 Spanish


Overview of changes in 3.15.3
=============================

* Bugs fixed:
 733214 Use a fallback name in the header bar during preview
 740417 Don't scale up thumbnails
 740624 Albums with only one photo look odd

* Updated translations:
 Czech


Overview of changes in 3.15.2
=============================

* Bugs fixed:
 709362 base-item, utils: Use subtler images for loading and failure
 726505 preview-view: Disable the sliding transition
 734845 Show a back button while loading a preview
 737071 Improve our state machine, try to enforce the invariants better and
        avoid races
 737310 Ensure that icon-only buttons get the 'image-button' style class
 737425 Overlay the spinner instead of switching to a different view
 738527 Fix crash when reading scale factor after window has been destroyed

* Updated translations:
 Simplified Chinese
 Czech
 Dutch
 Gaelic (Scottish)
 Hungarian
 Italian
 Kazakh
 Korean
 Latvian
 Nepali
 Persian
 Polish
 Portuguese
 Punjabi
 Turkish
 Ukrainian


Overview of changes in 3.13.92
==============================

* Bugs fixed:
 731865 Make it easier to support new sources
 734762 Drop some deprecated baggage
 735746 Guard against failure to resolve IDs
 736186 help: favorites are now marked using a star icon, not a heart icon

* Updated translations:
 Danish
 Finnish
 French
 Galician
 German
 Hungarian
 Korean
 Serbian
 Slovak
 Slovenian
 Spanish
 Swedish


Overview of changes in 3.13.91
==============================

* Support accessing photos from PicasaWeb (711563)

* Undo-able deletion of photos and albums (720222)

* Support accessing photos from DLNA media servers (728913)

* Bugs fixed:
 733011 Add application-specific theme extensions
 733216 Move the favorites button in the preview to the header bar
 733850 Stop using GdHeaderButton
 734398 Missing high contrast icon

* Updated translations:
 Assamese
 Basque
 Catalan
 Catalan (Valencian)
 Traditional Chinese (Hong Kong)
 Traditional Chinese (Taiwan)
 Czech
 English (British)
 Galician
 Greek
 Hebrew
 Indonesian
 Japanese
 Lithuanian
 Norwegian bokmål
 Portuguese (Brazilian)
 Romanian
 Russian
 Spanish


Overview of changes in 3.13.4
=============================

* New user help (711505)

* Bugs fixed:
 696802 query-builder: Add additional directories configured in Tracker
 698941 view-container: Prevent the icons from shifting around
 708039 appdata: Set each li translatable instead of the whole <ul>
 723664 gegl-gtk-view-helper: Avoid pointing to invalid memory
 725016 "Open with..." opens the wrong program
 725095 Allow enter to activate first search item
 725156 Start adding UI tests
 725327 Clicking "add to collection" leads to crash
 725328 Unbreak activating a search provider result
 725329 Fix broken mode changes
 725587 Selection and search should be disabled when there are no photos
 725589 Hide empty albums
 725813 item-manager: Do not crash when a photo is deleted underneath
 725934 main-toolbar: Add searchbar in selection mode
 726162 view-model: Reset the count when items are removed
 726165 overview-searchbar: Refocus the search entry after changing filters
 726505 preview-view, preview-nav-buttons: Sliding transition between photos
 726519 Crash when moving from preview to search with a source filter
 726685 Keyboard navigation using arrow keys in preview mode
 726791 Use a single-binary setup for DBus activation
 726903 Scale the thumbnails on HiDpi displays
 726919 Use o.fd.Tracker1.Extract.Priority interface to prioritize relevant
        types
 727205 Crash if Facebook credentials expired
 727392 properties: Use a X close button instead of "Done"
 729396 build: Remove GNOME_COMMON_INIT
 730822 Use the new support for RTL icons in GTK+
 731856 Properly namespace the dleyna-renderer stubs
 731865 Make it easier to support new sources
 732011 application: Use gtk_application_set_accels_for_action
 732676 application: Pass "photos" as the index type to RefreshDB
 733011 Add application-specific theme extensions
 733355 gegl-gtk-view-helper: Fix vertical stripes in the rendered image

* Updated translations:
 Basque
 Catalan
 Catalan (Valencian)
 Simplified Chinese
 Traditional Chinese (Hong Kong)
 Traditional Chinese (Taiwan)
 Czech
 Danish
 Finnish
 French
 Galician
 German
 Greek
 Hebrew
 Hungarian
 Indonesian
 Italian
 Japanese
 Kazakh
 Khmer
 Korean
 Latvian
 Lithuanian
 Norwegian bokmål
 Polish
 Portuguese
 Portuguese (Brazilian)
 Punjabi
 Russian
 Serbian
 Slovak
 Slovenian
 Spanish
 Swedish
 Tajik
 Telugu
 Ukrainian


Overview of changes in 3.11.90
==============================

* Implement search provider

* Turn into a DBus activated service

* Bugs fixed:
 723729 spinner-box: Remove "Loading..."

* Updated translations:
 Assamese
 Czech
 French
 Galician
 Hebrew
 Norwegian bokmål
 Portuguese (Brazilian)
 Spanish
 Tajik
 Ukrainian


Overview of changes in 3.11.5
=============================

* Implement search

* Bugs fixed:
 715043 srcdir != builddir failure in Continuous
 720404 Huge icon for DLNA media renderers
 720570 No photos found should appear inside stack views
 721402 Extremely slow when starting with a clean DB

* Updated translations:
 Traditional Chinese (Hong Kong)
 Traditional Chinese (Taiwan)
 Czech
 Finnish
 Galician
 Greek
 Hebrew
 Lithuanian
 Norwegian bokmål
 Portuguese (Brazilian)
 Spanish
 Tajik
 Telugu
 Turkish


Overview of changes in 3.11.4
=============================

* Bugs fixed:
 704947 Do not crash if Tracker is absent
 709367 Detect creation of collections and show albums within albums
 721402 change-monitor, change-event: Be smarter when resolving new item IDs
 721696 selection-toolbar: Use action bar

* Updated translations:
 Bulgarian
 Simplified Chinese
 Galician
 German
 Greek
 Hebrew
 Kannada
 Lithuanian
 Portuguese (Brazilian)
 Slovenian
 Spanish
 Tajik


Overview of changes in 3.11.3
=============================

* Support accessing photos from Facebook (700451)

* Bugs fixed:
 715081 build: Support tracker 0.18
 720165 app-menu: Standardize Help/About/Quit

* Updated translations:
 Esperanto
 Portuguese (Brazilian)
 Spanish
 Tajik


Overview of changes in 3.11.2
=============================

* Bugs fixed:
 703280 Rename all singleton public constructors to _dup_singleton()
 706502 Update DBus signature after dleyna-renderer ABI fix
 706513 dlna: Use G_STMT_START/G_STMT_END/G_STRFUNC
 706810 main-toolbar: Remove emphasis on Cancel button
 706824 Replace dots with commas in EXIF labels
 708018 application: Create the main window after the gear-menu action
 708054 Utilize intltool 0.50 gsettings support
 709367 No albums in Photos view
 709368 Use a separate collection for screenshots
 709693 dlna-renderer: Fix a value returned
 709695 Drop GtkStock

* Updated translations:
 Arabic
 Assamese
 Basque
 Catalan
 Catalan (Valencian)
 Traditional Chinese (Hong Kong)
 Traditional Chinese (Taiwan)
 Czech
 Danish
 Dutch
 Estonian
 Finnish
 French
 Galician
 German
 Greek
 Hebrew
 Hungarian
 Indonesian
 Italian
 Japanese
 Kannada
 Korean
 Latvian
 Lithuanian
 Malayalam
 Norwegian bokmål
 Persian
 Polish
 Portuguese
 Portuguese (Brazilian)
 Punjabi
 Russian
 Serbian
 Slovak
 Slovenian
 Spanish
 Tajik
 Turkish
 Ukrainian


Overview of changes in 3.9.90
=============================

* Get rid of the WM's titlebar

* Selection pattern design updates (699914)

* Bugs fixed:
 691316 main-window: Set minimum size
 696794 Hard to get to previous or next photo
 705433 dlna-renderer: Wrap common error handling code in a macro
 705435 remote-display-manager: Avoid unref'ing NULL in case of errors
 705436 dlna-renderer: Do not expose the dLeyna DBus proxies
 705439 dlna-renderer: Avoid async loading of PushHost and Player proxies
 705551 Switch everything to G_ADD_PRIVATE()!
 705607 Navigation buttons fail to reappear on mouse motion and when
        previewing the same photo

* Updated translations:
 Simplified Chinese
 Czech
 Galician
 Portuguese (Brazilian)
 Slovenian
 Spanish
 Ukrainian


Overview of changes in 3.9.5.1
==============================

* Implement thumbnailing for Flickr (697675)

* Bugs fixed:
 705294 Adapt to GTK+ 3.9.10 API changes


Overview of changes in 3.9.5
============================

* Replace GdHeaderBar with GtkHeaderBar

* Replace GdStack with GtkStack

* Bugs fixed:
 703649 dlna-renderer: Simplify initialization
 704273 notification-manager: Don't show two close buttons in notifications

* Updated translations:
 Czech
 Portuguese (Brazilian)
 Spanish


Overview of changes in 3.9.4
============================

* Support accessing photos from Flickr (697675)

* Support pushing pictures to DLNA renderers (701775)

* Support rubber band selection

* Bugs fixed:
 698086 Avoid bash-specific syntax in photos-generate-about
 699899 Use proper ellipses instead of their ASCII equivalents
 699900 Disambiguate "Organize"
 700061 build: Use git.mk to generate .gitignore files
 702909 Special markup characters should be escaped when setting the toolbar
        title
 702910 view-container: Unref mode controller in ::dispose()
 703054 Simplify signal handlers tracking
 703269 Compilation warnings are not active

* Updated translations:
 Arabic
 Czech
 French
 German
 Greek
 Hebrew
 Hungarian
 Polish
 Portuguese (Brazilian)
 Serbian
 Slovak
 Slovenian
 Spanish


Overview of changes in 3.8.0
============================

* Support albums, and add Albums mode

* Support printing

* Drop Clutter and ClutterGTK; use GEGL.

* Bugs fixed:
 690887 Fix ostbuild failures

* Updated translations:
 Simplified Chinese
 Czech
 Finnish
 Galician
 German
 Hungarian
 Polish
 Portuguese (Brazilian)
 Punjabi
 Russian
 Serbian
 Slovenian
 Spanish


Overview of changes in 3.7.3
============================

* Add Favorites mode

* Bugs fixed:
 688561 embed: Don't upscale images, but do downscale them if necessary
 688562 We only want the nie:title as the name, not the filename
 688562 utils: Use larger thumbnails / icons
 688565 load-more-button: Simplify the button's label
 688567 embed: Remove flash effect
 688568 embed: Use texture background in preview
 688569 embed: Hide actors that aren't visible
 688742 Update license blurbs for the current FSF address

* Updated translations:
 Norwegian bokmål
 Polish
 Spanish


Overview of changes in 3.7.2
============================

* First preview release


----

Copyright © 2012 – 2016 Red Hat, Inc.
All rights reserved.

Copying and distribution of this file, with or without modification,
are permitted in any medium without royalty provided the copyright
notice and this notice are preserved.