Skip to content

Commit

Permalink
Update version to 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GenericMadScientist committed Mar 12, 2023
1 parent 41cda1f commit 44f9dd3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 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.5.1
VERSION 1.6.0
DESCRIPTION "A program to generate optimal Star Power paths for Clone Hero"
LANGUAGES CXX)

Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 1.5.1.{build}-{branch}
version: 1.6.0.{build}-{branch}

configuration: Debug
platform: x64
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,5,1,0
PRODUCTVERSION 1,5,1,0
FILEVERSION 1,6,0,0
PRODUCTVERSION 1,6,0,0
{
BLOCK "StringFileInfo"
{
BLOCK "080904B0"
{
VALUE "FileDescription", "CHOpt\0",
VALUE "FileVersion", "1.5.1.0\0",
VALUE "FileVersion", "1.6.0.0\0",
VALUE "OriginalFilename", "CHOpt.exe\0",
VALUE "ProductName", "CHOpt\0",
VALUE "ProductVersion", "1.5.1.0\0"
VALUE "ProductVersion", "1.6.0.0\0"
}
}
BLOCK "VarFileInfo"
Expand Down
4 changes: 2 additions & 2 deletions src/image.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
using namespace cimg_library;

constexpr int VERSION_MAJOR = 1;
constexpr int VERSION_MINOR = 5;
constexpr int VERSION_PATCH = 1;
constexpr int VERSION_MINOR = 6;
constexpr int VERSION_PATCH = 0;

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

0 comments on commit 44f9dd3

Please sign in to comment.