From 2f34184047706395515eec1dfd069d258444fc55 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Tue, 23 Apr 2019 21:54:27 +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 | 2 -- description.txt | 1 - mod.conf | 3 +++ 4 files changed, 7 insertions(+), 3 deletions(-) delete mode 100644 depends.txt delete mode 100644 description.txt diff --git a/CHANGELOG.md b/CHANGELOG.md index 2892512..900458e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +### Changed + +- The minimum supported Minetest version is now 5.0.0. + ## [1.1.0] - 2019-03-23 ### Changed diff --git a/depends.txt b/depends.txt deleted file mode 100644 index 9207dab..0000000 --- a/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -default -intllib? diff --git a/description.txt b/description.txt deleted file mode 100644 index 43bbfde..0000000 --- a/description.txt +++ /dev/null @@ -1 +0,0 @@ -Adds various special versions of normal blocks, tools, and other map maintainer tools. diff --git a/mod.conf b/mod.conf index a77ffe2..363f651 100644 --- a/mod.conf +++ b/mod.conf @@ -1 +1,4 @@ name = maptools +description = Adds various special versions of normal blocks, tools, and other map maintainer tools. +depends = default +optional_depends = intllib