Skip to content

Commit

Permalink
Rename “Minimal development test” to “Development Test” (#9928)
Browse files Browse the repository at this point in the history
  • Loading branch information
Wuzzy2 committed May 25, 2020
1 parent b546e89 commit 083b285
Show file tree
Hide file tree
Showing 371 changed files with 25 additions and 25 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Expand Up @@ -167,7 +167,7 @@ endif()

install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/games/minetest_game" DESTINATION "${SHAREDIR}/games/"
COMPONENT "SUBGAME_MINETEST_GAME" OPTIONAL PATTERN ".git*" EXCLUDE )
install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/games/minimal" DESTINATION "${SHAREDIR}/games/"
install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/games/devtest" DESTINATION "${SHAREDIR}/games/"
COMPONENT "SUBGAME_MINIMAL" OPTIONAL PATTERN ".git*" EXCLUDE )

if(BUILD_CLIENT)
Expand Down Expand Up @@ -254,8 +254,8 @@ cpack_add_component(SUBGAME_MINETEST_GAME
)

cpack_add_component(SUBGAME_MINIMAL
DISPLAY_NAME "Minimal development test"
DESCRIPTION "A minimal subgame helping to develop the engine."
DISPLAY_NAME "Development Test"
DESCRIPTION "A minimal test game helping to develop the engine."
DISABLED #DISABLED does not mean it is disabled, and is just not selected by default.
GROUP "Subgames"
)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -173,7 +173,7 @@ Download source (this is the URL to the latest of source repository, which might
git clone --depth 1 https://github.com/minetest/minetest.git
cd minetest

Download minetest_game (otherwise only the "Minimal development test" game is available) using Git:
Download minetest_game (otherwise only the "Development Test" game is available) using Git:

git clone --depth 1 https://github.com/minetest/minetest_game.git games/minetest_game

Expand Down
12 changes: 6 additions & 6 deletions builtin/mainmenu/dlg_create_world.lua
Expand Up @@ -304,13 +304,13 @@ local function create_world_formspec(dialogdata)
label_spflags = "label[0,"..y_start..";" .. fgettext("Mapgen-specific flags") .. "]"
end

-- Warning if only minimal is installed
local minimal_only = ""
-- Warning if only devtest is installed
local devtest_only = ""
local gamelist_height = 2.3
if #pkgmgr.games == 1 and pkgmgr.games[1].id == "minimal" then
minimal_only = "box[0,0;5.8,1.7;#ff8800]" ..
if #pkgmgr.games == 1 and pkgmgr.games[1].id == "devtest" then
devtest_only = "box[0,0;5.8,1.7;#ff8800]" ..
"textarea[0.3,0;6,1.8;;;"..
fgettext("Warning: The minimal development test is meant for developers.") .. "\n" ..
fgettext("Warning: The Development Test is meant for developers.") .. "\n" ..
fgettext("Download a game, such as Minetest Game, from minetest.net") .. "]"
gamelist_height = 0.5
end
Expand All @@ -335,7 +335,7 @@ local function create_world_formspec(dialogdata)
"textlist[0,3.85;5.8,"..gamelist_height..";games;" ..
pkgmgr.gamelist() .. ";" .. gameidx .. ";false]" ..
"container[0,4.5]" ..
minimal_only ..
devtest_only ..
"container_end[]" ..
"container_end[]" ..

Expand Down
2 changes: 1 addition & 1 deletion doc/lua_api.txt
Expand Up @@ -1069,7 +1069,7 @@ Node drawtypes

There are a bunch of different looking node types.

Look for examples in `games/minimal` or `games/minetest_game`.
Look for examples in `games/devtest` or `games/minetest_game`.

* `normal`
* A node-sized cube.
Expand Down
4 changes: 4 additions & 0 deletions games/devtest/LICENSE.txt
@@ -0,0 +1,4 @@
License information for Development Test
----------------------------------------

The same license as for Minetest applies.
2 changes: 1 addition & 1 deletion games/minimal/README.md → games/devtest/README.md
@@ -1,4 +1,4 @@
# Minimal development test
# Development Test (devtest)

This is a basic testing environment that contains a bunch of things to test the engine, but it could also be used as a minimal testbed for testing out mods.

Expand Down
2 changes: 1 addition & 1 deletion games/minimal/game.conf → games/devtest/game.conf
@@ -1,2 +1,2 @@
name = Minimal development test
name = Development Test
description = Testing environment to help with testing the engine features of Minetest. It can also be helpful in mod development.
File renamed without changes
Binary file added games/devtest/menu/header.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Expand Up @@ -3,7 +3,7 @@ minetest.register_on_joinplayer(function(player)
if not player or not player:is_player() then
return
end
minetest.chat_send_player(player:get_player_name(), "This is the \"Minimal development Test\" [minimal], meant only for testing and development. Use Minetest Game for the real thing.")
minetest.chat_send_player(player:get_player_name(), "This is the \"Development Test\" [devtest], meant only for testing and development. Use Minetest Game for the real thing.")
end
minetest.after(2.0, cb, player)
end)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 083b285

Please sign in to comment.