From ec833125408bf0be2703e0c00a69771187b752bf Mon Sep 17 00:00:00 2001 From: Montandalar Date: Fri, 7 Feb 2025 05:16:24 +1100 Subject: [PATCH] Change main website domain to `www.luanti.org` (#15748) Renames all remaining occurences of minetest.net except for the "MS Windows icon resource" file --- .github/CONTRIBUTING.md | 6 +++--- builtin/settingtypes.txt | 2 +- doc/client_lua_api.md | 2 +- minetest.conf.example | 2 +- misc/net.minetest.minetest.metainfo.xml | 6 +++--- src/defaultsettings.cpp | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 9695f74f509a5..b3fa99b5fe75a 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -25,7 +25,7 @@ Contributions are welcome! Here's how you can help: the work, to avoid disappointment. You may also benefit from discussing on our IRC development channel - [#minetest-dev](http://www.minetest.net/irc/). Note that a proper IRC client + [#minetest-dev](http://www.luanti.org/irc/). Note that a proper IRC client is required to speak on this channel. 3. Start coding! @@ -77,7 +77,7 @@ a stable release is on the way. 1. Do a quick search on GitHub to check if the issue has already been reported. 2. Is it an issue with the Minetest *engine*? If not, report it - [elsewhere](http://www.minetest.net/development/#reporting-issues). + [elsewhere](http://www.luanti.org/development/#reporting-issues). 3. [Open an issue](https://github.com/luanti-org/luanti/issues/new) and describe the issue you are having - you could include: - Error logs (check the bottom of the `debug.txt` file). @@ -111,7 +111,7 @@ translated by editing a `.tr` text file. See ## Donations If you'd like to monetarily support Luanti development, you can find donation -methods on [our website](http://www.minetest.net/development/#donate). +methods on [our website](http://www.luanti.org/development/#donate). # Maintaining diff --git a/builtin/settingtypes.txt b/builtin/settingtypes.txt index 7707a369bd4dd..eb2a387f84e35 100644 --- a/builtin/settingtypes.txt +++ b/builtin/settingtypes.txt @@ -766,7 +766,7 @@ enable_split_login_register (Enable split login/register) bool true # URL to JSON file which provides information about the newest Luanti release. # If this is empty the engine will never check for updates. -update_information_url (Update information URL) string https://www.minetest.net/release_info.json +update_information_url (Update information URL) string https://www.luanti.org/release_info.json [*Server] diff --git a/doc/client_lua_api.md b/doc/client_lua_api.md index 779ead47eac54..1934ec5ab6510 100644 --- a/doc/client_lua_api.md +++ b/doc/client_lua_api.md @@ -5,7 +5,7 @@ Luanti Lua Client Modding API Reference 5.11.0 it's now called `core` due to the renaming of Luanti (formerly Minetest). `minetest` will keep existing as an alias, so that old code won't break. -* More information at +* More information at * Developer Wiki: Introduction diff --git a/minetest.conf.example b/minetest.conf.example index f5fefbcf339dd..ff19de7a511d6 100644 --- a/minetest.conf.example +++ b/minetest.conf.example @@ -751,7 +751,7 @@ # URL to JSON file which provides information about the newest Luanti release. # If this is empty the engine will never check for updates. # type: string -# update_information_url = https://www.minetest.net/release_info.json +# update_information_url = https://www.luanti.org/release_info.json ## Server diff --git a/misc/net.minetest.minetest.metainfo.xml b/misc/net.minetest.minetest.metainfo.xml index 5ab3d68179768..b29ce4e1cd89d 100644 --- a/misc/net.minetest.minetest.metainfo.xml +++ b/misc/net.minetest.minetest.metainfo.xml @@ -103,13 +103,13 @@ net.minetest.minetest.desktop - https://www.minetest.net/media/gallery/1.jpg + https://www.luanti.org/media/gallery/1.jpg - https://www.minetest.net/media/gallery/3.jpg + https://www.luanti.org/media/gallery/3.jpg - https://www.minetest.net/media/gallery/5.jpg + https://www.luanti.org/media/gallery/5.jpg diff --git a/src/defaultsettings.cpp b/src/defaultsettings.cpp index 255428a2ee3b2..ff325a8ff7fe3 100644 --- a/src/defaultsettings.cpp +++ b/src/defaultsettings.cpp @@ -404,7 +404,7 @@ void set_default_settings() #endif #if ENABLE_UPDATE_CHECKER - settings->setDefault("update_information_url", "https://www.minetest.net/release_info.json"); + settings->setDefault("update_information_url", "https://www.luanti.org/release_info.json"); #else settings->setDefault("update_information_url", ""); #endif