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
/
ChangeLog
3866 lines (2655 loc) · 129 KB
/
ChangeLog
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
2009-04-17 Curtis Gedak <[email protected]>
* *: This ChangeLog is no longer used.
ChangeLog entries after 2009-04-17 are auto-generated when
releasing.
On April 17, 2009, the source code repository was converted
from svn to git. ChangeLogs are seldom used with git.
For a detailed list of changes in the entire project,
use 'git log' from the top level source directory.
2009-04-02 Curtis Gedak <[email protected]>
* configure.in: gparted-0.4.4
===================================================
2009-03-27 Curtis Gedak <[email protected]>
* src/DMRaid.cc: Updated translation and code comments.
- Closes GParted bug #576956
2009-03-26 Curtis Gedak <[email protected]>
* README: Updated requirements for dmraid support.
2009-03-23 Curtis Gedak <[email protected]>
* src/linux_swap.cc: Maintained label and uuid when resizing swap.
- Closes GParted bug #575585
* src/DMRaid.cc: Fixed error when resizing an extended partition.
2009-03-16 Curtis Gedak <[email protected]>
* include/DMRaid.h: Enhanced dmraid partition deletion.
- Handle partition names with or without a 'p' between the
device name and the partition number.
* include/GParted_Core.h,
src/GParted_Core.cc: Improved swap and dmraid mountpoint detection.
2009-03-14 Curtis Gedak <[email protected]>
* src/GParted_Core.cc: Added initial support for dmraid devices.
- Closes GParted bug #317262
* include/DMRaid.h,
include/Makefile.am,
src/DMRaid.cc,
src/Makefile.am: Added new class for dmraid support.
* README: Added note about requirements for dmraid support.
- added note that xxd command also needed for NTFS support.
2009-03-13 Curtis Gedak <[email protected]>
* include/Utils.h,
src/Utils.cc: Removed file_exists() method.
- Glib::file_test() already exists and is available for use.
2009-03-12 Curtis Gedak <[email protected]>
* include/Utils.h,
src/Utils.cc: Added tokenize() and file_exists() methods.
2009-02-27 Curtis Gedak <[email protected]>
* src/GParted_Core.cc: Enabled type checking (const instead of #define)
2009-02-25 Curtis Gedak <[email protected]>
* src/GParted_Core.cc: Added recognition of /dev/mmcblk* SD/MMC devices.
- Closes GParted bug #564985
2009-02-23 Curtis Gedak <[email protected]>
* include/Utils.h,
src/Dialog_Partition_New.cc,
src/DialogFeatures.cc,
src/GParted_Core.cc,
src/Utils.cc,
src/Win_GParted.cc: Added detection of btrfs file system.
- Thanks to Luca Bruno for the original btrfs patch that I adapted.
- Related to GParted bug #571170
2009-02-20 Curtis Gedak <[email protected]>
* src/Win_GParted.cc: Fixed compiler warning regarding parentheses.
2009-02-18 Curtis Gedak <[email protected]>
* include/Utils.h,
src/Dialog_Partition_New.cc,
src/DialogFeatures.cc,
src/GParted_Core.cc,
src/Utils.cc,
src/Win_GParted.cc: Added detection of LUKS encrypted partitions.
- Closes GParted bug #490740
2009-02-16 Curtis Gedak <[email protected]>
* src/Dialog_Base_Partition.cc,
src/GParted_Core.cc: Enhanced move/resize functionality.
- Only move start sector if dialog space before value is changed.
- Closes GParted bug #571151
* include/Partition.h,
src/Partition.cc: Added strict_start indicator.
2009-02-13 Curtis Gedak <[email protected]>
* configure.in: Append -svn to version for continuing development
2009-02-12 Curtis Gedak <[email protected]>
* configure.in: gparted-0.4.3
===================================================
2009-02-11 Curtis Gedak <[email protected]>
* gparted.in: Fixed typo of "freedeskdesktop" in hal-lock name.
- Thanks to Alain Kalker for discovering this mistake.
- Thanks to Jonas Pedersen for reporting this mistake upstream.
- Closes GParted bug #571347
2009-02-09 Curtis Gedak <[email protected]>
* src/Win_GParted.cc: Fixed crash on startup with Russian language.
- Thanks to Dmitriy Motitskiy for small patch.
- Closes GParted bug #570855
* README: Added note blkid is used for ext4 detection.
2009-02-06 Curtis Gedak <[email protected]>
* configure.in: Append -svn to version for continuing development
2009-02-05 Curtis Gedak <[email protected]>
* configure.in: gparted-0.4.2
===================================================
2009-01-28 Curtis Gedak <[email protected]>
* src/GParted_Core.cc: Fixed partition type for linux-swap(new).
- Related to GParted bug #419515
2009-01-24 Curtis Gedak <[email protected]>
* gparted.desktop.in.in: Added additional Filesystem category.
- Closes GParted bug #568937
* src/Dialog_Partition_Copy.cc,
src/Win_GParted.cc: Enhanced copy/paste checks when MBR/EBR involved.
- Related to GParted bug #567402
2009-01-20 Curtis Gedak <[email protected]>
* doc/gparted.8: Updated manual page.
2009-01-19 Curtis Gedak <[email protected]>
* src/Win_GParted.cc: Reworded message when applying operations.
- Closes GParted bug #564952
2009-01-13 Curtis Gedak <[email protected]>
* src/Win_GParted.cc: Removed space between menu entry and periods.
2009-01-07 Curtis Gedak <[email protected]>
* src/ntfs.cc: Removed redundant command flag options.
2009-01-06 Curtis Gedak <[email protected]>
* src/GParted_Core.cc: Actually commit this file, and
remove src/Partition.o.
* src/Win_GParted.cc: Redo update copyright year range, again.
- Updated copyright year in Help -> About.
* src/GParted_Core.cc: Added two FS types to recognition as linux-swap.
- The GIT version of libparted returns types of linux-swap(new)
and linux-swap(old), previously only linux-swap was returned.
- Closes GParted bug #419515
* src/Win_GParted.cc: Redo update copyright year range.
- In a recent upgrade to eclipse 3.4.0, I did not realize that
the default save option was to remove trailing whitespace, and
ensure newline at end of file. This resulted in way too many
differences showing up in the file.
2009-01-03 Curtis Gedak <[email protected]>
* src/Win_GParted.cc: Update copyright year range.
2009-01-02 Curtis Gedak <[email protected]>
* configure.in: Improved text for libparted not found error message.
- Closes GParted bug #565682
2008-12-31 Curtis Gedak <[email protected]>
* src/Utils.cc: Added e2fsprogs version required for ext4 support.
2008-12-21 Curtis Gedak <[email protected]>
* src/Utils.cc: Fixed application crash.
- GParted would crash when saving details if locale was not set.
2008-12-20 Curtis Gedak <[email protected]>
* src/ext4.cc: Add flags to create journal and use extent option.
2008-12-18 Curtis Gedak <[email protected]>
* include/Utils.h,
src/GParted_Core.cc,
src/Utils.cc: Added support for ext4 file systems.
- Closes GParted bug #503112
* include/ext4.h,
include/Makefile.am,
src/ext4.cc,
src/Makefile.am: Created 2 files to support ext4 operations.
- Support for ext4 is planned for version 2.6.28 of the Linux kernel.
- e2fsprogs version 1.41.0 or higher is required.
* include/FS_Info.h,
src/FS_Info.cc: Added get_fs_type() method
2008-12-08 Curtis Gedak <[email protected]>
* include/FS_Info.h,
src/FS_Info.cc
src/GParted_Core.cc: Reduced FS_Info cache disk reads.
2008-12-07 Curtis Gedak <[email protected]>
* include/Utils.h,
src/Dialog_Partition_New.cc,
src.DialogFeatures.cc,
src/GParted_Core.cc,
src/Utils.cc,
src/Win_GParted.cc: Added lvm2 physical volume detection.
2008-12-03 Curtis Gedak <[email protected]>
* src/Dialog_Partition_Info.cc,
src/Win_GParted.cc: Made text by field labels selectable.
- Useful for copy/paste of UUID or volume label
* include/Utils.h,
src/Utils.cc: Added text selectable parameter to mk_label()
2008-12-02 Curtis Gedak <[email protected]>
* configure.in: Append -svn to version for continuing development
2008-11-29 Curtis Gedak <[email protected]>
* configure.in: gparted-0.4.1
===================================================
* src/GParted.cc: Removed code to recognize /dev/mapper/* devices.
- Too many /dev/mapper/* devices listed (including LVM partitions)
- Roll back patch applied on 2008-10-15
- Reopens GParted bug #556114
* include/FS_Info.h,
src/FS_Info.cc: Moved common code into new get_device_entry() method.
* configure.in: Append -svn to version for continuing development
2008-11-28 Curtis Gedak <[email protected]>
* configure.in: gparted-0.4.0
===================================================
2008-11-20 Curtis Gedak <[email protected]>
* gparted.desktop.in.in: Added %f to Exec line.
- Enables device passing with gnome-desktop-item-launch
- Closes GParted bug #561495
2008-11-19 Curtis Gedak <[email protected]>
* src/Win_GParted.cc: Fixed dangerous copy and paste problem.
- Prevent a copied partition from being pasted into an existing
partition.
* src/Win_GParted.cc: Added language length conditional Undo display.
- If translated language is relatively long, then
split the "Resize/Move" toolbar button text into two lines, and
do not display the "Undo" button.
- Permits all languages to see a full toolbar at default window size.
- Closes GParted bug #561068
2008-11-18 Curtis Gedak <[email protected]>
* include/Partition.h,
include/Utils.h,
src/Dialog_Partition_Info.cc,
src/Dialog_Partition_New.cc,
src/Dialog_Partition_Resize_Move.cc,
src/ext2.cc,
src/ext3.cc,
src/fat16.cc,
src/fat32.cc,
src/GParted_Core.cc,
src/jfs.cc,
src/linux_swap.cc,
src/ntfs.cc,
src/OperationCheck.cc,
src/reiserfs.cc,
src/TreeView_Detail.cc,
src/Win_GParted.cc,
src/xfs.cc: Fixed incorrect spelling of filesystem and mountpoint.
* src/DialogFeatures.cc: Added translator comment.
- Renamed button to improve clarity of meaning.
- Closes GParted bug #561350
2008-11-14 Curtis Gedak <[email protected]>
* include/DialogFeatures.h,
src/DialogFeatures.cc: Improved dialog readability.
- Changed title Features to File System Support.
- Renamed button Refresh to Rescan Support.
- Created expander for legend and added narrative.
- Removed columns detect and read.
- Added column for Required Software.
- Closes GParted bugs #342682, and #353104
* include/Utils.h,
src/Utils.cc: Created method get_filesystem_software().
* src/Win_GParted.cc: Moved menu entry
- "Gparted->Show Features" moved to "View->File System Support".
2008-11-13 Curtis Gedak <[email protected]>
* include/FS_Info.h,
src/FS_Info.cc,
src/GParted_Core.cc,
README: Improved read label performance with blkid cached results.
- When possible use blkid cached results to determine volume label.
2008-11-12 Curtis Gedak <[email protected]>
* README: Updated directories and dependencies.
2008-11-11 Curtis Gedak <[email protected]>
* src/Dialog_Partition_Info.cc,
src/GParted_Core.cc: Added read and display UUID.
* include/Partition.h,
src/Partition.h: Added UUID.
* include/FS_Info.h,
include/Makefile.am,
src/FS_Info.cc,
src/Makefile.am: Created class to read file system UUIDs.
2008-11-10 Curtis Gedak <[email protected]>
* src/fat16.cc,
src/fat32.cc: Enforced fat compliant label before writing.
- Trimmed trailing spaces from label upon reading.
* include/Utils.h,
src/Utils.cc: Created new method fat_compliant_label().
- Limit volume label to 11 characters.
2008-11-08 Curtis Gedak <[email protected]>
* include/ext2.h,
include/ext3.h,
include/fat16.h,
include/fat32.h,
include/hfs.h,
include/hfsplus.h,
include/jfs.h,
include/linux_swap.h,
include/ntfs.h,
include/reiser4.h,
include/reiserfs.h,
include/xfs.h,
include/ufs.h: Renamed set_label and get_label methods.
* src/ext2.cc,
src/ext3.cc,
src/fat16.cc,
src/fat32.cc,
src/hfs.cc,
src/hfsplus.cc,
src/jfs.cc,
src/linux_swap.cc,
src/ntfs.cc,
src/reiser4.cc,
src/reiserfs.cc,
src/ufs.cc,
src/xfs.cc: Renamed set_label and get_label methods.
* include/FileSystem.h,
include/GParted_Core.h,
include/Utils.h: Renamed set_label and get_label methods.
* src/DialogFeatures.cc
src/FileSystem.cc,
src/GParted_Core.cc: Renamed set_label and get_label methods.
- Renamed set_label to write_label, renamed get_label to read_label.
- Preference is to reserve set/get for object attribute handling.
2008-11-05 Curtis Gedak <[email protected]>
* src/Dialog_Partition_Copy.cc: Fixed copy and paste partition problem.
- Resolved destination partition too small on copy and paste.
- Added exclusion for primary partitions at the start of the disk.
- Closes GParted bug #556058
2008-11-04 Curtis Gedak <[email protected]>
* src/Dialog_Progress.cc,
src/GParted_Core.cc,
src/Win_GParted.cc: Fixed some spelling mistakes
* src/Win_GParted.cc: Added label update for paste to existing partition
2008-10-31 Curtis Gedak <[email protected]>
* src/reiser4.cc,
README: Changed get_label() to use vol_id instead of debugfs.reiser4
* src/GParted_Core.cc: Changed thread status messages to be unique
2008-10-30 Curtis Gedak <[email protected]>
* src/GParted_Core.cc: Added translator comments
- Removed ellipses from status messages in set_devices()
* src/Win_GParted.cc: Added thread status message update to pulsebar
* include/GParted_Core.h,
src/GParted_Core.cc: Added set and get thread status message methods
- Added thread status message updates in set_devices()
2008-10-28 Curtis Gedak <[email protected]>
* src/GParted_Core.cc: Remove std:: prefix from llabs()
- Fixes problem where gparted failed to build in debian on arm,
armel, mips, and mipsel (debian bug#499722)
- Thanks to Thiemo Seufer for small patch
* src/reiser4.cc: Removed warning reading mounted reiser4 volume label
- Closes GParted bug #380546
2008-10-24 Curtis Gedak <[email protected]>
* src/Utils.cc: Increased robustness of get_lang() function
- Assists with GParted bug #556965
2008-10-17 Curtis Gedak <[email protected]>
* src/Dialog_Progress.cc: Converted more words for translation
2008-10-16 Curtis Gedak <[email protected]>
* src/Dialog_Progress.cc: Added call to get_lang() for lang tags
* include/Utils.h,
src/Utils.cc: Created function get_lang()
* src/main.cc: Update copyright years
2008-10-15 Curtis Gedak <[email protected]>
* src/GParted_Core.cc: Enhanced to recognize /dev/mapper/* devices
- The move away from libparted device recognition broke
recognition of /dev/mapper/* devices. Problem now fixed.
- Thanks to Colin Watson for the patch.
- Closes GParted bug #556114
2008-10-14 Curtis Gedak <[email protected]>
* src/Dialog_Progress.cc: Enhanced detail log to pass as XHTML
- gparted_details.htm now passes as XHTML 1.0 Transitional
in the validator found at http://validator.w3.org/
- Thanks to Markus Elfring for the small patch.
- Closes GParted bug #525347
2008-10-08 Curtis Gedak <[email protected]>
* autogen.sh,
HACKING: Changed text CVS to SVN.
- Thanks to Martin Capitanio
* README: Added a dependency.
- Thanks to Martin Capitanio
2008-10-06 Curtis Gedak <[email protected]>
* Makefile.am: Removed m4 from EXTRA_DIST
- 'make distcheck' fails if m4 directory is in EXTRA_DIST
2008-09-26 Curtis Gedak <[email protected]>
* autogen.sh: Added check for gnome-doc-utils.make
2008-09-25 Curtis Gedak <[email protected]>
* src/GParted_Core.cc,
src/linux_swap.cc,
src/OperationResizeMove.cc,
src/xfs.cc: Add translator comments and fix spelling mistake.
2008-09-24 Curtis Gedak <[email protected]>
* src/Dialog_Progress.cc: Added proper HTML start and finish.
- gparted_details.htm now passes as HTML 4.0 Transitional
in the validator found at http://validator.w3.org/
- Closes GParted bug #525347
2008-09-22 Curtis Gedak <[email protected]>
* configure.in,
src/Win_GParted.cc,
src/Makefile.am,
makefile.am: Enabled GParted to use themed app icon (Tango theme).
- Thanks to Sebastian Kraft for designing the icons.
- Thanks to Michael Monreal for the small patch to make use of themed
app icon from hicolor.
- Closes GParted bug #350894
* data/Makefile.am,
data/icons/Makefile.am,
data/icons/hicolor_apps_16x16_gparted.png,
data/icons/hicolor_apps_22x22_gparted.png,
data/icons/hicolor_apps_24x24_gparted.png,
data/icons/hicolor_apps_32x32_gparted.png,
data/icons/hicolor_apps_48x48_gparted.png,
data/icons/hicolor_apps_scalable_gparted.svg,
data/icons/svg/gparted.svg: Created files.
- Icons by Sebastian Kraft
- Small patch by Michael Monreal.
* data,
data/icons,
data/icons/svg: Created directories.
- Small patch by Michael Monreal.
* pixmaps,
pixmaps/Makefile.am,
pixmaps/gparted.png: Removed directory and files.
- This directory and its contents are no longer required - see above notes.
2008-09-15 Curtis Gedak <[email protected]>
* configure.in,
Makefile.am: Added --disable-doc flag to prevent building help docs
* README: Added note about --disable-doc flag
2008-09-13 Curtis Gedak <[email protected]>
* configure.in: Append -svn to version for continuing development
2008-09-12 Curtis Gedak <[email protected]>
* configure.in: gparted-0.3.9
===================================================
* src/GParted_Core.cc: Added pattern recognition for HP RAID drives
- E.g., device = /dev/cciss/c0d0, partition = /dev/cciss/c0d0p1
2008-09-04 Curtis Gedak <[email protected]>
* include/Utils.h,
src/Utils.cc: Fixed display problem with percent complete messages.
- Some commands use cursor repositioning to display progress.
This cursoring does not display well within the tracking of
gparted details. A newly added function will cleanup the output.
- Closes GParted bug #532574
2008-09-01 Curtis Gedak <[email protected]>
* COPYING-DOCS: Added new file containing GFDL 1.2 license
- Closes GParted bug #550047
2008-08-06 Curtis Gedak <[email protected]>
* src/GParted_Core.cc: Enhanced optimal block size copy algorithm.
- Changed algorithm to try all block size possibilities instead of
stopping as soon as next larger block size took longer to copy than
the prior block size. Due to anomalies in benchmark times, the
previous algorithm would favour smaller block sizes.
- Closes GParted bug #546423
* README: Updated with new directories for GParted Manual
2008-08-05 Curtis Gedak <[email protected]>
* src/Win_GParted.h: Created show_help_dialog function to display help
* src/Win_GParted.cc: Created show_help_dialog function to display help
- Replaced help dialog box with call to show_help_dialog function.
Initial concept for the show_help_dialog function comes from the
file-roller project. The advantage to this code is that it does
not create a dependency on libgnomeui.
- Changed menu Help->Help CTRL+H to help->Contents F1
* src/Makefile.am: Added GPARTED_DATADIR define to INCLUDES
* autogen.sh: Added USE_COMMON_DOC_BUILD
* configure.in: Added help and m4 directories, and GNOME_DOC_INIT
* Makefile.am: Added help and m4 directories, and gnome-doc-utils
* help: Created directory for future GParted Manual
* m4: Created directory as advised for gnome-doc-util
- *********************************
Prepare for future GParted Manual
*********************************
- See "Migrating to GNOME Documentation Build Utilities"
http://library.gnome.org/devel/gnome-doc-make/0.12/migrating.html.en
2008-07-27 Curtis Gedak <[email protected]>
* gparted.in: Added additional check for hald daemon if hal-lock exists
- Closes GParted bug #543730
2008-07-26 Curtis Gedak <[email protected]>
* configure.in: Removed full path from gksu
- gksu is only used in desktop file if it is found in path
2008-07-25 Curtis Gedak <[email protected]>
* src/hfs.cc: Rewrote get_label to use vol_id for hfs file system
- Reason: not all hfsutils packages include hfsck (e.g. Ubuntu 7.10)
* src/hfsplus.cc: Enhanced support for hfsplus file system
- Added create, get_label, and check_repair functionality
- Additional feature support is provided by the hfsprogs package
2008-07-23 Curtis Gedak <[email protected]>
* gparted.desktop.in.in,
Makefile.am,
configure.in: Added check for gksu for gparted menu invocation.
- Permits GNU/Linux distributions with gksu to prompt for root
password when invoked from the menu, while not hampering
distributions without gksu.
- Partially addresses bug 318557 for some GNU/Linux distributions
* configure.in: Append -svn to version for continuing development
2008-07-10 Curtis Gedak <[email protected]>
* configure.in: gparted-0.3.8
===================================================
2008-06-18 Curtis Gedak <[email protected]>
* src/OperationResizeMove.cc: Fixed incorrectly recognized move/resizes
- Re-wrote logic to determine proper partition move / resize operation
- Closes GParted bug #438570
2008-06-15 Curtis Gedak <[email protected]>
* src/GParted_Core.cc: Enhanced snap-to-cylinder math
- Improved math for rounding starting sector to cylinder
boundaries for logical partitions, and the first primary
partition for MBR and GPT partition tables.
- Closes GParted bugs #432525, and #525137
* include/Dialog_Base_Partition.h,
src/Dialog_Base_Partition.cc,
include/Dialog_Partition_New.h,
src/Dialog_Partition_New.cc: Migrated checkbutton.
- Moved "Round to cylinders" checkbutton from partition new
dialog to partition base dialog so that it may be used
by all inheritors (e.g., New, Copy, and Resize/Move).
2008-06-12 Curtis Gedak <[email protected]>
* src/GParted_Core.cc: Changed 3 grammatical errors to dashes.
- Closes GParted bug #533637
2008-06-10 Curtis Gedak <[email protected]>
* src/main.cc: Changed wording of root privilege required warning.
- Closes GParted bug #534072
* src/Dialog_Progress.cc: Added proper PO file plural handling.
- fixed a few spelling errors.
* src/Win_GParted.cc: Added proper PO file plural handling.
- Closes GParted bug #315291
2008-05-10 Curtis Gedak <[email protected]>
* README: Removed absolute requirement for hal-lock.
* gparted.in: Enhanced script to use hal-lock only if it exists
- This removes the absolute requirement for hal-lock and
enables systems without HAL to use GParted.
* configure.in: Removed check for hal-lock program (added 2008-05-08)
2008-05-08 Curtis Gedak <[email protected]>
* README: Added note about hal-lock and HAL requirement
* configure.in: Added check for hal-lock program
* src/GParted_Core.cc: Added parse devices from /proc/partitions
- If /proc/partitions doesn't exist then use ped_device_probe_all
- Closes GParted bugs #351753, and #453555
2008-05-06 Curtis Gedak <[email protected]>
* gparted.in: Fixed problem with command line devices being ignored
- This problem was introduced in version 0.3.7
* configure.in: Append -svn to version for continuing development
2008-04-29 Curtis Gedak <[email protected]>
* configure.in: gparted-0.3.7
===================================================
2008-04-26 Curtis Gedak <[email protected]>
* gparted.desktop.in.in: Removed gksu from exec line
- gksu is not supported in all major GNU/Linux distributions
(Fedora for one).
- Closes GParted bug #529622
- Reopens GParted bug #381557
* README: Enhanced INSTALL information
- Closes GParted bug #529625
2008-04-25 Curtis Gedak <[email protected]>
* README: Updated to better align with GNU coding standards
2008-04-23 Curtis Gedak <[email protected]>
* README: Updated installation notes and distribution notes
2008-04-21 Curtis Gedak <[email protected]>
* src/Dialog_Base_Partition.cc,
src/Dialog_Partition_New.cc: Fixed 1 TB partition limit bug
- Fixed problem with spinbutton math that limited partition size
to a maximum just less than 1 TB.
New limit is just less than 1024 TB.
- Closes GParted bug #524948
* Makefile.am: Enhanced for new calling script gparted
- Added gparted script installation in sbin
- Added installdir parsing for gparted and gparted.desktop
* gparted.desktop.in: Renamed gparted.desktop.in
to gparted.desktop.in.in
- This is to permit installdir parsing in gparted.desktop
* gparted.in: Added new calling script gparted
- This is to permit using hal-lock to acquire device
locks to prevent automounting prior to executing gpartedbin.
- Closes GParted bug #324220
- Thanks to Deji Akingunola for the hal-lock invocation idea
* src/GParted_Core.cc: Removed gparted-disable-automount.fdi handling
- Removed signal handler patch from 2008-01-28
- Removed initial work on disabling automount from 2006-08-09
- /usr/share/hal/fdi/policy/gparted-disable-automount.fdi is
no longer created.
- This is to permit preferred alternative of using hal-lock.
* src/Makefile.am: Renamed gparted binary to gpartedbin
- This is to permit a calling script to be named gparted.
2008-04-20 Curtis Gedak <[email protected]>
* src/Dialog_Disklabel.cc: Improved ability to translate text
- Closes GParted bug #529063
2008-04-18 Curtis Gedak <[email protected]>
* src/Dialog_Disklabel.cc,
src/Win_GParted.cc: Changed device menu item and description
- Menu text changed from "set disklabel..."
to "Create Partition Table..."
- Significant change in the wording to increase awareness that
setting a disk label (creating a partition table) will
ERASE ALL DATA on the disk.
- Removed double confirmation of partition table creation
- Closes GParted bug #422070
2008-04-14 Curtis Gedak <[email protected]>
* Makefile.am,
configure.in,
doc/,
doc/Makefile.am,
doc/gparted.8: Added manual page documentation
- Command line response for GParted bug #329584
2008-04-09 Curtis Gedak <[email protected]>
* gparted.desktop.in: Updated to align with standards
- Adjusted entries to align with desktop entry specification
- Closes GParted bug #518975
- Added gksu to Exec line in front of gparted
- Closes GParted bug #381557
- Updated to align with Human Interface Guidelines
- Closes GParted bug #440012
* src/Makefile.am: Moved gparted install to sbin instead of bin
- Closes GParted bug #509495
* MAINTAINERS: Added ldetrogoff
2008-04-08 Curtis Gedak <[email protected]>
* src/Dialog_Partition_Label.cc: Increase dialog box size
* src/linux_swap.cc: Enhanced to work with different versions of vol_id
2008-04-07 Marcel Telka <[email protected]>
* MAINTAINERS: New file (bug #524276).
2008-04-03 Curtis Gedak <[email protected]>
* configure.in,
autogen.sh,
po/LINGUAS: Enhanced to use po/LINGUAS for LINGUAS
- Closes GParted bug #467459
- Thanks to Christian Persch for this patch
2008-04-01 Curtis Gedak <[email protected]>
* Makefile.am: Removed distclean target enhancements from 2008-02-05
- use "make dist" to create a distribution archive file
2008-03-31 Curtis Gedak <[email protected]>
* src/Utils.cc: Ensure hour portion of time is always displayed
- Closes GParted bug #438590
* src/TreeView_Detail.cc: Removed text_color hard coding
- Removed hard coding of Partition and Filesystem text_color
which was based on if partition was TYPE_UNALLOCATED.
- Removed hard coding of Mount text_color which was based
on if partition was busy. Lock symbol provides this indicator.
- Closes GParted bug #413810
* src/reiser4.cc,
src/reiserfs.cc: Tighten get_label regular expression
2008-03-26 Curtis Gedak <[email protected]>
* configure.in: gparted-0.3.6
===================================================
2008-03-25 Curtis Gedak <[email protected]>
* configure.in: Added 'sk' to ALL_LINGUAS.
Also added 'ko' and 'si' to ALL_LINGUAS.
2008-03-21 Curtis Gedak <[email protected]>
* include/OperationLabelPartition.h,
src/OperationLabelPartition.cc: Updated to display label change
- Label change now shown prior to apply button being pressed
* src/Win_GParted.cc: Added partition duplication for use with UNDO
* src/Dialog_Partition_Label.cc: Changed label ADD button to OK
- Added trim function to get_new_label()
2008-03-19 Curtis Gedak <[email protected]>
* src/linux_swap.cc: Fill in get_label() functionality using vol_id
* src/reiser4.cc: Enhanced get_label()
- Read partition label up to the first exclamation mark.
The exclamation mark is displayed by debugfs.reiser4 when
the label is the maximum length of 16 characters.
* src/ext2.cc,
src/ext3.cc,
src/fat16.cc,
src/fat32.cc,
src/hfs.cc,
src/jfs.cc,
src/linux_swap.cc,
src/ntfs.cc,
src/reiser4.cc,
src/reiserfs.cc,
src/xfs.cc: Added partition labelling on filesystem creation
2008-03-18 Curtis Gedak <[email protected]>
* include/Dialog_Partition_New.h,
src/Dialog_Partition_New.cc: Added partition label entry text box
* src/jfs.cc,
src/ntfs.cc,
src/reiserfs.cc,
src/xfs.cc: Filled in set_label() functionality
2008-03-12 Curtis Gedak <[email protected]>
* src/fat16.cc,
src/fat32.cc: Filled in set_label() functionality
* src/Win_GParted.cc: trim partition label after input accepted
* include/Utils.h,
src/Utils.cc: Added trim() function
- removes leading and trailing whitespace from a string
2008-03-06 Curtis Gedak <[email protected]>
* include/DialogFeatures.h,
src/DialogFeatures.cc: Changed Read_Label to Label
2008-03-05 Curtis Gedak <[email protected]>
* include/ext2.h,
include/ext3.h,
include/fat16.h,
include/fat32.h,
include/hfs.h,
include/hfsplus.h,
include/jfs.h,
include/linux_swap.h,
include/ntfs.h,
include/reiser4.h,
include/reiserfs.h,
include/ufs.h
include/xfs.h,
include/filesystem.h,
include/utils.h,
src/ext2.cc,
src/ext3.cc,
src/fat16.cc,
src/fat32.cc,
src/hfs.cc,
src/hfsplus.cc,
src/jfs.cc,
src/linux_swap.cc,
src/ntfs.cc,
src/reiser4.cc,
src/reiserfs.cc,
src/ufs.cc
src/xfs.cc: Added set_label() function stub
- Filled in set_label for ext2 and ext3
* include/Makefile.am,
include/GParted_Core.h,
include/Operation.h,
include/OperationLabelPartition.h,
src/Makefile.am,
src/GParted_Core.cc,
src/OperationLabelPartition.cc: Created operation label partition
2008-03-04 Curtis Gedak <[email protected]>
* include/Makefile.am,
include/Win_GParted.h,
include/Dialog_Partition_Label.h,
src/Makefile.am,
src/Win_GParted.cc,
src/Dialog_Partition_Label.cc: Created partition label menu and dialog
* src/xfs.cc: Enhanced to read xfs labels while filesystem is mounted
- Thanks to Gerald Neil for the tip about adding the -r flag.
2008-02-19 Curtis Gedak <[email protected]>
* src/Dialog_Progress.cc: Fixed two English spelling mistakes
* src/Dialog_Partition_Info.cc: Moved display of label closer to path
* src/fat16.cc,
src/fat32.cc: Changed to use new MTools temporary file functions
* include/Utils.h,
src/Utils.cc: Added create_mtoolsrc_file() and
delete_mtoolsrc_file() to handle MTools temporary file