From a3637d17af875365437a30ba1881638304320b0b Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Sun, 30 Jan 2022 23:57:17 +0100 Subject: [PATCH] Add mod.conf to all mods (MT 5.5.0 compat) --- mods/areas/depends.txt | 1 - mods/areas/mod.conf | 2 ++ mods/arrow_signs/depends.txt | 3 --- mods/arrow_signs/mod.conf | 3 +++ mods/castle/depends.txt | 2 -- mods/castle/mod.conf | 3 +++ mods/cottages/depends.txt | 4 ---- mods/cottages/mod.conf | 3 +++ mods/creative/depends.txt | 2 -- mods/creative/mod.conf | 3 +++ mods/darkage/depends.txt | 2 -- mods/darkage/mod.conf | 3 +++ mods/default/depends.txt | 1 - mods/default/mod.conf | 2 ++ mods/intllib/description.txt | 3 --- mods/intllib/mod.conf | 2 +- mods/mpd/depends.txt | 1 - mods/mpd/mod.conf | 1 + mods/no_pulverize/mod.conf | 1 + mods/show_wielded_item/depends.txt | 1 - mods/show_wielded_item/description.txt | 1 - mods/show_wielded_item/mod.conf | 2 ++ mods/supplemental/mod.conf | 3 +++ mods/tutorial/depends.txt | 2 -- mods/tutorial/description.txt | 1 - mods/tutorial/mod.conf | 4 ++++ mods/tutorial_mapgen/depends.txt | 2 -- mods/tutorial_mapgen/mod.conf | 2 ++ 28 files changed, 33 insertions(+), 27 deletions(-) delete mode 100644 mods/areas/depends.txt create mode 100644 mods/areas/mod.conf delete mode 100644 mods/arrow_signs/depends.txt create mode 100644 mods/arrow_signs/mod.conf delete mode 100644 mods/castle/depends.txt create mode 100644 mods/castle/mod.conf delete mode 100644 mods/cottages/depends.txt create mode 100644 mods/cottages/mod.conf delete mode 100644 mods/creative/depends.txt create mode 100644 mods/creative/mod.conf delete mode 100644 mods/darkage/depends.txt create mode 100644 mods/darkage/mod.conf delete mode 100644 mods/default/depends.txt create mode 100644 mods/default/mod.conf delete mode 100644 mods/intllib/description.txt delete mode 100644 mods/mpd/depends.txt create mode 100644 mods/mpd/mod.conf create mode 100644 mods/no_pulverize/mod.conf delete mode 100644 mods/show_wielded_item/depends.txt delete mode 100644 mods/show_wielded_item/description.txt create mode 100644 mods/supplemental/mod.conf delete mode 100644 mods/tutorial/depends.txt delete mode 100644 mods/tutorial/description.txt create mode 100644 mods/tutorial/mod.conf delete mode 100644 mods/tutorial_mapgen/depends.txt create mode 100644 mods/tutorial_mapgen/mod.conf diff --git a/mods/areas/depends.txt b/mods/areas/depends.txt deleted file mode 100644 index 77e8d97..0000000 --- a/mods/areas/depends.txt +++ /dev/null @@ -1 +0,0 @@ -intllib? diff --git a/mods/areas/mod.conf b/mods/areas/mod.conf new file mode 100644 index 0000000..b1fb8e6 --- /dev/null +++ b/mods/areas/mod.conf @@ -0,0 +1,2 @@ +name = areas +optional_depends = intllib diff --git a/mods/arrow_signs/depends.txt b/mods/arrow_signs/depends.txt deleted file mode 100644 index f73f281..0000000 --- a/mods/arrow_signs/depends.txt +++ /dev/null @@ -1,3 +0,0 @@ -default -locks? -intllib? diff --git a/mods/arrow_signs/mod.conf b/mods/arrow_signs/mod.conf new file mode 100644 index 0000000..3d47486 --- /dev/null +++ b/mods/arrow_signs/mod.conf @@ -0,0 +1,3 @@ +name = arrow_signs +depends = default +optional_depends = locks, intllib diff --git a/mods/castle/depends.txt b/mods/castle/depends.txt deleted file mode 100644 index 9207dab..0000000 --- a/mods/castle/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -default -intllib? diff --git a/mods/castle/mod.conf b/mods/castle/mod.conf new file mode 100644 index 0000000..06f4efb --- /dev/null +++ b/mods/castle/mod.conf @@ -0,0 +1,3 @@ +name = castle +depends = default +optional_depends = intllib diff --git a/mods/cottages/depends.txt b/mods/cottages/depends.txt deleted file mode 100644 index 07298ca..0000000 --- a/mods/cottages/depends.txt +++ /dev/null @@ -1,4 +0,0 @@ -default -stairs? -homedecor? -intllib? diff --git a/mods/cottages/mod.conf b/mods/cottages/mod.conf new file mode 100644 index 0000000..ae684ff --- /dev/null +++ b/mods/cottages/mod.conf @@ -0,0 +1,3 @@ +name = cottages +depends = default +optional_depends = stairs, homedecor, intllib diff --git a/mods/creative/depends.txt b/mods/creative/depends.txt deleted file mode 100644 index 9207dab..0000000 --- a/mods/creative/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -default -intllib? diff --git a/mods/creative/mod.conf b/mods/creative/mod.conf new file mode 100644 index 0000000..5f9eb1e --- /dev/null +++ b/mods/creative/mod.conf @@ -0,0 +1,3 @@ +name = creative +depends = default +optional_depends = intllib diff --git a/mods/darkage/depends.txt b/mods/darkage/depends.txt deleted file mode 100644 index 9207dab..0000000 --- a/mods/darkage/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -default -intllib? diff --git a/mods/darkage/mod.conf b/mods/darkage/mod.conf new file mode 100644 index 0000000..253fc0c --- /dev/null +++ b/mods/darkage/mod.conf @@ -0,0 +1,3 @@ +name = darkage +depends = default +optional_depends = intllib diff --git a/mods/default/depends.txt b/mods/default/depends.txt deleted file mode 100644 index 77e8d97..0000000 --- a/mods/default/depends.txt +++ /dev/null @@ -1 +0,0 @@ -intllib? diff --git a/mods/default/mod.conf b/mods/default/mod.conf new file mode 100644 index 0000000..06ba901 --- /dev/null +++ b/mods/default/mod.conf @@ -0,0 +1,2 @@ +name = default +optional_depends = intllib diff --git a/mods/intllib/description.txt b/mods/intllib/description.txt deleted file mode 100644 index d2e1abb..0000000 --- a/mods/intllib/description.txt +++ /dev/null @@ -1,3 +0,0 @@ -Internationalization library. -This mod provides a way to internationalize/localize mods to other languages in an easy way. -See the README file for details. diff --git a/mods/intllib/mod.conf b/mods/intllib/mod.conf index 4338db7..fa00539 100644 --- a/mods/intllib/mod.conf +++ b/mods/intllib/mod.conf @@ -1,2 +1,2 @@ - name = intllib +description = Internationalization library. This mod provides a way to internationalize/localize mods to other languages in an easy way. See the README file for details. diff --git a/mods/mpd/depends.txt b/mods/mpd/depends.txt deleted file mode 100644 index 8d1c8b6..0000000 --- a/mods/mpd/depends.txt +++ /dev/null @@ -1 +0,0 @@ - diff --git a/mods/mpd/mod.conf b/mods/mpd/mod.conf new file mode 100644 index 0000000..f912066 --- /dev/null +++ b/mods/mpd/mod.conf @@ -0,0 +1 @@ +name = mpd diff --git a/mods/no_pulverize/mod.conf b/mods/no_pulverize/mod.conf new file mode 100644 index 0000000..57c7d1e --- /dev/null +++ b/mods/no_pulverize/mod.conf @@ -0,0 +1 @@ +name = no_pulverize diff --git a/mods/show_wielded_item/depends.txt b/mods/show_wielded_item/depends.txt deleted file mode 100644 index 3e1d5c2..0000000 --- a/mods/show_wielded_item/depends.txt +++ /dev/null @@ -1 +0,0 @@ -hudbars? diff --git a/mods/show_wielded_item/description.txt b/mods/show_wielded_item/description.txt deleted file mode 100644 index 361cab6..0000000 --- a/mods/show_wielded_item/description.txt +++ /dev/null @@ -1 +0,0 @@ -Displays the name of the wielded item. diff --git a/mods/show_wielded_item/mod.conf b/mods/show_wielded_item/mod.conf index fdedae0..36bd5d1 100644 --- a/mods/show_wielded_item/mod.conf +++ b/mods/show_wielded_item/mod.conf @@ -1 +1,3 @@ name = show_wielded_item +description = Displays the name of the wielded item. +optional_depends = hudbars diff --git a/mods/supplemental/mod.conf b/mods/supplemental/mod.conf new file mode 100644 index 0000000..04c92cb --- /dev/null +++ b/mods/supplemental/mod.conf @@ -0,0 +1,3 @@ +name = supplemental +depends = default, mpd +optional_depends = intllib diff --git a/mods/tutorial/depends.txt b/mods/tutorial/depends.txt deleted file mode 100644 index 9207dab..0000000 --- a/mods/tutorial/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -default -intllib? diff --git a/mods/tutorial/description.txt b/mods/tutorial/description.txt deleted file mode 100644 index f1c265c..0000000 --- a/mods/tutorial/description.txt +++ /dev/null @@ -1 +0,0 @@ -This mod provides some additional items neccessary for the tutorial. diff --git a/mods/tutorial/mod.conf b/mods/tutorial/mod.conf new file mode 100644 index 0000000..40071ba --- /dev/null +++ b/mods/tutorial/mod.conf @@ -0,0 +1,4 @@ +name = tutorial +description = This mod provides some additional items neccessary for the tutorial. +depends = default +optional_depends = intllib diff --git a/mods/tutorial_mapgen/depends.txt b/mods/tutorial_mapgen/depends.txt deleted file mode 100644 index 9c5136a..0000000 --- a/mods/tutorial_mapgen/depends.txt +++ /dev/null @@ -1,2 +0,0 @@ -tutorial -areas diff --git a/mods/tutorial_mapgen/mod.conf b/mods/tutorial_mapgen/mod.conf new file mode 100644 index 0000000..2d06615 --- /dev/null +++ b/mods/tutorial_mapgen/mod.conf @@ -0,0 +1,2 @@ +name = tutorial_mapgen +depends = tutorial, areas