Skip to content

Commit

Permalink
Grand update:
Browse files Browse the repository at this point in the history
 - drop support for libparted older than 2.4 (#16)
 - introduce `-n, --partition` to set a partition number when
   dealing with file dumps, /dev/loop and /dev/ram devices (#15)
 - ask confirmation for operations (e.g. FAT32 -> FAT16 conversion),
   add `-f, --force` option to not prompt (#13)
 - do not limit FAT32 usage on small partitions (#11)
 - update changelog (#10)
  • Loading branch information
ya-mouse committed Apr 5, 2020
1 parent 321973b commit 321b511
Show file tree
Hide file tree
Showing 14 changed files with 7,326 additions and 6,082 deletions.
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.deps
autom4te.cache
Makefile
config.h
config.log
config.status
compile
fatresize
fatresize-fatresize.o
stamp-h1
18 changes: 17 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
planned 1.0.3:
version 1.1.0:
- drop support for libparted older than 2.4 (#16)
- introduce `-n, --partition` to set a partition number when
dealing with file dumps, /dev/loop and /dev/ram devices (#15)
- ask confirmation for operations (e.g. FAT32 -> FAT16 conversion),
add `-f, --force` option to not prompt (#13)
- do not limit FAT32 usage on small partitions (#11)
- update ChangeLog (#10)

version 1.0.4:
- add Sebastian Parschauer to contributors
- add Patrick Chauncey to contributors
- fix a segfault and assert handling (#6)
- allow setting maximum size by keyword "max" (#5)
- fix getting the device name from partition name (#2)

version 1.0.3:
- change license from GPLv2+ to GPLv3
- merge changes from Philippe Coval <rzr>
- merge changes from Colin Watson <cjwatson>
Expand Down
388 changes: 260 additions & 128 deletions INSTALL

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ sbin_PROGRAMS = fatresize

man_MANS = fatresize.1

INCLUDES = $(PARTED_CFLAGS)
fatresize_CPPFLAGS = $(PARTED_CFLAGS)

fatresize_SOURCES = fatresize.c
fatresize_LDADD = $(PARTED_LIBS)
Expand Down
Loading

0 comments on commit 321b511

Please sign in to comment.