Skip to content

Commit

Permalink
Update readme and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
otDan committed Mar 4, 2023
1 parent 12d1f2f commit 31e2e47
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 12 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,28 +10,28 @@ Modifies the in game mod menu to provide more information
<img src="https://github.com/otDan/Brotato-BetterModList/blob/master/.publish/showcase.png?raw=true" height="350" style="object-fit:scale-down;"/>
</p>

<!-- ## Installation
## Installation

<a href="https://rounds.thunderstore.io/package/otDan/GameSaver">
<img align="right" src="https://badgen.net/https/git-hub-badge-data.npkn.net/thunderstore-downloads-request/GameSaver?icon=https://gcdn.thunderstore.io/static/ts/thunderstore-logomark-white.svg" hspace="50"/>
<a href="https://steamcommunity.com/sharedfiles/filedetails/?id=2937057646">
<img align="right" src="https://badgen.net/https/ostaszewski29.npkn.net/py-steam-subscribers-request/2937057646?icon=https://upload.wikimedia.org/wikipedia/commons/8/83/Steam_icon_logo.svg" hspace="50"/>
</a>

- Steam Workshop:
- https://rounds.thunderstore.io/package/otDan/GameSaver
- https://steamcommunity.com/sharedfiles/filedetails/?id=2937057646

<a href="https://rounds.thunderstore.io/package/otDan/GameSaver">
<img align="right" src="https://badgen.net/https/git-hub-badge-data.npkn.net/thunderstore-downloads-request/GameSaver?icon=https://gcdn.thunderstore.io/static/ts/thunderstore-logomark-white.svg" hspace="50"/>
<a href="https://thunderstore.io/c/brotato/p/otDan/BetterModList/">
<img align="right" src="https://badgen.net/https/git-hub-badge-data.npkn.net/thunderstore-downloads-request/brotato/BetterModList?icon=https://gcdn.thunderstore.io/static/ts/thunderstore-logomark-black.svg" hspace="50"/>
</a>

- Thunderstore:
- https://rounds.thunderstore.io/package/otDan/GameSaver
- https://thunderstore.io/c/brotato/p/otDan/BetterModList/

<a href="https://github.com/otDan/GameSaver/releases">
<img align="right" src="https://badgen.net/github/assets-dl/otDan/GameSaver?icon=git&color=blue" hspace="50"/>
<a href="https://github.com/otDan/Brotato-BetterModList/releases">
<img align="right" src="https://badgen.net/github/assets-dl/otDan/Brotato-BetterModList?icon=git&color=blue" hspace="50"/>
</a>

- Manual:
- https://github.com/otDan/GameSaver/releases -->
- https://github.com/otDan/Brotato-BetterModList/releases

<p align="left">
<a href="https://www.paypal.com/paypalme/otdan">
Expand Down
2 changes: 1 addition & 1 deletion root/mods-unpacked/otDan-BetterModList/manifest.json
Original file line number Diff line number Diff line change
@@ -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": [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 31e2e47

Please sign in to comment.