Skip to content

Commit

Permalink
fix(module_registry): Fixed a bug where installed modules from the in…
Browse files Browse the repository at this point in the history
…ternet would not show up as installed
  • Loading branch information
benaclejames committed Jul 28, 2023
1 parent 6681521 commit 04717cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<AppInstaller DisplayName="VRCFaceTracking" IsBundle="false" Version="5.1.1.0" DisplayPublisher="benaclejames" SupportedArchitectures="x64" OutputFolder="bin\x64\Release\net7.0-windows10.0.19041.0\win10-x64\AppPackages\" Description="VRChat OSC App to allow AV3 Avatars to interact with eye and lip tracking runtimes" MinOS="10.0.19041.0" CertificateUri="https://github.com/benaclejames/VRCFaceTracking/releases/latest/download/VRCFaceTracking_5.1.0.1_x64_Test/VRCFaceTracking_5.1.0.1_x64.cer" PackageUri="https://github.com/benaclejames/VRCFaceTracking/releases/latest/download/VRCFaceTracking_5.1.0.1_x64_Test/VRCFaceTracking_5.1.0.1_x64.msix" AppInstallerFile="https://github.com/benaclejames/VRCFaceTracking/releases/latest/download/VRCFaceTracking_x64.appinstaller" LogoPath="C:\Users\Ben\Downloads\VRCFaceTracking-Next\VRCFaceTracking\Assets\StoreLogo.png" TileColor="transparent" />
<AppInstaller DisplayName="VRCFaceTracking" IsBundle="false" Version="5.1.1.0" DisplayPublisher="benaclejames" SupportedArchitectures="x64" OutputFolder="bin\x64\Release\net7.0-windows10.0.19041.0\win10-x64\AppPackages\" Description="VRChat OSC App to allow AV3 Avatars to interact with eye and lip tracking runtimes" MinOS="10.0.19041.0" CertificateUri="https://github.com/benaclejames/VRCFaceTracking/releases/latest/download/VRCFaceTracking_5.1.1.0_x64_Test/VRCFaceTracking_5.1.1.0_x64.cer" PackageUri="https://github.com/benaclejames/VRCFaceTracking/releases/latest/download/VRCFaceTracking_5.1.1.0_x64_Test/VRCFaceTracking_5.1.1.0_x64.msix" AppInstallerFile="https://github.com/benaclejames/VRCFaceTracking/releases/latest/download/VRCFaceTracking_x64.appinstaller" LogoPath="C:\Users\Ben\Downloads\VRCFaceTracking-Next\VRCFaceTracking\Assets\StoreLogo.png" TileColor="transparent" />
2 changes: 2 additions & 0 deletions VRCFaceTracking/ViewModels/ModuleRegistryViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ public async void OnNavigatedTo(object parameter)
// This module is installed and in the remote list, so we need to update the remote module's install state.
if (remoteModule.Version != installedModule.Version)
remoteModule.InstallationState = InstallState.Outdated;
else
remoteModule.InstallationState = InstallState.Installed;
}
}

Expand Down

0 comments on commit 04717cc

Please sign in to comment.