Skip to content

Commit

Permalink
Increase version to 1.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
GenericMadScientist committed Oct 7, 2024
1 parent be42d9a commit c2c4490
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 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.9.1
VERSION 1.9.2
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,9,1,0
PRODUCTVERSION 1,9,1,0
FILEVERSION 1,9,2,0
PRODUCTVERSION 1,9,2,0
{
BLOCK "StringFileInfo"
{
BLOCK "080904B0"
{
VALUE "FileDescription", "CHOpt\0",
VALUE "FileVersion", "1.9.1.0\0",
VALUE "FileVersion", "1.9.2.0\0",
VALUE "OriginalFilename", "CHOpt.exe\0",
VALUE "ProductName", "CHOpt\0",
VALUE "ProductVersion", "1.9.1.0\0"
VALUE "ProductVersion", "1.9.2.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 @@ -37,7 +37,7 @@ using namespace cimg_library;

constexpr int VERSION_MAJOR = 1;
constexpr int VERSION_MINOR = 9;
constexpr int VERSION_PATCH = 1;
constexpr int VERSION_PATCH = 2;

constexpr int BEAT_WIDTH = 60;
constexpr int FONT_HEIGHT = 13;
Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ int main(int argc, char** argv)
try {
QCoreApplication app {argc, argv};
QCoreApplication::setApplicationName("CHOpt");
QCoreApplication::setApplicationVersion("1.8.1");
QCoreApplication::setApplicationVersion("1.9.2");

const auto settings = from_args(QCoreApplication::arguments());
const SongFile song_file {settings.filename};
Expand Down

0 comments on commit c2c4490

Please sign in to comment.