77
88An InfiniMiner/Minecraft inspired game.
99
10- Copyright (c ) 2010-2018 Perttu Ahola < celeron55@gmail.com >
10+ Copyright (C ) 2010-2018 Perttu Ahola < celeron55@gmail.com >
1111and contributors (see source file comments and the version control log)
1212
1313In case you downloaded the source code:
@@ -22,7 +22,7 @@ Further documentation
2222- Wiki: http://wiki.minetest.net/
2323- Developer wiki: http://dev.minetest.net/
2424- Forum: http://forum.minetest.net/
25- - Github : https://github.com/minetest/minetest/
25+ - GitHub : https://github.com/minetest/minetest/
2626- [ doc/] ( doc/ ) directory of source distribution
2727
2828Default controls
@@ -55,15 +55,14 @@ Some can be changed in the key config dialog in the settings tab.
5555| J | Enable/disable fast mode (needs fast privilege) |
5656| H | Enable/disable noclip mode (needs noclip privilege) |
5757| E | Move fast in fast mode |
58- | F1 | Hide/show HUD |
59- | F2 | Hide/show chat |
60- | F3 | Disable/enable fog |
61- | F4 | Disable/enable camera update (Mapblocks are not updated anymore when disabled, disabled in release builds) |
62- | F5 | Cycle through debug info screens |
63- | F6 | Cycle through profiler info screens |
64- | F7 | Cycle through camera modes |
65- | F8 | Toggle cinematic mode |
66- | F9 | Cycle through minimap modes |
58+ | F1 | Hide/show HUD |
59+ | F2 | Hide/show chat |
60+ | F3 | Disable/enable fog |
61+ | F4 | Disable/enable camera update (Mapblocks are not updated anymore when disabled, disabled in release builds) |
62+ | F5 | Cycle through debug information screens |
63+ | F6 | Cycle through profiler info screens |
64+ | F7 | Cycle through camera modes |
65+ | F9 | Cycle through minimap modes |
6766| Shift + F9 | Change minimap orientation |
6867| F10 | Show/hide console |
6968| F12 | Take screenshot |
@@ -133,32 +132,32 @@ For Fedora users:
133132
134133#### Download
135134
136- You can install git for easily keeping your copy up to date.
137- If you don’t want git , read below on how to get the source without git .
138- This is an example for installing git on Debian/Ubuntu:
135+ You can install Git for easily keeping your copy up to date.
136+ If you don’t want Git , read below on how to get the source without Git .
137+ This is an example for installing Git on Debian/Ubuntu:
139138
140139 sudo apt install git
141140
142141For Fedora users:
143142
144143 sudo dnf install git
145144
146- Download source (this is the URL to the latest of source repository, which might not work at all times) using git :
145+ Download source (this is the URL to the latest of source repository, which might not work at all times) using Git :
147146
148147 git clone --depth 1 https://github.com/minetest/minetest.git
149148 cd minetest
150149
151- Download minetest_game (otherwise only the "Minimal development test" game is available) using git :
150+ Download minetest_game (otherwise only the "Minimal development test" game is available) using Git :
152151
153152 git clone --depth 1 https://github.com/minetest/minetest_game.git games/minetest_game
154153
155- Download source, without using git :
154+ Download source, without using Git :
156155
157156 wget https://github.com/minetest/minetest/archive/master.tar.gz
158157 tar xf master.tar.gz
159158 cd minetest-master
160159
161- Download minetest_game, without using git :
160+ Download minetest_game, without using Git :
162161
163162 cd games/
164163 wget https://github.com/minetest/minetest_game/archive/master.tar.gz
@@ -197,7 +196,7 @@ General options and their default values:
197196 Release - Release build
198197 Debug - Debug build
199198 SemiDebug - Partially optimized debug build
200- RelWithDebInfo - Release build with Debug information
199+ RelWithDebInfo - Release build with debug information
201200 MinSizeRel - Release build with -Os passed to compiler to make executable as small as possible
202201 ENABLE_CURL=ON - Build with cURL; Enables use of online mod repo, public serverlist and remote media fetching via http
203202 ENABLE_CURSES=ON - Build with (n)curses; Enables a server side terminal (command line option: --terminal)
@@ -208,7 +207,7 @@ General options and their default values:
208207 ENABLE_POSTGRESQL=ON - Build with libpq; Enables use of PostgreSQL map backend (PostgreSQL 9.5 or greater recommended)
209208 ENABLE_REDIS=ON - Build with libhiredis; Enables use of Redis map backend
210209 ENABLE_SPATIAL=ON - Build with LibSpatial; Speeds up AreaStores
211- ENABLE_SOUND=ON - Build with OpenAL, libogg & libvorbis; in-game Sounds
210+ ENABLE_SOUND=ON - Build with OpenAL, libogg & libvorbis; in-game sounds
212211 ENABLE_LUAJIT=ON - Build with LuaJIT (much faster than non-JIT Lua)
213212 ENABLE_SYSTEM_GMP=ON - Use GMP from system (much faster than bundled mini-gmp)
214213 ENABLE_SYSTEM_JSONCPP=OFF - Use JsonCPP from system
@@ -226,15 +225,15 @@ Library specific options:
226225 CURL_LIBRARY - Only if building with cURL; path to libcurl.a/libcurl.so/libcurl.lib
227226 EGL_INCLUDE_DIR - Only if building with GLES; directory that contains egl.h
228227 EGL_LIBRARY - Only if building with GLES; path to libEGL.a/libEGL.so
229- FREETYPE_INCLUDE_DIR_freetype2 - Only if building with Freetype2 ; directory that contains an freetype directory with files such as ftimage.h in it
230- FREETYPE_INCLUDE_DIR_ft2build - Only if building with Freetype2 ; directory that contains ft2build.h
231- FREETYPE_LIBRARY - Only if building with Freetype2 ; path to libfreetype.a/libfreetype.so/freetype.lib
232- FREETYPE_DLL - Only if building with Freetype2 on Windows; path to libfreetype.dll
233- GETTEXT_DLL - Only when building with Gettext on Windows; path to libintl3.dll
234- GETTEXT_ICONV_DLL - Only when building with Gettext on Windows; path to libiconv2.dll
235- GETTEXT_INCLUDE_DIR - Only when building with Gettext ; directory that contains iconv.h
236- GETTEXT_LIBRARY - Only when building with Gettext on Windows; path to libintl.dll.a
237- GETTEXT_MSGFMT - Only when building with Gettext ; path to msgfmt/msgfmt.exe
228+ FREETYPE_INCLUDE_DIR_freetype2 - Only if building with FreeType 2 ; directory that contains an freetype directory with files such as ftimage.h in it
229+ FREETYPE_INCLUDE_DIR_ft2build - Only if building with FreeType 2 ; directory that contains ft2build.h
230+ FREETYPE_LIBRARY - Only if building with FreeType 2 ; path to libfreetype.a/libfreetype.so/freetype.lib
231+ FREETYPE_DLL - Only if building with FreeType 2 on Windows; path to libfreetype.dll
232+ GETTEXT_DLL - Only when building with gettext on Windows; path to libintl3.dll
233+ GETTEXT_ICONV_DLL - Only when building with gettext on Windows; path to libiconv2.dll
234+ GETTEXT_INCLUDE_DIR - Only when building with gettext ; directory that contains iconv.h
235+ GETTEXT_LIBRARY - Only when building with gettext on Windows; path to libintl.dll.a
236+ GETTEXT_MSGFMT - Only when building with gettext ; path to msgfmt/msgfmt.exe
238237 IRRLICHT_DLL - Only on Windows; path to Irrlicht.dll
239238 IRRLICHT_INCLUDE_DIR - Directory that contains IrrCompileConfig.h
240239 IRRLICHT_LIBRARY - Path to libIrrlicht.a/libIrrlicht.so/libIrrlicht.dll.a/Irrlicht.lib
@@ -302,10 +301,10 @@ Library specific options:
302301 * Download all the other stuff to DIR and extract them into there.
303302 ("extract here", not "extract to packagename/")
304303 * NOTE: zlib125dll.zip needs to be extracted into zlib125dll
305- * NOTE: You need to extract sqlite3.h & sqlite3ext.h from sqlite3 source
306- and sqlite3.dll & sqlite3.def from sqlite3 precompiled binaries
307- into "sqlite3" directory, and generate sqlite3.lib using command
308- "LIB /DEF:sqlite3.def /OUT:sqlite3.lib"
304+ * NOTE: You need to extract sqlite3.h & sqlite3ext.h from the SQLite 3
305+ source and sqlite3.dll & sqlite3.def from the SQLite 3 precompiled
306+ binaries into "sqlite3" directory, and generate sqlite3.lib using
307+ command "LIB /DEF:sqlite3.def /OUT:sqlite3.lib"
309308 * All those packages contain a nice base directory in them, which
310309 should end up being the direct subdirectories of DIR.
311310 * You will end up with a directory structure like this (+=dir, -=file):
@@ -439,5 +438,5 @@ patch is set to 0.
439438minor/trivial features considered necessary.
440439
441440Since 5.0.0-dev and 0.4.17-dev, the dev notation refers to the next release,
442- ie : 5.0.0-dev is the development version leading to 5.0.0.
441+ i.e. : 5.0.0-dev is the development version leading to 5.0.0.
443442Prior to that we used ` previous_version-dev ` .
0 commit comments