Replace occurences of 'wiki.minetest.net' with 'wiki.luanti.org'

This commit is contained in:
veprogames 2024-11-18 00:04:32 +01:00 committed by GitHub
parent 7295b6c88c
commit a8ea165042
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
8 changed files with 10 additions and 10 deletions

@ -26,7 +26,7 @@ Table of Contents
Further documentation Further documentation
---------------------- ----------------------
- Website: https://www.luanti.org/ - Website: https://www.luanti.org/
- Wiki: https://wiki.minetest.net/ - Wiki: https://wiki.luanti.org/
- Forum: https://forum.luanti.org/ - Forum: https://forum.luanti.org/
- GitHub: https://github.com/minetest/minetest/ - GitHub: https://github.com/minetest/minetest/
- [Developer documentation](doc/developing/) - [Developer documentation](doc/developing/)

@ -16,7 +16,7 @@ local minetest_example_header = [[
# to the program, eg. "luanti.exe --config ../minetest.conf.example". # to the program, eg. "luanti.exe --config ../minetest.conf.example".
# Further documentation: # Further documentation:
# https://wiki.minetest.net/ # https://wiki.luanti.org/
]] ]]

@ -42,7 +42,7 @@ configuration file can usually be found at:
* After 5.4.2: * After 5.4.2:
* `/sdcard/Android/data/net.minetest.minetest/` or `/storage/emulated/0/Android/data/net.minetest.minetest/` if stored on the device * `/sdcard/Android/data/net.minetest.minetest/` or `/storage/emulated/0/Android/data/net.minetest.minetest/` if stored on the device
* `/storage/emulated/(varying folder name)/Android/data/net.minetest.minetest/` if stored on the SD card * `/storage/emulated/(varying folder name)/Android/data/net.minetest.minetest/` if stored on the SD card
* [Learn more about Android directory](https://wiki.minetest.net/Accessing_Android_Data_Directory) * [Learn more about Android directory](https://wiki.luanti.org/Accessing_Android_Data_Directory)
## Useful settings ## Useful settings

@ -23,4 +23,4 @@ Notable pages:
Oftentimes knowledge hasn't been written down (yet) and your best bet is to ask someone experienced and/or the core developers. Oftentimes knowledge hasn't been written down (yet) and your best bet is to ask someone experienced and/or the core developers.
Feel free to join the [#minetest-dev IRC](https://wiki.minetest.net/IRC) and ask questions related to **engine development**. Feel free to join the [#minetest-dev IRC](https://wiki.luanti.org/IRC) and ask questions related to **engine development**.

@ -10,7 +10,7 @@
# to the program, eg. "luanti.exe --config ../minetest.conf.example". # to the program, eg. "luanti.exe --config ../minetest.conf.example".
# Further documentation: # Further documentation:
# https://wiki.minetest.net/ # https://wiki.luanti.org/
# #
# Controls # Controls

@ -135,8 +135,8 @@
<url type="bugtracker">https://www.minetest.net/get-involved/#reporting-issues</url> <url type="bugtracker">https://www.minetest.net/get-involved/#reporting-issues</url>
<url type="translate">https://dev.minetest.net/Translation</url> <url type="translate">https://dev.minetest.net/Translation</url>
<url type="donation">https://www.minetest.net/get-involved/#donate</url> <url type="donation">https://www.minetest.net/get-involved/#donate</url>
<url type="faq">https://wiki.minetest.net/FAQ</url> <url type="faq">https://wiki.luanti.org/FAQ</url>
<url type="help">https://wiki.minetest.net</url> <url type="help">https://wiki.luanti.org</url>
<url type="vcs-browser">https://github.com/minetest/minetest</url> <url type="vcs-browser">https://github.com/minetest/minetest</url>
<url type="contribute">https://www.minetest.net/get-involved</url> <url type="contribute">https://www.minetest.net/get-involved</url>

@ -4191,7 +4191,7 @@ ModStorageDatabase *Server::openModStorageDatabase(const std::string &world_path
warningstream << "/!\\ You are using the old mod storage files backend. " warningstream << "/!\\ You are using the old mod storage files backend. "
<< "This backend is deprecated and may be removed in a future release /!\\" << "This backend is deprecated and may be removed in a future release /!\\"
<< std::endl << "Switching to SQLite3 is advised, " << std::endl << "Switching to SQLite3 is advised, "
<< "please read http://wiki.minetest.net/Database_backends." << std::endl; << "please read https://wiki.luanti.org/Database_backends." << std::endl;
return openModStorageDatabase(backend, world_path, world_mt); return openModStorageDatabase(backend, world_path, world_mt);
} }

@ -526,14 +526,14 @@ void ServerEnvironment::init()
warningstream << "/!\\ You are using old player file backend. " warningstream << "/!\\ You are using old player file backend. "
<< "This backend is deprecated and will be removed in a future release /!\\" << "This backend is deprecated and will be removed in a future release /!\\"
<< std::endl << "Switching to SQLite3 or PostgreSQL is advised, " << std::endl << "Switching to SQLite3 or PostgreSQL is advised, "
<< "please read http://wiki.minetest.net/Database_backends." << std::endl; << "please read https://wiki.luanti.org/Database_backends." << std::endl;
} }
if (auth_backend_name == "files") { if (auth_backend_name == "files") {
warningstream << "/!\\ You are using old auth file backend. " warningstream << "/!\\ You are using old auth file backend. "
<< "This backend is deprecated and will be removed in a future release /!\\" << "This backend is deprecated and will be removed in a future release /!\\"
<< std::endl << "Switching to SQLite3 is advised, " << std::endl << "Switching to SQLite3 is advised, "
<< "please read http://wiki.minetest.net/Database_backends." << std::endl; << "please read https://wiki.luanti.org/Database_backends." << std::endl;
} }
m_player_database = openPlayerDatabase(player_backend_name, world_path, conf); m_player_database = openPlayerDatabase(player_backend_name, world_path, conf);