From: Eric Biggers Date: Sat, 19 Dec 2015 22:32:25 +0000 (-0600) Subject: v1.8.4-BETA X-Git-Tag: v1.9.0~39 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=814b7b8c922853c62ca735096ffd4852000e003f v1.8.4-BETA --- diff --git a/NEWS b/NEWS index 1839d443..c07c11d2 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,15 @@ +Version 1.8.4-BETA: + Fixed a bug where, on Windows, wimlib would change the security + descriptor of the target directory of an extraction even when the + '--no-acls' option was specified. + + Added a new '--image-property' option to 'wimcapture', 'wimappend', and + 'wiminfo'. This option lets you assign values to elements in a WIM + file's XML document by name. + + The wimlib_get_image_property() and wimlib_set_image_property() API + functions now support numerically indexed elements. + Version 1.8.3: Fixed a bug with libntfs-3g extraction present since v1.8.1. Sometimes, some Microsoft software would not correctly recognize data in the diff --git a/README b/README index 2fce0898..31d24792 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ INTRODUCTION -This is wimlib version 1.8.3 (November 2015). wimlib is a C library for +This is wimlib version 1.8.4-BETA (December 2015). 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/configure.ac b/configure.ac index 9659bca7..45ca2d3f 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ ############################################################################### -AC_INIT([wimlib], [1.8.3], [ebiggers3@gmail.com]) +AC_INIT([wimlib], [1.8.4-BETA], [ebiggers3@gmail.com]) AC_CONFIG_SRCDIR([src/wim.c]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_AUX_DIR([build-aux])