From: Eric Biggers Date: Sat, 24 Feb 2024 18:40:45 +0000 (-0800) Subject: v1.14.4 X-Git-Tag: v1.14.4^0 X-Git-Url: https://wimlib.net/git/?a=commitdiff_plain;h=cd2a5e5d2e95c36e81d09077d06ad136f7d24950;p=wimlib v1.14.4 --- diff --git a/Makefile.am b/Makefile.am index 4a5e4eb0..4d6576a1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -201,7 +201,7 @@ libwim_la_CFLAGS = \ $(LIBNTFS_3G_CFLAGS) \ $(LIBFUSE_CFLAGS) -libwim_la_LDFLAGS = $(AM_LDFLAGS) -version-info 40:0:25 +libwim_la_LDFLAGS = $(AM_LDFLAGS) -version-info 41:0:26 libwim_la_LIBADD = \ $(PTHREAD_LIBS) \ diff --git a/NEWS.md b/NEWS.md index 5fc8677e..13d310de 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,14 @@ # wimlib release notes +## Version 1.14.4 + +- Fixed potential crash when writing WIM XML data, introduced in v1.14.0. + +- Improved some documentation. + +- Fixed the Windows build script to avoid an unnecessary DLL dependency when + building with MSYS2 MINGW32 or MSYS2 MINGW64. + ## Version 1.14.3 - Fixed a bug introduced in v1.14.0 where non-ASCII characters stopped being diff --git a/README.WINDOWS.md b/README.WINDOWS.md index 9dd6c000..aa3cf32a 100644 --- a/README.WINDOWS.md +++ b/README.WINDOWS.md @@ -107,9 +107,9 @@ After that, open any MSYS2 shell again and run the following commands: Note: By default the git repository will be on the `master` branch, which is the latest development snapshot. Optionally, you can check out a specific version, -e.g. `cd wimlib && git checkout v1.14.3`. For old versions, please refer to the +e.g. `cd wimlib && git checkout v1.14.4`. For old versions, please refer to the documentation for that version, as things may have changed. It is also possible -to use a release tarball (e.g. `wimlib-1.14.3.tar.gz`) instead of the git repo. +to use a release tarball (e.g. `wimlib-1.14.4.tar.gz`) instead of the git repo. Finally, to actually do a build, close the MSYS2 shell you have open, then open one of the following from the Start menu: @@ -127,7 +127,7 @@ one of the following from the Start menu: The script will automatically download and install the packages needed to build wimlib in the chosen MSYS2 environment, then build wimlib. The output will be -in a folder named similarly to `wimlib-1.14.3-windows-x86_64-bin`. Note that +in a folder named similarly to `wimlib-1.14.4-windows-x86_64-bin`. Note that your "home" folder within MSYS2 is `C:\msys64\home\%USERNAME%` by default. Therefore, the full path to the output folder will be similar to -`C:\msys64\home\%USERNAME%\wimlib\wimlib-1.14.3-windows-x86_64-bin`. +`C:\msys64\home\%USERNAME%\wimlib\wimlib-1.14.4-windows-x86_64-bin`. diff --git a/README.md b/README.md index 40d0d357..49b6f62b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Introduction -This is wimlib version 1.14.3 (September 2023). wimlib is a C library for +This is wimlib version 1.14.4 (February 2024). wimlib is a C library for creating, modifying, extracting, and mounting files in the Windows Imaging Format (WIM files). wimlib and its command-line frontend `wimlib-imagex` provide a free and cross-platform alternative to Microsoft's WIMGAPI, ImageX, diff --git a/doc/man1/mkwinpeimg.1 b/doc/man1/mkwinpeimg.1 index e692e3ba..96fe747b 100644 --- a/doc/man1/mkwinpeimg.1 +++ b/doc/man1/mkwinpeimg.1 @@ -1,4 +1,4 @@ -.TH MKWINPEIMG "1" "September 2023" "wimlib 1.14.3" "User Commands" +.TH MKWINPEIMG "1" "February 2024" "wimlib 1.14.4" "User Commands" .SH NAME mkwinpeimg \- Make a customized bootable image of Windows PE .SH SYNOPSIS diff --git a/doc/man1/wimapply.1 b/doc/man1/wimapply.1 index d515d669..448fafda 100644 --- a/doc/man1/wimapply.1 +++ b/doc/man1/wimapply.1 @@ -1,4 +1,4 @@ -.TH WIMAPPLY "1" "September 2023" "wimlib 1.14.3" "User Commands" +.TH WIMAPPLY "1" "February 2024" "wimlib 1.14.4" "User Commands" .SH NAME wimapply \- Apply a WIM image .SH SYNOPSIS diff --git a/doc/man1/wimcapture.1 b/doc/man1/wimcapture.1 index b1cfa695..fe237b06 100644 --- a/doc/man1/wimcapture.1 +++ b/doc/man1/wimcapture.1 @@ -1,4 +1,4 @@ -.TH WIMCAPTURE "1" "September 2023" "wimlib 1.14.3" "User Commands" +.TH WIMCAPTURE "1" "February 2024" "wimlib 1.14.4" "User Commands" .SH NAME wimcapture, wimappend \- Capture or append a WIM image .SH SYNOPSIS diff --git a/doc/man1/wimdelete.1 b/doc/man1/wimdelete.1 index 49c136ef..9c323a46 100644 --- a/doc/man1/wimdelete.1 +++ b/doc/man1/wimdelete.1 @@ -1,4 +1,4 @@ -.TH WIMDELETE "1" "September 2023" "wimlib 1.14.3" "User Commands" +.TH WIMDELETE "1" "February 2024" "wimlib 1.14.4" "User Commands" .SH NAME wimdelete \- Delete an image from a WIM archive .SH SYNOPSIS diff --git a/doc/man1/wimdir.1 b/doc/man1/wimdir.1 index 0a09cc64..541c6aac 100644 --- a/doc/man1/wimdir.1 +++ b/doc/man1/wimdir.1 @@ -1,4 +1,4 @@ -.TH WIMDIR "1" "September 2023" "wimlib 1.14.3" "User Commands" +.TH WIMDIR "1" "February 2024" "wimlib 1.14.4" "User Commands" .SH NAME wimdir \- List the files contained in a WIM image .SH SYNOPSIS diff --git a/doc/man1/wimexport.1 b/doc/man1/wimexport.1 index e131413d..e99558fd 100644 --- a/doc/man1/wimexport.1 +++ b/doc/man1/wimexport.1 @@ -1,4 +1,4 @@ -.TH WIMEXPORT "1" "September 2023" "wimlib 1.14.3" "User Commands" +.TH WIMEXPORT "1" "February 2024" "wimlib 1.14.4" "User Commands" .SH NAME wimexport \- Export image(s) from a WIM archive .SH SYNOPSIS diff --git a/doc/man1/wimextract.1 b/doc/man1/wimextract.1 index 36e37cba..6fae7e04 100644 --- a/doc/man1/wimextract.1 +++ b/doc/man1/wimextract.1 @@ -1,4 +1,4 @@ -.TH WIMEXTRACT "1" "September 2023" "wimlib 1.14.3" "User Commands" +.TH WIMEXTRACT "1" "February 2024" "wimlib 1.14.4" "User Commands" .SH NAME wimextract \- Extract files from a WIM image .SH SYNOPSIS diff --git a/doc/man1/wiminfo.1 b/doc/man1/wiminfo.1 index e46d46cd..9df6fbc1 100644 --- a/doc/man1/wiminfo.1 +++ b/doc/man1/wiminfo.1 @@ -1,4 +1,4 @@ -.TH WIMINFO "1" "September 2023" "wimlib 1.14.3" "User Commands" +.TH WIMINFO "1" "February 2024" "wimlib 1.14.4" "User Commands" .SH NAME wiminfo \- Display or change information about a WIM file or image .SH SYNOPSIS diff --git a/doc/man1/wimjoin.1 b/doc/man1/wimjoin.1 index ba1f4be8..4e32457b 100644 --- a/doc/man1/wimjoin.1 +++ b/doc/man1/wimjoin.1 @@ -1,4 +1,4 @@ -.TH WIMJOIN "1" "September 2023" "wimlib 1.14.3" "User Commands" +.TH WIMJOIN "1" "February 2024" "wimlib 1.14.4" "User Commands" .SH NAME wimjoin\- Join a split WIM into a standalone WIM .SH SYNOPSIS diff --git a/doc/man1/wimlib-imagex.1 b/doc/man1/wimlib-imagex.1 index e92b5df0..f75be199 100644 --- a/doc/man1/wimlib-imagex.1 +++ b/doc/man1/wimlib-imagex.1 @@ -1,4 +1,4 @@ -.TH WIMLIB-IMAGEX 1 "September 2023" "wimlib 1.14.3" "User Commands" +.TH WIMLIB-IMAGEX 1 "February 2024" "wimlib 1.14.4" "User Commands" .SH NAME wimlib-imagex \- Extract, create, modify, or mount a WIM archive .SH SYNOPSIS diff --git a/doc/man1/wimmount.1 b/doc/man1/wimmount.1 index 6638652f..96484965 100644 --- a/doc/man1/wimmount.1 +++ b/doc/man1/wimmount.1 @@ -1,4 +1,4 @@ -.TH WIMMOUNT "1" "September 2023" "wimlib 1.14.3" "User Commands" +.TH WIMMOUNT "1" "February 2024" "wimlib 1.14.4" "User Commands" .SH NAME wimmount, wimmountrw, wimunmount \- Mount or unmount a WIM image .SH SYNOPSIS diff --git a/doc/man1/wimoptimize.1 b/doc/man1/wimoptimize.1 index c8839c85..4e20884f 100644 --- a/doc/man1/wimoptimize.1 +++ b/doc/man1/wimoptimize.1 @@ -1,4 +1,4 @@ -.TH WIMOPTIMIZE "1" "September 2023" "wimlib 1.14.3" "User Commands" +.TH WIMOPTIMIZE "1" "February 2024" "wimlib 1.14.4" "User Commands" .SH NAME wimoptimize \- Optimize a WIM archive .SH SYNOPSIS diff --git a/doc/man1/wimsplit.1 b/doc/man1/wimsplit.1 index 9e65eb80..d77d84cb 100644 --- a/doc/man1/wimsplit.1 +++ b/doc/man1/wimsplit.1 @@ -1,4 +1,4 @@ -.TH WIMSPLIT "1" "September 2023" "wimlib 1.14.3" "User Commands" +.TH WIMSPLIT "1" "February 2024" "wimlib 1.14.4" "User Commands" .SH NAME wimsplit \- Split a WIM archive into multiple parts .SH SYNOPSIS diff --git a/doc/man1/wimupdate.1 b/doc/man1/wimupdate.1 index c5c2e653..f1c82ba4 100644 --- a/doc/man1/wimupdate.1 +++ b/doc/man1/wimupdate.1 @@ -1,4 +1,4 @@ -.TH WIMUPDATE "1" "September 2023" "wimlib 1.14.3" "User Commands" +.TH WIMUPDATE "1" "February 2024" "wimlib 1.14.4" "User Commands" .SH NAME wimupdate \- Update a WIM image .SH SYNOPSIS diff --git a/doc/man1/wimverify.1 b/doc/man1/wimverify.1 index 02b65a56..e77af954 100644 --- a/doc/man1/wimverify.1 +++ b/doc/man1/wimverify.1 @@ -1,4 +1,4 @@ -.TH WIMVERIFY "1" "September 2023" "wimlib 1.14.3" "User Commands" +.TH WIMVERIFY "1" "February 2024" "wimlib 1.14.4" "User Commands" .SH NAME wimverify \- Verify a WIM archive .SH SYNOPSIS diff --git a/include/wimlib.h b/include/wimlib.h index 55ed0f45..84f1e2ec 100644 --- a/include/wimlib.h +++ b/include/wimlib.h @@ -11,7 +11,7 @@ /** * @mainpage * - * This is the documentation for the library interface of wimlib 1.14.3, a C + * This is the documentation for the library interface of wimlib 1.14.4, a C * library for creating, modifying, extracting, and mounting files in the * Windows Imaging (WIM) format. This documentation is intended for developers * only. If you have installed wimlib and want to know how to use the @b @@ -433,7 +433,7 @@ #define WIMLIB_MINOR_VERSION 14 /** Patch version of the library (for example, the 5 in 1.2.5). */ -#define WIMLIB_PATCH_VERSION 3 +#define WIMLIB_PATCH_VERSION 4 #ifdef __cplusplus extern "C" { diff --git a/tools/get-version-number.sh b/tools/get-version-number.sh index ef4f54ec..24533555 100755 --- a/tools/get-version-number.sh +++ b/tools/get-version-number.sh @@ -7,6 +7,6 @@ vers=$(git describe --abbrev=8 --dirty --always 2>/dev/null | \ sed 's/^v//') if [ -z "$vers" ]; then # Fallback for people who use autoreconf on tarball releases - vers="1.14.3" + vers="1.14.4" fi echo "$vers"