Skip to content

Commit 137acb1

Browse files
committed
Release 1.6
1 parent 2c5ec6a commit 137acb1

3 files changed

Lines changed: 9 additions & 5 deletions

File tree

chunkdisk.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#include <winver.h>
22

33
VS_VERSION_INFO VERSIONINFO
4-
FILEVERSION 1,5,0,0
5-
PRODUCTVERSION 1,5,0,0
4+
FILEVERSION 1,6,0,0
5+
PRODUCTVERSION 1,6,0,0
66
FILEFLAGSMASK 0x3fL
77
#ifdef _DEBUG
88
FILEFLAGS 0x1L
@@ -18,12 +18,12 @@ BEGIN
1818
BLOCK "040904b0"
1919
BEGIN
2020
VALUE "FileDescription", "chunkdisk"
21-
VALUE "FileVersion", "1.5.0.0"
21+
VALUE "FileVersion", "1.6.0.0"
2222
VALUE "InternalName", "chunkdisk.exe"
2323
VALUE "LegalCopyright", "Copyright (C) 2021-2022 extratype"
2424
VALUE "OriginalFilename", "chunkdisk.exe"
2525
VALUE "ProductName", "chunkdisk"
26-
VALUE "ProductVersion", "1.5.0.0"
26+
VALUE "ProductVersion", "1.6.0.0"
2727
END
2828
END
2929
BLOCK "VarFileInfo"

docs/changes.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,3 +68,7 @@ v1.5
6868
* Add option (`-M 1`) to support for moving chunks. Chunks must be locked properly to be moved.
6969
* Fix out of memory by Unmap() with large ranges.
7070
* Add option (`-X 0`) to disable truncating completely unmapped chunk.
71+
72+
v1.6
73+
74+
* Check 64-bit and 128-bit file ID of part directories for compatibility.

main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ DWORD CreateStorageUnit(PWSTR chunkdisk_file, GUID guid, const BOOLEAN write_pro
542542
err = [guid, &bases, write_protected, pipe_name, &unit]() -> DWORD
543543
{
544544
constexpr wchar_t ProductId[] = L"ChunkDisk";
545-
constexpr wchar_t ProductRevision[] = L"1.5";
545+
constexpr wchar_t ProductRevision[] = L"1.6";
546546
auto unit_params = SPD_STORAGE_UNIT_PARAMS();
547547

548548
unit_params.Guid = guid;

0 commit comments

Comments
 (0)