]> git.lizzy.rs Git - dragonfireclient.git/commitdiff
Continue with 5.5.0-dev
authorsfan5 <sfan5@live.de>
Tue, 23 Feb 2021 18:50:44 +0000 (19:50 +0100)
committersfan5 <sfan5@live.de>
Tue, 23 Feb 2021 18:50:44 +0000 (19:50 +0100)
CMakeLists.txt
build/android/build.gradle
doc/client_lua_api.txt
doc/menu_lua_api.txt

index f6a0d22fe272e057051e84fc09042b91176f9fb2..910213c098a6f7e5b41adcd7b61b218644b1c087 100644 (file)
@@ -12,12 +12,12 @@ set(CLANG_MINIMUM_VERSION "3.4")
 
 # Also remember to set PROTOCOL_VERSION in network/networkprotocol.h when releasing
 set(VERSION_MAJOR 5)
-set(VERSION_MINOR 4)
+set(VERSION_MINOR 5)
 set(VERSION_PATCH 0)
 set(VERSION_EXTRA "" CACHE STRING "Stuff to append to version string")
 
 # Change to false for releases
-set(DEVELOPMENT_BUILD FALSE)
+set(DEVELOPMENT_BUILD TRUE)
 
 set(VERSION_STRING "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}")
 if(VERSION_EXTRA)
index be9eaada4b6df773824367d48cc233062ba657bd..3ba51a4bb7558ba319990916b2ad6d96b87df94f 100644 (file)
@@ -1,9 +1,9 @@
 // Top-level build file where you can add configuration options common to all sub-projects/modules.
 
 project.ext.set("versionMajor", 5)      // Version Major
-project.ext.set("versionMinor", 4)      // Version Minor
+project.ext.set("versionMinor", 5)      // Version Minor
 project.ext.set("versionPatch", 0)      // Version Patch
-project.ext.set("versionExtra", "") // Version Extra
+project.ext.set("versionExtra", "-dev") // Version Extra
 project.ext.set("versionCode", 32)      // Android Version Code
 // NOTE: +2 after each release!
 // +1 for ARM and +1 for ARM64 APK's, because
index 098596481f82b310631dc825caf019ca163eaac4..c2c552440fa012d7a3355eef5fbac61ecdcd6663 100644 (file)
@@ -1,4 +1,4 @@
-Minetest Lua Client Modding API Reference 5.4.0
+Minetest Lua Client Modding API Reference 5.5.0
 ================================================
 * More information at <http://www.minetest.net/>
 * Developer Wiki: <http://dev.minetest.net/>
index b3975bc1d86ba240f3a7b49c61b1e7fbae5b6faa..90ec527b0ed5533ee7bf9c83ae0245d5cb08eaf7 100644 (file)
@@ -1,4 +1,4 @@
-Minetest Lua Mainmenu API Reference 5.4.0
+Minetest Lua Mainmenu API Reference 5.5.0
 =========================================
 
 Introduction