This repository has been archived by the owner on Jul 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathNEWS
1383 lines (1134 loc) · 50.2 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.14.0 (2012-10-10)
============================
Release Notes
-------------
The big news with this release of GParted is the ability to move,
resize, check, create, and delete physical volumes under Logical
Volume Management (lvm2 pv). Also included are bug fixes and
language translation updates.
### Key changes include:
* Add LVM PV read-write support
* Fix crash when pressing Esc in dialogs with number entry
Bug Fixes
---------
* Add LVM PV read-write support (#670171)
- Thanks to Mike Fleetwood for this 20 piece patch set
* Fix crash when pressing Esc in dialogs with number entry (#682658)
- Ubuntu launchpad #375095
- Thanks to Mike Fleetwood for this small patch
* Ignore invalid reiserfs UUIDs (#684115) which includes:
- Switch to using debugreiserfs to read the UUID
- Switch to using jfs_tune to read the UUID
- Update file system specific validation of RFC 4122 UUIDs for
btrfs, ext2, ext3, ext4, jfs, linux_swap, nilfs2, reiser4,
reiserfs, and xfs.
- Switch to using debugfs.reiser4 to read the label
- Thanks to Mike Fleetwood for this patch set
* Fix mounted file system size and usage determination for ext2/3/4 (#683255)
- Thanks to Mike Fleetwood for this patch set
Translations (new/updated)
--------------------------
cs(Marek Černocký), es(Daniel Mustieles), fr(Claude Paroz),
gl(Fran Diéguez, Leandro Regueiro), hu(Gabor Kelemen),
id(Andika Triwidada), it(Milo Casagrande), ko(Seong-ho Cho),
lt(Aurimas Černius), ml(Ani Peter), pl(Piotr Drąg), pt_BR(Djavan Fagundes),
sl(Matej Urbančič), sr(Мирослав Николић), sr@latin(Мирослав Николић),
th(Akom Chotiphantawanon), uk(Daniel Korostil), zh_HK(Chao-Hsiung Liao),
zh_TW(Chao-Hsiung Liao)
Dependencies (new/updated)
--------------------------
* no change.
============================
GParted 0.13.1 (2012-08-08)
============================
Release Notes
-------------
This release of GParted fixes a failure to mount rescued file
systems larger than 2 GiB or file systems that start after the
initial 2 GiB of the disk device. Also includes language
translations updates.
### Key changes include:
* Fix failure creating read-only view of rescued file systems
Bug Fixes
---------
* Fix failure creating read-only view of rescued file systems (#680740)
- Thanks to Joan Lledó for this small patch
Translations (new/updated)
--------------------------
de(Christian Kirbach), el(Tom Tryfonidis), kk(Baurzhan Muftakhidinov),
lt(Aurimas Černius), nn(Yngve Spjeld Landro, Åsmund Skjæveland),
pt_BR(Enrico Nicoletto), sr(Мирослав Николић), sr@latin(Мирослав Николић),
zh_CN(Wylmer Wang)
Dependencies (new/updated)
--------------------------
* no change.
============================
GParted 0.13.0 (2012-07-13)
============================
Release Notes
-------------
This release of GParted adds the ability to show if partition size
differs from file system size. This new feature enables you to
identify unallocated space within a partition and can suggest how
you can put this space to good use. Also included are bug fixes
and language translation updates.
### Key changes include:
* Show difference if partition size differs from file system size
* Avoid end partition overlap when resizing extended partition
Bug Fixes
---------
* Show difference if partition size differs from file system size (#499202)
- Thanks to Mike Fleetwood for this significant patch set
* Avoid end partition overlap when resizing extended partition (#678831)
* Provide credit in About dialog for significant contributions (#678486)
* Fix spelling mistakes en_CA translation (#676598, #677964, #678362)
Translations (new/updated)
--------------------------
ar(Ahmad Gharbeia), bg(Alexander Shopov), en_CA(Curtis Gedak),
es(Daniel Mustieles), id(Andika Triwidada), it(Milo Casagrande),
lv(Rūdolfs Mazurs), nl(Rogier Goossens), po(Piotr Drąg),
ru(Aleksej Kabanov), sk(Pavol Klačanský), sl(Matej Urbančič),
zh_CN(Wylmer Wang)
Dependencies (new/updated)
--------------------------
* no change.
============================
GParted 0.12.1 (2012-04-09)
============================
Release Notes
-------------
This release enables GParted to use the new file system resize
library (for FAT16/32 and HFS/+) available with parted 3.1. Also
included are bug fixes and language translation updates.
### Key changes include:
* Enable new file system resize library available with parted-3.1
* Handle more than 15 partitions on a disk device with parted-3.1
* Ensure space for EBR when resizing Extended partition
* Ensure Align to MiB does not overlap following partition
Bug Fixes
---------
* Enable minimal file system resize API (FAT and HFS* only) (#668281)
- Requires libparted-3.1+
- Thanks go to Jim Meyering for returning FAT16/32 and HFS/+
file system resizing ability in a new library with parted 3.1.
* Properly handle more than 15 partitions on a disk (#632345)
- Requires libparted-3.1+
* Ensure space for EBR when resizing Extended partition (#664050)
* Improve reiser4 file system uuid reading method
- Thanks to Mike Fleetwood for this small patch
* Fix uninitialised read when pasting into an existing partition (#672654)
- Thanks to Mike Fleetwood for this small patch
* Fix for FS size & flags becoming unknown after change UUID (#673245)
& Fix for FS flags becoming unknown after change label
- Thanks to Rogier Goossens for these patches
* Fix attempt data rescue fail to open read-only view (#673246)
- Thanks to Joan Lledó for this small patch
* Add requested partition details to log if resize/move fails
* Use cached method first to read UUID to shorten device scan time
* Rework Align to MiB adjustments to end sector of partition
* Ensure Align to MiB does not overlap following partition (#661744)
* Fix two typos in en_CA translation (#670097)
* Fix typographical error in en_CA translation (#672359)
Translations (new/updated)
--------------------------
ar(Khaled Hosny), cs(Marek Černocký), da(Ask H. Larsen),
de(Mario Blättermann), es(Daniel Mustieles), fa(Arash Mousavi),
fr(Claude Paroz), gl(Fran Diéguez), it(Milo Casagrande),
lt(Algimantas Margevičius), lv(Rudolfs Mazurs), ml(Anish A),
nb(Kjartan Maraas), pl(Piotr Drąg), pt_BR(Gabriel Speckhahn),
ro(Daniel Șerbănescu), sl(Matej Urbančič), sr(Мирослав Николић),
sr@latin(Мирослав Николић), sv(Daniel Nylander), te(Sasi Bhushan Boddepalli),
uk(Daniel Korostil)
Dependencies (new/updated)
--------------------------
* no change.
============================
GParted 0.12.0 (2012-02-21)
============================
Release Notes
-------------
This release of GParted adds some exciting new features, and
includes bug fixes and language translation updates.
### Key changes include:
* Add support for nilfs2 including resizing
* Add ability to change UUID
* Add read-only support for LVM PVs
* Enable GPT expansion when growing RAID
Bug Fixes
---------
* Add support for nilfs2 including resizing (#642842)
- Requires libparted 2.4+ or utils-linux 2.20+ for nilfs2 detection
- Requires nilfs-utils 2.1+ and Linux 3.0+ for nilfs2 resize support
- Thanks to Mike Fleetwood for these patches
* Prevent unitialized OperationDetail member access
- Thanks to Mike Fleetwood for this small patch
* Create common methods for mount and umount in btrfs, jfs, nilfs2, and xfs
- Thanks to Mike Fleetwood for these patches
* Add read-only support for LVM PVs (#160787)
- Thanks to Mike Fleetwood for these patches
* Don't ignore any errors resizing btrfs on Linux >= 3.2 (#669389)
- Thanks to Mike Fleetwood for these patches
* Display pop-up dialog on libparted exceptions
- Fixes Bug #566935 - Unable to expand GPT partition when growing RAID
- Thanks to Phillip Susi for this patch
* Reduce graphic processing requirement for pulse bar
- Debian #499193 - gparted: 100% cpu usage
- Debian #519764 - gparted: Lots of animation makes use over SSH
X-tunnel slow
* Add support to change UUID (#667278)
- Thanks to Rogier Goossens for these patches
* Fix detection of multiple SW RAID (md) devices (#668486)
- Thanks to Rogier Goossens for this small patch
* Fix build to correctly link to gthread (#667412)
- Thanks to Vincent Untz for this small patch
* Fix long scan problem when BIOS floppy setting incorrect (#667511)
- Ubuntu launchpad #910379
* Enhance documentation for UUIDs and copying partitions (#608308)
* Fix en_CA parameter missing percent sign translation error (#660180)
* Avoid warning display when moving start of extended partition
* Increase FAT32 minimum size to 33 MiB (#668491)
* Fix regression when shrinking, moving and copying swap (#670017)
Translations (new/updated)
--------------------------
cs(Marek Černocký), da(Joe Hansen), de(Mario Blättermann, Christian Kirbach),
es(Daniel Mustieles), fr(Bruno Brouard), gl(Fran Diéguez),
hu(Gabor Kelemen), ja(Jiro Matsuzawa), kk(Baurzhan Muftakhidinov),
ml(Anish A), nb(Kjartan Maraas), pl(Piotr Drąg), pt(António Lima),
ru(Yuri Myasoedov), sl(Matej Urbančič), sr(Мирослав Николић),
sr@latin(Мирослав Николић), te(Praveen Illa)
Dependencies (new/updated)
--------------------------
* nilfs-utils package is required for optional nilfs2 support.
- nilfs2 resizing requires nilfs-utils 2.1+ and Linux 3.0+.
* ntfs-3g advanced release version >= 2012.1.15AR is required to change
NTFS UUID
- requires new ntfslabel options --new-serial and --new-half-serial.
- NOTE: ntfs-3g stable 2012.1.15 does not yet support changing NTFS UUID
============================
GParted 0.11.0 (2011-12-13)
============================
Release Notes
-------------
This release of GParted adds some volume label improvements, and
includes bug fixes and language translation updates.
### Key changes include:
* Display ext2/3/4, ntfs, and btrfs unicode volume labels properly
* Add labelling of btrfs file systems
* Enable XFS copy to new smaller partition
Bug Fixes
---------
* Display ext2/3/4 unicode volume labels properly (#662537)
* Display ntfs unicode volume labels properly
- Ubuntu launchpad #614994
* Fix FAT16/32 label displayed as uppercase (#625337)
* Add labelling of btrfs file systems (#663207)
- Thanks to Mike Fleetwood for small patch
- Requires btrfs-tools package yet-to-be-released (> Oct 25, 2011)
* Fix btrfs volume label reading (#663590)
- Thanks to Mike Fleetwood for small patch
* Enable XFS copy to new smaller partition (#663806)
- Thanks to Stephen Kirkby for small reverse umount order patch
* Use newer btrfs multi-tool control command first (#663884)
- Thanks to Mike Fleetwood for this patch
* Avoid redundant file system maximize actions (#663980)
Translations (new/updated)
--------------------------
cs(Marek Černocký), da(Joe Hansen), ru(Andrey Germanov),
sr(Мирослав Николић), sr@latin(Мирослав Николић), uk(Daniel Korostil),
zh_HK(Chao-Hsiung Liao), zh_TW(Chao-Hsiung Liao)
Dependencies (new/updated)
--------------------------
* no change.
============================
GParted 0.10.0 (2011-11-01)
============================
Release Notes
-------------
This release of GParted adds a few new features, and includes bug
fixes and language translation updates.
### Key changes include:
* Merge overlapping operations
* Add ability to resize btrfs file systems
* Add detection of exfat file systems
Bug Fixes
---------
* Merge overlapping operations (#438573)
- Thanks to Jérôme Dumesnil for this patch
* Fix compile error with older gcc (#662174)
* Add ability to resize btrfs file systems (#661715)
* Add detection of exfat file systems (#639760)
Translations (new/updated)
--------------------------
bg(Alexander Shopov), de(Mario Blättermann), en_GB(Bruce Cowan),
es(Daniel Mustieles), fr(Claude Paroz), gl(Fran Dieguez),
hu(Gabor Kelemen), it(Milo Casagrande),
lt(Algimantas Margevičius, Aurimas Černius), lv(Rudolfs Mazurs),
pl(Piotr Drąg), pt_BR(Djavan Fagundes, Antonio Fernandes C. Neto),
ru(Yuri Myasoedov), sl(Matej Urbančič), sv(Daniel Nylander, Matej Urbančič),
tr(Muhammet Kara)
Dependencies (new/updated)
--------------------------
* no change.
============================
GParted 0.9.1 (2011-09-19)
============================
Release Notes
-------------
This release of GParted contains bug fixes and language translation
updates.
### Key changes include:
* Fix NTFS partition resize fail problem
* Fix some compiler warnings
Bug Fixes
---------
* Fix NTFS partition resize fail problem (#655215)
* Fix some compiler warnings
* Change some code attributes to local variables (#634090)
- Thanks to Markus Elfring for this patch
* Fix typo in string: director --> directory (#657744)
- Thanks to Tiffany Antopolski for this small patch
Translations (new/updated)
--------------------------
ar(Abdalrahim G. Fakhouri), cs(Marek Černocký), da(Kenneth Nielsen),
de(Mario Blättermann), en_CA(Tiffany Antopolski), es(Daniel Mustieles),
fr(Bruno Brouard, Alexandre Franke), gl(Fran Diéguez), hu(Gabor Kelemen),
it(Milo Casagrande), lv(Rudolfs Mazurs), pl(Piotr Drąg),
po(Pavol Klačanský), pt(António Lima), pt_BR(André Gondim),
ru(Yuri Myasoedov), sk(Pavol Klačanský), sl(Matej Urbančič),
sr(Мирослав Николић), sr@latin(Мирослав Николић), sv(Daniel Nylander),
tr(Muhammet Kara), uk(Daniel Korostil)
Dependencies (new/updated)
--------------------------
* no change.
============================
GParted 0.9.0 (2011-07-18)
============================
Release Notes
-------------
The most significant change in this release is the ability to
compile and link with libparted 3.0.
GParted retains full functionality when compiled and linked with
libparted versions prior to 3.0, for example libparted-2.4.
Because Parted 3.0 removed some file system specific functionality,
the following abilities are lost or changed when GParted is compiled
and linked with libparted 3.0:
* Unable to grow and shrink FAT16 and FAT32 file systems
* Unable to shrink HFS and HFS+ file systems
* Unable to determine used and unused sectors in HFS and HFS+ file
systems
* Unable to erase file system signatures on partition create and
format
* FAT16 and FAT32 file system moves performed internally by
GParted instead of by libparted
### Other key changes include:
* Fix size off by one sector with unrecognized disk label
* Fix GParted crashes with assertion (head_size <= 63)
- Requires libparted-2.4 or higher
Bug Fixes
---------
* Enable compile and link with libparted 3.0 (#651559)
* Fix size off by one sector with unrecognized disk label (#649444)
* Fix GParted crashes with assertion (head_size <= 63)
- Requires libparted-2.4 or higher
- Ubuntu launchpad #545911
* Fix typo "on on " -> "on" (#650793)
- Thanks go to Gabor Kelemen for this small patch
* Improve English grammar: amount -> number (#650237)
Translations (new/updated)
--------------------------
ca(Gil Forcada), cs(Marek Černocký), da(Ask H. Larsen),
de(Mario Blättermann), es(Daniel Mustieles), fa(Arash Mousavi),
fr(Claude Paroz), he(Yaron Shahrabani), hu(Gabor Kelemen),
it(Milo Casagrande), lt(Aurimas Černius), pl(Piotr Drąg),
pt_BR(Luana Campos Ferreira), ru(Yuri Myasoedov), sl(Matej Urbančič),
sr(Мирослав Николић), sr@latin(Мирослав Николић), sv(Daniel Nylander),
tr(Şenol Korkmaz, Muhammet Kara), uk(Daniel Korostil)
Dependencies (new/updated)
--------------------------
* no change.
============================
GParted 0.8.1 (2011-05-23)
============================
Release Notes
-------------
This release of GParted further improves motherboard BIOS RAID
support and includes bug fixes, and language translation updates.
### Key changes include:
* Remove all usage of kpartx to avoid partition entry duplicates
* Add configure option --enable-libparted-dmraid
Bug Fixes
---------
* Remove all usage of kpartx to avoid partition entry duplicates
- Ubuntu launchpad #719129
* Add configure option --enable-libparted-dmraid
- Ubuntu launchpad #719129
- Thanks go to Phillip Susi for help with this idea
* Ensure graphical error message displayed when run by non-root user
- Ubuntu launchpad #696937
* Simplify command output cleanup implementation
- Thanks go to Seth Heeren for this method replacement patch
* Enable unmount of partition with apostrophe in label
- Ubuntu launchpad #151796
Translations (new/updated)
--------------------------
ar(Khaled Hosny), bg(Alexander Shopov), da(Ask H. Larsen),
eo(Kristjan SCHMIDT), fa(Arash Mousavi),
fr(Claude Paroz, Julien Hardelin, Vincent Blut), hu(Gabor Kelemen),
it(Milo Casagrande), lv(Rudolfs Mazurs, Peteris Krisjanis),
nl(Hannie Dumoleyn), pl(Piotr Drąg),
pt_BR(Luana Campos Ferreira, Djavan Fagundes),
ro(Daniel Șerbănescu, Lucian Adrian Grijincu), ru(Yuri Myasoedov),
te(Praveen Illa, krishnababu k), uk(Daniel Korostil)
Dependencies (new/updated)
--------------------------
* kpartx package is not used.
============================
GParted 0.8.0 (2011-02-15)
============================
Release Notes
-------------
The GParted team is proud to announce a new feature to attempt data
rescue for lost partitions.
This new feature uses the gpart command to guess the partition
table. Discovered file systems can be mounted read-only so that you
can copy data to other media.
Also included in this release are bug fixes, and language
translation updates.
### Key changes include:
* Add attempt data rescue for lost partitions
* Fix paste destination partition smaller than source
* Prevent visual disk display area from disappearing
Bug Fixes
---------
* Add attempt data rescue for lost partitions (#171215)
- Requires gpart
- Thanks go to Joan Lledó for the patch implementing this new feature
* Fix paste destination partition smaller than source (#639393)
* Fix minor cylinder alignment rounding error (size < 1 cylinder)
* Add possible causes for failure to detect or read file systems
* Increase robustness of help manual launch
* Prevent visual disk display area from disappearing
- Ubuntu launchpad #583746
* Update help manual with new feature to attempt data rescue
* Minor updates to man page
Translations (new/updated)
--------------------------
ar(Khaled Hosny), cs(Marek Černocký), da(Ask H. Larsen),
de(Mario Blättermann), es(Daniel Mustieles, Paulo E Ojeda, Jorge González),
et(Mattias Põldaru), fr(Claude Paroz, Bruno Brouard), gl(Fran Diéguez),
he(Yaron Shahrabani), id(Andika Triwidada), it(Milo Casagrande),
kk(Baurzhan Muftakhidinov), pt(António Lima), ru(Yuri Myasoedov),
sl(Matej Urbančič), sr(Мирослав Николић), sr@latin(Мирослав Николић),
sv(Daniel Nylander), zh_HK(Chao-Hsiung Liao), zh_TW(Chao-Hsiung Liao)
Also includes ro(Daniel Șerbănescu) update which had not yet been
committed to master git branch.
Dependencies (new/updated)
--------------------------
* gpart package is required for attempt data rescue
* a default file manager is used, if available, for attempt data
rescue to display discovered file systems.
============================
GParted 0.7.1 (2010-12-13)
============================
Release Notes
-------------
This release of GParted further improves motherboard BIOS RAID
support and includes bug fixes, and language translation updates.
### Key changes include:
* Fix incorrect dmraid partition path name
* Handle characters like spaces in mount points
Bug Fixes
---------
* Fix incorrect dmraid partition path name (#634553)
* Handle characters like spaces in mount points (#629592)
* Enhance to work with mount points defined by uuid or label
* Fix MBR does not reflect the GPT partition map (#586910)
- Requires libparted-2.3 or higher
* Fix Spanish translation of help manual fails XML validation (#633492)
* Fix German translation of help manual fails XML validation (#633587)
Translations (new/updated)
--------------------------
cs(Adrian Guniš), ca@valencia(Carles Ferrando), de(Mario Blättermann),
eu(Inaki Larranaga Murgoitio), he(Yaron Shahrabani), nb(Kjartan Maraas),
ro(Lucian Adrian Grijincu)
Dependencies (new/updated)
--------------------------
* no change.
====================
0.7.0 (2010-10-29)
====================
NOTES
This release of GParted adds initial support for the btrfs
file system, and fixes two critical bugs. Also included are
other bug fixes and language translation updates.
Key changes include:
- Add initial support for btrfs
- Fix crash at start with glibmm-ERROR
- Fix crash moving more than one logical partition right
BUG FIXES
* Add initial support for btrfs (#571170)
- Thanks go to Luca Bruno for this big patch
* Fix gparted crash at start with glibmm-ERROR
- Crash due to using ustring for file system signature recognition
- Ubuntu launchpad #609477
- Ubuntu launchpad #617885
- Thanks go to Seth Heeren for this small patch
* Fix crash moving more than one logical partition right (#628863)
* Fix several memory leaks and valgrind errors (#631201)
- Thanks go to Seth Heeren for this small patch
* Remove unnecessary null pointer checks (#539092)
- Thanks go Markus Elfring for this small patch
* Insert additional translator comments (#631684)
* Fix partitions moved or copied are 1 MiB larger (#632478)
* Skip move/copy action because linux swap contains no data (#589555)
- Ubuntu launchpad #401228
* Ensure 1 MiB reserved when moving partition to start of disk
TRANSLATIONS (new/updated)
* bg(Alexander Shopov), da(Ask H. Larsen),
de(Mario Blättermann, Christian Kirbach), es(Jorge González),
et(Mattias Põldaru), gl(Fran Diéguez), fr(Claude Paroz),
hu(Gabor Kelemen), id(Andika Triwidada), kk(Baurzhan Muftakhidinov),
lt(Aurimas Černius, Žygimantas Beručka), nb(Kjartan Maraas),
pa(A S Alam), pl(Piotr Drąg, Tomasz Dominikowski),
pt(António Lima), pt_BR(Antonio Fernandes C. Neto),
sl(Matej Urbančič), uk(Maxim V. Dziumanenko),
zh_CN(Aron Xu, Yunqiang Su), zh_HK(Chao-Hsiung Liao, Wei-Lun Chao),
zh_TW(Chao-Hsiung Liao, Wei-Lun Chao)
DEPENDENCIES (new/updated)
* btrfs-tools package is required for optional btrfs support.
====================
0.6.4 (2010-10-01)
====================
NOTES
This release of GParted fixes a regression introduced with the
previous version. The problem introduced was that when
partitions were created using MiB alignment, the resulting
partition was 1 MiB larger in size than requested.
Key changes include:
- Fix partitions created using MiB alignment are 1 MiB larger
BUG FIXES
* Fix partitions created using MiB alignment are 1 MiB larger (#631026)
TRANSLATIONS (new/updated)
* none.
DEPENDENCIES (new/updated)
* no change.
====================
0.6.3 (2010-09-23)
====================
NOTES
This release of GParted improves motherboard BIOS RAID support
and includes bug fixes, and language translation updates.
Key changes include:
- Fix problems listing and working with fake RAID devices
- Prevent swapon and mount if partition is in operation queue
- Prevent partition table creation if partitions are active
BUG FIXES
* Add labelling of linux-swap (#626325)
- Thanks go to Mike Fleetwood for this small patch
* Prevent swapon and mount if partition is in operation queue (#611431)
* Prevent partition table creation if partitions are active
- Ubuntu launchpad #503125
* Ensure partition path name is compatible with dmraid (#622217)
- Ubuntu launchpad #600729
* Remove dependency on kpartx for fake RAID support
- Ubuntu launchpad #554582
* Warn partition move queued that might break boot process (#627199)
* Fix MiB mismatch when graphically moving logical partition (#628554)
* Fix paste destination partition smaller than source (#626946)
* Fix size reduced by 1 MiB if created after cylinder aligned partition
* Complete quoting for parameters in configure.in file (#622598)
- Thanks go to Markus Elfring for this small patch
TRANSLATIONS (new/updated)
* cs(Adrian Guniš, Marek Černocký), da(Ask H. Larsen),
de(Christian Kirbach, Mario Blättermann), es(Jorge González),
et(Mattias Põldaru), fr(Nicolas Repentin, Bruno Brouard),
he(Yaron Shahrabani), hu(Gabor Kelemen), id(Dirgita),
it(Milo Casagrande), ja(Takayuki KUSANO), kk(Baurzhan Muftakhidinov),
pl(Piotr Drąg), pt(António Lima), pt_BR(Carlos José Pereira),
sl(Matej Urbančič), sv(Daniel Nylander)
DEPENDENCIES (new/updated)
* kpartx package no longer required for fake RAID support.
====================
0.6.2 (2010-08-01)
====================
NOTES
This release of GParted includes important bug fixes, and
language translation updates.
Key changes include:
- Re-enable MiB partition alignment option
- Fix problem with logical partition move overwriting EBR
BUG FIXES
* Re-enable MiB partition alignment option
* Fix problem with logical partition move overwriting EBR (#623630)
* Ensure original partition boundaries kept on rollback of failed move
* If available use both udisks and hal-lock to prevent auto-mounting
TRANSLATIONS (new/updated)
* cs(Petr Kovar, Marek Černocký), es(Jorge González),
el(Dimitris Tsiolis), kk(Baurzhan Muftakhidinov), zh_CN(Aron Xu)
DEPENDENCIES (new/updated)
* no change.
====================
0.6.1 (2010-07-08)
====================
NOTES
This is an important bug fix release for two critical bugs
found in GParted. Also included are some language translation
updates.
Key changes include:
- Fix crash moving partition when size is a multiple of 16 MiB
- Disable MiB alignment temporarily until bug #623630 can be fixed.
Bug #623630 is a problem where moving logical partitions using
the new MiB alignment feature might overwrite the Extended Boot
Record of another logical partition. This causes an invalid
partition table with a wrong signature.
BUG FIXES
* Fix crash moving partition when size is a multiple of 16 MiB (#623697)
* Disable MiB alignment temporarily until bug #623630 can be fixed.
TRANSLATIONS (new/updated)
* cs(Adrian Guniš), gl(Fran Diéguez), he(Yaron Shahrabani)
DEPENDENCIES (new/updated)
* no change.
====================
0.6.0 (2010-06-18)
====================
NOTES
The GParted team is proud to announce this release brings
support for devices with sector sizes greater than 512 bytes.
For the last three decades, 512 byte sector sizes have been
the norm and many tools, including GParted, were hard coded to
assume this sector size.
Also included in this release are bug fixes, and language
translation updates.
Key changes include:
- Add support for devices with sector sizes > 512 bytes
- Add alignment option to align to MiB
- Set _default_ alignment to align to MiB
Known issues:
When used with libparted versions 2.3 and lower on devices with
sector sizes > 512 bytes:
- hfs/hfs+: used/unused space not detected
- hfs/hfs+: shrink file system not available
BUG FIXES
* Add support for devices with sector sizes > 512 bytes (#607165)
* Add align to MiB option and make it the default (#617409)
* Enable copy to work on computers with only 128 MiB RAM (#613430)
* Fix mkswap error "UUID parsing failed" when resizing with no UUID
- Debian Bug #573836
* Handle devkit-disks command being renamed to udisks on Dec. 2009
- GParted Bug #324220 comment 62, Ubuntu launchpad #588530
* Convert git log entries for Makefile generated ChangeLog
* Clean up progress bar current status after copy/move action
TRANSLATIONS (new/updated)
* ar(Khaled Hosny), cs(Petr Kovar, Adrian Guniš), da(Ask H. Larsen),
de(Mario Blättermann), el(Dimitris Tsiolis), es(Jorge González),
eu(Inaki Larranaga Murgoitio), fi(Timo Jyrinki),
fr(Claude Paroz, Bruno Brouard), gl(Fran Diéguez),
hu(Gabor Kelemen), it(Milo Casagrande),
lt(Žygimantas Beručka, Aurimas Černius, Gintautas Miliauskas),
nb(Kjartan Maraas), pl(Piotr Drąg), pt(António Lima),
pt_BR(André Gondim, Vladimir Melo, Djavan Fagundes), ro(Adi Roiban),
sl(Matej Urbančič), uk(Maxim V. Dziumanenko),
zh_HK(Cheng-Chia Tseng, Chao-Hsiung Liao),
zh_TW(Cheng-Chia Tseng, Chao-Hsiung Liao)
DEPENDENCIES (new/updated)
* Support for sector sizes > 512 bytes requires libparted
version 2.2 or higher.
* Previously missed dependency for DMRAID:
- if available, either udevinfo or udevadm will be used
to query the udev name.
====================
0.5.2 (2010-03-08)
====================
NOTES
This release of GParted includes bug fixes, and language translation
updates.
Key changes include:
- Fix bug when copying huge (> 100 GB) NTFS partition never finishes
- Disable extended partition option for GPT disks
BUG FIXES
* Fix bug when copying huge NTFS partition never finishes (#575324)
* Indicate required software if unable to read file system (#576908)
* Disable extended option for non-MSDOS and non-DVH disk types (#583906)
* Add check if partition table re-read work around code is needed
* Fix problem building gparted on OpenSUSE 11.1 (#608065)
* Make partition "New" label available for translation (#610540)
* Enable removal of msftres flag on GPT disk (#518439)
- Requires libparted-2.0 or higher
* Set HFS/HFS+ partition identifier to proper value (#568867)
- Requires libparted-2.2 or higher
TRANSLATIONS (new/updated)
* bg(Alexander Shopov), cs(Marek Černocký, Adrian Guniš, Petr Kovar),
de(Mario Blättermann), en_GB(Bruce Cowan), es(Jorge González),
fr(Claude Paroz), gl(Fran Diéguez), hu(Gabor Kelemen), pl(Piotr Drąg),
lv(Rūdolfs Mazurs, Peteris Krisjanis), pt(António Lima),
pt_BR(Henrique P. Machado, Djavan Fagundes), sl(Matej Urbančič),
sv(Daniel Nylander)
DEPENDENCIES (new/updated)
* no change.
====================
0.5.1 (2010-01-25)
====================
NOTES
This release of GParted includes some very important bug fixes
in addition to language translation updates.
Key changes include:
- Work around partition resizing problems with newer udev and kernels
- Avoid crashes by ignoring devices with sector size > 512 bytes
BUG FIXES
* Work around to partition resizing problems (#604298)
- Thanks to François Dupoux and Steven Shiau for their help
* Ensure return code is passed up through commit() method
* Avoid crash by ignoring devices with sector size > 512 bytes (#595309)
- Thanks to Jan Claeys for initial small patch
* Capture libparted messages if invalid partition table found (#337244)
* Fix problem reading some FAT32 partitions (#605175)
TRANSLATIONS (new/updated)
* ar(Khaled Hosny), bg(Alexander Shopov),
cs(Adrian Guniš, Marek Černocký, Petr Kovar), da(Ask H. Larsen),
de(Mario Blättermann, Jan Janssen), eu(Inaki Larranaga Murgoitio),
en_GB(Bruce Cowan), es(Jorge González), fr(Claude Paroz),
gl(Anton Méixome), hu(Gabor Kelemen), it(Milo Casagrande),
pt_BR(Djavan Fagundes, Antonio Fernandes C. Neto),
ro(Lucian Adrian Grijincu, Adi Roiban), sl(Matej Urbančič),
sv(Daniel Nylander)
DEPENDENCIES (new/updated)
* no change.
====================
0.5.0 (2009-12-02)
====================
NOTES
This release of GParted adds support for Linux software RAID.
RAID systems now supported include:
- Hardware RAID
- Motherboard BIOS RAID (also known as Fake RAID - dmraid)
- Linux Software RAID (mdadm)
Key changes include:
- Add auto detection of Linux software RAID devices
- Re-enable ability to paste into an existing partition
- Ensure parted-1.9.0 is patched if using with GParted
BUG FIXES
* Add auto detection of Linux software RAID devices
* GNOME Goal: Correct desktop files (#600048)
* GNOME Goal: Replace gnome-open with gtk_show_uri (#600046)
* Found cause of NTFS volume bigger than device size (#601574)
- Ensure parted-1.9.0 is patched if using with GParted
- Thanks go to François Dupoux for discovering the required patch
* Re-enable ability to paste into an existing partition (#582101)
TRANSLATIONS (new/updated)
* bg(Krasimir Chonov), cs(Adrian Guniš), da(Ask H. Larsen),
es(Jorge González), fr(Claude Paroz), hu(Gabor Kelemen),
it(Milo Casagrande), pt(António Lima), pt_BR(Djavan Fagundes),
sl(Matej Urbančič), sv(Daniel Nylander)
DEPENDENCIES (new/updated)
* For Linux software RAID support, the following command is required:
- mdadm
====================
0.4.8 (2009-11-02)
====================
NOTES
This release of GParted includes bug fixes, and language
translation updates.
Key changes include:
- Ensure no pending operations before creating partition table
- Improve dmraid device and name recognition
- Add support for devicekit-disks device automount prevention
- Fix problem finding symbolic link device mount points
BUG FIXES
* Rework logic to find symbolic link device mount points (#582687)
* Minor string fixes (#597686)
- Thanks go to Bruce Cowan for the small patch
* Remove repeated titles in progress dialog (#589558)
* Change field labels to sentence capitalization (#583885)
* Add padding to progress dialog window
* Improve feedback when creating or pasting partition (#579266)
* Ensure no pending operations before creating partition table (#583896)
* Remove unable to re-read partition table warning (#599078)
* Improve dmraid device and name recognition
TRANSLATIONS (new/updated)
* ar(Khaled Hosny), de(Mario Blättermann), en_GB(Bruce Cowan),
es(Jorge González), fr(Claude Paroz), is(Sveinn í Felli),
it(Milo Casagrande), pt(António Lima),
pt_BR(André Gondim, Djavan Fagundes), sv(Daniel Nylander)
DEPENDENCIES (new/updated)
* no change.
====================
0.4.7 (2009-10-09)
====================
NOTES
This release of GParted includes some bug fixes, and language
translation updates.
Key changes include:
- Fixed new partition creation size off by one sector (#596552)
- Improved recognition of dmraid devices
BUG FIXES
* Added logic to find symbolic link device mount points (~#582687)
* Made set_used_sectors method less meddlesome for FAT16/32 (~#569921)
* Fixed new partition creation size off by one sector (#596552)
- Thanks to Seth Hunter for the small patch
* Improved recognition of dmraid devices
* Enhanced to compile with libparted two digit version (e.g., 2.0)
TRANSLATIONS (new/updated)
* cs(Adrian Guniš), en_GB(Bruce Cowan), eu(Inaki Larranaga Murgoitio),
pl(Piotr Drąg)
DEPENDENCIES (new/updated)
* no change.
====================
0.4.6 (2009-08-05)
====================
NOTES
This release of GParted includes bug fixes, and language
translation updates.
Key changes include:
- Removed requirement for xxd for ntfs move or paste action
- Enhanced for new linux-swap "filesystem" types from parted-1.9.0
BUG FIXES
* Removed requirement for xxd for ntfs move or paste action (n/a)
* Enhanced for new linux-swap "filesystem" types from parted-1.9.0 (n/a)
* Reduced chance of accidental new partition creation (#576374)
* Enhanced file parsing to handle tabs properly (#582687)
* Made .gitignore gparted* mask more specific (#587065)
* Placed translator comment in the proper location (#590415)
TRANSLATIONS (new/updated)
* ar(Khaled Hosny), br(Denis Arnaud), ca(David Planella),
da(Ask Hjorth Larsen), de(Mario Blättermann), es(Jorge Gonzalez),
et(Mattias Põldaru, Priit Laes),
fr(Julien Hardelin and Claude Paroz), hu(Gabor Kelemen),
it(Milo Casagrande), lt(Žygimantas Beručka), pa(A S Alam),
pt(António Lima), pt_BR(Djavan Fagundes), sv(Daniel Nylander),
zh_HK(Chao-Hsiung Liao), zh_TW(Chao-Hsiung Liao)
DEPENDENCIES (new/updated)
* xxd (part of vim-common) is no longer required.
====================
0.4.5 (2009-05-08)
====================
NOTES
This release of GParted includes some bug fixes, and language
translation updates.
Key changes include:
- Improved crypt-luks detection
- Improved dmraid device detection
BUG FIXES
* Improved crypt-luks detection (#578300)
* Improved dmraid device detection by checking udev if needed (n/a)
* Enhanced to search for udevadm if udevsettle not found (n/a)
- Thanks to Lorenzo Cogotti aka Micia for this tip.
* Improved UUID detection to fall back to vol_id if available (n/a)
* Improved file system detection with fall back to vol_id (n/a)
TRANSLATIONS (new/updated)