diff --git a/DiscordConnector.csproj b/DiscordConnector.csproj index 3e74590..b584993 100644 --- a/DiscordConnector.csproj +++ b/DiscordConnector.csproj @@ -13,7 +13,7 @@ - G:\Valheim\0.217.27 + G:\Valheim\0.217.38 $(ProjectDir)bin/ $(BinDir)DiscordConnector/ @@ -94,4 +94,4 @@ - \ No newline at end of file + diff --git a/Metadata/DiscordConnector-Nexus.readme b/Metadata/DiscordConnector-Nexus.readme index 9d312b7..8092152 100644 --- a/Metadata/DiscordConnector-Nexus.readme +++ b/Metadata/DiscordConnector-Nexus.readme @@ -1,4 +1,4 @@ -DISCORD CONNECTOR - 2.1.16 +DISCORD CONNECTOR - 2.1.17 Connect your Valheim server to a Discord Webhook. Works for both dedicated and client-hosted servers. (Visit the github repo for a how-to guide.) :: REQUIREMENTS :: @@ -29,4 +29,4 @@ Connect your Valheim server to a Discord Webhook. Works for both dedicated and c :: ROADMAP :: - (Better) Fancier Discord messages -- Discord bot integration \ No newline at end of file +- Discord bot integration diff --git a/Metadata/README.md b/Metadata/README.md index 9753d47..390d618 100644 --- a/Metadata/README.md +++ b/Metadata/README.md @@ -34,6 +34,12 @@ See the [current roadmap](https://github.com/nwesterhausen/valheim-discordconnec ## Changelog +## Version 2.1.17 + +Fixes: + +- Build against latest Valheim version + ## Version 2.1.16 Fixes: diff --git a/Metadata/manifest.json b/Metadata/manifest.json index 8766673..ad23dae 100644 --- a/Metadata/manifest.json +++ b/Metadata/manifest.json @@ -1,6 +1,6 @@ { "name": "DiscordConnector", - "version_number": "2.1.16", + "version_number": "2.1.17", "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.2201"] diff --git a/Metadata/thunderstore.toml b/Metadata/thunderstore.toml index 43d3c49..67e4f00 100644 --- a/Metadata/thunderstore.toml +++ b/Metadata/thunderstore.toml @@ -4,7 +4,7 @@ schemaVersion = "0.0.1" [package] namespace = "nwesterhausen" name = "DiscordConnector" -versionNumber = "2.1.16" +versionNumber = "2.1.17" 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 2350514..f216795 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -2,6 +2,12 @@ A full changelog of changes, dating all the way back to the first release. +## Version 2.1.17 + +Fixes: + +- Build against latest Valheim version + ## Version 2.1.16 Fixes: diff --git a/src/PluginInfo.cs b/src/PluginInfo.cs index c941b9d..0f50699 100644 --- a/src/PluginInfo.cs +++ b/src/PluginInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyVersion(PluginInfo.PLUGIN_VERSION)] [assembly: AssemblyTitle(PluginInfo.PLUGIN_NAME + " (" + PluginInfo.PLUGIN_ID + ")")] [assembly: AssemblyProduct(PluginInfo.PLUGIN_NAME)] -[assembly: AssemblyCopyright("© 2023 " + PluginInfo.PLUGIN_AUTHOR + " Repository at " + PluginInfo.PLUGIN_REPO_SHORT)] +[assembly: AssemblyCopyright("© 2024 " + PluginInfo.PLUGIN_AUTHOR + " Repository at " + PluginInfo.PLUGIN_REPO_SHORT)] #endregion namespace DiscordConnector; @@ -16,7 +16,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.1.16"; + public const string PLUGIN_VERSION = "2.1.17"; public const string PLUGIN_REPO_SHORT = "github: nwesterhausen/valheim-discordconnector"; public const string PLUGIN_AUTHOR = "Nicholas Westerhausen"; public const string SHORT_PLUGIN_ID = "discordconnector";