Skip to content

Commit

Permalink
docs: updated all Thunderstore links
Browse files Browse the repository at this point in the history
  • Loading branch information
MSchmoecker committed Mar 20, 2024
1 parent 4947e3c commit 5672642
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 28 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Prepare Valheim dependencies
run: |
mkdir -p ~/VHINSTALL
wget -O bepinex.zip "https://valheim.thunderstore.io/package/download/denikson/BepInExPack_Valheim/5.4.2202/"
wget -O bepinex.zip "https://thunderstore.io/c/valheim/p/denikson/BepInExPack_Valheim/v/5.4.2202/"
unzip bepinex.zip -d ~/BepInExRaw
mv ~/BepInExRaw/BepInExPack_Valheim/* ~/VHINSTALL/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- name: Prepare Valheim dependencies
if: steps.cachevalheim.outputs.cache-hit != 'true'
run: |
wget -O bepinex.zip "https://valheim.thunderstore.io/package/download/denikson/BepInExPack_Valheim/5.4.2202/"
wget -O bepinex.zip "https://thunderstore.io/c/valheim/p/denikson/BepInExPack_Valheim/v/5.4.2202/"
unzip bepinex.zip -d ~/BepInExRaw
steamcmd +force_install_dir ~/VHINSTALL +login anonymous +app_update 896660 validate +exit
mv ~/VHINSTALL/valheim_server_Data/ ~/VHINSTALL/valheim_Data/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Prepare Valheim dependencies
if: steps.cachevalheim.outputs.cache-hit != 'true'
run: |
wget -O bepinex.zip "https://valheim.thunderstore.io/package/download/denikson/BepInExPack_Valheim/5.4.2202/"
wget -O bepinex.zip "https://thunderstore.io/c/valheim/p/denikson/BepInExPack_Valheim/v/5.4.2202/"
unzip bepinex.zip -d ~/BepInExRaw
steamcmd +login anonymous +force_install_dir ~/VHINSTALL +app_update 896660 validate +exit
mv ~/VHINSTALL/valheim_server_Data/ ~/VHINSTALL/valheim_Data/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Prepare Valheim dependencies
if: steps.cachevalheim.outputs.cache-hit != 'true'
run: |
wget -O bepinex.zip "https://valheim.thunderstore.io/package/download/denikson/BepInExPack_Valheim/5.4.2202/"
wget -O bepinex.zip "https://thunderstore.io/c/valheim/p/denikson/BepInExPack_Valheim/v/5.4.2202/"
unzip bepinex.zip -d ~/BepInExRaw
steamcmd +force_install_dir ~/VHINSTALL +login anonymous +app_update 896660 validate +exit
mv ~/VHINSTALL/valheim_server_Data/ ~/VHINSTALL/valheim_Data/
Expand Down
2 changes: 1 addition & 1 deletion JotunnLib/Documentation/guides/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

## BepInEx

* To run or build a mod [BepInEx](https://valheim.thunderstore.io/package/denikson/BepInExPack_Valheim/) must installed.
* To run or build a mod [BepInEx](https://thunderstore.io/c/valheim/p/denikson/BepInExPack_Valheim/) must installed.
Please use the BepInEx pack from Thunderstore as it's configured for Valheim, a release from Github may not work properly.

# [2. Customising the ModStub project](#tab/tabid-2)
Expand Down
4 changes: 2 additions & 2 deletions JotunnLib/Documentation/guides/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This section will cover how to manually install Jötunn, without using a mod man

## 0. Installing BepInEx

Before we even start, be sure that you have [BepInEx](https://valheim.thunderstore.io/package/denikson/BepInExPack_Valheim/) downloaded and installed correctly. (If you have any other mods or rented a "modding enabled" server, odds are you'll have this installed.)
Before we even start, be sure that you have [BepInEx](https://thunderstore.io/c/valheim/p/denikson/BepInExPack_Valheim/) downloaded and installed correctly. (If you have any other mods or rented a "modding enabled" server, odds are you'll have this installed.)

If this is a manual install, extract the ZIP archive and move everything from `BepInEx_Valheim` into your Valheim directory (eg. `C:\<PathToYourSteamLibary>\steamapps\common\Valheim`).
It should look something like this:
Expand All @@ -15,7 +15,7 @@ It should look something like this:

Download Jötunn from your prefered public mirror (Note: You can find test builds through the public Discord):
- [Nexus Mods](https://www.nexusmods.com/valheim/mods/1138)
- [Thunderstore](https://valheim.thunderstore.io/package/ValheimModding/Jotunn/)
- [Thunderstore](https://thunderstore.io/c/valheim/p/ValheimModding/Jotunn/)

Now you should have the ZIP file like so (names may vary depending on download source and version, but contents should be the same):

Expand Down
2 changes: 1 addition & 1 deletion JotunnLib/Documentation/tutorials/asset-creation.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Creation Tools
* [Unity 2022.3.12](https://unity3d.com/unity/whats-new/2022.3.12) - Game engine that Valheim runs in

Game Mods (install these into your game as our mod has dependencies on them)
* [Jötunn, the Valheim Library](https://valheim.thunderstore.io/package/ValheimModding/Jotunn/) - Mod with convenience methods we will use
* [Jötunn, the Valheim Library](https://thunderstore.io/c/valheim/p/ValheimModding/Jotunn/) - Mod with convenience methods we will use

## Summary of Steps

Expand Down
18 changes: 9 additions & 9 deletions README.bbcode
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ For a more in-depth installation guide, please check out the [url=https://valhei
However, here is a quick run-down:

[b]Install BepInEx[/b]
Download [url=https://valheim.thunderstore.io/package/denikson/BepInExPack_Valheim/]BepInEx[/url], extract everything inside `BepInEx_Valheim` into your Valheim folder (typically `C:\<PathToYourSteamLibary>\steamapps\common\Valheim`).
Download [url=https://thunderstore.io/c/valheim/p/denikson/BepInExPack_Valheim/]BepInEx[/url], extract everything inside `BepInEx_Valheim` into your Valheim folder (typically `C:\<PathToYourSteamLibary>\steamapps\common\Valheim`).
[b]Install Jötunn[/b]
Download from either [url=https://www.nexusmods.com/valheim/mods/1138]Nexus[/url] / [url=https://valheim.thunderstore.io/package/ValheimModding/Jotunn]Thunderstore[/url], extract the ZIP, and put the `Jotunn.dll` file inside the `BepInEx\plugins` folder in your Valheim install.
Download from either [url=https://www.nexusmods.com/valheim/mods/1138]Nexus[/url] / [url=https://thunderstore.io/c/valheim/p/ValheimModding/Jotunn]Thunderstore[/url], extract the ZIP, and put the `Jotunn.dll` file inside the `BepInEx\plugins` folder in your Valheim install.

That's it, launch the game and mod away!

Expand Down Expand Up @@ -76,20 +76,20 @@ These people have been integral to pushing JVL out of the door, and without them

[size=4][b][size=3]Core[/size]:[/b][/size]
- Jules#7950: [url=https://github.com/sirskunkalot]github[/url]
- Margmas#9562: [url=https://github.com/MSchmoecker]github[/url], [url=https://valheim.thunderstore.io/package/MSchmoecker/]thunderstore[/url], [url=https://www.nexusmods.com/users/111418768]nexus[/url]
- IDeathHD#7866: [url=https://github.com/xiaoxiao921]github[/url], [url=https://valheim.thunderstore.io/package/xiaoxiao921/]thunderstore[/url]
- Margmas#9562: [url=https://github.com/MSchmoecker]github[/url], [url=https://thunderstore.io/c/valheim/p/MSchmoecker/]thunderstore[/url], [url=https://www.nexusmods.com/users/111418768]nexus[/url]
- IDeathHD#7866: [url=https://github.com/xiaoxiao921]github[/url], [url=https://thunderstore.io/c/valheim/p/xiaoxiao921/]thunderstore[/url]
- Algorithman#6741: [url=https://github.com/Algorithman]github[/url]
- Quaesar#5604: [url=https://github.com/RatikKapoor]github[/url]
- radu#0571: [url=https://github.com/raduschirliu]github[/url], [url=https://valheim.thunderstore.io/package/radu/]thunderstore[/url], [url=https://www.nexusmods.com/users/112072898]nexus[/url]
- paddy#1337: [url=https://github.com/paddywaan]github[/url], [url=https://valheim.thunderstore.io/package/paddywan/]thunderstore[/url], [url=https://valheim.thunderstore.io/package/ValheimModding/]nexus[/url]
- radu#0571: [url=https://github.com/raduschirliu]github[/url], [url=https://thunderstore.io/c/valheim/p/radu/]thunderstore[/url], [url=https://www.nexusmods.com/users/112072898]nexus[/url]
- paddy#1337: [url=https://github.com/paddywaan]github[/url], [url=https://thunderstore.io/c/valheim/p/paddywan/]thunderstore[/url]

[size=4][b][size=3]Contributors[/size]:[/b][/size]
- Cinnabun#0451: [url=https://github.com/capnbubs]github[/url]
- GoldenJude#8965: [url=https://github.com/GoldenJude]github[/url], [url=https://www.nexusmods.com/users/48864143?tab=user+files]nexus[/url]
- zarboz#7828: [url=https://github.com/sbtoonz]github[/url], [url=https://valheim.thunderstore.io/package/sbtoonz/]thunderstore[/url], [url=https://www.nexusmods.com/users/4057483]nexus[/url]
- zarboz#7828: [url=https://github.com/sbtoonz]github[/url], [url=https://thunderstore.io/c/valheim/p/sbtoonz/]thunderstore[/url], [url=https://www.nexusmods.com/users/4057483]nexus[/url]
- MarcoPogo#6095: [url=https://github.com/MathiasDecrock]github[/url], [url=https://www.nexusmods.com/users/3030830?tab=user+files]nexus[/url]
- blaxxun#9098: [url=https://github.com/blaxxun-boop]github[/url]
- Tekla#1012: [url=https://github.com/T3kla/ValMods/wiki]github[/url]
- JoeyParrish#8644: [url=https://github.com/joeyparrish]github[/url], [url=https://valheim.thunderstore.io/package/joeyparrish/]thunderstore[/url], [url=https://www.nexusmods.com/users/128211453]nexus[/url]
- JoeyParrish#8644: [url=https://github.com/joeyparrish]github[/url], [url=https://thunderstore.io/c/valheim/p/joeyparrish/]thunderstore[/url], [url=https://www.nexusmods.com/users/128211453]nexus[/url]
- Nosirrom#2626: [url=https://github.com/donchad]github[/url]
- Jere#0989: [url=https://github.com/JereKuusela]github[/url], [url=https://valheim.thunderstore.io/package/JereKuusela/]thunderstore[/url], [url=https://www.nexusmods.com/valheim/users/117845818]nexus[/url]
- Jere#0989: [url=https://github.com/JereKuusela]github[/url], [url=https://thunderstore.io/c/valheim/p/JereKuusela/]thunderstore[/url], [url=https://www.nexusmods.com/valheim/users/117845818]nexus[/url]
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ For a more in-depth installation guide, please check out the [manual installatio
However, here is a quick run-down:

1. **Install BepInEx:**\
Download [BepInEx](https://valheim.thunderstore.io/package/denikson/BepInExPack_Valheim/), extract everything inside `BepInEx_Valheim` into your Valheim folder (typically `C:\<PathToYourSteamLibary>\steamapps\common\Valheim`).
Download [BepInEx](https://thunderstore.io/c/valheim/p/denikson/BepInExPack_Valheim/), extract everything inside `BepInEx_Valheim` into your Valheim folder (typically `C:\<PathToYourSteamLibary>\steamapps\common\Valheim`).

2. **Install Jötunn:**\
Download from either [Nexus](https://www.nexusmods.com/valheim/mods/1138) / [Thunderstore](https://valheim.thunderstore.io/package/ValheimModding/Jotunn), extract the ZIP and place all content into `BepInEx/plugins/Jotunn` of your Valheim install.
Download from either [Nexus](https://www.nexusmods.com/valheim/mods/1138) / [Thunderstore](https://thunderstore.io/c/valheim/p/ValheimModding/Jotunn), extract the ZIP and place all content into `BepInEx/plugins/Jotunn` of your Valheim install.

That's it, launch the game and mod away!

Expand Down Expand Up @@ -82,38 +82,38 @@ These people have been integral to pushing JVL out of the door, and without them

*Jules#7950*: [github](https://github.com/sirskunkalot)

*Margmas#9562*: [github](https://github.com/MSchmoecker), [thunderstore](https://valheim.thunderstore.io/package/MSchmoecker/), [nexus](https://www.nexusmods.com/users/111418768)
*Margmas#9562*: [github](https://github.com/MSchmoecker), [thunderstore](https://thunderstore.io/c/valheim/p/MSchmoecker/), [nexus](https://www.nexusmods.com/users/111418768)

*iDeathHD#7866*: [github](https://github.com/xiaoxiao921), [thunderstore](https://valheim.thunderstore.io/package/xiaoxiao921/)
*iDeathHD#7866*: [github](https://github.com/xiaoxiao921), [thunderstore](https://thunderstore.io/c/valheim/p/xiaoxiao921/)

*Algorithman#6741*: [github](https://github.com/Algorithman)

*Quaesar#5604*: [github](https://github.com/RatikKapoor)

*radu#0571*: [github](https://github.com/raduschirliu), [thunderstore](https://valheim.thunderstore.io/package/radu/), [nexus](https://www.nexusmods.com/users/112072898)
*radu#0571*: [github](https://github.com/raduschirliu), [thunderstore](https://thunderstore.io/c/valheim/p/radu/), [nexus](https://www.nexusmods.com/users/112072898)

*paddy#1337*: [github](https://github.com/paddywaan), [thunderstore](https://valheim.thunderstore.io/package/paddywan/), [nexus](https://valheim.thunderstore.io/package/ValheimModding/)
*paddy#1337*: [github](https://github.com/paddywaan), [thunderstore](https://thunderstore.io/c/valheim/p/paddywan/)

#### Contributors:

*Cinnabun#0451*: [github](https://github.com/capnbubs)

*GoldenJude#8965*: [github](https://github.com/GoldenJude), [nexus](https://www.nexusmods.com/users/48864143?tab=user+files)

*zarboz#7828*: [github](https://github.com/sbtoonz), [thunderstore](https://valheim.thunderstore.io/package/sbtoonz/), [nexus](https://www.nexusmods.com/users/4057483)
*zarboz#7828*: [github](https://github.com/sbtoonz), [thunderstore](https://thunderstore.io/c/valheim/p/sbtoonz/), [nexus](https://www.nexusmods.com/users/4057483)

*MarcoPogo#6095*: [github](https://github.com/MathiasDecrock), [nexus](https://www.nexusmods.com/users/3030830?tab=user+files)

*blaxxun#9098*: [github](https://github.com/blaxxun-boop)

*Tekla#1012*: [github](https://github.com/T3kla/ValMods/wiki)

*JoeyParrish#8644*: [github](https://github.com/joeyparrish), [thunderstore](https://valheim.thunderstore.io/package/joeyparrish/), [nexus](https://www.nexusmods.com/users/128211453)
*JoeyParrish#8644*: [github](https://github.com/joeyparrish), [thunderstore](https://thunderstore.io/c/valheim/p/joeyparrish/), [nexus](https://www.nexusmods.com/users/128211453)

*Nosirrom#2626*: [github](https://github.com/donchad)

*Jere#0989*: [github](https://github.com/JereKuusela), [thunderstore](https://valheim.thunderstore.io/package/JereKuusela/), [nexus](https://www.nexusmods.com/valheim/users/117845818)
*Jere#0989*: [github](https://github.com/JereKuusela), [thunderstore](https://thunderstore.io/c/valheim/p/JereKuusela/), [nexus](https://www.nexusmods.com/valheim/users/117845818)

*Searica*: [github](https://github.com/searica), [thunderstore](https://valheim.thunderstore.io/package/Searica/)
*Searica*: [github](https://github.com/searica), [thunderstore](https://thunderstore.io/c/valheim/p/Searica/)

*OrianaVenture*: [github](https://github.com/OrianaVenture), [thunderstore](https://valheim.thunderstore.io/package/VentureValheim/)
*OrianaVenture*: [github](https://github.com/OrianaVenture), [thunderstore](https://thunderstore.io/c/valheim/p/VentureValheim/)

0 comments on commit 5672642

Please sign in to comment.