Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
Build against latest Valheim version
  • Loading branch information
nwesterhausen committed Jan 15, 2024
1 parent 1e216e4 commit 57952c6
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 8 deletions.
4 changes: 2 additions & 2 deletions DiscordConnector.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<PropertyGroup>
<!-- Set the path to the game folder. This is used when including references below -->
<GamePath Condition="$(GamePath) == ''">G:\Valheim\0.217.27</GamePath>
<GamePath Condition="$(GamePath) == ''">G:\Valheim\0.217.38</GamePath>
<!-- Make the references to folders used in the build process a lot simpler -->
<BinDir>$(ProjectDir)bin/</BinDir>
<DiscordConnectorDir>$(BinDir)DiscordConnector/</DiscordConnectorDir>
Expand Down Expand Up @@ -94,4 +94,4 @@
<Delete Files="$(BinDir)DiscordConnector.zip" Condition="Exists('$(BinDir)DiscordConnector.zip')" />
<ZipDirectory SourceDirectory="$(DiscordConnectorDir)" DestinationFile="$(BinDir)DiscordConnector.zip" />
</Target>
</Project>
</Project>
4 changes: 2 additions & 2 deletions Metadata/DiscordConnector-Nexus.readme
Original file line number Diff line number Diff line change
@@ -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 ::
Expand Down Expand Up @@ -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
- Discord bot integration
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.17

Fixes:

- Build against latest Valheim version

## Version 2.1.16

Fixes:
Expand Down
2 changes: 1 addition & 1 deletion Metadata/manifest.json
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion Metadata/thunderstore.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
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.17

Fixes:

- Build against latest Valheim version

## Version 2.1.16

Fixes:
Expand Down
4 changes: 2 additions & 2 deletions src/PluginInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
[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;
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";
Expand Down

0 comments on commit 57952c6

Please sign in to comment.