StreamDeck-Tools
1.1.6
See the version list below for details.
dotnet add package StreamDeck-Tools --version 1.1.6
NuGet\Install-Package StreamDeck-Tools -Version 1.1.6
<PackageReference Include="StreamDeck-Tools" Version="1.1.6" />
paket add StreamDeck-Tools --version 1.1.6
#r "nuget: StreamDeck-Tools, 1.1.6"
// Install StreamDeck-Tools as a Cake Addin #addin nuget:?package=StreamDeck-Tools&version=1.1.6 // Install StreamDeck-Tools as a Cake Tool #tool nuget:?package=StreamDeck-Tools&version=1.1.6
BarRaider's Stream Deck Tools
Author's website and contact information: https://barraider.github.io
Features
- Just call the
SDWrapper.Run()
and the library will take care of all the overhead - Built-in integration with NLog. Use
Logger.LogMessage()
for logging. - Just have your plugin inherit PluginBase and implement the basic functionality
How do I use this?
This library wraps all the communication with the Stream Deck App, allowing you to focus on actually writing the Plugin's logic. After creating a C# Console application, using this library requires two steps:
- Create a class that inherits the PluginBase abstract class. Implement your logic, focusing on the methods provided in the base class. Follow the sample here for more details: https://github.com/BarRaider/barraider-sdtools
public class MyPlugin : PluginBase
{
// Create this constructor in your plugin and pass the objects to the PluginBase class
public MyPlugin(SDConnection connection, JObject settings) : base(connection, settings)
{
...
}
....
}
- In your program.cs, Create a list of all the ActionIds (UUIDs) your plugin supports, and which class implements it.
The actionId correlates to the UUID field in the manifest.json file.
You can have more than one action in the manifest file and therefore we except an array. The second parameter is the type (not instance!) of the class that implements that action. This is the class from step 1 above. Pass the args you received along with the supported ActionIds to the SDWrapper.Run() function, and you're done! Example:
class Program
{
static void Main(string[] args)
{
List<PluginActionId> supportedActionIds = new List<PluginActionId>();
supportedActionIds.Add(new PluginActionId("com.barraider.myUUID", typeof(MyPlugin)));
SDWrapper.Run(args, supportedActionIds.ToArray());
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 is compatible. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.7.2
- CommandLineParser (>= 2.4.3)
- Newtonsoft.Json (>= 12.0.1)
- NLog (>= 4.5.11)
- streamdeck-client-csharp (>= 4.0.1)
-
.NETStandard 2.0
- CommandLineParser (>= 2.4.3)
- Newtonsoft.Json (>= 12.0.1)
- NLog (>= 4.5.11)
- streamdeck-client-csharp (>= 4.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (3)
Showing the top 3 popular GitHub repositories that depend on StreamDeck-Tools:
Repository | Stars |
---|---|
mhwlng/streamdeck-elite
Elgato Stream Deck plugin for Elite Dangerous
|
|
mhwlng/streamdeck-starcitizen
Elgato Stream Deck button plugin for Star Citizen
|
|
BarRaider/streamdeck-voicemeeter
VoiceMeeter integration for Stream Deck
|
Version | Downloads | Last updated |
---|---|---|
6.2.0 | 1,178 | 1/23/2024 |
6.1.1 | 1,755 | 4/26/2023 |
6.1.0 | 693 | 4/25/2023 |
6.0.0 | 1,145 | 2/12/2023 |
5.9.1-Beta1 | 638 | 12/22/2022 |
5.9.0-Beta1 | 622 | 12/8/2022 |
3.2.0 | 3,661 | 1/20/2021 |
3.1.0 | 2,075 | 11/29/2020 |
3.0.0 | 1,133 | 10/1/2020 |
2.9.0 | 1,196 | 6/25/2020 |
2.8.0 | 1,122 | 4/27/2020 |
2.7.0 | 1,579 | 1/2/2020 |
2.6.0 | 1,371 | 9/29/2019 |
2.5.0 | 1,162 | 8/12/2019 |
2.4.2 | 1,084 | 7/15/2019 |
2.3.0 | 1,025 | 7/9/2019 |
2.2.0 | 1,232 | 5/24/2019 |
2.0.1 | 1,238 | 3/8/2019 |
2.0.0 | 1,459 | 3/4/2019 |
1.1.6 | 1,231 | 2/18/2019 |
1.1.5 | 1,160 | 2/15/2019 |
1.1.1 | 1,164 | 2/9/2019 |
* Additional helper functions added to Tools class
* Tools class now supports extracting the correct filename from a PI file chooser
* Fixed bug in which Dispose was not always called on the plugin