From f7ff9644c957c5d8706f16a543b981ab1fb7127d Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Sun, 21 Apr 2019 16:59:28 +0200 Subject: [PATCH] Add description and dependencies to `mod.conf` The legacy `depends.txt` and `description.txt` files are no longer needed since Minetest 5.0.0 or later will read everything from `mod.conf`. This raises the minimum supported Minetest version to 5.0.0. --- CHANGELOG.md | 4 ++++ depends.txt | 6 ------ description.txt | 1 - mod.conf | 3 +++ 4 files changed, 7 insertions(+), 7 deletions(-) delete mode 100644 depends.txt delete mode 100644 description.txt diff --git a/CHANGELOG.md b/CHANGELOG.md index 9601e30..9c69a0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - `settingtypes.txt` file to allow configuring settings in the main menu. - Polish translation. +### Changed + +- The minimum supported Minetest version is now 5.0.0. + ## [1.3.0] - 2019-03-23 ### Changed diff --git a/depends.txt b/depends.txt deleted file mode 100644 index d27d8a5..0000000 --- a/depends.txt +++ /dev/null @@ -1,6 +0,0 @@ -default -intllib? -stairs? -farming? -wool? -basic_materials? diff --git a/description.txt b/description.txt deleted file mode 100644 index 95d7a92..0000000 --- a/description.txt +++ /dev/null @@ -1 +0,0 @@ -Adds various miscellaneous blocks to the game. diff --git a/mod.conf b/mod.conf index b634ba9..31f7f79 100644 --- a/mod.conf +++ b/mod.conf @@ -1 +1,4 @@ name = moreblocks +description = Adds various miscellaneous blocks to the game. +depends = default +optional_depends = intllib,stairs,farming,wool,basic_materials