-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathNEWS
2503 lines (2033 loc) · 91.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
============================
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)
* Fix missing "old end" value in detail log of en_CA translation (#756878)
* Make about dialog website link non-clickable (#758131)
* Fix temporary path name of new partitions (#759488)
* Fix partition names sometimes shown as file system labels (#759972)
* Revert tarball compression back to gzip (#760099)
Code Credits
------------
Code enhancements are courtesy of Phillip Susi, Mike Fleetwood and
Curtis Gedak.
Translations (new/updated)
--------------------------
de(Mario Blättermann, Wolfgang Stöggl), is(Sveinn í Felli),
nl(Hannie Dumoleyn), pt_BR(Rafael Fontenelle), sr(Мирослав Николић),
sr@latin(Miroslav Nikolić), tr(Kaan Özdinçer, Muhammet Kara, Necdet Yücel)
Dependencies (new/updated)
--------------------------
* no change.
============================
GParted 0.24.0 (2015-10-27)
============================
Release Notes
-------------
This release of GParted includes enhancements, bug fixes and
language translation updates.
### Key changes include:
* Display list of Logical Volumes in Partition Information dialog
* Add ZFS file system detection
* Add recognition of NVME devices
* Prevent hang labeling FAT16/32 if illegal chars in label
* Avoid core dump if invalid or non-existent device on command line
Bug Fixes
---------
* Add ZFS file system detection (#752862)
* Update documentation of GParted software dependencies (#753436)
* Configuration issues when using non-system location of libparted (#753525)
* Display list of Logical Volumes in Partition Information dialog (#754649)
* Add recognition of NVME devices (#755022)
* Updates to FileSystem:: and Utils::execute_command() functions (#754684)
* Fix issue with copy, reformat source logical partition and paste (#754827)
* Refactor operation merging (#755214)
* Prevent hang labeling FAT16/32 if illegal chars in label (#755608)
- Upper case FAT16/32 label per MS technet bb490925
* Enable C++11 compilation when using glibmm 2.45.40 and later (#756035)
* Check disks passed on command line are useable (#755495)
* Avoid core dump if invalid or non-existent device on command line (#756434)
Code Credits
------------
Code enhancements are courtesy of Wrolf Courtney, Albert Young, and
Mike Fleetwood.
Translations (new/updated)
--------------------------
cs(Marek Černocký), de(Wolfgang Stöggl), es(Daniel Mustieles),
fi(Jiri Grönroos), fr(Alexandre Franke, Claude Paroz), hu(Balázs Úr),
id(Andika Triwidada), it(Milo Casagrande), ko(Seong-ho Cho),
lt(Aurimas Černius), lv(Rūdolfs Mazurs), nb(Kjartan Maraas),
pl(Piotr Drąg), pt(Pedro Albuquerque), pt_BR(Rafael Fontenelle),
ro(Daniel Șerbănescu), ru(Stas Solovey), sk(Dušan Kazik),
sv(Anders Jonsson), uk(Daniel Korostil)
Dependencies (new/updated)
--------------------------
* Blkid command should be considered mandatory as it is required to
detect a number of file systems which libparted doesn't detect.
============================
GParted 0.23.0 (2015-08-03)
============================
Release Notes
-------------
This release of GParted includes enhancements, bug fixes and
language translation updates.
### Key changes include:
* Add partition name to create dialog and enable online naming
(relevant for GPT partitioned disk)
* Show serial number in device information
* Add support for btrfs set new file system UUID
* Prevent UI hang when resizing FAT16/32, HFS and HFS+ file systems
Bug Fixes
---------
* Only set LVM partition flag on tables which support it (#746204)
* Add partition name to create dialog and enable online naming (#746214)
* Fix some operations fail after paste into existing partition (#746559)
* Fix FileSystem object memory leaks in init_filesystems (#749036)
* Fix arcane cylinder size adjustment when copying and resizing (#749867)
* Reduce the amount of copying of partition objects (#750168)
* Refactor LVM2_PV_Info module interface and cache representation (#750582)
- Adjust pointers to prevent crash resizing a logical partition (#752587)
* Show serial number in device information (#751251)
* Add support for btrfs set new file system UUID(#751337)
* Prevent UI hang when resizing FAT16/32, HFS and HFS+ file systems (#737022)
* Add translation comments for code section setting partition flag (#752901)
Code Credits
------------
Code enhancements are courtesy of Mike Fleetwood and Curtis Gedak.
Translations (new/updated)
--------------------------
ca(Jordi Mas), cs(Marek Černocký), de(Wolfgang Stöggl),
es(Daniel Mustieles), fr(Alexandre Franke), gd(GunChleoc),
hu(Gábor Kelemen, Balázs Úr), is(Sveinn í Felli), it(Milo Casagrande),
kk(Baurzhan Muftakhidinov), pa(A S Alam), pl(Piotr Drąg),
pt_BR(Enrico Nicoletto), ro(Daniel Șerbănescu), ru(Stas Solovey),
sk(Dušan Kazik), sv(Josef Andersson, Anders Jonsson),
th(Akom Chotiphantawanon)
Dependencies (new/updated)
--------------------------
* hdparm command is required for optional display serial number device
information.
* btrfs-progs version >= 4.1 June 2015 package is required for
optional set new btrfs UUID.
============================
GParted 0.22.0 (2015-03-23)
============================
Release Notes
-------------
The big news with this release of GParted is support for
unpartitioned whole disk drives. With unpartitioned drive support,
GParted can now recognize and also format disk devices that do not
contain a partition table. Another new feature is support for GPT
partition names. This feature enables setting and viewing names on
GPT partitions. Also included are bug fixes and language
translation updates.
### Key changes include:
* Add read and write support for unpartitioned whole disk devices
* Add read and write support for GPT partition names
Bug Fixes
---------
* Add support for GPT partition names (#741424)
- Fix double quote error creating XFS file systems (#744108)
* Make swap usage match figures reported by swapon -s (#742647)
* Correct dialog title displaying libparted exceptions (#743825)
* GParted cannot recognise LVM signature on unpartitioned drive (#741430)
* Nilfs2 file system is unusable on RHEL/CentOS 6 (#742741)
* Add unpartitioned drive read-write support (#743181)
* If available use udisks2-inhibit to prevent automounting (#745349)
Code Credits
------------
Code enhancements are courtesy of Mike Fleetwood, Michael Zimmermann,
Phillip Susi, and Curtis Gedak.
Translations (new/updated)
--------------------------
bs(Samir Ribic), cs(Marek Černocký), de(Wolfgang Stöggl),
el(Maria Mavridou, Γιάννης Κουτσούκος), es(Daniel Mustieles),
fr(Alexandre Franke), hu(Balázs Úr), is(Sveinn í Felli),
it(Marco Ciampa, Milo Casagrande), kk(Baurzhan Muftakhidinov),
lt(Aurimas Černius), nl(Hannie Dumoleyn), pl(Piotr Drąg),
pt_BR(Enrico Nicoletto), ru(Stas Solovey), sk(Dušan Kazik),
sv(Josef Andersson), tr(Muhammet Kara), uk(Daniel Korostil),
zh_TW(Cheng-Chia Tseng)
Dependencies (new/updated)
--------------------------
* no change.
============================
GParted 0.21.0 (2015-01-26)
============================
Release Notes
-------------
This release of GParted includes enhancements, bug fixes and
language translation updates. One fix involves an error introduced
in 0.15.0 whereby GParted's internal block copy has an off by one
sector bug when the source is before the destination; and the copy
is performed backwards from high block to low block. The problem
results in incorrect last sectors in partitions.
### Key changes include:
* Fix off by one sector error in GParted internal block copy
* Add support for ext4 on RHEL/CentOS 5.x
* Remove unnecessary duplicate actions when resizing a partition
Bug Fixes
---------
* Fix off by one sector error in GParted internal block copy (#742920)
* Add support for ext4 on RHEL/CentOS 5.x (#738706)
* Add ReFS file system detection (#738471)
* Use pkg-config to check for version of libparted (#740004)
* Remove unnecessary duplicate actions when resizing a partition (#741211)
* Correctly capitalise GNOME in the Manual and man page (#739805)
* Allow creation of reiser4 file systems on Linux 3.x (#742511)
* Add keywords in .desktop file to improve application discovery
Code Credits
------------
Code enhancements are courtesy of Mike Fleetwood, Phillip Susi and
Richard Hughes.
Translations (new/updated)
--------------------------
cs(Marek Černocký), de(Wolfgang Stöggl), es(Daniel Mustieles),
fi(Timo Jyrinki), fr(Alexandre Franke), hu(Balázs Úr),
it(Milo Casagrande), kk(Baurzhan Muftakhidinov), pl(Piotr Drąg),
pt_BR(Rafael Ferreira, Enrico Nicoletto), sr(Мирослав Николић),
sr@latin(Miroslav Nikolić), sv(Anders Jonsson), uk(Daniel Korostil)
Dependencies (new/updated)
--------------------------
* no change.
============================
GParted 0.20.0 (2014-10-20)
============================
Release Notes
-------------
This release of GParted improves resizing multi-device btrfs file
systems. Also included are language translation updates.
### Key changes include:
* Include devid when resizing multi-device btrfs file systems
* Add GRUB 2 restoration steps to help manual
Bug Fixes
---------
* Fix devid needed when resizing multi-device btrfs file systems (#723842)
* Fix warnings and missing label with btrfs-progs 3.12 and 3.14 (#733601)
* Fix ./configure is successful even when C++ compiler is missing (#732803)
* Add GRUB 2 restoration steps to help manual (#734376)
* Cleanup autoconf configure.ac and related files (#734718)
- All fat16 and fat32 moves performed by GParted internal algorithm
* Autodetect parted online partition resizing capability (#734076)
- Tidy up autoconf check for --disable-doc and --enable-libparted-dmraid
* Prevent automake warning about deprecated INCLUDES (#735742)
* Reduce display flashing when refreshing devices (#696149)
Code Credits
------------
Code enhancements are courtesy of Mike Fleetwood and Curtis Gedak.
Translations (new/updated)
--------------------------
cs(Marek Černocký), es(Daniel Mustieles), de(Wolfgang Stöggl),
fr(Claude Paroz), gd(GunChleoc), hu(Balázs Úr),
id(Andika Triwidada), it(Milo Casagrande), nl(Hannie Dumoleyn),
pl(Piotr Drąg), pt(Tiago S, Duarte Loreto), pt_BR(Enrico Nicoletto),
sk(Dušan Kazik), sr(Мирослав Николић), sr@latin(Miroslav Nikolić),
sv(Josef Andersson)
Dependencies (new/updated)
--------------------------
* no change.
============================
GParted 0.19.1 (2014-07-15)
============================
Release Notes
-------------
This release of GParted includes a critical bug fix for a potential
crash. The crash is rare, but if the crash happens while applying
operations then data loss might occur. Also included are language
translation updates.
### Key changes include:
* Prevent crash caused by cross thread write after free in _OnReadable()
Bug Fixes
---------
* Prevent cross thread write after free in _OnReadable() (#731752)
Code Credits
------------
Code enhancements are courtesy of Mike Fleetwood.
Translations (new/updated)
--------------------------
ar(Safa Alfulaij, Abderrahim Kitouni), de(Wolfgang Stöggl),
el(MarMav, Tom Tryfonidis), es(Daniel Mustieles), it(Milo Casagrande),
pt_BR(Rafael Ferreira), ro(Daniel Șerbănescu), uk(Daniel Korostil)
Dependencies (new/updated)
--------------------------
* no change.
============================
GParted 0.19.0 (2014-06-10)
============================
Release Notes
-------------
This release of GParted includes some important bug fixes and
language translation updates.
### Key changes include:
* Refactor OperationDetail to address random crash behavior
* Make partition information dialog viewable on 800x600 screens
Bug Fixes
---------
* Refactor OperationDetail to address random crash behavior (#729139)
* Make partition information dialog viewable on 800x600 screens (#690542)
* Use e2image to move/copy ext[234] file systems (#721516)
* Prevent GLib-CRITICAL Source ID not found warning messages (#729800)
Code Credits
------------
Code enhancements are courtesy of Mike Fleetwood, Phillip Susi,
Piotr Drąg, and Curtis Gedak.
Translations (new/updated)
--------------------------
cs(Marek Černocký), da(Joe Hansen), de(Jan Simon), es(Daniel Mustieles),
fr(Alexandre Franke), gd(GunChleoc), id(Andika Triwidada), ko(Seong-ho Cho),
lv(Rūdolfs Mazurs), pl(Piotr Drąg), pt_BR(Rafael Ferreira), tr(Muhammet Kara)
Dependencies (new/updated)
--------------------------
* no change.
============================
GParted 0.18.0 (2014-02-19)
============================
Release Notes
-------------
This release of GParted fixes a resize/move problem introduced in
0.16.2 that set partition size smaller than ext2/3/4, ntfs, and
reiserfs file systems in certain situations. Also included are bug
fixes and language translation updates.
### Key changes include:
* Fix partition size less than ext2/3/4, ntfs, reiserfs file system
* Prevent crash when creating new partition on disk with loop label
Bug Fixes
---------
* Fix partition size less than ext2/3/4, ntfs, reiserfs file system (#723543)
* Fix default partition table can not handle > 2 TiB disks (#711098)
* Prevent crash when creating new partition on disk with loop label (#721988)
* Replace obsolete FSF postal address in copyright notices (#721565)
* Make file system support dialog viewable on 800x600 screens (#342682)
* Add BitLocker disk encryption detection (#723232)
Code Credits
------------
Code enhancements are courtesy of Mike Fleetwood, Phillip Susi,
Daniel Mustieles, and Curtis Gedak.
Translations (new/updated)
--------------------------
cs(Marek Černocký), el(Dimitris Spingos), es(Daniel Mustieles),
fr(Claude Paroz), gd(GunChleoc), gl(Fran Diéguez), hu(Gabor Kelemen),
ko(Seong-ho Cho), lt(Aurimas Černius), sr(Мирослав Николић),
sr@latin(Miroslav Nikolić), uk(Daniel Korostil)
Dependencies (new/updated)
--------------------------
* no change.
============================
GParted 0.17.0 (2013-12-09)
============================
Release Notes
-------------
This release of GParted adds the ability to perform online resizing
for systems that support this capability. Also included are bug
fixes and language translation updates.
### Key changes include:
* Add support for online resize
- requires patched version of libparted, kernel >= 3.6, and a config flag
- See README for more details
* Recognize Linux Swap Suspend and Software RAID partitions
* Fix busy detection for Linux Software RAID and extended partitions
* Fix systemctl runtime mask to prevent automounting partitions
Bug Fixes
---------
* Add support for online resize (#694622)
* Fix usage of swap space is not reported (#708107)
* Turn on resize2fs progress bar (#709276)
* Fix systemctl runtime mask to prevent automounting partitions (#708378)
* Stop using deprecated method free_colors() (part of #652044)
* Stop using deprecated widget alignment enumerators (part of #652044)
* Recognize Linux Swap Suspend and Software RAID partitions (#709640)
- Prevent GParted starting stopped Linux Software RAID arrays
* Fix busy detection for Linux Software RAID and extended partitions (#712633)
* Make partition information dialog warnings selectable (#705596)
* Change default file system to ext4 with fall back to ext3/2 (#711114)
* Add an AppData file (#709164)
- Thanks to Piotr Drąg for making the AppData file translatable
Code Credits
------------
Code enhancements are courtesy of Mike Fleetwood, Phillip Susi,
Richard Hughes, and Curtis Gedak.
Translations (new/updated)
--------------------------
cs(Marek Černocký), de(Christian Kirbach), fr(Claude Paroz),
it(Milo Casagrande), lv(Rūdolfs Mazurs), ml(Anish Sheela),
pl(Piotr Drąg), pt_BR(Rafael Ferreira), ro(Daniel Șerbănescu),
tr(Muhammet Kara), zh_HK(Chao-Hsiung Liao), zh_TW(Chao-Hsiung Liao)
Dependencies (new/updated)
--------------------------
* Optionally enable the capability to perform online resizes by
using configure flag --enable-online-resize if and only if you
have an "online-resize" patched version of libparted and Linux
kernel >= 3.6.
============================
GParted 0.16.2 (2013-09-18)
============================
Release Notes
-------------
This release of GParted includes some important bug fixes and
language translation updates.
### Key changes include:
* Fix crash if click apply before pending operations fully displayed
* Fix FAT16/32 labels are sometimes shown corrupted
* Fix regression - linux-swap resize broken
* Fix to not hide the progress of the tools used - ntfsresize
Bug Fixes
---------
* Fix crash if click apply before pending operations fully displayed (#699452)
* Enable .desktop prompt for root on default openSUSE installation (#699626)
* Fix FAT16/32 labels are sometimes shown corrupted (#700228)
- Combine duplicate code for fat16/fat32
* Fix setting the backup boot sector when resizing NTFS (#701075)
- Requires a future version of ntfs-3g with enhanced ntfsresize
- Enables whole partition use when resizing ext2/3/4, ntfs and reiserfs
* Set NTFS minimum partition size to 2 MiB (#697848)
* Make include guards unique (#539297)
- Remove unused read-only functionality from internal block copy
* Ensure running GParted is named correctly under GNOME Shell (#705323)
* Clear btrfs file system super block mirror copies too (#705426)
* Prepare for btrfs tools using IEC prefix multipliers (#706914)
* Add create_with_label flag to FS structure (#701569)
* Inhibit systemd automounting (#701676)
- Only permit one GParted instance to run at a time
* Stop using "locate" for gnome-doc-utils check in autogen.sh (#702040)
* Fix name changes in dosfstools 3.0.18+ breaking FAT16/32 support (#704629)
* Fix to not hide the progress of the tools used - ntfsresize (#697662)
* Fix regression - linux-swap resize broken (#706604)
* Update Help Manual with GPT flags and Force Cancel button (#707070)
* Add missing colon to label in en_CA translation (#685735)
* Ensure active tense of mount menu option in en_CA translation (#694700)
Code Credits
------------
Code enhancements are courtesy of Mike Fleetwood, Sinlu Bes and
Curtis Gedak.
Translations (new/updated)
--------------------------
cs(Marek Černocký), da(Joe Hansen), el(Dimitris Spingos),
es(Daniel Mustieles), fi(Jiri Grönroos, Ville-Pekka Vainio),
fr(Claude Paroz), gl(Fran Diéguez), id(Andika Triwidada),
ja(OKANO Takayoshi), ko(Seong-ho Cho), pt_BR(Enrico Nicoletto),
ru(Yuri Myasoedov), sk(Dušan Kazik), sr(Мирослав Николић),
sr@latin(Мирослав Николић), th(Akom Chotiphantawanon), uk(Daniel Korostil),
zh_TW(Chao-Hsiung Liao)
Dependencies (new/updated)
--------------------------
* Optionally configure to use xdg-su if gksudo, gksu, and kdesudo are
not installed
============================
GParted 0.16.1 (2013-04-30)
============================
Release Notes
-------------
This release of GParted includes another critical bug fix for a
potential crash that might cause loss of data while moving or
copying a partition. We strongly recommend that all users of
GParted 0.15.0 and 0.16.0 upgrade to GParted 0.16.1 to avoid data
loss.
### Key changes include:
* Avoid another crash in GParted when moving or copying partitions
* Fix GParted doesn't compile on RHEL / CentOS 5.9
Bug Fixes
---------
* Avoid another crash in GParted when moving or copying partitions (#697727)
* Fix GParted doesn't compile on RHEL / CentOS 5.9 (#695279)
* Recognise HFSX variant as an HFS+ file system (#698876)
Code Credits
------------
Code enhancements are courtesy of Phillip Susi and Mike Fleetwood.
Translations (new/updated)
--------------------------
None.
Dependencies (new/updated)
--------------------------
* no change.
============================
GParted 0.16.0 (2013-04-24)
============================
Release Notes
-------------
This release of GParted includes a critical bug fix for a crash that
might cause loss of data while moving or copying a partition. We
strongly recommend that all users of GParted 0.15.0 upgrade to
GParted 0.16.0 to avoid data loss. Also included are bug fixes,
enhancements and language translation updates.
### Key changes include:
* Avoid crash in GParted when moving or copying partitions
* Fix GParted scans forever blank disk in virtual machine
* Add support for f2fs file system
Bug Fixes
---------
* Avoid crash in GParted when moving or copying partitions (#697727)
* Fix GParted scans forever blank disk in virtual machine (#697518)
* Add support for f2fs file system (#695396)
* Improve clearing of file system signatures (#688882)
* Fix absolutely full ntfs reported as error (#697946)
Code Credits
------------
Code enhancements are courtesy of Mike Fleetwood, Patrick Verner,