From f615d420ad7fa10d4f2161c4693844838faa8ec9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Sep 2024 20:31:28 +0000 Subject: [PATCH 1/7] Bump coverlet.collector from 3.1.2 to 6.0.2 Bumps [coverlet.collector](https://github.com/coverlet-coverage/coverlet) from 3.1.2 to 6.0.2. - [Release notes](https://github.com/coverlet-coverage/coverlet/releases) - [Commits](https://github.com/coverlet-coverage/coverlet/commits/v6.0.2) --- updated-dependencies: - dependency-name: coverlet.collector dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .../StreamDeckSimHub.PluginTests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/StreamDeckSimHub.PluginTests/StreamDeckSimHub.PluginTests.csproj b/StreamDeckSimHub.PluginTests/StreamDeckSimHub.PluginTests.csproj index 2a40787..f70177c 100644 --- a/StreamDeckSimHub.PluginTests/StreamDeckSimHub.PluginTests.csproj +++ b/StreamDeckSimHub.PluginTests/StreamDeckSimHub.PluginTests.csproj @@ -14,7 +14,7 @@ - + ..\lib\SharpDeck.dll From cf3ac62146f7224a2c82224dd8fc06454da52878 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Sep 2024 20:31:47 +0000 Subject: [PATCH 2/7] Bump Microsoft.NET.Test.Sdk from 17.10.0 to 17.11.0 Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.10.0 to 17.11.0. - [Release notes](https://github.com/microsoft/vstest/releases) - [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md) - [Commits](https://github.com/microsoft/vstest/compare/v17.10.0...v17.11.0) --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../StreamDeckSimHub.PluginTests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/StreamDeckSimHub.PluginTests/StreamDeckSimHub.PluginTests.csproj b/StreamDeckSimHub.PluginTests/StreamDeckSimHub.PluginTests.csproj index 2a40787..a51aff8 100644 --- a/StreamDeckSimHub.PluginTests/StreamDeckSimHub.PluginTests.csproj +++ b/StreamDeckSimHub.PluginTests/StreamDeckSimHub.PluginTests.csproj @@ -9,7 +9,7 @@ - + From 49f7207c923763f825569fb2c89c913166787a21 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Sep 2024 20:32:03 +0000 Subject: [PATCH 3/7] Bump Nerdbank.GitVersioning from 3.6.133 to 3.6.143 Bumps [Nerdbank.GitVersioning](https://github.com/dotnet/Nerdbank.GitVersioning) from 3.6.133 to 3.6.143. - [Release notes](https://github.com/dotnet/Nerdbank.GitVersioning/releases) - [Commits](https://github.com/dotnet/Nerdbank.GitVersioning/compare/v3.6.133...v3.6.143) --- updated-dependencies: - dependency-name: Nerdbank.GitVersioning dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Directory.Build.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Directory.Build.props b/Directory.Build.props index 1dda2dd..26f6094 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -3,7 +3,7 @@ all - 3.6.133 + 3.6.143 \ No newline at end of file From 5da4675aee13463adb255ecd892d1ca0287404d8 Mon Sep 17 00:00:00 2001 From: Martin Renner Date: Thu, 5 Sep 2024 19:35:53 +0200 Subject: [PATCH 4/7] Exclude the .NET runtime from the bundle, switch to "PublishSingleFile=true". Issue #130 --- README.adoc | 4 +++- .../StreamDeckSimHub.Plugin.csproj | 11 +++++++++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/README.adoc b/README.adoc index cdeb6ed..0bdf9ba 100644 --- a/README.adoc +++ b/README.adoc @@ -47,10 +47,12 @@ image::images/teaser/Teaser-2.png[Teaser 2,800] == Installation -WARNING: To download, do not use the green button! Instead click on "Releases" on the right side and download the file with extension `streamDeckPlugin`. +WARNING: To download, do not use the green button! Instead, click on "Releases" on the right side and download the file with extension `streamDeckPlugin`. Be sure to have the SimHub Property Server plugin installed into SimHub (see above). When updating this plugin, be sure to also check the SimHub Property Server plugin for updates. +TIP: For the usage of this plugin, the https://dotnet.microsoft.com/en-us/download/dotnet/6.0[.NET Runtime 6.0] has to be installed. Without this, the plugin won't even start. + Download the file `net.planetrenner.simhub.streamDeckPlugin` from the GitHub "Releases" page and double-click it to install it into Stream Deck. diff --git a/StreamDeckSimHub.Plugin/StreamDeckSimHub.Plugin.csproj b/StreamDeckSimHub.Plugin/StreamDeckSimHub.Plugin.csproj index e8a2728..f8d3470 100644 --- a/StreamDeckSimHub.Plugin/StreamDeckSimHub.Plugin.csproj +++ b/StreamDeckSimHub.Plugin/StreamDeckSimHub.Plugin.csproj @@ -3,8 +3,8 @@ Exe net6.0 - false - true + true + false win-x64 enable enable @@ -12,6 +12,13 @@ 11 + + embedded + + + embedded + + From 11af46843d02c3ea4bb4a02c1ddaeaaef53d4a2d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 5 Sep 2024 17:38:01 +0000 Subject: [PATCH 5/7] Bump NLog from 5.3.2 to 5.3.3 Bumps [NLog](https://github.com/NLog/NLog) from 5.3.2 to 5.3.3. - [Release notes](https://github.com/NLog/NLog/releases) - [Changelog](https://github.com/NLog/NLog/blob/dev/CHANGELOG.md) - [Commits](https://github.com/NLog/NLog/compare/v5.3.2...v5.3.3) --- updated-dependencies: - dependency-name: NLog dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- StreamDeckSimHub.Plugin/StreamDeckSimHub.Plugin.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/StreamDeckSimHub.Plugin/StreamDeckSimHub.Plugin.csproj b/StreamDeckSimHub.Plugin/StreamDeckSimHub.Plugin.csproj index f8d3470..2695a4a 100644 --- a/StreamDeckSimHub.Plugin/StreamDeckSimHub.Plugin.csproj +++ b/StreamDeckSimHub.Plugin/StreamDeckSimHub.Plugin.csproj @@ -25,7 +25,7 @@ - + From 36cd555193f0ec569b41324909f70768d970c3e1 Mon Sep 17 00:00:00 2001 From: Martin Renner Date: Thu, 5 Sep 2024 20:06:20 +0200 Subject: [PATCH 6/7] Upgrade from .NET 6.0 to .NET 8.0 Issue #131 --- README.adoc | 2 +- StreamDeckSimHub.Plugin/StreamDeckSimHub.Plugin.csproj | 4 ++-- .../StreamDeckSimHub.PluginTests.csproj | 2 +- release.bat | 3 ++- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README.adoc b/README.adoc index 0bdf9ba..cd376f3 100644 --- a/README.adoc +++ b/README.adoc @@ -51,7 +51,7 @@ WARNING: To download, do not use the green button! Instead, click on "Releases" Be sure to have the SimHub Property Server plugin installed into SimHub (see above). When updating this plugin, be sure to also check the SimHub Property Server plugin for updates. -TIP: For the usage of this plugin, the https://dotnet.microsoft.com/en-us/download/dotnet/6.0[.NET Runtime 6.0] has to be installed. Without this, the plugin won't even start. +TIP: For the usage of this plugin, the https://dotnet.microsoft.com/en-us/download/dotnet/8.0[.NET Runtime 8.0] has to be installed. Without this, the plugin won't even start. Download ".NET Desktop Runtime 8.0.x (x64)" from Microsoft. Download the file `net.planetrenner.simhub.streamDeckPlugin` from the GitHub "Releases" page and double-click it to install it into Stream Deck. diff --git a/StreamDeckSimHub.Plugin/StreamDeckSimHub.Plugin.csproj b/StreamDeckSimHub.Plugin/StreamDeckSimHub.Plugin.csproj index f8d3470..2a12f4b 100644 --- a/StreamDeckSimHub.Plugin/StreamDeckSimHub.Plugin.csproj +++ b/StreamDeckSimHub.Plugin/StreamDeckSimHub.Plugin.csproj @@ -2,14 +2,14 @@ Exe - net6.0 + net8.0 true false win-x64 enable enable StreamDeckSimHub - 11 + 12 diff --git a/StreamDeckSimHub.PluginTests/StreamDeckSimHub.PluginTests.csproj b/StreamDeckSimHub.PluginTests/StreamDeckSimHub.PluginTests.csproj index 2a40787..6c815e2 100644 --- a/StreamDeckSimHub.PluginTests/StreamDeckSimHub.PluginTests.csproj +++ b/StreamDeckSimHub.PluginTests/StreamDeckSimHub.PluginTests.csproj @@ -1,7 +1,7 @@ - net6.0 + net8.0 enable enable diff --git a/release.bat b/release.bat index 5822712..2ff5183 100644 --- a/release.bat +++ b/release.bat @@ -9,11 +9,12 @@ echo Building for configuration: %CONFIG% echo. dotnet publish StreamDeckSimHub.Plugin\StreamDeckSimHub.Plugin.csproj -c %CONFIG% -r win-x64 +if %errorlevel% neq 0 goto :endFailure if exist build rmdir /s /q build if exist build goto :endFailure mkdir build -xcopy StreamDeckSimHub.Plugin\bin\%CONFIG%\net6.0\win-x64\publish build\net.planetrenner.simhub.sdPlugin /e /i /q +xcopy StreamDeckSimHub.Plugin\bin\%CONFIG%\net8.0\win-x64\publish build\net.planetrenner.simhub.sdPlugin /e /i /q cd build ..\..\DistributionTool.exe -b -i net.planetrenner.simhub.sdPlugin -o . From a8b28a5f5dcdbc41e2b844a5805e80e3a292352d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 5 Sep 2024 18:16:13 +0000 Subject: [PATCH 7/7] Bump Moq from 4.18.3 to 4.20.71 Bumps [Moq](https://github.com/moq/moq) from 4.18.3 to 4.20.71. - [Release notes](https://github.com/moq/moq/releases) - [Changelog](https://github.com/devlooped/moq/blob/main/changelog.md) - [Commits](https://github.com/moq/moq/compare/v4.18.3...v4.20.71) --- updated-dependencies: - dependency-name: Moq dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../StreamDeckSimHub.PluginTests.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/StreamDeckSimHub.PluginTests/StreamDeckSimHub.PluginTests.csproj b/StreamDeckSimHub.PluginTests/StreamDeckSimHub.PluginTests.csproj index 34af454..2db8cff 100644 --- a/StreamDeckSimHub.PluginTests/StreamDeckSimHub.PluginTests.csproj +++ b/StreamDeckSimHub.PluginTests/StreamDeckSimHub.PluginTests.csproj @@ -10,7 +10,7 @@ - +