Update README.md

This commit is contained in:
luk3yx 2019-08-07 09:41:28 +12:00
parent 4a82849e43
commit 3dfd5aec11
4 changed files with 22 additions and 7 deletions

View File

@ -15,9 +15,9 @@ set(GCC_MINIMUM_VERSION "4.8")
set(CLANG_MINIMUM_VERSION "3.4") set(CLANG_MINIMUM_VERSION "3.4")
# Also remember to set PROTOCOL_VERSION in network/networkprotocol.h when releasing # Also remember to set PROTOCOL_VERSION in network/networkprotocol.h when releasing
set(VERSION_MAJOR 4) set(VERSION_MAJOR 0)
set(VERSION_MINOR 18) set(VERSION_MINOR 4)
set(VERSION_PATCH 6) set(VERSION_PATCH 18)
set(VERSION_TWEAK 5) set(VERSION_TWEAK 5)
set(VERSION_EXTRA "" CACHE STRING "Stuff to append to version string") set(VERSION_EXTRA "" CACHE STRING "Stuff to append to version string")

View File

@ -7,6 +7,19 @@
</h1> </h1>
</div> </div>
Notice
------
This is a fork of an outdated version of Minetest (0.4.17.1) to add features
and bugfixes from 5.0.0 before 5.0.0 was officially released and most servers
were still on 0.4.17.1. Please only use this if you *have* to connect to
legacy servers, otherwise I strongly recommend using the official and more
stable [Minetest](https://github.com/minetest/minetest).
Old description
---------------
A [Minetest](https://github.com/minetest/minetest) fork with backported features A [Minetest](https://github.com/minetest/minetest) fork with backported features
and bugfixes from 5.0.0. and bugfixes from 5.0.0.

View File

@ -1,4 +1,4 @@
Minetest Lua Mainmenu API Reference 0.4.18.6 Minetest Lua Mainmenu API Reference 0.4.17
======================================== ========================================
Introduction Introduction

View File

@ -49,11 +49,13 @@ back_to_devel() {
sed -i -re 's/^set\(DEVELOPMENT_BUILD FALSE\)$/set(DEVELOPMENT_BUILD TRUE)/' CMakeLists.txt sed -i -re 's/^set\(DEVELOPMENT_BUILD FALSE\)$/set(DEVELOPMENT_BUILD TRUE)/' CMakeLists.txt
sed -i -re "s/^set\(VERSION_MAJOR [0-9]+\)$/set(VERSION_MAJOR $NEXT_VERSION_MAJOR)/" CMakeLists.txt sed -i -re "s/^set\(VERSION_MAJOR [0-9]+\)$/set(VERSION_MAJOR 0)/" CMakeLists.txt
sed -i -re "s/^set\(VERSION_MINOR [0-9]+\)$/set(VERSION_MINOR $NEXT_VERSION_MINOR)/" CMakeLists.txt sed -i -re "s/^set\(VERSION_MINOR [0-9]+\)$/set(VERSION_MINOR $NEXT_VERSION_MAJOR)/" CMakeLists.txt
sed -i -re "s/^set\(VERSION_PATCH [0-9]+\)$/set(VERSION_PATCH $NEXT_VERSION_PATCH)/" CMakeLists.txt sed -i -re "s/^set\(VERSION_PATCH [0-9]+\)$/set(VERSION_PATCH $NEXT_VERSION_MINOR)/" CMakeLists.txt
sed -i -re "s/^set\(VERSION_TWEAK [0-9]+\)$/set(VERSION_TWEAK $NEXT_VERSION_PATCH)/" CMakeLists.txt
sed -i -re "1s/[0-9]+\.[0-9]+\.[0-9]+/$NEXT_VERSION/g" doc/menu_lua_api.txt sed -i -re "1s/[0-9]+\.[0-9]+\.[0-9]+/$NEXT_VERSION/g" doc/menu_lua_api.txt