From 974e57b53859da8a2da44ea4e91dd170381805ad Mon Sep 17 00:00:00 2001 From: Nicholas Westerhausen <2317381+nwesterhausen@users.noreply.github.com> Date: Fri, 11 Nov 2022 14:13:30 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=93=8C=202.0.3=20ping=20BepInEx=20?= =?UTF-8?q?to=205.4.19=20to=20fix=20warnings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DiscordConnector.csproj | 2 +- Metadata/CHANGELOG.md | 6 ++++++ Metadata/README.md | 6 ++++++ Metadata/manifest.json | 2 +- Metadata/thunderstore.toml | 2 +- docs/changelog.md | 6 ++++++ src/PluginInfo.cs | 2 +- 7 files changed, 22 insertions(+), 4 deletions(-) diff --git a/DiscordConnector.csproj b/DiscordConnector.csproj index b2d430b..41503fc 100644 --- a/DiscordConnector.csproj +++ b/DiscordConnector.csproj @@ -13,7 +13,7 @@ - + diff --git a/Metadata/CHANGELOG.md b/Metadata/CHANGELOG.md index 0dbe9b8..cba7c89 100644 --- a/Metadata/CHANGELOG.md +++ b/Metadata/CHANGELOG.md @@ -4,6 +4,12 @@ A full changelog for reference. ## History +### Version 2.0.3 + +Other Changes: + +- Set BepInEx depencency to eactly 5.4.19 instead of 5.* (this stops a warning from showing up) + ### Version 2.0.2 If a shout is performed by a player that isn't a real player (like a mod), it would break the shout call from working. This is because Discord Connector was trying to lookup the player's details and encountering null. The plugin now checks for that and returns early if null is found. diff --git a/Metadata/README.md b/Metadata/README.md index bd66d1b..1637b2f 100644 --- a/Metadata/README.md +++ b/Metadata/README.md @@ -35,6 +35,12 @@ See the [current roadmap](https://github.com/nwesterhausen/valheim-discordconnec ## Changelog +### Version 2.0.3 + +Other Changes: + +- Set BepInEx depencency to eactly 5.4.19 instead of 5.* (this stops a warning from showing up) + ### Version 2.0.2 If a shout is performed by a player that isn't a real player (like a mod), it would break the shout call from working. This is because Discord Connector was trying to lookup the player's details and encountering null. The plugin now checks for that and returns early if null is found. diff --git a/Metadata/manifest.json b/Metadata/manifest.json index 421af0b..a916d71 100644 --- a/Metadata/manifest.json +++ b/Metadata/manifest.json @@ -1,6 +1,6 @@ { "name": "DiscordConnector", - "version_number": "2.0.2", + "version_number": "2.0.3", "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.1901"] diff --git a/Metadata/thunderstore.toml b/Metadata/thunderstore.toml index c687386..979aa25 100644 --- a/Metadata/thunderstore.toml +++ b/Metadata/thunderstore.toml @@ -4,7 +4,7 @@ schemaVersion = "0.0.1" [package] namespace = "nwesterhausen" name = "DiscordConnector" -versionNumber = "2.0.2" +versionNumber = "2.0.3" 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 diff --git a/docs/changelog.md b/docs/changelog.md index cb9ec51..8f2b100 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -4,6 +4,12 @@ A full changelog ## History +### Version 2.0.3 + +Other Changes: + +- Set BepInEx depencency to eactly 5.4.19 instead of 5.* (this stops a warning from showing up) + ### Version 2.0.2 If a shout is performed by a player that isn't a real player (like a mod), it would break the shout call from working. This is because Discord Connector was trying to lookup the player's details and encountering null. The plugin now checks for that and returns early if null is found. diff --git a/src/PluginInfo.cs b/src/PluginInfo.cs index 1da33ab..03fc3ba 100644 --- a/src/PluginInfo.cs +++ b/src/PluginInfo.cs @@ -17,7 +17,7 @@ internal static class PluginInfo { public const string PLUGIN_ID = "games.nwest.valheim.discordconnector"; public const string PLUGIN_NAME = "Valheim Discord Connector"; - public const string PLUGIN_VERSION = "2.0.2"; + public const string PLUGIN_VERSION = "2.0.3"; public const string PLUGIN_REPO_SHORT = "github: nwesterhausen/valheim-discordconnector"; public const string PLUGIN_AUTHOR = "Nicholas Westerhausen"; }