]> wimlib.net Git - wimlib/commitdiff
Mark system compression support non-experimental
authorEric Biggers <ebiggers3@gmail.com>
Sat, 3 Oct 2015 23:47:20 +0000 (18:47 -0500)
committerEric Biggers <ebiggers3@gmail.com>
Sun, 4 Oct 2015 00:12:29 +0000 (19:12 -0500)
doc/man1/wimlib-imagex-apply.1
include/wimlib.h

index ae519a6bfeb3aa2bf8c7df269567f2603030e9ac..58b84f4f2ff28070443397252918330a8de19b2f 100644 (file)
@@ -389,12 +389,12 @@ created when \fBwimlib-imagex capture\fR is run with the \fB--wimboot\fR
 option.
 .TP
 \fB--compact\fR=\fIFORMAT\fR
-EXPERIMENTAL, Windows-only: compress the extracted files using System
-Compression, when possible.  This only works on either Windows 10 or later, or
-on an older Windows to which Microsoft's wofadk.sys driver has been added.
-Several different compression formats may be used with System Compression, and
-one must be specified as \fIFORMAT\fR.  The choices are: xpress4k, xpress8k,
-xpress16k, and lzx.
+Windows-only: compress the extracted files using System Compression, when
+possible.  This only works on either Windows 10 or later, or on an older Windows
+to which Microsoft's wofadk.sys driver has been added.  Several different
+compression formats may be used with System Compression, and one must be
+specified as \fIFORMAT\fR.  The choices are: xpress4k, xpress8k, xpress16k, and
+lzx.
 .IP ""
 Exclusions are handled in the same way as with the \fB--wimboot\fR option.
 That is: if it exists, the [PrepopulateList] section of the file
index 64891042b2e922079f4164b72137b373c4cb4611..bdb2c33ea88e4be8fd6401d7f4929481d34426fc 100644 (file)
@@ -1942,28 +1942,25 @@ typedef int (*wimlib_iterate_lookup_table_callback_t)(const struct wimlib_resour
 #define WIMLIB_EXTRACT_FLAG_WIMBOOT                    0x00400000
 
 /**
- * EXPERIMENTAL, Windows-only: compress the extracted files using System
- * Compression, when possible.  This only works on either Windows 10 or later,
- * or on an older Windows to which Microsoft's wofadk.sys driver has been added.
- * Several different compression formats may be used with System Compression;
- * this particular flag selects the XPRESS compression format with 4096 byte
- * chunks.  <b>This flag is currently experimental and may be changed or removed
- * in future releases of wimlib.</b>  */
+ * Since wimlib v1.8.2 and Windows-only: compress the extracted files using
+ * System Compression, when possible.  This only works on either Windows 10 or
+ * later, or on an older Windows to which Microsoft's wofadk.sys driver has been
+ * added.  Several different compression formats may be used with System
+ * Compression; this particular flag selects the XPRESS compression format with
+ * 4096 byte chunks.
+ */
 #define WIMLIB_EXTRACT_FLAG_COMPACT_XPRESS4K           0x01000000
 
 /** Like ::WIMLIB_EXTRACT_FLAG_COMPACT_XPRESS4K, but use XPRESS compression with
- * 8192 byte chunks.  <b>This flag is currently experimental and may be changed
- * or removed in future releases of wimlib.</b>  */
+ * 8192 byte chunks.  */
 #define WIMLIB_EXTRACT_FLAG_COMPACT_XPRESS8K           0x02000000
 
 /** Like ::WIMLIB_EXTRACT_FLAG_COMPACT_XPRESS4K, but use XPRESS compression with
- * 16384 byte chunks.  <b>This flag is currently experimental and may be changed
- * or removed in future releases of wimlib.</b>  */
+ * 16384 byte chunks.  */
 #define WIMLIB_EXTRACT_FLAG_COMPACT_XPRESS16K          0x04000000
 
 /** Like ::WIMLIB_EXTRACT_FLAG_COMPACT_XPRESS4K, but use LZX compression with
- * 32768 byte chunks.  <b>This flag is currently experimental and may be changed
- * or removed in future releases of wimlib.</b>  */
+ * 32768 byte chunks.  */
 #define WIMLIB_EXTRACT_FLAG_COMPACT_LZX                        0x08000000
 
 /** @} */