Skip to content

Commit

Permalink
Release 1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
extratype committed Dec 13, 2021
1 parent 20a5049 commit 0027396
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
8 changes: 4 additions & 4 deletions chunkdisk.rc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#include <winver.h>

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,2,0,0
PRODUCTVERSION 1,2,0,0
FILEVERSION 1,3,0,0
PRODUCTVERSION 1,3,0,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -18,12 +18,12 @@ BEGIN
BLOCK "040904b0"
BEGIN
VALUE "FileDescription", "chunkdisk"
VALUE "FileVersion", "1.2.0.0"
VALUE "FileVersion", "1.3.0.0"
VALUE "InternalName", "chunkdisk.exe"
VALUE "LegalCopyright", "Copyright (C) 2021 extratype"
VALUE "OriginalFilename", "chunkdisk.exe"
VALUE "ProductName", "chunkdisk"
VALUE "ProductVersion", "1.2.0.0"
VALUE "ProductVersion", "1.3.0.0"
END
END
BLOCK "VarFileInfo"
Expand Down
4 changes: 4 additions & 0 deletions docs/changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,7 @@ v1.2
* The `.lock` file is not removed automatically on exit if `-W 0` option is given. Manually remove it to mount again with `-W 1` option.
* Close file handles to trigger updating metadata when the virtual disk is not only idle but under low load for a minute.
* Handle the case where the file system does not support FSCTL_SET_ZERO_DATA IOCTL.

v1.3

* Add option (`-Z 0`) to disable zero-fill partially unmapped chunk.
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ DWORD CreateStorageUnit(PWSTR chunkdisk_file, const BOOLEAN write_protected, con
err = [&bases, write_protected, pipe_name, &unit]() -> DWORD
{
constexpr wchar_t ProductId[] = L"ChunkDisk";
constexpr wchar_t ProductRevision[] = L"1.2";
constexpr wchar_t ProductRevision[] = L"1.3";
auto unit_params = SPD_STORAGE_UNIT_PARAMS();

UuidCreate(&unit_params.Guid);
Expand Down

0 comments on commit 0027396

Please sign in to comment.