Skip to content

Commit

Permalink
fix: update BepInEx dependency and adjust
Browse files Browse the repository at this point in the history
  • Loading branch information
nwesterhausen committed Oct 29, 2023
1 parent 61c8b8a commit 9e358ce
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 9 deletions.
9 changes: 5 additions & 4 deletions DiscordConnector.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@

<PropertyGroup>
<!-- Set the path to the game folder. This is used when including references below -->
<GamePath Condition="$(GamePath) == ''">G:\Valheim\0.216.9</GamePath>
<GamePath Condition="$(GamePath) == ''">G:\Valheim\0.217.27</GamePath>
<!-- Make the references to folders used in the build process a lot simpler -->
<BinDir>$(ProjectDir)bin/</BinDir>
<DiscordConnectorDir>$(BinDir)DiscordConnector/</DiscordConnectorDir>
<MetadataDir>$(ProjectDir)Metadata/</MetadataDir>
<ValheimManagedLibs>$(GamePath)\valheim_Data\Managed</ValheimManagedLibs>
<!-- Setup publicized asssembly shorthand -->
<PublicizedAssemblies>$(GamePath)\valheim_Data\Managed\publicized_assemblies</PublicizedAssemblies>
</PropertyGroup>
Expand All @@ -39,7 +40,7 @@
<Reference Include="0Harmony, Version=2.9.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>$(GamePath)\BepInEx\core\0Harmony.dll</HintPath>
</Reference>
<Reference Include="BepInEx, Version=5.4.21.0, Culture=neutral, PublicKeyToken=null">
<Reference Include="BepInEx, Version=5.4.22.0, Culture=neutral, PublicKeyToken=null">
<HintPath>$(GamePath)\BepInEx\core\BepInEx.dll</HintPath>
</Reference>
<!-- Valheim Assembly Dependencies -->
Expand All @@ -51,11 +52,11 @@
</Reference>
<!-- Unity Engine Dependencies -->
<Reference Include="UnityEngine, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>$(GamePath)\unstripped_corlib\UnityEngine.dll</HintPath>
<HintPath>$(ValheimManagedLibs)\UnityEngine.dll</HintPath>
</Reference>
<Reference
Include="UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>$(GamePath)\unstripped_corlib\UnityEngine.CoreModule.dll</HintPath>
<HintPath>$(ValheimManagedLibs)\UnityEngine.CoreModule.dll</HintPath>
</Reference>
</ItemGroup>

Expand Down
6 changes: 6 additions & 0 deletions Metadata/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ See the [current roadmap](https://github.com/nwesterhausen/valheim-discordconnec

## Changelog

## Version 2.1.15

Fixes:

- updated to valheim 0.217.27 and new BepInEx 2201

## Version 2.1.14

Fixes:
Expand Down
4 changes: 2 additions & 2 deletions Metadata/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "DiscordConnector",
"version_number": "2.1.14",
"version_number": "2.1.15",
"website_url": "https://discordconnector.valheim.nwest.games/",
"description": "Connects your Valheim server to a Discord webhook. Works for both dedicated and client-hosted servers.",
"dependencies": ["denikson-BepInExPack_Valheim-5.4.2105"]
"dependencies": ["denikson-BepInExPack_Valheim-5.4.2201"]
}
6 changes: 3 additions & 3 deletions Metadata/thunderstore.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ schemaVersion = "0.0.1"
[package]
namespace = "nwesterhausen"
name = "DiscordConnector"
versionNumber = "2.1.14"
versionNumber = "2.1.15"
description = "Connects your Valheim server to a Discord webhook. Works for both dedicated and client-hosted servers."
websiteUrl = "https://discordconnector.valheim.nwest.games/"
containsNsfwContent = false

[package.dependencies]
denikson-BepInExPack_Valheim = "5.4.2105"
denikson-BepInExPack_Valheim = "5.4.2201"

[build]
icon = "./icon.png"
Expand All @@ -24,4 +24,4 @@ target = "./"
[publish]
repository = "https://thunderstore.io"
communities = ["valheim"]
categories = []
categories = ["hildirs-request-update", "utility", "server-side"]
6 changes: 6 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

A full changelog of changes, dating all the way back to the first release.

## Version 2.1.15

Fixes:

- update to latest Valheim version

## Version 2.1.14

Fixes:
Expand Down

0 comments on commit 9e358ce

Please sign in to comment.