Skip to content

Commit d10c9c3

Browse files
committed
Update for VRCOSC SDK version 2024.1223.0
1 parent ec3607d commit d10c9c3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

BluetoothHeartrateModule/BluetoothHeartrateModule.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,12 @@ private void WsServerEnabledSettingChangeHandler()
7777
var wsServerHostSetting = GetSetting(BluetoothHeartrateSetting.WebsocketServerHost);
7878
if (wsServerHostSetting != null)
7979
{
80-
wsServerHostSetting.IsEnabled = newValue;
80+
wsServerHostSetting.IsEnabled.Value = newValue;
8181
}
8282
var wsServerPortSetting = GetSetting(BluetoothHeartrateSetting.WebsocketServerPort);
8383
if (wsServerPortSetting != null)
8484
{
85-
wsServerPortSetting.IsEnabled = newValue;
85+
wsServerPortSetting.IsEnabled.Value = newValue;
8686
}
8787
}
8888

BluetoothHeartrateModule/BluetoothHeartrateModule.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<TargetFramework>net8.0-windows10.0.22621.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
7-
<Version>2.0.15.0</Version>
8-
<AssemblyVersion>2.0.15.0</AssemblyVersion>
9-
<FileVersion>2.0.15.0</FileVersion>
7+
<Version>2.0.16.0</Version>
8+
<AssemblyVersion>2.0.16.0</AssemblyVersion>
9+
<FileVersion>2.0.16.0</FileVersion>
1010
<Authors>DJDavid98</Authors>
1111
<Product>Bluetooth Heartrate</Product>
1212
<ApplicationIcon>logo\logo.ico</ApplicationIcon>
@@ -28,7 +28,7 @@
2828

2929
<ItemGroup>
3030
<PackageReference Include="Extended.Wpf.Toolkit" Version="4.6.1" />
31-
<PackageReference Include="VolcanicArts.VRCOSC.SDK" Version="2024.1208.0" />
31+
<PackageReference Include="VolcanicArts.VRCOSC.SDK" Version="2024.1223.0" />
3232
</ItemGroup>
3333

3434
<ItemGroup>

0 commit comments

Comments
 (0)