mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-06 22:46:06 +02:00
chore(.NET): update deps
This commit is contained in:
+5
-5
@@ -1,4 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
@@ -171,13 +171,13 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="CefSharp.Common">
|
<PackageReference Include="CefSharp.Common">
|
||||||
<Version>99.2.120</Version>
|
<Version>100.0.230</Version>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
<PackageReference Include="CefSharp.OffScreen">
|
<PackageReference Include="CefSharp.OffScreen">
|
||||||
<Version>99.2.120</Version>
|
<Version>100.0.230</Version>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
<PackageReference Include="CefSharp.WinForms">
|
<PackageReference Include="CefSharp.WinForms">
|
||||||
<Version>99.2.120</Version>
|
<Version>100.0.230</Version>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
<PackageReference Include="DiscordRichPresence">
|
<PackageReference Include="DiscordRichPresence">
|
||||||
<Version>1.0.175</Version>
|
<Version>1.0.175</Version>
|
||||||
@@ -207,7 +207,7 @@
|
|||||||
<Version>1.0.115.5</Version>
|
<Version>1.0.115.5</Version>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
<PackageReference Include="System.Text.Json">
|
<PackageReference Include="System.Text.Json">
|
||||||
<Version>6.0.2</Version>
|
<Version>6.0.3</Version>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
|
|||||||
+8
-2
@@ -19053,12 +19053,18 @@ speechSynthesis.getVoices();
|
|||||||
callback: (action) => {
|
callback: (action) => {
|
||||||
if (action !== 'confirm') {
|
if (action !== 'confirm') {
|
||||||
this.gameLogDisabled = !this.gameLogDisabled;
|
this.gameLogDisabled = !this.gameLogDisabled;
|
||||||
configRepository.setBool('VRCX_gameLogDisabled', this.gameLogDisabled);
|
configRepository.setBool(
|
||||||
|
'VRCX_gameLogDisabled',
|
||||||
|
this.gameLogDisabled
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
configRepository.setBool('VRCX_gameLogDisabled', this.gameLogDisabled);
|
configRepository.setBool(
|
||||||
|
'VRCX_gameLogDisabled',
|
||||||
|
this.gameLogDisabled
|
||||||
|
);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user