-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathNEWS
3073 lines (2501 loc) · 112 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
============================
GParted 1.7.0 (2025-01-30)
============================
Release Notes
-------------
This release of GParted includes enhancements, bug fixes and
language translation updates.
### Key changes include:
* Recognise NBDs (Network Block Devices)
* Add support for Bcachefs (experimental), single device file systems only
* Prevent GParted probe starting LVM Volume Groups
* Increase minimum required version of libparted to 3.2
Bug Fixes
---------
* Recognise NBDs (Network Block Devices) (#247, !122)
* Update CI jobs for Ubuntu 24.04 LTS and use Rocky Linux 8 (!124)
* Read exFAT file system usage from exfatprogs >= 1.2.3 (#261, !125)
* Fix serial number for my USB key showing binary data (#263, !126)
* Add support for Bcachefs, single device file systems only (#234, !123)
* Prevent GParted probe starting LVM Volume Groups (#259, !127)
* Fix hang searching partitions when btrfs-progs not installed (#271, !130)
* Increase minimum required version of libparted to 3.2 (!131)
Code Credits
------------
Code enhancements are courtesy of Mike Fleetwood.
Translations (new/updated)
--------------------------
be(Yuras Shumovich, Vasil Pupkin), cs(Daniel Rusek),
da(Alan Mortensen), de(Jürgen Benvenuti), he(Yaron Shahrabani),
hi(Scrambled 777), hu(Balázs Úr), ka(Ekaterine Papava),
lt(Aurimas Černius), lv(Rūdolfs Mazurs), pl(Piotr Drąg),
pt(Hugo Carvalho), pt_BR(Rafael Fontenelle), ro(Daniel Șerbănescu),
ru(Sergej A.), sl(Martin Srebotnjak), sr(Мирослав Николић),
sv(Anders Jonsson), uk(Yuri Chornoivan), zh_CN(Luming Zh)
Dependencies (new/updated)
--------------------------
* libparted >= 3.2
============================
GParted 1.6.0 (2024-02-26)
============================
Release Notes
-------------
This release of GParted includes enhancements, bug fixes and
language translation updates.
### Key changes include:
* Stop forcing 1 MiB gap when moving partition boundary right
* Fix crash when dealing with 0000-0000 exfat UUID
* Remove Attempt Data Rescue and use of gpart
Bug Fixes
---------
* Stop forcing 1 MiB gap when moving partition boundary right (#227, !112)
* Fix GitLab CI test jobs failures on BlockSpecial unit tests (!113)
* Fix Missing progress bar text reset when applying operation (#230, !114)
* Fix crash when dealing with 0000-0000 exfat UUID (!115)
* Update systemd mount masking and udev rule location (!116)
* Require C++11 compilation (!117)
* Remove Attempt Data Rescue and use of gpart (!118)
* Tidy-ups for file system interface classes (!119)
* Move appstream metadata out of legacy path (#241, !120)
* Document future Debian/Ubuntu build time dependency in README (!121)
Code Credits
------------
Code enhancements are courtesy of Marcin Zepp and Mike Fleetwood.
Translations (new/updated)
--------------------------
cs(Daniel Rusek), da(Alan Mortensen), de(Jürgen Benvenuti),
es(Daniel Mustieles), eu(Asier Sarasua Garmendia), fa(Danial Behzadi),
fur(Fabio Tomat), ga(katerine Papava), gl(Fran Dieguez),
he(Yosef Or Boczko), hu(Balázs Úr), id(Kukuh Syafaat),
ie(Olga Smirnova), ka(Ekaterine Papava), kk(Baurzhan Muftakhidinov),
lt(Aurimas Černius), pl(Piotr Drąg), pt(Hugo Carvalho),
pt_BR(marcelocripe, Juliano de Souza Camargo), ro(Florentina Mușat),
ru(Sergej A), sk(Dušan Kazik), sv(Anders Jonsson),
tr(Sabri Ünal, Emin Tufan), uk(Yuri Chornoivan),
zh_CN(Luming Zh, Boyuan Yang), zh_TW(Woodman Tuen, Cheng-Chia Tseng)
Dependencies (new/updated)
--------------------------
* gpart is no longer needed because the "Attempt Data Rescue"
feature has been removed.
============================
GParted 1.5.0 (2023-02-21)
============================
Release Notes
-------------
This release of GParted includes enhancements, bug fixes and
language translation updates.
### Key changes include:
* Fix path used to resize btrfs needs to be a directory
* Fix crash when copying NTFS to starting beyond 2 TiB
* Enable repair when checking exfat file systems
Bug Fixes
---------
* Fix undeclared identifier 'basename' build failure with musl libc (!99)
* Fix NULL == 0 assumption in call to ped_partition_flag_next() (!100)
* Fix path used to resize btrfs needs to be a directory (#193, !102)
* Fix make distcheck failure found in GitLab CI job unbuntu_test (!103)
* Add Alpine Linux CI jobs and resolve FAT16/32 label and UUID issues (!104)
* Update used btrfs file system commands, btrfs-progs 4.5 required (!105)
* Update AC_PROG_LIBTOOL to LT_INIT in configure.ac (!106)
* Migrate from intltool to gettext translation (!107)
* Fix crash when copying NTFS to starting beyond 2 TiB (#164, !108)
* Enable repair when checking exfat file systems (!109)
* Increase minimum XFS size to 300 MiB (#217, !110)
* Erase all Promise FastTrack RAID signatures (#220, !111)
Code Credits
------------
Code enhancements are courtesy of Markus Volk, Dominika Liberda and
Mike Fleetwood.
Translations (new/updated)
--------------------------
ca(Jordi Mas), da(Alan Mortensen), de(Jürgen Benvenuti),
fr(Irénée Thirion), he(Yaron Shahrabani, Yosef Or Boczko),
hr(Goran Vidović), hu(Balázs Úr), id(Andika Triwidada, Kukuh Syafaat),
ka(Temuri Doghonadze, Zurab Kargareteli), ko(Seong-ho Cho),
nl(Nathan Follens), pl(Piotr Drąg), pt(Hugo Carvalho),
pt_BR(Rafael Fontenelle, Enrico Nicoletto), ru(Aleksandr Melman, Sergej A),
sk(Dušan Kazik), sl(Matej Urbančič), sr(Мирослав Николић),
sv(Anders Jonsson, Luna Jernberg), tr(Sabri Ünal, Muhammet Kara),
uk(Yuri Chornoivan)
Dependencies (new/updated)
--------------------------
* btrfs-progs >= 4.5 package is required for btrfs file system support.
============================
GParted 1.4.0 (2022-03-28)
============================
Release Notes
-------------
This release of GParted includes enhancements, bug fixes and
language translation updates.
### Key changes include:
* Add labelling of mounted btrfs, ext2/3/4 and xfs file systems
* Fix detection of mount points for encrypted file systems
* Fix crash scrolling quickly in the drive selection combobox
* Add bcache detection
* Add JBD external EXT3/4 journal detection
Bug Fixes
---------
* Add labelling of mounted btrfs, ext2/3/4 and xfs file systems (#163, !87)
* Fix detection of mount points for encrypted file systems (#162, !88)
* Fix unmount error when unmounting below a bind mount point (!89)
* Fix crash scrolling quickly in the drive selection combobox (#165, !91)
* Add initial Indonesian translation of help (!90)
* Add accessibility relations for screen readers like Orca (!92)
* Fix partition creation at sector 2048 if partition before it (#172, !93)
* Make more getter methods use return-by-constant-reference (!94)
* Check copy destination instead of source (!95)
* Add bcache detection (#183, !96)
* Add JBD external EXT3/4 journal detection (#89, !97)
* Fix translation of DocBook markup tag of the GParted Manual (!98)
Code Credits
------------
Code enhancements are courtesy of Movie Ma, Pascal Engélibert, and
Mike Fleetwood.
Translations (new/updated)
--------------------------
cs(Marek Černocký), da(Alan Mortensen), eu(Asier Sarasua Garmendia),
fur(Fabio Tomat), he(Yaron Shahrabani), hr(Goran Vidović),
hu(Balázs Úr), id(Andika Triwidada), it(Milo Casagrande),
ko(Seong-ho Cho), lt(Aurimas Černius), lv(Rūdolfs Mazurs),
nb(Kjell Cato Heskjestad), nl(Nathan Follens), pa(A S Alam),
pt(Hugo Carvalho), ru(Aleksandr Melman, Sergej A), sk(Dušan Kazik),
sl(Matej Urbančič), sr(Мирослав Николић), zh_CN(Luming Zh)
Dependencies (new/updated)
--------------------------
* n/a
============================
GParted 1.3.1 (2021-07-19)
============================
Release Notes
-------------
This release of GParted includes bug fixes and language translation
updates.
### Key changes include:
* Fix recognition of SD/MMC device names
* Make XFS copy duplicate the file system label and UUID
Bug Fixes
---------
* Replace deprecated gtk_show_uri() method for help window (!82)
* Fix recognition of SD/MMC device names (!83)
* Handle change in path for udisks2-inhibit executable (!84)
* Make XFS copy duplicate the file system label and UUID (!85)
Code Credits
------------
Code enhancements are courtesy of Mike Fleetwood and Curtis Gedak.
Translations (new/updated)
--------------------------
da(Ask Hjorth Larsen), de(Wolfgang Stöggl, Philipp Kiemle),
es(Daniel Mustieles), fr(Claude Paroz), id(Andika Triwidada),
kk(Baurzhan Muftakhidinov), ko(Seong-ho Cho), pl(Piotr Drąg),
pt(Hugo Carvalho), pt_BR(Rafael Fontenelle, Enrico Nicoletto),
ro(Daniel Șerbănescu), sv(Anders Jonsson), uk(Yuri Chornoivan),
vi(Ngọc Quân Trần)
Dependencies (new/updated)
--------------------------
* n/a
============================
GParted 1.3.0 (2021-05-03)
============================
Release Notes
-------------
This release of GParted includes enhancements, bug fixes and
language translation updates.
### Key changes include:
* Support resizing open LUKS2 encryption mappings
* Improve exFAT support such as read FS usage and set UUID
* Fix crash in Create New Partition dialog when changing type
* Avoid GParted hanging when non-named device is hung
Bug Fixes
---------
* Stop GParted hanging when non-named device is hung (#131, !65)
* Avoid detecting exfat-utils commands as exfatprogs commands (#137, !66)
* Add support for reading exFAT usage and updating the UUID (!67)
* Fix minor typos in docs (!68) and comments (!71)
* Add Ukrainian translation of docs (!69, !70)
* Fix test suite failing in test_PipeCapture (#136, !72)
* Fix crash in Create New Partition dialog when changing type (#101, !73)
* Install gpartedbin under /usr/libexec instead of /usr/sbin (#85, !75)
* Exclude more GitLab CI file system tests needing loop devices (#147, !76)
* Ignore test failure when reiser4 reports null UUID (#145, !77)
* Restore detection of encrypted file systems (#148, !78)
* Fix crash probing libparted unrecognised encrypted file system (#152, !79)
* Support resizing open LUKS2 encryption mappings with passphrase (#59, !80)
Code Credits
------------
Code enhancements are courtesy of Yuri Chornoivan and Mike Fleetwood.
Translations (new/updated)
--------------------------
ca(Jordi Mas), es(Daniel Mustieles), fi(Jiri Grönroos),
fr(Claude Paroz), gl(Fran Dieguez), hu(Balázs Úr),
id(Kukuh Syafaat), kk(Baurzhan Muftakhidinov), lt(Aurimas Černius),
nl(Hannie Dumoleyn), pl(Piotr Drąg), pt(Hugo Carvalho),
pt_BR(Rafael Fontenelle), ro(Daniel Șerbănescu), sk(Dušan Kazik),
sv(Anders Jonsson), uk(Yuri Chornoivan), vi(Ngọc Quân Trần)
Dependencies (new/updated)
--------------------------
* n/a
============================
GParted 1.2.0 (2021-01-25)
============================
Release Notes
-------------
This release of GParted includes enhancements, bug fixes and
language translation updates.
### Key changes include:
* Add exFAT support using exfatprogs
* Wait for udev change on /dev/DISK when erasing signatures
* Don't try to mask non-existent Systemd \xe2\x97\x8f.service
Bug Fixes
---------
* Add exFAT support using exfatprogs (!30)
* Fix gparted not launching when PS_FORMAT environment variable set (!54)
* Wait for udev change on /dev/DISK when erasing signatures(#83, !55)
* Raise minimum supported dosfstools to 3.0.18 (!57)
* Fix formatting directive in it.po (!58)
* Fix GNOME GitLab CI test job failures because of missing /dev entries (!59)
* Fix GitLab CI job failures following Ubuntu docker image updates (!60)
* Fix CentOS 7 CI test job fails because of zero sized /etc/machine-id (!62)
* Set default alignment to cylinder for amiga partition table (#116, !63)
* Don't try to mask non-existent Systemd \xe2\x97\x8f.service (#129, !64)
Code Credits
------------
Code enhancements are courtesy of Mike Fleetwood, Antoine Viallon and
Curtis Gedak.
Translations (new/updated)
--------------------------
be(Аляксей), ca(Jordi Mas), cs(Marek Černocký), de(Philipp Kiemle),
es(Daniel Mustieles), fr(Thibault Martin), fur(Fabio Tomat),
it(Daniele Forsi !58), kk(Baurzhan Muftakhidinov), lt(Aurimas Černius),
lv(Rudolfs Mazurs), nl(Nathan Follens), pl(Piotr Drąg),
pt_BR(Rafael Fontenelle), ro(Daniel Șerbănescu), sk(Dušan Kazik),
sr(Мирослав Николић), sv(Anders Jonsson),
uk(Daniel Korostil, Yuri Chornoivan), zh_CN(Boyuan Yang), zh_TW(Yi-Jyun Pan)
Dependencies (new/updated)
--------------------------
* exfatprogs package is required for optional exfat file system support.
============================
GParted 1.1.0 (2020-01-20)
============================
Release Notes
-------------
This release of GParted includes enhancements, bug fixes and
language translation updates.
### Key changes include:
* Fix error when moving locked LUKS-encrypted partition
* Switch to faster minfo and mdir to read FAT16/32 usage
* Calculate JFS size accurately
* Recognise ATARAID members and detect their busy status
Bug Fixes
---------
* Fix test (dentry->d_name is invalidated by closedir...) (!41)
* Fix error when moving locked LUKS-encrypted partition (#48, !44)
* Add missing window title to Help Contents dialog (!45)
* Switch to faster minfo and mdir to read FAT16/32 usage (#569921)
* Whole device FAT32 file system reports device busy warning from mlabel (!46)
* Fix "invalid argument for seek()" error on very small (<=40KiB) drives (#16)
* Remain with CentOS 7 for GitLab CI (!48)
* Add file system interface tests (!49)
* Calculate JFS size accurately (!50)
* Recognise ATARAID members and detect their busy status (#75, !51)
* Rename members and variables currently named 'filesystem' (!52)
Code Credits
------------
Code enhancements are courtesy of Félix Piédallu, Mike Fleetwood,
and Curtis Gedak
Translations (new/updated)
--------------------------
ca(Jordi Mas), cs(Marek Černocký), de(Wolfgang Stöggl, Mathias L. Baumann),
en_GB(Bruce Cowan), es(Daniel Mustieles, Andre Klapper #80),
eu(Alexander Gabilondo, Asier Sarasua Garmendia), fr(Claude Paroz),
hr(Goran Vidović), hu(Balázs Úr), id(Kukuh Syafaat), is(Sveinn í Felli),
lv(Rudolfs Mazurs), pa(A S Alam), pl(Piotr Drąg), pt_BR(Rafael Fontenelle),
ro(Daniel Șerbănescu), sv(Anders Jonsson), vi(Trần Ngọc Quân)
Dependencies (new/updated)
--------------------------
* xvfb-run command is required for 'make check' and 'make distcheck'
============================
GParted 1.0.0 (2019-05-29)
============================
Release Notes
-------------
This release of GParted includes a significant undertaking to
migrate the code base from gtkmm2 to gtkmm3 (our GTK3 port). Thanks
go to Luca Bacci and Mike Fleetwood for making this happen.
With this major change we bump up the major version number. This
1.0.0 release is not meant to indicate that GParted is more stable
or less stable than before. Instead it means that GParted now
requires gtkmm3 instead of gtkmm2. Note that several other
dependencies have changed as well.
As with our other releases, this one also includes several
enhancements, bug fixes and language translation updates.
### Key changes include:
* Port to Gtkmm 3
* Port to GNOME 3 yelp-tools documentation infrastructure
* Enable online resizing of extended partitions
* Add F2FS support for read disk usage, grow, and check
* Fix slow refreshing of NTFS file systems
Bug Fixes
---------
* Port to Gtkmm 3 (#7, !9)
* Increase minimums to libparted 2.2 and glibmm 2.32 (!22)
* Enable online resizing of extended partitions (!23)
* Port to GNOME 3 yelp-tools documentation infrastructure (!24)
* Remove support for btrfs-progs < 3.12 (!26)
* Set title of Resize/Move dialog for an extended partition (#44, !28)
* Add F2FS support for read disk usage, grow, and check (!29)
* Replace String::ucompose() with Glibmm equivalent (#46, !31)
* Always show menu images (!32)
* Save partition layout to gparted_details.htm (#639176)
* Could not stat device /dev/mapper/No RAID disks - No such file (#786031)
* File include/Partition.h: performance problem (#788813)
* File include/HBoxOperations.h: performance problem (#788814)
* Display more version and configuration information (!34)
* After GTK3 port icons are too big on KDE (#39, !35)
* Set partition type when clearing partition contents (!36)
* Fix slow refreshing of NTFS file systems (#47, !37)
* Fix minor issues with File System Support rescanning (!38)
* Modern Gtk3 - part 1 (!25)
* Improve partition information mount status formatting (#52)
* Request natural width in Gtk::ScrolledWindows for Gtk >= 3.22 (!39)
* Limit wrapping Gtk::Labels (!40)
* NTFS Resize results in Partition Information Warning on Refresh (#57, !42)
Code Credits
------------
Code enhancements are courtesy of Luca Bacci, Mike Fleetwood,
Antoine Viallon, and Jeremy Bicha.
Translations (new/updated)
--------------------------
be(Yuras Shumovich, Zmicer Turok), eo(Carmen Bianca Bakker),
es(Daniel Mustieles), fi(Jiri Grönroos), fr(Charles Monzat, Claude Paroz),
hu(Balázs Úr), id(Kukuh Syafaat), is(Sveinn í Felli),
ko(Seong-ho Cho), nl(Nathan Follens), plPiotr Drąg(),
pt_BR(Rafael Fontenelle), ru(Stas Solovey), sv(Anders Jonsson),
vi(Trần Ngọc Quân)
Dependencies (new/updated)
--------------------------
* gtkmm >= 3.4.0
* glibmm >= 2.32
* libparted >= 2.2
* yelp-tools
Dependencies (no longer needed)
-------------------------------
* gnome-doc-utils
* rarian
* rarian-compat
============================
GParted 0.33.0 (2018-12-13)
============================
Release Notes
-------------
This release of GParted includes enhancements, bug fixes and
language translation updates.
### Key changes include:
* Support copying and moving of unsupported partition content
* Add minix file system support
* Recognise APFS Apple file system
* Gtk2 code modernisation
Bug Fixes
---------
* Recognise APFS Apple file system (#23, !18)
* Fix tries to resize BTRFS mounted read-only (#10, !14)
* Update bug links from Bugzilla to GitLab issues (!11)
* Add minix file system support (!12)
* Support copying and moving of unsupported partition content (!13)
* Update GParted appdata file license (#12, !15)
* Gtk2 code modernisation (!17)
* Fix false usage figures for busy SWRAID members (#27, !19)
* Minor namespace and scope operator tidy-ups (!20)
Code Credits
------------
Code enhancements are courtesy of Luca Bacci, Mike Fleetwood, and
Curtis Gedak.
Translations (new/updated)
--------------------------
cs(Marek Černocký), da(Alan Mortensen), de(Mario Blättermann, Bernd Homuth),
el(Efstathios Iosifidis), eo(Kristjan Schmidt), es(Daniel Mustieles),
hr(gogo), id(Kukuh Syafaat), it(Milo Casagrande),
kk(Baurzhan Muftakhidinov), lt(Aurimas Černius), pl(Piotr Drąg),
pt_BR(Rafael Fontenelle), ro(Daniel Șerbănescu), ru(Stas Solovey),
sv(Anders Jonsson), tr(Emin Tufan Çetin)
Dependencies (new/updated)
--------------------------
* gtkmm >= 2.24.0
============================
GParted 0.32.0 (2018-08-22)
============================
Release Notes
-------------
This release of GParted includes enhancements, bug fixes and
language translation updates.
### Key changes include:
* Implement opening and closing of LUKS mappings
* Fix can't shrink LVM partition due to pvresize prompt
* Recognise additional GRUB2 core.img signatures
* Honour resize2fs minimum FS sizes
Bug Fixes
---------
* Desupport RHEL / CentOS 5 (#794253)
* Implement opening and closing of LUKS mappings (#795617)
* Fix null pointer check accidentally disabled (#796293)
* Add logo.png for automatic GitLab/GitHub project avatar
* Fix volume label is incorrect for bitlocker encrypted partitions (#795127)
* Update URL links to https://gparted.org (#796411)
* Avoid unnecessary string change (!1)
* Fix can't shrink LVM partition due to pvresize prompt (#1)(#2)(!3)
* Remove support for obsolete devkit-disks automount inhibitor (!2)
* Add GitLab CI jobs to build and test GParted (!4)
* Recognise additional GRUB2 core.img signatures (!5)
* Reduce the time taken by the GitLab CI jobs (!6)
* Stop xmllint scrollkeeper-omf.dtd fetch fail breaking CI tests (#9)(!7)
* Honour resize2fs minimum FS sizes (#8)(!8)
Code Credits
------------
Code enhancements are courtesy of Robert Ancell, Piotr Drąg and Mike
Fleetwood.
Translations (new/updated)
--------------------------
ar(Safa Alfulaij, Khalid Abu Shawarib), ca(Jordi Mas),
cs(Marek Černocký), da(Alan Mortensen), de(Mario Blättermann),
es(Daniel Mustieles), fi(Jiri Grönroos), fr(Claude Paroz),
fur(Fabio Tomat), kk(Baurzhan Muftakhidinov), lt(Aurimas Černius),
nl(Hannie Dumoleyn), pa(A S Alam), pl(Piotr Drąg),
pt_BR(Rafael Fontenelle), ro(Daniel Șerbănescu, Andre Klapper),
sv(Anders Jonsson), tr(Emin Tufan Çetin), vi(Trần Ngọc Quân),
zh_TW(Yi-Jyun Pan)
Dependencies (new/updated)
--------------------------
* glibmm >= 2.14.0
* gtkmm >= 2.16.0
============================
GParted 0.31.0 (2018-03-19)
============================
Release Notes
-------------
This release of GParted includes enhancements, bug fixes and
language translation updates.
### Key changes include:
* Add support for changing UDF label/uuid and show UDF disk usage
* Rollback specific failed partition change steps
Bug Fixes
---------
* Report libparted messages in log at point in which these occur (#790842)
* Avoid libparted failing to inform kernel about partition changes (#790418)
* Rollback specific failed partition change steps (#791875)
* Add support for changing UDF label/uuid and show UDF disk usage (#792052)
* Base Min and Max size of the UDF partition/disk on block size (#787204)
* Reduce dependency on scrollkeeper (#743318)
Code Credits
------------
Code enhancements are courtesy of Pali Rohár, Mike Fleetwood, and
Curtis Gedak.
Translations (new/updated)
--------------------------
ar(Khaled Hosny), cs(Marek Cernocky), da(Alan Mortensen, Ask Hjorth Larsen),
de(Mario Blättermann, Christian Kirbach), es(Daniel Mustieles),
fr(Claude Paroz), hr(gogo), hu(Balázs Úr), id(Kukuh Syafaat),
it(Milo Casagrande), kk(Baurzhan Muftakhidinov), lt(Aurimas Černius),
lv(Rūdolfs Mazurs), nl(Justin van Steijn, Nathan Follens),
pl(Piotr Drąg), pt_BR(Rafael Fontenelle), ro(Daniel Șerbănescu),
sr(Мирослав Николић), sr@latin(Miroslav Nikolić), sv(Anders Jonsson)
vi(Trần Ngọc Quân)
Dependencies (new/updated)
--------------------------
* No change.
============================
GParted 0.30.0 (2017-10-10)
============================
Release Notes
-------------
This release of GParted includes an interim fix to enable running
GParted as root under Wayland in addition to other bug fixes and
language translation updates.
ATTENTION PACKAGERS:
The installation location of the gparted script has changed and
package scripts calling pkexec can be dropped.
This release provides an interim workaround to allow GParted to run
under Wayland by using xhost to grant and revoke root access to the
X11 display. This must be enabled while building the software with:
./configure --enable-xhost-root
Pkexec from polkit has been made the first choice graphical SU
program as all the desktops have settled on using polkit as the
privileged access mechanism. See "Installing polkit's Action File"
section in the README file for when an additional installation step
may be needed.
Also changed is that execution of the graphical SU program has been
moved from gparted.desktop to the gparted shell wrapper. Therefore
gparted can be run either by an unprivileged user or by root and as
such is installed in $prefix/bin rather than $prefix/sbin. This
additionally means distributions can drop their pkexec scripts used
to launch gparted.
### Key changes include:
* Interim fix for GParted fails to run as root under Wayland
* Fix reading Unicode labels when no FS specific tools available
* Safely quote and escape external programs arguments
Bug Fixes
---------
* Interim fix for GParted fails to run as root under Wayland (#776437)
* Fix message failed to execute "mkudffs" when not installed (#786050)
* Fix reading Unicode labels when no FS specific tools available (#786502)
* Update list of prohibited fat label characters (#787202)
* Fix detection of file system images (#787181)
* Safely quote and escape external programs arguments (#787203)
* Fix problems with space in device names (#649509)
* Remove minor bits of legacy from DMRaid module (#788007)
* Remove whole_device partition flag (#788308)
Code Credits
------------
Code enhancements are courtesy of Pali Rohár and Mike Fleetwood.
Translations (new/updated)
--------------------------
ca(Carles Ferrando Garcia, Jordi Mas), cs(Marek Černocký),
de(Mario Blättermann), en_GB(Andre Klapper), es(Daniel Mustieles),
fi(Jiri Grönroos), fr(Claude Paroz), hr(gogo),
hu(Gabor Kelemen, Balázs Meskó, Balázs Úr),
id(Kukuh Syafaat, Andika Triwidada), lv(Rūdolfs Mazurs),
nl(Hannie Dumoleyn), pl(Piotr Drąg),
pt_BR(Rafael Fontenelle, Andre Klapper),
ro(Daniel Șerbănescu, Andre Klapper),
sk(Dušan Kazik), sr(Мирослав Николић), sr@latin(Miroslav Nikolić),
sv(Anders Jonsson), vi(Trần Ngọc Quân), zh_CN(Andre Klapper),
zh_TW(Andre Klapper)
Dependencies (new/updated)
--------------------------
* Uses pkexec command (part of polkit) for root privilege escalation
when available.
* Uses xhost command to grant and revoke root access to the display
when configured to do so.
============================
GParted 0.29.0 (2017-08-07)
============================
Release Notes
-------------
This release of GParted includes enhancements, bug fixes and
language translation updates.
### Key changes include:
* Add support for UDF file system
* Fix segmentation fault on disk with corrupted FAT file system
* Fix snap-to-alignment of operations creating partitions
Bug Fixes
---------
* Fix segmentation fault on disk with corrupted FAT file system (#777973)
* Fix snap-to-alignment of operations creating partitions (#779339)
* Fix btrfs partitions mounted with whitespace cannot be resized (#782681)
* Add Google Test C++ test framework (#781978)
* Fix LVM2 PV detected regardless if second magic matches or not (#783997)
* Fix no longer detecting btrfs change UUID capability (#784467)
* Fix setting empty label when creating FAT16/32 file systems (#784564)
* Add support for UDF file system (#784533)
* Fix make distcheck fails with *.Po: No such file or directory (#785308)
Code Credits
------------
Code enhancements are courtesy of Pali Rohár and Mike Fleetwood.
Translations (new/updated)
--------------------------
cs(Marek Cernocky), da(Alan Mortensen), de(Mario Blättermann),
es(Daniel Mustieles), fi(Jiri Grönroos), fr(Claude Paroz), hr(gogo),
id(Kukuh Syafaat), kk(Baurzhan Muftakhidinov), pl(Piotr Drąg),
pt_BR(Rafael Fontenelle), ro(Daniel Șerbănescu), sv(Anders Jonsson),
tr(Emin Tufan Çetin)
Dependencies (new/updated)
--------------------------
* udftools package is required for optional udf file system support.
============================
GParted 0.28.1 (2017-02-17)
============================
Release Notes
-------------
This release of GParted restores the ability to move/resize primary
partitions when an extended partition exists. The move/resize
regression was introduced in version 0.28.0. This release also
includes some minor bug fixes.
### Key changes include:
* Restore ability to resize/move primary if extended exists
* Make the Label File System and Name Partition dialogs larger
Bug Fixes
---------
* Make the Label File System and Name Partition dialogs larger (#778003)
* Work around make distcheck issue (#778628)
* Restore ability to resize/move primary if extended exists (#778700)
Code Credits
------------
Code enhancements are courtesy of Refael Sheinker and Curtis Gedak.
Translations (new/updated)
--------------------------
n/a
Dependencies (new/updated)
--------------------------
* no change.
============================
GParted 0.28.0 (2017-02-14)
============================
Release Notes
-------------
This release adds partial read-write support for LUKS encrypted file
systems. GParted can't create, open or close LUKS encryption
volumes; however it can copy, resize and manipulate file systems
inside open LUKS volumes and move closed LUKS volumes. (Resizing
requires Linux kernel >= 3.6 and libparted >= 3.2 for online
partition resizing).
Also included are bug fixes and language translation updates.
REMINDER:
You are strongly advised to backup you data before editing
partitions as a failure can lead to data loss. This is especially
true for encrypted data where all of the data can become permanently
inaccessible after a failure. Please refer to the Cryptsetup FAQ [1]
for backup and recovery advice of encrypted data.
[1]: https://gitlab.com/cryptsetup/cryptsetup/wikis/FrequentlyAskedQuestions
### Key changes include:
* Implement LUKS read-write actions NOT requiring a passphrase
* Add detection of iso9660 file system
Bug Fixes
---------
* Implement LUKS read-write actions NOT requiring a passphrase (#774818)
* Fix mount column shown for non-mounted encrypted file systems (#775475)
* Refactor mostly applying of operations (#775932)
* Update help with additional partition flags (#776002)
* Include sys/sysmacros.h for major and minor macros (#776173)
* Add detection of iso9660 file system (#771244)
Code Credits
------------
Code enhancements are courtesy of Michał Górny, Mike Fleetwood
and Curtis Gedak.
Translations (new/updated)
--------------------------
cs(Marek Černocký), da(Alan Mortensen), de(Bernd Homuth, Mario Blättermann),
es(Daniel Mustieles), fr(Alexandre Franke, Julien Hardelin),
id(Andika Triwidada), kk(Baurzhan Muftakhidinov), lt(Aurimas Černius),
pl(Piotr Drąg), pt_BR(Rafael Fontenelle), sk(Dušan Kazik),
sl(Matej Urbančič), sr(Мирослав Николић), sr@latin(Miroslav Nikolić),
sv(Josef Andersson), vi(Trần Ngọc Quân)
Dependencies (new/updated)
--------------------------
* cryptsetup command is required to work with LUKS encrypted
volumes.
============================
GParted 0.27.0 (2016-10-19)
============================
Release Notes
-------------
This release of GParted improves handling of devices with multiple
device paths and includes bug fixes and language translation
updates.
### Key changes include:
* Recognize GRUB2 core.img
* Fix Mount Point column is wider than the screen on openSUSE
* Make GParted exit when closed before the initial load completes
Bug Fixes
---------
* Recognize GRUB2 core.img (#766989)
* Fix file system usage missing when tools use alt blk dev names (#767842)
* Fix sscanf modifier for long long (#768239)
* Fix duplicate mounts shown for unmounted encrypted file systems (#771323)
* Fix usage of active encrypted swap is not shown (#771670)
* Include extended partitions in the count of active partitions
* Fix Mount Point column is wider than the screen on openSUSE (771693)
* Make GParted exit when closed before the initial load completes (771816)
* Prevent the UI hanging while gpart data rescue is running (#772123)
* Add language headers to po files
Code Credits
------------
Code enhancements are courtesy of Natanael Copa, Piotr Drąg and Mike
Fleetwood.
Translations (new/updated)
--------------------------
da(Alan Mortensen), en_GB(David King, Chris Leonard), es(Daniel Mustieles),
eu(Inaki Larranaga Murgoitio), fi(Jiri Grönroos), hr(gogo),
hu(Balázs Úr), id(Andika Triwidada), is(Sveinn í Felli),
kk(Baurzhan Muftakhidinov), lt(Aurimas Černius), pl(Piotr Drąg),
pt(Tiago Santos), ro(Daniel Șerbănescu), sr(Мирослав Николић),
sr@latin(Miroslav Nikolić), sv(Anders Jonsson), uk(Daniel Korostil)
Dependencies (new/updated)
--------------------------
* no change.
============================
GParted 0.26.1 (2016-06-13)
============================
Release Notes
-------------
This release of GParted ensures creation of 32bit ext4 partitions
when the size is less than 16 TiB. This improves compatibility with
existing boot loaders. Also included are bug fixes and language
translation updates.
### Key changes include:
* Ensure boot loaders work on ext4 < 16 TiB by using 32bit feature
* Fix core dump crash in OperationDelete::get_partition_new()
Bug Fixes
---------
* Clean up partition path "copy of /dev/SRC" code ugliness (#766349)
* Fix PedGeometry objects are memory leaked (#767009)
* Multiple boot loaders don't work on 64bit EXT4 file systems (#766910)
* Fix core dump crash in OperationDelete::get_partition_new() (#767233)
Code Credits
------------
Code enhancements are courtesy of Mike Fleetwood.
Translations (new/updated)
--------------------------
cs(Marek Černocký), de(Wolfgang Stöggl), es(Daniel Mustieles),
fr(Alexandre Franke), gd(GunChleoc), it(Milo Casagrande),
kk(Baurzhan Muftakhidinov), pa(A S Alam), pl(Piotr Drąg),
pt_BR(Enrico Nicoletto), ro(Daniel Șerbănescu), sk(Dušan Kazik),
sv(Anders Jonsson)
Dependencies (new/updated)
--------------------------
* no change.
============================
GParted 0.26.0 (2016-04-26)
============================
Release Notes
-------------
This release adds read-only support for LUKS encrypted file systems.
GParted identifies these with the addition of "[Encrypted]" and can
show the file system within an open LUKS encrypted mapping. However
this release can not open or close the LUKS encryption and can not
modify the encrypted file system within. Other changes include bug
fixes and language translation updates.
### Key changes include:
* Implement read-only LUKS support
* Add progress bars to NTFS, XFS, and EXT2/3/4 file system copy methods
* Fix operations sometimes fail with: No such file or directory
Bug Fixes
---------
* Implement Partition object polymorphism (#759726)
* Implement read-only LUKS support (#760080)
* Add progress bars to XFS and EXT2/3/4 file system copy methods (#760709)
* Add progress bar to NTFS file system specific copy method (#762366)
* Use a single progress bar for entire internal copy operation (#762367)
* Fix autoconf check for C++11 Gtk::Window::set_default_icon_name (#762184)
* Limit FAT32 maximum volume size to 2 TiB (#763896)
* Enable C++11 compilation when using libsigc++ 2.5.1 and later (#758545)
* Use realpath safely (#764369)
* Fix crash reading NTFS usage when there is no /dev/PTN entry (#764658)
* Fix operations sometimes fail with: No such file or directory (#762941)
* Add missing gettext translation tag to AppData file
Code Credits
------------
Code enhancements are courtesy of Richard Hughes and Mike Fleetwood.
Translations (new/updated)
--------------------------
cs(Marek Černocký), de(Mario Blättermann),
el(Tom Tryfonidis, Γιάννης Κουτσούκος), es(Daniel Mustieles),
fr(Claude Paroz), hu(Balázs Úr), is(Sveinn í Felli),
it(Milo Casagrande), ko(Seong-ho Cho), lt(Aurimas Černius),
nl(Hannie Dumoleyn), oc(Cédric Valmary), pl(Piotr Drąg),
pt_BR(Rafael Fontenelle), ro(Daniel Șerbănescu), ru(Stas Solovey),
sk(Dušan Kazik), sr(Мирослав Николић), sr@latin(Miroslav Nikolić),
sv(Josef Andersson), tr(Muhammet Kara), zh_CN(Shi Jing, YunQiang Su)
Dependencies (new/updated)
--------------------------
* no change.
============================
GParted 0.25.0 (2016-01-18)
============================
Release Notes
-------------
The big news with this GParted release is the addition of progress
bars for checking and resizing ext2/3/4 partitions and for resizing
ntfs partitions. Other changes include bug fixes and language
translation updates.
### Key changes include:
* Add progress bar during additional ext2/3/4 and ntfs operations
* Enhance SWRaid member detection and file system clearing
* Always use blkid file system detection before libparted
Bug Fixes
---------
* Add progress bar during additional ext2/3/4 and ntfs operations (#467925)
* Enhance SWRaid member detection and file system clearing (#756829)
* Always use blkid file system detection before libparted (#757781)
* Rework Dialog_Partition_New::Get_New_Partition() (#757671)