Skip to content

Commit

Permalink
Moved to StreamDeck-Tools v2.0.1 to support MultiActions
Browse files Browse the repository at this point in the history
  • Loading branch information
BarRaider committed Mar 8, 2019
1 parent ebbb07b commit 522e863
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 9 deletions.
1 change: 1 addition & 0 deletions VoiceMeeter/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ static void Main(string[] args)
{
// Uncomment this line of code to allow for debugging
//while (!System.Diagnostics.Debugger.IsAttached) { System.Threading.Thread.Sleep(100); }

SDWrapper.Run(args);
}
}
Expand Down
5 changes: 4 additions & 1 deletion VoiceMeeter/VMAdvancedPTT.cs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,10 @@ public override void ReceivedSettings(ReceivedSettingsPayload payload)

public override void ReceivedGlobalSettings(ReceivedGlobalSettingsPayload payload) { }

public override void Dispose() { }
public override void Dispose()
{
Logger.Instance.LogMessage(TracingLevel.INFO, "Destructor called");
}

#endregion
}
Expand Down
5 changes: 4 additions & 1 deletion VoiceMeeter/VMAdvancedPress.cs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,10 @@ public async override void OnTick()
}
}

public override void Dispose() { }
public override void Dispose()
{
Logger.Instance.LogMessage(TracingLevel.INFO, "Destructor called");
}

public override void ReceivedGlobalSettings(ReceivedGlobalSettingsPayload payload) { }

Expand Down
5 changes: 4 additions & 1 deletion VoiceMeeter/VMAdvancedToggle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,10 @@ public async override void OnTick()
}
}

public override void Dispose() { }
public override void Dispose()
{
Logger.Instance.LogMessage(TracingLevel.INFO, "Destructor called");
}

public async override void ReceivedSettings(ReceivedSettingsPayload payload)
{
Expand Down
5 changes: 4 additions & 1 deletion VoiceMeeter/VMMicrophone.cs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,10 @@ public async override void OnTick()
await Connection.SetImageAsync(GetBase64ImageStatus());
}

public override void Dispose() { }
public override void Dispose()
{
Logger.Instance.LogMessage(TracingLevel.INFO, "Destructor called");
}

public async override void ReceivedSettings(ReceivedSettingsPayload payload)
{
Expand Down
5 changes: 4 additions & 1 deletion VoiceMeeter/VMModify.cs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,10 @@ public async override void OnTick()
}
}

public override void Dispose() { }
public override void Dispose()
{
Logger.Instance.LogMessage(TracingLevel.INFO, "Destructor called");
}

public override void ReceivedSettings(ReceivedSettingsPayload payload)
{
Expand Down
4 changes: 2 additions & 2 deletions VoiceMeeter/VoiceMeeter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@
<Reference Include="streamdeck-client-csharp, Version=4.1.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\..\DotNet\StreamDeck\packages\streamdeck-client-csharp.4.1.0\lib\netstandard2.0\streamdeck-client-csharp.dll</HintPath>
</Reference>
<Reference Include="StreamDeckTools, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\..\DotNet\StreamDeck\packages\StreamDeck-Tools.2.0.0\lib\net472\StreamDeckTools.dll</HintPath>
<Reference Include="StreamDeckTools, Version=2.0.1.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\..\DotNet\StreamDeck\packages\StreamDeck-Tools.2.0.1\lib\net472\StreamDeckTools.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Configuration" />
Expand Down
2 changes: 1 addition & 1 deletion VoiceMeeter/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
"Name": "VoiceMeeter Integration",
"Icon": "Images/pluginIcon",
"URL": "https://barraider.github.io/",
"Version": "1.2",
"Version": "1.3",
"CodePath": "com.barraider.voicemeeter.exe",
"Category": "BarRaider",
"CategoryIcon": "Images/categoryIcon",
Expand Down
2 changes: 1 addition & 1 deletion VoiceMeeter/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
<package id="Newtonsoft.Json" version="12.0.1" targetFramework="net472" />
<package id="NLog" version="4.5.11" targetFramework="net472" />
<package id="streamdeck-client-csharp" version="4.1.0" targetFramework="net472" />
<package id="StreamDeck-Tools" version="2.0.0" targetFramework="net472" />
<package id="StreamDeck-Tools" version="2.0.1" targetFramework="net472" />
<package id="System.Drawing.Common" version="4.5.1" targetFramework="net472" />
</packages>

0 comments on commit 522e863

Please sign in to comment.