From 8d3e54d6382349e981d7e7be65e9c73eb9f2070f Mon Sep 17 00:00:00 2001 From: Nicholas Westerhausen Date: Thu, 16 Feb 2023 12:32:49 -0500 Subject: [PATCH] chore: bump for release 2.1.10 --- Metadata/README.md | 8 ++++++++ Metadata/manifest.json | 2 +- Metadata/thunderstore.toml | 2 +- README.md | 2 +- docs/changelog.md | 8 ++++++++ src/PluginInfo.cs | 2 +- 6 files changed, 20 insertions(+), 4 deletions(-) diff --git a/Metadata/README.md b/Metadata/README.md index ba1be7a..2c8f5d5 100644 --- a/Metadata/README.md +++ b/Metadata/README.md @@ -34,6 +34,14 @@ See the [current roadmap](https://github.com/nwesterhausen/valheim-discordconnec ## Changelog +## Version 2.1.10 + +Thanks a lot to everyone who reported and helped resolve this error. Missed it in my initial testing because I was eager to test both webhooks and didn't end up testing with only one set. + +Fixes: + +- Null pointer error which would spam when only 1 webhook was set + ## Version 2.1.9 Adds a requested feature for a second webhook. Both webhooks can be configured to accept messages of any type that Discord diff --git a/Metadata/manifest.json b/Metadata/manifest.json index 2ab5efa..c3bf1d1 100644 --- a/Metadata/manifest.json +++ b/Metadata/manifest.json @@ -1,6 +1,6 @@ { "name": "DiscordConnector", - "version_number": "2.1.9", + "version_number": "2.1.10", "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 a241e3d..e402111 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.9" +versionNumber = "2.1.10" 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/README.md b/README.md index abc7524..aaa4235 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![Build](https://github.com/nwesterhausen/valheim-discordconnector/actions/workflows/dotnet.yml/badge.svg)](https://github.com/nwesterhausen/valheim-discordconnector/actions/workflows/dotnet.yml) [![Publish](https://github.com/nwesterhausen/valheim-discordconnector/actions/workflows/publish.yml/badge.svg)](https://github.com/nwesterhausen/valheim-discordconnector/actions/workflows/publish.yml) [![GitHub release (latest by date)](https://img.shields.io/github/v/release/nwesterhausen/valheim-discordconnector?label=Github%20Release&style=flat&labelColor=%2332393F)](https://github.com/nwesterhausen/valheim-discordconnector/releases/latest) -[![Thunderstore.io](https://img.shields.io/badge/Thunderstore.io-2.1.9-%23375a7f?style=flat&labelColor=%2332393F)](https://valheim.thunderstore.io/package/nwesterhausen/DiscordConnector/) +[![Thunderstore.io](https://img.shields.io/badge/Thunderstore.io-2.1.10-%23375a7f?style=flat&labelColor=%2332393F)](https://valheim.thunderstore.io/package/nwesterhausen/DiscordConnector/) [![NexusMods](https://img.shields.io/badge/NexusMods-2.0.6-%23D98F40?style=flat&labelColor=%2332393F)](https://www.nexusmods.com/valheim/mods/1551/) Connect your Valheim server to Discord. ([See website for installation or configuration instructions](https://discordconnector.valheim.nwest.games/)). This plugin is largely based on [valheim-discord-notifier](https://github.com/aequasi/valheim-discord-notifier), but this plugin supports randomized messages, muting players, and Discord message embeds. diff --git a/docs/changelog.md b/docs/changelog.md index 1228770..b94e099 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -2,6 +2,14 @@ A full changelog of changes, dating all the way back to the first release. +## Version 2.1.10 + +Thanks a lot to everyone who reported and helped resolve this error. Missed it in my initial testing because I was eager to test both webhooks and didn't end up testing with only one set. + +Fixes: + +- Null pointer error which would spam when only 1 webhook was set + ## Version 2.1.9 Adds a requested feature for a second webhook. Both webhooks can be configured to accept messages of any type that Discord diff --git a/src/PluginInfo.cs b/src/PluginInfo.cs index 7200f00..db01ef1 100644 --- a/src/PluginInfo.cs +++ b/src/PluginInfo.cs @@ -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.9"; + public const string PLUGIN_VERSION = "2.1.10"; public const string PLUGIN_REPO_SHORT = "github: nwesterhausen/valheim-discordconnector"; public const string PLUGIN_AUTHOR = "Nicholas Westerhausen"; public const string SHORT_PLUGIN_ID = "discordconnector";