forked from GNOME/gnome-disk-utility
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNEWS
1665 lines (1335 loc) · 59.1 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
42.beta - February 11, 2022
===========================
Kai Lüke:
* Restore old window destruction to fix data retrieval
Updated translations:
* Marek Černocký (cs), Matej Urbančič (sl), Quentin PAGÈS (oc),
Rafael Fontenelle (pt_BR), sicklylife (ja)
42.alpha - January 7, 2022
==========================
Alexander Mikhaylenko:
* Support dark theme preference (required to bump libhandy to 1.5.0)
Maximiliano Sandoval R:
* Rewrite GUI parts to avoid deprecated things and prepare for GTK 4
Ian Santopietro:
* Improve the visual appearance of the devtab toolbar
Sophie Herold:
* metainfo: Align app name with .desktop name
Updated translations:
* Alexey Rubtsov (ru), Asier Sarasua Garmendia (eu), Boyuan Yang (zh_CN),
Daniel Mustieles (es), Dušan Kazik (sk), Fabio Tomat (fur),
Fran Dieguez (gl), Goran Vidović (hr), Hugo Carvalho (pt),
Kukuh Syafaat (id), MohammadSaleh Kamyab (fa), Ngọc Quân Trần (vi),
Quentin PAGÈS (oc), Rūdolfs Mazurs (lv), Yaron Shahrabani (he),
Yuri Chornoivan (uk), Марко Костић (sr)
41.0 - September 18, 2021
=========================
Guido Günther:
* metainfo: Add minimum screen size requirement and input recommendations
* desktop-file: Add X-Purism-Form-Factor
Updated translations:
* Alan Mortensen (da), Alexander Shopov (bg), Anders Jonsson (sv),
Balázs Meskó (hu), Boyuan Yang (zh_CN), Dušan Kazik (sk),
Emin Tufan Çetin (tr), Goran Vidović (hr), Guillaume Bernard (fr),
Nathan Follens (nl), Philipp Kiemle (de), Piotr Drąg (pl)
41.rc - September 2, 2021
=========================
Updated translations:
* Alexey Rubtsov (ru), Asier Sarasua Garmendia (eu), Aurimas Černius (lt),
Baurzhan Muftakhidinov (kk), Charles Monzat (fr), Danial Behzadi (fa),
Daniel Mustieles (es), Daniel Șerbănescu (ro), Efstathios Iosifidis (el),
Fran Dieguez (gl), Jiri Grönroos (fi), Jordi Mas (ca), Kukuh Syafaat (id),
Marek Černocký (cs), Matej Urbančič (sl), Seong-ho Cho (ko),
Yaron Shahrabani (he), Zander Brown (en_GB)
41.beta - August 14, 2021
=========================
Manuel Wassermann:
* gducreateformatdialog: Use LUKS2 for new encrypted partitions
* volume-menu/gduwindow: Add button and dialog to take filesystem ownership
* ui: Change the icon of the detach loop device button
* shortcuts: Add keyboard shortcut for the application menu
* gduwindow: Make menus toggleable
* ui: Change the icon of the job cancel button
* ui: Align job section
* ui: Enable ellipsis on the job remaining label
* gdubenchmarkdialog: Save benchmark settings
* Flatpak build fixes
Kai Lüke:
* Flatpak build fixes
Updated translations:
* Alexey Rubtsov (ru), Boyuan Yang (zh_CN), Daniel Mustieles (es),
Emin Tufan Çetin (tr), Enrico Nicoletto (pt_BR), Fabio Tomat (fur),
Hugo Carvalho (pt), Jordi Mas (ca), Kukuh Syafaat (id), Marek Černocký (cs),
Matej Urbančič (sl), Quentin PAGÈS (oc), Rafael Fontenelle (pt_BR),
Yaron Shahrabani (he), Yuri Chornoivan (uk)
41.alpha - July 11, 2021
========================
Manuel Wassermann:
* gdusdmonitor: Fix notification icon
* UI: Highlight destructive actions
Kai Lüke:
* Escape hyperlink text in mount point label
Updated translations:
* Alexey Rubtsov (ru)
40.1 - May 1, 2021
==================
Kai Lüke:
* restore: do not wipe disk after error if it's a dismissed auth error
sitting33:
* Make SMART attributes view expand vertically
Updated translations:
* Boyuan Yang (zh_CN), Efstathios Iosifidis (el), Nathan Follens (nl),
Ngọc Quân Trần (vi), Yaron Shahrabani (he), Yosef Or Boczko (he),
Zander Brown (en_GB)
40.0 - March 18, 2021
=====================
Updated translations:
* A S Alam (pa), Dušan Kazik (sk), Milo Casagrande (it), Piotr Drąg (pl)
40.rc - March 13, 2021
======================
Updated translations:
* Asier Sarasua Garmendia (eu), Aurimas Černius (lt), Balázs Úr (hu),
Charles Monzat (fr), Christian Kirbach (de), Danial Behzadi (fa),
Emin Tufan Çetin (tr), Fabio Tomat (fur), Fran Dieguez (gl),
Jiri Grönroos (fi), Jordi Mas (ca), Kukuh Syafaat (id),
Marek Černocký (cs), Matej Urbančič (sl), Rafael Fontenelle (pt_BR),
Rūdolfs Mazurs (lv), Seong-ho Cho (ko), Марко Костић (sr)
40.beta - February 11, 2021
===========================
Bastien Nocera:
* build: Pin libhandy wrapper to a specific version
(the subprojects/libhandy repository meson uses as fallback)
* build: Bump required libhandy to version 1.1.90
Christopher Davis:
* ci: Add dependencies for libhandy
* dialogs: Remove redundant and deprecated child props
* about-dialog: Remove useless child
* ui: Make disks-devtab a scrolledwindow
* ui: move margins from stack to devtab
* ui: Use HdyStatusPage for empty view
* ui: Replace GtkTable with GtkGrid
* ui: Replace Notebook with stack in the main window
* ui: Replace GtkHBox and GtkVBox
* disks.ui: Remove GtkAlignment
* ui: Adjust margins
* flatpak: Enable diagnostics and disable deprecated API
Kai Lüke:
* Don't allow to specify both --format-device and --restore-disk-image
* Ignore the --xid option when formatting from Nautilus
(this aligns the behavior under X11 with that on Wayland)
* Flatpak build fixes
Updated translations:
* Anders Jonsson (sv), Asier Sarasua Garmendia (eu), Daniel Mustieles (es),
Daniel Șerbănescu (ro), Emin Tufan Çetin (tr), Fran Dieguez (gl),
Hugo Carvalho (pt), Jordi Mas (ca), Kjartan Maraas (nb), Kukuh Syafaat (id),
Luna Jernberg (sv), Matej Urbančič (sl), Yuri Chornoivan (uk)
40.alpha - January 9, 2021
==========================
Christopher Davis:
* window: Make adaptive with HdyLeaflet
* window: Add empty state
* Add libhandy as a subproject (allowing to build if not available as system library)
Kai Lüke:
* Do not display zram devices
* Flatpak build fixes
Updated translations:
* Boyuan Yang (zh_CN), Bruno Lopes da Silva (pt_BR), Daniel Mustieles (es),
Efstathios Iosifidis (el), Fabio Tomat (fur), Florentina Mușat (ro),
Hugo Carvalho (pt), Jordi Mas (ca), Jordi Mas i Hernandez (ca),
Juliano Camargo (pt), Marek Černocký (cs), Rūdolfs Mazurs (lv),
Stephan Woidowski (de), Yosef Or Boczko (he), Yuri Chornoivan (uk), Аляксей (be)
3.38.0 - September 10, 2020
===========================
Kai Lüke:
* Build/install readme improvements (INSTALL)
Jordan Petridis:
* ci: remove deprecated jobs
* ci: port flatpak job to the template
Updated translations:
* Andre Klapper (zh_CN), sicklylife (ja), Zander Brown (en_GB)
3.37.2 - March 5, 2020
======================
Kai Lüke:
* Fix creating partitions by using special parameter when requesting the maximal partition size
* Always show other filesystem format choices
* Fix unmounting drives by waiting until UDisks updates the unmounted filesystem
Updated translations:
* Baurzhan Muftakhidinov (kk), Boyuan Yang (zh_CN), Cheng-Chia Tseng (zh_TW),
Daniel Korostil (uk), Daniel Șerbănescu (ro), Dušan Kazik (sk), Fabio Tomat (fur),
Rūdolfs Mazurs (lv)
3.36.0 - March 5, 2020
======================
Updated translations:
* Alan Mortensen (da), Anders Jonsson (sv), Andre Klapper (lv, nb, pa, sk, vi),
Asier Sarasua Garmendia (eu), Aurimas Černius (lt), Balázs Úr (hu),
Charles Monzat (fr), Danial Behzadi (fa), Daniel Mustieles (es),
Fran Dieguez (gl), Goran Vidović (hr), Jiri Grönroos (fi), Jordi Mas (ca),
Jor Teron (mjw), Kukuh Syafaat (id), Marek Černocký (cs), Matej Urbančič (sl),
Milo Casagrande (it), Nathan Follens (nl), Piotr Drąg (pl),
Rafael Fontenelle (pt_BR), Sabri Ünal (tr), Seong-ho Cho (ko), sicklylife (ja),
Tim Sabsch (de), Марко Костић (sr)
3.35.91 - February 16, 2020
===========================
Sabri Ünal:
* Add a shortcut for Keyboard Shorcuts page
Updated translations:
* Alexandre Franke (fr), Anders Jonsson (sv), Aurimas Černius (lt),
Balázs Úr (hu), Danial Behzadi (fa), Daniel Mustieles (es),
Dušan Kazik (sk), Dz Chen (zh_CN), Efstathios Iosifidis (el),
Fabio Tomat (fur), Fran Dieguez (gl), Goran Vidović (hr),
Kukuh Syafaat (id), Marek Černocký (cs), Piotr Drąg (pl),
Rafael Fontenelle (pt_BR), Sabri Ünal (tr), sicklylife (ja),
Umarzuki Bin Mochlis Moktar (ms), Victor Grousset/tuxayo (eo),
Yi-Jyun Pan (zh_TW), Марко Костић (sr)
3.35.2 - November 23, 2019
==========================
Jakub Steiner:
* create a nightly app icon
segfault:
* unlock dialog: Add a mnemonic to the keyfiles label
Updated translations:
* Ask Hjorth Larsen (da), Danial Behzadi (fa), Fabio Tomat (fur),
Nathan Follens (nl)
3.34.0 - September 8, 2019
==========================
Iñigo Martínez:
* Flatpak: Remove unnecessary udev module
Roger:
* Convert README to markdown
Updated translations:
* Danial Behzadi (fa), Dušan Kazik (sk), Goran Vidović (hr), Milo Casagrande (it)
3.33.92 - September 2, 2019
===========================
Kai Lüke:
* Build documentation for Flatpak
* Flatpak manifest fixes
Updated translations:
* Aurimas Černius (lt), Balázs Úr (hu), Claude Paroz (fr),
Danial Behzadi (fa), Emin Tufan Çetin (tr), Enrico Nicoletto (pt_BR),
Fran Dieguez (gl), Jiri Grönroos (fi), Matej Urbančič (sl), Piotr Drąg (pl),
Rūdolfs Mazurs (lv), Ryuta Fujii (ja), Seong-ho Cho (ko), Tim Sabsch (de),
Марко Костић (sr)
3.33.91 - August 18, 2019
=========================
Updated translations:
* Anders Jonsson (sv), Asier Sarasua Garmendia (eu), Bruce Cowan (en_GB),
Jordi Mas (ca), Kukuh Syafaat (id), Marek Černocký (cs)
3.33.90 - August 5, 2019
========================
nalin.x.linux:
* Labels for toolbar items added for accessibility
Piotr Drąg:
* Mark missing string for translation
Updated translations:
* Daniel Mustieles (es), Daniel Șerbănescu (ro), Jordi Mas (ca),
Jor Teron (mjw)
3.33.4 - Juli 23, 2019
======================
Iñigo Martínez:
* build: Various meson updates (many commits)
* build: Add flatpak manifest
* ci: Add basic CI support
* ci: Add support for flatpak building
Kai Lüke:
* README/INSTALL update and info for Flatpak usage for development
Updated translations:
* Christian Kirbach (de), Rafael Fontenelle (pt_BR)
3.33.3 - July 2, 2019
=====================
Kai Lüke:
* build: Define logind as combo option of 'libsystemd', 'libelogind', 'none'
* Don't require filesystem label when formatting
* build: remove autodetection of features and require a recent UDisks
Mart Raudsepp:
* build: add elogind support for seat retrieval
Veerasamy Sevagen:
* Rephrase English confirmation message
Updated translations:
* Asier Sarasua Garmendia (eu), Ask Hjorth Larsen (da), Balázs Úr (hu), Carmen Bianca BAKKER (eo),
Cheng-Chia Tseng (zh_TW), Daniel Mustieles (es), Dušan Kazik (sk), Efstathios Iosifidis (el),
Fabio Tomat (fur), Goran Vidović (hr), Kukuh Syafaat (id), Matej Urbančič (sl),
Nathan Follens (nl), Sveinn í Felli (is)
3.32.0 - March 10, 2019
=======================
Updated translations:
* Anders Jonsson (sv), Daniel Șerbănescu (ro), Ryuta Fujii (ja), Seong-ho Cho (ko)
3.31.92 - March 5, 2019
=======================
Updated translations:
* Alan Mortensen (da), Aurimas Černius (lt), Baurzhan Muftakhidinov (kk),
Efstathios Iosifidis (el), Fabio Tomat (fur), Guillaume Bernard (fr),
Jiri Grönroos (fi), Jordi Mas (ca), Kukuh Syafaat (id), Marek Cernocky (cs),
Mario Blättermann (de), Matej Urbančič (sl), Milo Casagrande (it),
Nathan Follens (nl), Piotr Drąg (pl), Rafael Fontenelle (pt_BR),
Rūdolfs Mazurs (lv), Sabri Ünal (tr), Stas Solovey (ru), Марко Костић (sr)
3.31.90 - February 5, 2019
==========================
Helmut Grohne:
* build: stop checking for fallocate
Jakub Steiner:
* icon: app icon adjustments
Maoschanz:
* Update the UI to match current guidelines
Piotr Drąg:
* Update POTFILES.in
Ronald van Engelen:
* Added total-lbas-written and total-lbas-read to translatable strings
segfault:
* unlock dialog: Add tooltip for keyfile chooser button
Updated translations:
* Anders Jonsson (sv), Balázs Úr (hu), Charles Monzat (fr), Daniel Mustieles (es),
Daniel Rusek (cs), Fabio Tomat (fur), Fran Dieguez (gl), Jordi Mas (ca),
Matej Urbančič (sl), Ryuta Fujii (ja)
3.31.2 - November 12, 2018
==========================
Jakub Steiner:
* update app icon
Jeremy Bicha:
* GduVolumeGrid: Use starred icon instead of user-bookmarks
Kai Lüke:
* Remove redundant error showing
Updated translations:
* Dušan Kazik (sk), Emin Tufan Çetin (tr), Jordi Mas (ca),
Kristjan SCHMIDT (eo), Marek Cernocky (cs), Matej Urbančič (sl),
Stas Solovey (ru)
3.30.0 - September 3, 2018
==========================
Updated translations:
* Anders Jonsson (sv), Ask Hjorth Larsen (da), Changwoo Ryu (ko),
Fran Dieguez (gl), gogo (hr), Hannie Dumoleyn (nl), Rūdolfs Mazurs (lv)
3.29.92 - August 27, 2018
=========================
Piotr Drąg:
* Mark missing string for translation
Updated translations:
* Aurimas Černius (lt), Baurzhan Muftakhidinov (kk),
Bruno Lopes da Silva (pt_BR), Claude Paroz (fr),
Jiri Grönroos (fi), Kukuh Syafaat (id), Milo Casagrande (it),
Piotr Drąg (pl), Tim Sabsch (de)
3.29.90 - July 30, 2018
=======================
mtvoid:
* Fix swapped "Number of Samples" tooltips in benchmark dialog
Updated translations:
* Balázs Meskó (hu), Daniel Mustieles (es), Daniel Șerbănescu (ro),
Emin Tufan Çetin (tr), Fabio Tomat (fur), Gun Chleoc (gd),
Jordi Mas (ca), Marek Cernocky (cs), Yi-Jyun Pan (zh_TW)
3.29.2 - May 31, 2018
=====================
segfault:
* Add TrueCrypt/VeraCrypt support
Kai Lüke:
* Register inhibitor for benchmark thread
* Update URLs after migration
* Query NTFS tooling from UDisks
Updated translations:
* Anders Jonsson (sv), Daniel Mustieles (es), Fabio Tomat (fur),
gogo (hr), Marcos Lans (gl), Marek Černocký (cs), Matej Urbančič (sl),
Milo Casagrande (it), Mingcong Bai (zh_CN)
3.28.1 - April 9, 2018
=======================
Updated translations:
* Dušan Kazik (sk), gogo (hr), Marek Cernocky (cs), Matej Urbančič (sl),
Qizhi Zhou (zh_CN), Stas Solovey (ru)
3.28.0 - March 12, 2018
=======================
Kai Lüke:
* Format dialog: Fix NULL deref when no partition table is present
Updated translations:
* Anders Jonsson (sv), Changwoo Ryu (ko), gogo (hr), Jordi Mas (ca),
Julien Hardelin (fr), Rūdolfs Mazurs (lv), Милош Поповић (sr, sr@latin)
3.27.92 - March 5, 2018
=======================
Piotr Drąg:
* Remove po/Makevars
Updated translations:
* Aurimas Černius (lt), Balázs Úr (hu), Baurzhan Muftakhidinov (kk),
Cheng-Chia Tseng (zh_TW), Daniel Mustieles (es), Emin Tufan Çetin (tr),
Enrico Nicoletto (pt_BR), Fabio Tomat (fur), Fran Dieguez (gl),
GNOME Translation Robot (gd, nl), gogo (hr), Joe Hansen (da),
Jordi Mas (ca), Kukuh Syafaat (id), Marek Cernocky (cs),
Milo Casagrande (it), Piotr Drąg (pl), Wolfgang Stöggl (de)
3.27.91 - February 20, 2018
===========================
Will Thompson:
* Fix tooltip for “Hide from Firmware” GPT partition flag
* Drop redundant “Legacy BIOS Bootable” text in tooltip
Updated translations:
* Cheng-Chia Tseng (zh_TW), Piotr Drąg (pl)
3.27.90 - February 6, 2018
==========================
Andrea Azzarone:
* Hide devices if mounted with x-gdu.hide
Will Thompson:
* restore: don't attempt to open target read-only
Updated translations:
* Balázs Úr (hu), Dušan Kazik (sk), Fabio Tomat (fur), Fran Dieguez (gl),
Jiri Grönroos (fi), Ovídio Francisco (pt_BR), Victor Ibragimov (tg)
3.27.4 - January 9, 2018
========================
Updated translations:
* Aurimas Černius (lt), Cheng-Chia Tseng (zh_TW), Daniel Mustieles (es),
Emin Tufan Çetin (tr), Jiri Grönroos (fi), Khaled Hosny (ar), Matej Urbančič (sl)
3.27.3 - December 11, 2017
==========================
Iñigo Martínez:
* build: Rename build options
* build: Remove default warning level
* build: Remove unused defines
* build: Remove macro definition
* build: Use meson 0.43.0 features
* build: Use datadir on post install script
* build: Move the icons' files
Kai Lüke:
* Set partition type for MBR partitions
* build: Document custom build switches
Updated translations:
* gogo (hr), Kukuh Syafaat (id), Marek Cernocky (cs), Tim Sabsch (de)
3.27.2 - November 13, 2017
==========================
Kai Lüke:
* Resize dialog: missing mnemonic activations
* No format option for extended partitions
Updated translations:
* Daniel Mustieles (es), Fabio Tomat (fur), gogo (hr), Hannie Dumoleyn (nl),
Kjartan Maraas (nb), Marek Cernocky (cs), Mario Blättermann (de)
3.27.1 - October 16, 2017
=========================
Kai Lüke:
* Fix license link in logo SVG metadata
* Fix SIGSEGV in gdu_utils_get_all_contained_objects
* Keep FS mounted while growing partition
* Redesign Format Dialog
* Show mount options for swap volumes
Piotr Drąg:
* Spruce up typography in new translatable strings
Updated translations:
* Dušan Kazik (sk), Efstathios Iosifidis (el), Kukuh Syafaat (id),
Marek Cernocky (cs), Matej Urbančič (sl), Stas Solovey (ru),
Trần Ngọc Quân (vi), Xavi Ivars (ca@valencia)
3.26.0 - September 11, 2017
===========================
Updated translations:
* Alain Lojewski (fr), Anders Jonsson (sv), Ask Hjorth Larsen (da),
Bruce Cowan (en_GB), hanniedu (nl), Daniel Mustieles (es),
Inaki Larranaga Murgoitio (eu), Jordi Mas (ca), Milo Casagrande (it)
3.25.92 - September 4, 2017
===========================
Updated translations:
* Ask Hjorth Larsen (da), Aurimas Černius (lt), Cheng-Chia Tseng (zh_TW),
Daniel Mustieles (es), Dušan Kazik (sk), gogo (hr), Jiri Grönroos (fi),
Jordi Mas (ca), Piotr Drąg (po), Rafael Fontenelle (pt_BR),
Rūdolfs Mazurs (lv), SeongMan Jang (ko), Yuras Shumovich (be),
Yuri Myasoedov (ru)
3.25.91 - August 21, 2017
=========================
Jeremy Bicha:
* Fix translation headers
Mitchell Horne:
* Tweak memory management in filesystem dialog
* Add unmount function to edit filesystem dialog
Kai Lüke:
* Correct tooltip texts in resize dialog
* Correct text for partition size entry
* Disable action buttons during jobs
* Delay sensitivity during job updates
Updated translations:
* Andika Triwidada and Kukuh Syafaat (id), Baurzhan Muftakhidinov (kk),
Balázs Meskó (hu), Claude Paroz (fr), Daniel Mustieles (es),
Emin Tufan Çetin (tr), Fabio Tomat (fur), Fran Dieguez (gl), gogo (hr),
Marek Cernocky (cs), Мирослав Николић (sr), Wolfgang Stöggl (de)
3.25.90 - August 7, 2017
========================
Piotr Drąg:
* Update POTFILES.in
* Unmark placeholder strings from translation
Kalev Lember:
* Fix appdata file name
Kai Lüke:
* Add a more detailed description for the project
* Detect UDisks version 2.7.2
* Move partition size helpers
* Move volume and partition utility functions
* Resize and repair helper functions
* Resize, Check and Repair Dialogs
Updated translations:
* Balázs Meskó (hu), Daniel Mustieles (es), Fabio Tomat (fur),
gogo (hr), Marek Cernocky (cs), Mario Blättermann (de)
3.25.4 - July 17, 2017
======================
Mitchell Horne:
* Enable Large File Support for Disks
Kai Lüke:
* Update Window for Power State Changes
* Update AppData Information
Iñigo Martínez:
* build: Created template file for service file
* build: Port to meson build system
* build: Remove autotools
Updated translations:
* Aurimas Černius (lt), Baurzhan Muftakhidinov (kk),
Daniel Mustieles (es), Dušan Kazik (sk), Fabio Tomat (fur),
Jordi Mas (ca), Kukuh Syafaat (id), Mario Blättermann (de)
3.25.2 - May 22, 2017
=====================
Mitchell Horne:
* Use MIME types for disk images
Kai Lüke:
* Prompt to stop jobs when closing
* update doap file with new maintainer
* Clarify meaning of encryption/mounting options
* Disable auto-clear before operations needing unmount
* Implicit auto-clear handling for unmount and lock buttons
* Use correct callback finish method
* Insensitive auto-clear switch for unused loop device
* Remove unused erase disks dialog
* Fix unmounting and probing of mounted volumes
* Change label dialog hint
* Restrict maximal label length if known
* Hints for passphrase fields
* Remove deprecated GTK functions
* Fix wrong behavior of filesystem creation dialog
* The UUID of the selected volume is shown
* Add app menu entry to create an empty disk image
* Add tooltip text to Auto-clear switch
Piotr Drąg:
* Update po/Makevars
* Update POTFILES.in
Updated translations:
* hanniedu (nl), Ask H. Larsen (da), Balázs Úr & Balázs Meskó (hu),
Cédric Valmary (oc), Charles Monzat (fr), Daniel Mustieles (es),
Emin Tufan Çetin (tr), Fabio Tomat (fur), gogo (hr),
Kukuh Syafaat (id), Mario Blättermann (de), Tom Tryfonidis (el),
Yuras Shumovich (be), Милош Поповић (sr, sr@latin)
3.24.0 - March 19, 2017
=======================
* Fix crash in error path (Matthias Clasen)
* Updated translations
3.23.92 - March 11, 2017
========================
* Fix broken desktop files (Michael Catanzaro)
* Drop unused gsettings schema (Jeremy Bicha)
* Updated translations
3.23.4 - January 13, 2017
=========================
* Fix failure in g-s-d plugin (Bastien Nocera)
* Updated translations
3.23.3 - December 12, 2016
==========================
* Update gnome-settings-daemon plugin for 3.23 (Bastien Nocera)
* Code cleanups (Nicholas Bishop)
* Stop using intltool for translations (Michael Catanzaro)
* Use more Unicode in translatable strings (Piotr Drąg)
* Updated translations
3.22.1 - November 7, 2016
=========================
* Updated translations
3.22.0 - September 18, 2016
===========================
* Updated translations
3.21.91 - September 1, 2016
===========================
* Fix layout with GTK+ 3.22
* Updated translations
3.21.3 - June 20, 2016
======================
* Fix gear menu location when running in Wayland (Olivier Fourdan)
* Fix app menu icon when running outside GNOME (Michael Catanzaro)
* Updated translations
3.20.1 - April 8, 2016
======================
* Updated translations
3.20.0 - March 21, 2016
=======================
* Updated translations
3.19.3 - December 11, 2015
==========================
* Fix the handling of the --restore-disk-image option (Matthias Clasen)
* Add names for option arguments in --help output (Matthias Clasen)
* Updated translations
3.18.1 - October 11, 2015
=========================
* Add X-GNOME-Utilities category to desktop file
* Updated translations
3.18.0 - September 21, 2015
===========================
* Fix incorrect assertions that were recently added
* Updated translations
3.17.91 - August 29, 2015
=========================
* Add missing tooltips (Nicholas Bishop)
* Accessibility improvements
* Adjust halign of partition menu
* Fix line wrap in info bars
* Code cleanups
* Translation updates
3.17.2 - June 19, 2015
======================
* Improve integration with Unity desktop environment (Iain Lane)
* Fix Indic font rendering in benchmark dialog (David King)
* Fix AppData file name to match the new .desktop file basename (Richard Hughes)
* Translation updates
3.17.2 - May 23, 2015
=====================
* Fix benchmarking disks on 32-bit architectures (Marius Mikucionis)
* Don't show name example when creating logical partition (Thomas Perl)
* Fix overly-wide benchmark dialog (Iain Lane)
* Refine appearance of volume grid (Trinh Anh Ngoc)
* Make D-Bus activatable (Matthias Clasen)
* Convert to new-style commandline option handling (Matthias Clasen)
* Remove deprecated encoding key from desktop file (Matthias Clasen)
* Simplify translation of gsettings schemas (Michael Catanzaro)
* Fix format string signedness warnings (David King)
* Provide symbolic app icon (Jakub Steiner)
* Add appdata file (Daniel Mustieles, Richard Hughes, Michael Catanzaro)
* Mention -h option in manpage (Nick Black)
* Fix build with --disable-gsd-plugin (Andreas Henriksson)
* Translation updates
-------------------------
gnome-disk-utility 3.16.0
-------------------------
* Make SMART dialog resizable (#723469, Alexandre Franke)
* Disambiguate menu items to reduce confusion (#742652, Michael Catanzaro)
* Fix halign of hamburger menu (Michael Catanzaro)
* Fix a typo in a translatable string (determing) (Anders Jonsson)
* Translation updates
-------------------------
gnome-disk-utility 3.14.0
-------------------------
* Fix theming in the volume grid (#723495, David Zeuthen)
* Fix headerbar item positions (#729349, Yosef Or Boczko)
* Use new icon for the gear menu (#732980, Matthias Clasen)
* Translation updates
-------------------------
gnome-disk-utility 3.12.0
-------------------------
The gnome-disk-utility project provides the Disks and Disk Image
Mounter applications for dealing with storage devices and a
gnome-settings-daemon plug-in for notifying the user about problems
with storage devices.
Changes since gnome-disk-utility 3.11.0:
David Zeuthen (7):
Post-release version bump to 3.11.1
GduDVDSupport: Nuke overlapping ranges.
GduDVDSupport: Update comments and add some more debug.
GduVolumeGrid: Cap minimum width to 300 pixels
Version bump to 3.12.0
Revert "Updated Russian translation"
Update NEWS for release.
Matthias Clasen (1):
Drop unneeded margin inside image buttons
Updated translations.
David Zeuthen,
March 22, 2014
-------------------------
gnome-disk-utility 3.11.0
-------------------------
The gnome-disk-utility project provides the Disks and Disk Image
Mounter applications for dealing with storage devices and a
gnome-settings-daemon plug-in for notifying the user about problems
with storage devices.
Changes since gnome-disk-utility 3.10.0:
David Zeuthen (15):
Post-release version bump to 3.11.0
Use GtkHeaderBar and CSD
Remove MD-RAID support
Use flat list in device tree
Use media icon, if available
libgdu: Fix deprecation warnings
disk-image-mounter: Fix deprecation and other warnings
notify: Fix deprecation and other warnings
disks: Fix deprecation and other warnings
Bump required GTK+ version to 3.10.0
Include UI files in application binary via gresource(1)
Update "Edit GPT Partition" dialog
Only show "Power Off" menu item if the drive can power off
Fix warning in "Restore Disk Image" dialog
Update NEWS for release
Matthias Clasen (3):
Be more careful with XIDs
Make dialog work with --xid again
Forgotten header update
Michael Catanzaro (2):
app menu: standardize Help/About/Quit
Capitalize title of the restore image file chooser
Updated translations.
David Zeuthen,
February 14, 2014
-------------------------
gnome-disk-utility 3.10.0
-------------------------
The gnome-disk-utility project provides the Disks and Disk Image
Mounter applications for dealing with storage devices and a
gnome-settings-daemon plug-in for notifying the user about problems
with storage devices.
Changes since gnome-disk-utility 3.9.0:
David Zeuthen (4):
Lower liblzma dep to latest stable (5.0.5) instead of dev (5.1.0)
Set NoDisplay=true for Disk Image writer and Disk Image Mounter apps
Bump version to 3.10.0
Update NEWS for release
Seán de Búrca (1):
Fix autogen and configure
Updated translations.
David Zeuthen,
September 28, 2013
-------------------------
gnome-disk-utility 3.9.0
-------------------------
The gnome-disk-utility project provides the Disks and Disk Image
Mounter applications for dealing with storage devices and a
gnome-settings-daemon plug-in for notifying the user about problems
with storage devices.
Changes since gnome-disk-utility 3.8.1:
Daniel Mustieles (1):
Fixed typo in string. Fixes bug #695346
David Zeuthen (16):
Bump version to 3.9.0
GduWindow: fix ensure_unused() method to pass the right object in callbacks
Bump window height to 900 pixels and request window to be centered
Use new udisks 2.1.1 API (if available) to show better partition descriptions
utils: make unfuse_path() replace $HOME with ~
Disks: Add new --restore-disk-image option
Don't use two lines in device selection combobox
Use fallocate(2) rather than posix_fallocate(3)
Use right size when calculating error-percentage when creating disk image
Don't unmount CD/DVD discs before creating a disk image of them
Verify that the file passed to --restore-disk-image is a regular file
Add support for restoring XZ compressed disk images
Remove application/x-raw-disk-image{,-xz-compressed} MIME types
Fix default folder for disk images
Bump udisks2 required version to 2.1.1
Update NEWS for release
Jan Alexander Steffens (heftig) (1):
Type problems prevent compilation with GCC 4.8 on i686
Updated translations.
David Zeuthen,
August 20, 2013
-------------------------
gnome-disk-utility 3.8.1
-------------------------
The gnome-disk-utility project provides the Disks and Disk Image
Mounter applications for dealing with storage devices and a
gnome-settings-daemon plug-in for notifying the user about problems
with storage devices.
Changes since gnome-disk-utility 3.8.0:
David Zeuthen (1):
Post-release version bump to 3.8.1
Updated translations: Abderrahim Kitouni, Akom Chotiphantawanon,
Alexandre Franke, Andika Triwidada, Ani Peter, Chandan Kumar, Gabor
Kelemen, Inaki Larranaga Murgoitio, Kjartan Maraas, Krishnababu
Krothapalli, ManojKumar Giri, OKANO Takayoshi, Osman Karagöz, Pavol
Klačanský, Rūdolfs Mazurs, Sandeep Sheshrao Shedmake, Sweta Kothari,
Victor Ibragimov, Ville-Pekka Vainio, Yuri Myasoedov
David Zeuthen,
May 18, 2013
-------------------------
gnome-disk-utility 3.8.0
-------------------------
The gnome-disk-utility project provides the Disks and Disk Image
Mounter applications for dealing with storage devices and a
gnome-settings-daemon plug-in for notifying the user about problems
with storage devices.
Changes since gnome-disk-utility 3.7.2:
David Zeuthen (4):
Post-release version bump to 3.7.3
Depend on udisks 2.1.0
Bump version to 3.8.0
Update NEWS for release
Updated translations: A S Alam, Andrej Žnidaršič, António Lima, Ask
H. Larsen, Aurimas Černius, Bruce Cowan, Carles Ferrando, Changwoo
Ryu, Chao-Hsiung Liao, Dimitris Spingos, Dušan Kazik, Enrico
Nicoletto, Fran Diéguez, Gheyret Kenji, Gil Forcada, Ihar
Hrachyshka, Inaki Larranaga Murgoitio, Jonatan Zeidler, Marek
Černocký, Matej Urbančič, Milo Casagrande, Nicolás Satragno,
Nilamdyuti Goswami, Piotr Drąg, Shankar Prasad, Sweta Kothari, Yuri
Myasoedov, lainme, Мирослав Николић
David Zeuthen,
March 17, 2013
-------------------------
gnome-disk-utility 3.7.2
-------------------------
The gnome-disk-utility project provides the Disks and Disk Image
Mounter applications for dealing with storage devices and a
gnome-settings-daemon plug-in for notifying the user about problems
with storage devices.
Changes since gnome-disk-utility 3.7.1:
Cosimo Cecchi (4):
Add a --format-device command line option
Resolve backing crypto device when selecting object