changing references to real final minetest.org from oldcoder

stable-5.2-namespace
Герхард PICCORO Lenz McKAY 2022-12-29 13:20:57 -04:00
parent 06ea7329de
commit c9d8b13b00
12 changed files with 27 additions and 47 deletions

11
.github/SECURITY.md vendored
View File

@ -2,16 +2,13 @@
## Supported Versions ## Supported Versions
We only support the latest stable version for security issues. We only support the minenux stable version for security issues.
See the [releases page](https://github.com/minetest/minetest/releases). See the [releases page](https://github.com/minenux/minetest-engine-minetest/releases).
## Reporting a Vulnerability ## Reporting a Vulnerability
We ask that you report vulnerabilities privately, by contacting a core developer, We ask that you report vulnerabilities only using telegram group: https://t.me/venenux_minetest_bot
to give us time to fix them. You can do that by emailing one of the following addresses: to give us time to fix them.
* celeron55@gmail.com
* rubenwardy@minetest.net
Depending on severity, we will either create a private issue for the vulnerability Depending on severity, we will either create a private issue for the vulnerability
and release a patch version of Minetest, or give you permission to file the issue publicly. and release a patch version of Minetest, or give you permission to file the issue publicly.

View File

@ -38,10 +38,9 @@ Further documentation
- This sources https://codeberg.org/minenux/minetest-engine/src/branch/stable-5.2-namespace - This sources https://codeberg.org/minenux/minetest-engine/src/branch/stable-5.2-namespace
- Minetest4 sources https://codeberg.org/minenux/minetest-engine/src/branch/stable-4.0-namespace - Minetest4 sources https://codeberg.org/minenux/minetest-engine/src/branch/stable-4.0-namespace
- Wiki of this project (minenux) https://codeberg.org/venenux/venenux-minetest/wiki - Wiki of this project (minenux) https://codeberg.org/venenux/venenux-minetest/wiki
- Original Minetest Website: http://minetest.net/ - Original Minetest Website: http://minetest.org/
- Original Minetest Wiki: http://wiki.minetest.net/ - Original Minetest Wiki: http://wiki.minetest.org/
- Minetest Developer wiki: http://dev.minetest.net/ - Minetest Forum: http://forum.minetest.org/
- Minetest Forum: http://forum.minetest.net/
- Original Minetest GitHub: https://github.com/minetest/minetest/ - Original Minetest GitHub: https://github.com/minetest/minetest/
- [doc/](doc/) directory of source distribution - [doc/](doc/) directory of source distribution

View File

@ -100,11 +100,11 @@ local function create_world_formspec(dialogdata)
if #pkgmgr.games == 0 then if #pkgmgr.games == 0 then
retval = retval .. "box[2,4;8,1;#ff8800]label[2.25,4;" .. retval = retval .. "box[2,4;8,1;#ff8800]label[2.25,4;" ..
fgettext("You have no games installed.") .. "]label[2.25,4.4;" .. fgettext("You have no games installed.") .. "]label[2.25,4.4;" ..
fgettext("Download one from minetest.net") .. "]" fgettext("Download one from minetest.org") .. "]"
elseif #pkgmgr.games == 1 and pkgmgr.games[1].id == "minimal" then elseif #pkgmgr.games == 1 and pkgmgr.games[1].id == "minimal" then
retval = retval .. "box[1.75,4;8.7,1;#ff8800]label[2,4;" .. retval = retval .. "box[1.75,4;8.7,1;#ff8800]label[2,4;" ..
fgettext("Warning: The minimal development test is meant for developers.") .. "]label[2,4.4;" .. fgettext("Warning: The minimal development test is meant for developers.") .. "]label[2,4.4;" ..
fgettext("Download a game, such as Minetest Game, from minetest.net") .. "]" fgettext("Download a game, such as Minetest Game, from minetest.org") .. "]"
end end
return retval return retval

View File

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

View File

@ -102,7 +102,7 @@ return {
local version = core.get_version() local version = core.get_version()
return "image[0.5,1;" .. core.formspec_escape(logofile) .. "]" .. return "image[0.5,1;" .. core.formspec_escape(logofile) .. "]" ..
"label[0.5,3.2;" .. version.project .. " MinenuX fork" .. " " .. version.string .. "]" .. "label[0.5,3.2;" .. version.project .. " MinenuX fork" .. " " .. version.string .. "]" ..
"label[0.5,3.5;http://minetest.net]" .. "label[0.5,3.5;http://minetest.org]" ..
"tablecolumns[color;text]" .. "tablecolumns[color;text]" ..
"tableoptions[background=#00000000;highlight=#00000000;border=false]" .. "tableoptions[background=#00000000;highlight=#00000000;border=false]" ..
"table[3.5,-0.25;8.5,6.05;list_credits;" .. "table[3.5,-0.25;8.5,6.05;list_credits;" ..

View File

@ -1002,10 +1002,10 @@ server_name (Server name) string Minetest5 server
server_description (Server description) string mine here server_description (Server description) string mine here
# Domain name of server, to be displayed in the serverlist. # Domain name of server, to be displayed in the serverlist.
server_address (Server address) string game.minetest.net server_address (Server address) string game.minetest.org
# Homepage of server, to be displayed in the serverlist. # Homepage of server, to be displayed in the serverlist.
server_url (Server URL) string https://minetest.net server_url (Server URL) string https://minetest.org
# Automatically report to the serverlist. # Automatically report to the serverlist.
server_announce (Announce server) bool false server_announce (Announce server) bool false

View File

@ -1,7 +1,6 @@
Minetest Lua Client Modding API Reference 5.2.0 Minetest Lua Client Modding API Reference 5.2.0
================================================ ================================================
* More information at <http://www.minetest.net/> * More information at <http://www.minetest.org/>
* Developer Wiki: <http://dev.minetest.net/>
Introduction Introduction
------------ ------------

View File

@ -1,8 +1,7 @@
Minetest Lua Modding API Reference Minetest Lua Modding API Reference
================================== ==================================
* More information at <http://www.minetest.net/> * More information at <http://www.minetest.org/>
* Developer Wiki: <http://dev.minetest.net/>
* (Unofficial) Minetest Modding Book by rubenwardy: <https://rubenwardy.com/minetest_modding_book/> * (Unofficial) Minetest Modding Book by rubenwardy: <https://rubenwardy.com/minetest_modding_book/>
Introduction Introduction

View File

@ -121,7 +121,7 @@ Display an interactive terminal over ncurses during execution.
Colon delimited list of directories to search for games. Colon delimited list of directories to search for games.
.SH BUGS .SH BUGS
Please report all bugs at https://github.com/minetest/minetest/issues. Please report all bugs at https://github.com/minenux/minetest-engine-minetest/issues.
.SH AUTHOR .SH AUTHOR
.PP .PP
@ -131,4 +131,4 @@ This man page was originally written by
Juhani Numminen <juhaninumminen0@gmail.com>. Juhani Numminen <juhaninumminen0@gmail.com>.
.SH WWW .SH WWW
http://www.minetest.net/ http://www.minetest.org/

View File

@ -10,7 +10,7 @@
# to the program, eg. "minetest --config ../minetest5.conf.example". # to the program, eg. "minetest --config ../minetest5.conf.example".
# Further documentation: # Further documentation:
# http://wiki.minetest.net/ # http://wiki.minetest.org/
# #
# Controls # Controls
@ -1199,11 +1199,11 @@ server_name = Minetest5 server
# Domain name of server, to be displayed in the serverlist. # Domain name of server, to be displayed in the serverlist.
# type: string # type: string
# server_address = game.minetest.net # server_address = game.minetest.org
# Homepage of server, to be displayed in the serverlist. # Homepage of server, to be displayed in the serverlist.
# type: string # type: string
# server_url = https://minetest.net # server_url = https://minetest.org
# Automatically report to the serverlist. # Automatically report to the serverlist.
# type: bool # type: bool
@ -1211,7 +1211,7 @@ server_name = Minetest5 server
# Announce to this serverlist. # Announce to this serverlist.
# type: string # type: string
# serverlist_url = servers.minetest.net # serverlist_url = servers.minetest.org
# Remove color codes from incoming chat messages # Remove color codes from incoming chat messages
# Use this to stop players from being able to use color in their messages # Use this to stop players from being able to use color in their messages

View File

@ -33,34 +33,20 @@
<li>Beautiful lightning-fast map generator</li> <li>Beautiful lightning-fast map generator</li>
</ul> </ul>
</description> </description>
<screenshots>
<screenshot type="default">
<image width="1920" height="1080">http://www.minetest.net/media/gallery/1.jpg</image>
</screenshot>
<screenshot>
<image width="1920" height="1080">http://www.minetest.net/media/gallery/3.jpg</image>
</screenshot>
<screenshot>
<image width="1920" height="1080">http://www.minetest.net/media/gallery/5.jpg</image>
</screenshot>
</screenshots>
<keywords> <keywords>
<keyword>sandbox</keyword> <keyword>sandbox</keyword>
<keyword>world</keyword> <keyword>world</keyword>
<keyword>mining</keyword> <keyword>mining</keyword>
<keyword>multiplayer</keyword> <keyword>multiplayer</keyword>
</keywords> </keywords>
<url type="homepage">http://minetest.net</url> <url type="homepage">http://minetest.org</url>
<url type="bugtracker">http://www.minetest.net/development/#reporting-issues</url> <url type="bugtracker">https://codeberg.org/minenux/minetest-engine-minetest/issues</url>
<url type="translate">http://dev.minetest.net/Translation</url> <url type="translate">http://dev.minetest.net/Translation</url>
<url type="donation">http://www.minetest.net/development/#donate</url> <url type="donation">https://paypalme/mckaygerhard</url>
<url type="faq">http://wiki.minetest.net/FAQ</url> <url type="help">https://t.me/venenux_minetest</url>
<url type="help">http://wiki.minetest.net</url>
<provides> <provides>
<binary>minetest5</binary> <binary>minetest5</binary>
</provides> </provides>
<translation type="gettext">minetest5</translation>
<update_contact>sfan5@live.de</update_contact>
<releases> <releases>
<release date="2020-04-05" version="5.2.0"/> <release date="2020-04-05" version="5.2.0"/>
</releases> </releases>

View File

@ -444,14 +444,14 @@ ServerEnvironment::ServerEnvironment(ServerMap *map,
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 http://wiki.minetest.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 http://wiki.minetest.org/Database_backends." << std::endl;
} }
m_player_database = openPlayerDatabase(player_backend_name, path_world, conf); m_player_database = openPlayerDatabase(player_backend_name, path_world, conf);