Skip to content

Commit ab801fe

Browse files
committed
Release 1.5
1 parent e1c4bae commit ab801fe

11 files changed

Lines changed: 16 additions & 16 deletions

File tree

base.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @file base.cpp
33
*
4-
* @copyright 2021 extratype
4+
* @copyright 2021-2022 extratype
55
*/
66

77
#include "base.hpp"

base.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @file base.hpp
33
*
4-
* @copyright 2021 extratype
4+
* @copyright 2021-2022 extratype
55
*
66
* Parameters, unit conversions, chunks
77
*/

chunkdisk.rc

Lines changed: 5 additions & 5 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,4,0,0
5-
PRODUCTVERSION 1,4,0,0
4+
FILEVERSION 1,5,0,0
5+
PRODUCTVERSION 1,5,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.4.0.0"
21+
VALUE "FileVersion", "1.5.0.0"
2222
VALUE "InternalName", "chunkdisk.exe"
23-
VALUE "LegalCopyright", "Copyright (C) 2021 extratype"
23+
VALUE "LegalCopyright", "Copyright (C) 2021-2022 extratype"
2424
VALUE "OriginalFilename", "chunkdisk.exe"
2525
VALUE "ProductName", "chunkdisk"
26-
VALUE "ProductVersion", "1.4.0.0"
26+
VALUE "ProductVersion", "1.5.0.0"
2727
END
2828
END
2929
BLOCK "VarFileInfo"

main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @file main.cpp
33
*
4-
* @copyright 2021 extratype
4+
* @copyright 2021-2022 extratype
55
*/
66

77
#include "utils.hpp"
@@ -522,7 +522,7 @@ DWORD CreateStorageUnit(PWSTR chunkdisk_file, GUID guid, const BOOLEAN write_pro
522522
err = [guid, &bases, write_protected, pipe_name, &unit]() -> DWORD
523523
{
524524
constexpr wchar_t ProductId[] = L"ChunkDisk";
525-
constexpr wchar_t ProductRevision[] = L"1.4";
525+
constexpr wchar_t ProductRevision[] = L"1.5";
526526
auto unit_params = SPD_STORAGE_UNIT_PARAMS();
527527

528528
unit_params.Guid = guid;

service.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @file service.cpp
33
*
4-
* @copyright 2021 extratype
4+
* @copyright 2021-2022 extratype
55
*/
66

77
#include "service.hpp"

service.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @file service.hpp
33
*
4-
* @copyright 2021 extratype
4+
* @copyright 2021-2022 extratype
55
*
66
* Provide shared resources for workers.
77
*/

types.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @file types.hpp
33
*
4-
* @copyright 2021 extratype
4+
* @copyright 2021-2022 extratype
55
*
66
* Basic types and data structures.
77
*/

utils.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @file utils.cpp
33
*
4-
* @copyright 2021 extratype
4+
* @copyright 2021-2022 extratype
55
*/
66

77
#include "utils.hpp"

utils.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @file utils.hpp
33
*
4-
* @copyright 2021 extratype
4+
* @copyright 2021-2022 extratype
55
*
66
* System utilities and utilities for WinSpd.
77
*/

worker.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @file worker.cpp
33
*
4-
* @copyright 2021 extratype
4+
* @copyright 2021-2022 extratype
55
*/
66

77
#include "worker.hpp"

0 commit comments

Comments
 (0)