Skip to content

Commit

Permalink
Update for VRCOSC SDK version 2024.1223.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DJDavid98 committed Dec 23, 2024
1 parent ec3607d commit d10c9c3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions BluetoothHeartrateModule/BluetoothHeartrateModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ private void WsServerEnabledSettingChangeHandler()
var wsServerHostSetting = GetSetting(BluetoothHeartrateSetting.WebsocketServerHost);
if (wsServerHostSetting != null)
{
wsServerHostSetting.IsEnabled = newValue;
wsServerHostSetting.IsEnabled.Value = newValue;
}
var wsServerPortSetting = GetSetting(BluetoothHeartrateSetting.WebsocketServerPort);
if (wsServerPortSetting != null)
{
wsServerPortSetting.IsEnabled = newValue;
wsServerPortSetting.IsEnabled.Value = newValue;
}
}

Expand Down
8 changes: 4 additions & 4 deletions BluetoothHeartrateModule/BluetoothHeartrateModule.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<TargetFramework>net8.0-windows10.0.22621.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>2.0.15.0</Version>
<AssemblyVersion>2.0.15.0</AssemblyVersion>
<FileVersion>2.0.15.0</FileVersion>
<Version>2.0.16.0</Version>
<AssemblyVersion>2.0.16.0</AssemblyVersion>
<FileVersion>2.0.16.0</FileVersion>
<Authors>DJDavid98</Authors>
<Product>Bluetooth Heartrate</Product>
<ApplicationIcon>logo\logo.ico</ApplicationIcon>
Expand All @@ -28,7 +28,7 @@

<ItemGroup>
<PackageReference Include="Extended.Wpf.Toolkit" Version="4.6.1" />
<PackageReference Include="VolcanicArts.VRCOSC.SDK" Version="2024.1208.0" />
<PackageReference Include="VolcanicArts.VRCOSC.SDK" Version="2024.1223.0" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit d10c9c3

Please sign in to comment.