Skip to content

Commit

Permalink
bump: v0.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Blinue committed Jun 8, 2023
1 parent b65518e commit 86db714
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 19 deletions.
8 changes: 4 additions & 4 deletions src/Magpie.App/Magpie.App.rc
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,10,2,0
PRODUCTVERSION 0,10,2,0
FILEVERSION 0,10,3,0
PRODUCTVERSION 0,10,3,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -41,12 +41,12 @@ BEGIN
BEGIN
BLOCK "000004b0"
BEGIN
VALUE "FileVersion", "0.10.2.0"
VALUE "FileVersion", "0.10.3.0"
VALUE "InternalName", "Magpie.App.dll"
VALUE "LegalCopyright", "Copyright (C) 2023 Liu Xu"
VALUE "OriginalFilename", "Magpie.App.dll"
VALUE "ProductName", "Magpie"
VALUE "ProductVersion", "0.10.2.0"
VALUE "ProductVersion", "0.10.3.0"
END
END
BLOCK "VarFileInfo"
Expand Down
8 changes: 4 additions & 4 deletions src/Magpie.Core/Magpie.Core.rc
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,10,2,0
PRODUCTVERSION 0,10,2,0
FILEVERSION 0,10,3,0
PRODUCTVERSION 0,10,3,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -41,12 +41,12 @@ BEGIN
BEGIN
BLOCK "000004b0"
BEGIN
VALUE "FileVersion", "0.10.2.0"
VALUE "FileVersion", "0.10.3.0"
VALUE "InternalName", "Magpie.Core.dll"
VALUE "LegalCopyright", "Copyright (C) 2023 Liu Xu"
VALUE "OriginalFilename", "Magpie.Core.dll"
VALUE "ProductName", "Magpie"
VALUE "ProductVersion", "0.10.2.0"
VALUE "ProductVersion", "0.10.3.0"
END
END
BLOCK "VarFileInfo"
Expand Down
8 changes: 4 additions & 4 deletions src/Magpie/Magpie.rc
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ IDI_APP ICON "Magpie.ico"
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,10,2,0
PRODUCTVERSION 0,10,2,0
FILEVERSION 0,10,3,0
PRODUCTVERSION 0,10,3,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -78,12 +78,12 @@ BEGIN
BEGIN
BLOCK "000004b0"
BEGIN
VALUE "FileVersion", "0.10.2.0"
VALUE "FileVersion", "0.10.3.0"
VALUE "InternalName", "Magpie.exe"
VALUE "LegalCopyright", "Copyright (C) 2023 Liu Xu"
VALUE "OriginalFilename", "Magpie.exe"
VALUE "ProductName", "Magpie"
VALUE "ProductVersion", "0.10.2.0"
VALUE "ProductVersion", "0.10.3.0"
END
END
BLOCK "VarFileInfo"
Expand Down
6 changes: 3 additions & 3 deletions src/Shared/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ struct Version {
uint32_t patch = 0;
};

constexpr inline Version MAGPIE_VERSION(0, 10, 2);
constexpr inline const char* MAGPIE_TAG = "v0.10.2";
constexpr inline const wchar_t* MAGPIE_TAG_W = L"v0.10.2";
constexpr inline Version MAGPIE_VERSION(0, 10, 3);
constexpr inline const char* MAGPIE_TAG = "v0.10.3";
constexpr inline const wchar_t* MAGPIE_TAG_W = L"v0.10.3";
8 changes: 4 additions & 4 deletions src/Updater/Updater.rc
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,10,2,0
PRODUCTVERSION 0,10,2,0
FILEVERSION 0,10,3,0
PRODUCTVERSION 0,10,3,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -83,12 +83,12 @@ BEGIN
BEGIN
BLOCK "000004b0"
BEGIN
VALUE "FileVersion", "0.10.2.0"
VALUE "FileVersion", "0.10.3.0"
VALUE "InternalName", "Updater.exe"
VALUE "LegalCopyright", "Copyright (C) 2023 Liu Xu"
VALUE "OriginalFilename", "Updater.exe"
VALUE "ProductName", "Magpie"
VALUE "ProductVersion", "0.10.2.0"
VALUE "ProductVersion", "0.10.3.0"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit 86db714

Please sign in to comment.