Skip to content

Commit ac784d1

Browse files
committed
Update for new VRCOSC SDK version
1 parent 3122a24 commit ac784d1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

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.12.0</Version>
8-
<AssemblyVersion>2.0.12.0</AssemblyVersion>
9-
<FileVersion>2.0.12.0</FileVersion>
7+
<Version>2.0.13.0</Version>
8+
<AssemblyVersion>2.0.13.0</AssemblyVersion>
9+
<FileVersion>2.0.13.0</FileVersion>
1010
<Authors>DJDavid98</Authors>
1111
<Product>Bluetooth Heartrate</Product>
1212
<ApplicationIcon>logo\logo.ico</ApplicationIcon>
@@ -18,7 +18,7 @@
1818

1919
<ItemGroup>
2020
<PackageReference Include="Extended.Wpf.Toolkit" Version="4.6.1" />
21-
<PackageReference Include="VolcanicArts.VRCOSC.SDK" Version="2024.1012.0" />
21+
<PackageReference Include="VolcanicArts.VRCOSC.SDK" Version="2024.1115.0" />
2222
</ItemGroup>
2323

2424
<ItemGroup>

BluetoothHeartrateModule/UI/BluetoothHeartrateRuntimeView.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ private void HandleDeviceListUpdate()
5656
}
5757
if (!selectedItemFound) {
5858
var missingDevice = new DeviceData(selectedDeviceMac, module.deviceDataManager, true);
59-
missingDevice.Name = selectedDeviceMac == string.Empty ? (string)DeviceSelection.Watermark : "Scanning for devices…";
59+
missingDevice.Name = selectedDeviceMac == string.Empty ? (string)DeviceSelection.Watermark : "Scanning for device…";
6060
Devices.Add(missingDevice);
6161
DeviceSelection.SelectedItem = missingDevice;
6262
}

0 commit comments

Comments
 (0)