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