Skip to content

Commit

Permalink
Release 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
extratype committed May 4, 2022
1 parent 2c5ec6a commit 137acb1
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,5,0,0
PRODUCTVERSION 1,5,0,0
FILEVERSION 1,6,0,0
PRODUCTVERSION 1,6,0,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -18,12 +18,12 @@ BEGIN
BLOCK "040904b0"
BEGIN
VALUE "FileDescription", "chunkdisk"
VALUE "FileVersion", "1.5.0.0"
VALUE "FileVersion", "1.6.0.0"
VALUE "InternalName", "chunkdisk.exe"
VALUE "LegalCopyright", "Copyright (C) 2021-2022 extratype"
VALUE "OriginalFilename", "chunkdisk.exe"
VALUE "ProductName", "chunkdisk"
VALUE "ProductVersion", "1.5.0.0"
VALUE "ProductVersion", "1.6.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 @@ -68,3 +68,7 @@ v1.5
* Add option (`-M 1`) to support for moving chunks. Chunks must be locked properly to be moved.
* Fix out of memory by Unmap() with large ranges.
* Add option (`-X 0`) to disable truncating completely unmapped chunk.

v1.6

* Check 64-bit and 128-bit file ID of part directories for compatibility.
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ DWORD CreateStorageUnit(PWSTR chunkdisk_file, GUID guid, const BOOLEAN write_pro
err = [guid, &bases, write_protected, pipe_name, &unit]() -> DWORD
{
constexpr wchar_t ProductId[] = L"ChunkDisk";
constexpr wchar_t ProductRevision[] = L"1.5";
constexpr wchar_t ProductRevision[] = L"1.6";
auto unit_params = SPD_STORAGE_UNIT_PARAMS();

unit_params.Guid = guid;
Expand Down

0 comments on commit 137acb1

Please sign in to comment.