]> wimlib.net Git - wimlib/blob - NEWS
Fix sequential extraction, and include progress info
[wimlib] / NEWS
1 Only the most important changes more recent than version 0.6 are noted here.
2
3 Version 1.1.1:
4         Appending images to a WIM is now be done by default without re-building
5         the whole WIM.  Use the --rebuild flag to get the old behavior (which
6         was to re-build the entire WIM when a new image is appended).
7
8         A new command `imagex optimize' is now available to manually re-build a
9         WIM that has wasted space due to repeated appends.
10
11         Previously, the soname of libwim.so has been 0.0.0, despite many
12         interface changes.  The soname is now updated to 1.0.0 and will now be
13         updated each release.
14
15         A possible bug with changing the bootable image of a WIM was fixed.
16
17 Version 1.1.0:
18         Resources will now be compressed using multiple threads by default.
19         (This applies to `imagex capture', `imagex append', and `imagex
20         export').
21
22         Some performance improvements in mounted WIMs.
23
24         More progress information is shown when capturing a WIM.
25
26 Version 1.0.4:
27         Lots of minor fixes, code cleanups, and some documentation updates.
28         Nothing in particular is really noteworthy.
29
30 Version 1.0.3:
31         LZX and XPRESS compression improvements.
32
33         Fixed calculation of Directory Count, File Count, Total Bytes, and Hard
34         Link Bytes of the WIM.
35
36 Version 1.0.2:
37         Fixed bug when capturing NTFS file with multiple named data streams.
38
39         Internally, we are now using inode structures, even though these don't
40         appear literally in the WIM file.  This simplifies some of the code
41         (mainly for WIM mounting) and likely fixed a few problems, although it
42         needs more testing.
43
44 Version 1.0.1:
45         Fixed problem when exporting images from XPRESS to LZX compressed WIM or
46         vice versa
47
48 Version 1.0.0:
49         Enough changes to call it version 1.0.0!
50
51         Capturing a WIM directly from a NTFS volume, and applying a WIM directly
52         to a NTFS volume, is now supported.
53
54         Hard links and symbolic links have much improved support.  They are
55         supported for WIM capture, WIM application, and mounted WIMs (you can
56         even make them on read-write mounted WIMs).
57
58         Alternate data streams are now supported on mounted WIMs through an
59         xattr or a Windows-style stream interface.  Also they are supported when
60         capturing a WIM from NTFS or applying a WIM to NTFS.
61
62         Split WIMs are better supported.  You may now apply an image directly
63         from a split WIM, mount an image from a split WIM read-only, or export
64         an image from a split WIM.
65
66         Using a capture configuration file is now supported (but not fully yet).
67
68         SHA1 message digests are checked in more places, so we can make sure
69         applied and captured data is correct.
70
71         Man pages have been updated and consolidated.
72
73 Version 0.7.2:
74         Fixed segfault when unmounting read-only WIM.
75
76 Version 0.7.1:
77         Support for joining and splitting WIMs.
78         Also, security data is now preserved by default.
79
80 Version 0.6.3:
81         Can now build with older gcc and system headers, like on CentOS 5.
82
83 Version 0.6.2:
84         Fixed bug that made it impossible to overwrite files in read-write
85         mount.
86
87 Version 0.6.1:
88         Write byte-order mark before WIM XML data.  (imagex.exe requires this to
89         be there.)