Skip to content

Commit

Permalink
Increase version to 1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
GenericMadScientist committed Dec 26, 2023
1 parent 53dbda8 commit 7278e78
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cmake_policy(SET CMP0091 NEW)

project(
chopt
VERSION 1.8.0
VERSION 1.8.1
DESCRIPTION "A program to generate optimal Star Power paths for Clone Hero"
LANGUAGES CXX)

Expand Down
8 changes: 4 additions & 4 deletions resources/resources.rc
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
IDR_MAINFRAME ICON "icon.ico"
1 VERSIONINFO
FILEVERSION 1,8,0,0
PRODUCTVERSION 1,8,0,0
FILEVERSION 1,8,1,0
PRODUCTVERSION 1,8,1,0
{
BLOCK "StringFileInfo"
{
BLOCK "080904B0"
{
VALUE "FileDescription", "CHOpt\0",
VALUE "FileVersion", "1.8.0.0\0",
VALUE "FileVersion", "1.8.1.0\0",
VALUE "OriginalFilename", "CHOpt.exe\0",
VALUE "ProductName", "CHOpt\0",
VALUE "ProductVersion", "1.8.0.0\0"
VALUE "ProductVersion", "1.8.1.0\0"
}
}
BLOCK "VarFileInfo"
Expand Down
2 changes: 1 addition & 1 deletion src/image.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ using namespace cimg_library;

constexpr int VERSION_MAJOR = 1;
constexpr int VERSION_MINOR = 8;
constexpr int VERSION_PATCH = 0;
constexpr int VERSION_PATCH = 1;

constexpr int BEAT_WIDTH = 60;
constexpr int FONT_HEIGHT = 13;
Expand Down

0 comments on commit 7278e78

Please sign in to comment.