Skip to content

Commit

Permalink
Bump version 2.4.0.0 Final
Browse files Browse the repository at this point in the history
  • Loading branch information
Greedysky committed Jan 29, 2022
1 parent 6a8e871 commit 5b365d6
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 16 deletions.
11 changes: 5 additions & 6 deletions TTKCommon/ttkversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,16 @@
* with this program; If not, see <http://www.gnu.org/licenses/>.
***************************************************************************/

//update time 2021.10.27
#define TTKTOOLS_VERSION_STR "2.3.0.0"
#define TTKTOOLS_VERSION_WSTR L"2.3.0.0"
#define TTKTOOLS_VER_TIME_STR "(2021/10/27)"
//update time 2022.01.29
#define TTKTOOLS_VERSION_STR "2.4.0.0"
#define TTKTOOLS_VER_TIME_STR "(2022/01/29)"

#define TTKTOOLS_MAJOR_VERSION 2
#define TTKTOOLS_MIDLE_VERSION 3
#define TTKTOOLS_MIDLE_VERSION 4
#define TTKTOOLS_MINOR_VERSION 0
#define TTKTOOLS_PATCH_VERSION 0

#define TTKTOOLS_VERSION 0x02300
#define TTKTOOLS_VERSION 0x02400

#define TTK_VERSION_CHECK(major, middle, minor, patch) ((major<<12)|(middle<<8)|(minor<<4)|(patch))

Expand Down
8 changes: 4 additions & 4 deletions TTKExample/TTKExample.rc
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
IDI_ICON1 ICON DISCARDABLE "../TTKResource/lb_app_logo.ico"

VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,3,0,0
PRODUCTVERSION 2,3,0,0
FILEVERSION 2,4,0,0
PRODUCTVERSION 2,4,0,0
FILEFLAGSMASK 0x3fL

#ifdef _DEBUG
Expand All @@ -27,12 +27,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Greedysky Studio, Ltd."
VALUE "FileDescription", "TTKWidgetTools"
VALUE "FileVersion", "2.3.0.0"
VALUE "FileVersion", "2.4.0.0"
VALUE "InternalName", "TTKWidgetTools.exe"
VALUE "LegalCopyright", "Copyright By Greedysky Studio(C)2022"
VALUE "OriginalFilename", "TTKWidgetTools.exe"
VALUE "ProductName", "TTKWidgetTools"
VALUE "ProductVersion", "2.3.0.0"
VALUE "ProductVersion", "2.4.0.0"
END
END
BLOCK "VarFileInfo"
Expand Down
8 changes: 4 additions & 4 deletions TTKModule/TTKCore.rc
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
#endif

VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,3,0,0
PRODUCTVERSION 2,3,0,0
FILEVERSION 2,4,0,0
PRODUCTVERSION 2,4,0,0
FILEFLAGSMASK 0x3fL

#ifdef _DEBUG
Expand All @@ -25,10 +25,10 @@ BEGIN
BEGIN
VALUE "CompanyName", "Greedysky Studio, Ltd."
VALUE "FileDescription", "TTKCore"
VALUE "FileVersion", "2.3.0.0"
VALUE "FileVersion", "2.4.0.0"
VALUE "LegalCopyright", "Copyright By Greedysky Studio(C)2022"
VALUE "ProductName", "TTKCore"
VALUE "ProductVersion", "2.3.0.0"
VALUE "ProductVersion", "2.4.0.0"
END
END
BLOCK "VarFileInfo"
Expand Down
4 changes: 2 additions & 2 deletions TTKVersion.pri
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ MOC_DIR = ./.build/moc
OBJECTS_DIR = ./.build/obj
RCC_DIR = ./.build/rcc

# update time 2021.10.27
TTKWidgetTools = 2.3.0.0
# update time 2022.01.29
TTKWidgetTools = 2.4.0.0

0 comments on commit 5b365d6

Please sign in to comment.