From 31e2e47a869fd542b3618ea3bd1006d0b4d00ca2 Mon Sep 17 00:00:00 2001 From: otDan Date: Sat, 4 Mar 2023 12:19:53 +0100 Subject: [PATCH] Update readme and bump version --- README.md | 20 +++++++++---------- .../otDan-BetterModList/manifest.json | 2 +- .../pages/mods/parts/mod_info_container.gd | 3 ++- 3 files changed, 13 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 8e8baeb..6741d62 100644 --- a/README.md +++ b/README.md @@ -10,28 +10,28 @@ Modifies the in game mod menu to provide more information

- + - https://github.com/otDan/Brotato-BetterModList/releases

diff --git a/root/mods-unpacked/otDan-BetterModList/manifest.json b/root/mods-unpacked/otDan-BetterModList/manifest.json index aabb46b..64cf3bd 100644 --- a/root/mods-unpacked/otDan-BetterModList/manifest.json +++ b/root/mods-unpacked/otDan-BetterModList/manifest.json @@ -1,7 +1,7 @@ { "name": "BetterModList", "namespace": "otDan", - "version_number": "1.3.1", + "version_number": "1.4.0", "description": "Modifies the in game mod menu to provide more information", "website_url": "https://github.com/otDan/Brotato-BetterModList", "dependencies": [], diff --git a/root/mods-unpacked/otDan-BetterModList/ui/menus/pages/mods/parts/mod_info_container.gd b/root/mods-unpacked/otDan-BetterModList/ui/menus/pages/mods/parts/mod_info_container.gd index 7a28c34..1e9aa7f 100644 --- a/root/mods-unpacked/otDan-BetterModList/ui/menus/pages/mods/parts/mod_info_container.gd +++ b/root/mods-unpacked/otDan-BetterModList/ui/menus/pages/mods/parts/mod_info_container.gd @@ -23,7 +23,8 @@ func _ready()->void: func set_data(mod:ModData)->void: _mod_name.text = mod.manifest.name _mod_author.text = str(mod.manifest.authors) - _mod_website.bbcode_text = "[color=" + Colors.interactive + "][url]" + mod.manifest.website_url + "[/url][/color]" + var url = mod.manifest.website_url.replace("https://", "") + _mod_website.bbcode_text = "[color=" + Colors.interactive + "][url]" + url + "[/url][/color]" _mod_version.text = "v" + mod.manifest.version_number _mod_description.bbcode_text = mod.manifest.description