Skip to content

Commit

Permalink
Change version to 1.1.1, project version to 18.
Browse files Browse the repository at this point in the history
  • Loading branch information
Randalphwa committed May 30, 2023
1 parent 16930de commit d74274b
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 @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.20)

project(wxUiEditor
LANGUAGES CXX
VERSION 1.1.0
VERSION 1.1.1
DESCRIPTION "wxWidgets UI designer"
HOMEPAGE_URL "https://github.com/KeyWorksRW/wxUiEditor")

Expand Down
4 changes: 2 additions & 2 deletions src/pch.h
Original file line number Diff line number Diff line change
Expand Up @@ -127,14 +127,14 @@ namespace xrc
};
} // namespace xrc

constexpr const char* txtVersion = "wxUiEditor 1.1.0";
constexpr const char* txtVersion = "wxUiEditor 1.1.1";
constexpr const char* txtCopyRight = "Copyright (c) 2019-2023 KeyWorks Software";
constexpr const char* txtAppname = "wxUiEditor";

// This is the highest project number supported by this build of wxUiEditor. It should be
// updated after every release, if there are any changes to the project format that might
// require a newer version.
constexpr const int curSupportedVer = 17;
constexpr const int curSupportedVer = 18;

// This is the default minimum required version for all generators. It is the version used by
// the 1.0.0 release.
Expand Down
2 changes: 1 addition & 1 deletion src/wxUiEditor.exe.manifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
<assemblyIdentity
version="1.1.0.0"
version="1.1.1.0"
processorArchitecture="*"
name="KeyWorks.Software.wxUiEditor"
type="win32"
Expand Down
8 changes: 4 additions & 4 deletions src/wxUiEditor.rc
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ APPICON ICON "Debug.ico"
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,1,0,0
PRODUCTVERSION 1,1,0,0
FILEVERSION 1,1,1,0
PRODUCTVERSION 1,1,1,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -89,14 +89,14 @@ BEGIN
VALUE "Comments", "https://github.com/KeyWorksRW/wxUiEditor\0"
VALUE "CompanyName", "KeyWorks Software\0"
VALUE "FileDescription", "wxWidgets GUI designer for C++/wxPython/XRC applications\0"
VALUE "FileVersion", "1,1,0,0\0"
VALUE "FileVersion", "1,1,1,0\0"
VALUE "InternalName", "wxUiEditor\0"
VALUE "LegalCopyright", "Copyright (c) 2019-2023 KeyWorks Software\0"
VALUE "LegalTrademarks", "\0"
VALUE "OriginalFilename", "wxUiEditor.exe\0"
VALUE "PrivateBuild", "\0"
VALUE "ProductName", "wxUiEditor\0"
VALUE "ProductVersion", "1,1,0,0\0"
VALUE "ProductVersion", "1,1,1,0\0"
VALUE "SpecialBuild", "\0"
END
END
Expand Down

0 comments on commit d74274b

Please sign in to comment.