Skip to content

Commit

Permalink
Mudlet 4.13 release!
Browse files Browse the repository at this point in the history
  • Loading branch information
vadi2 committed Sep 22, 2021
1 parent 8349a2c commit 9b8c022
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,12 @@ endif()
# IMPORTANT: To insure consistency please ensure the SAME of the first two
# values are also assigned to the "VERSION" and "BUILD" variables in the native
# qmake project file, which is NOW called: ./src/mudlet.pro
set(APP_VERSION 4.12.0)
set(APP_VERSION 4.13.0)
if(DEFINED ENV{MUDLET_VERSION_BUILD} AND NOT $ENV{MUDLET_VERSION_BUILD}
STREQUAL "")
set(APP_BUILD $ENV{MUDLET_VERSION_BUILD})
else()
set(APP_BUILD "-dev")
set(APP_BUILD "")
endif()

set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH})
Expand Down
4 changes: 2 additions & 2 deletions src/mudlet.pro
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ TEMPLATE = app
########################## Version and Build setting ###########################
# Set the current Mudlet Version, unfortunately the Qt documentation suggests
# that only a #.#.# form without any other alphanumberic suffixes is required:
VERSION = 4.12.0
VERSION = 4.13.0

# if you are distributing modified code, it would be useful if you
# put something distinguishing into the MUDLET_VERSION_BUILD environment
Expand All @@ -101,7 +101,7 @@ isEmpty( BUILD ) {
# "-dev" for the development build
# "-ptb" for the public test build
# "" for the release build
BUILD = "-dev"
BUILD = ""
}

# As the above also modifies the splash screen image (so developers get reminded
Expand Down

0 comments on commit 9b8c022

Please sign in to comment.