1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-02 17:53:41 +00:00

[PM-19255] Manifest file updates

This commit is contained in:
Colton Hurst
2025-06-17 15:21:01 -04:00
parent c658d035ad
commit baaa8d8d95
2 changed files with 6 additions and 6 deletions

View File

@@ -87,8 +87,8 @@ xmlns:build="http://schemas.microsoft.com/developer/appx/2015/build">
<Resource Language="zh-tw" />
</Resources>
<Dependencies>
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14316.0"
MaxVersionTested="10.0.14316.0" />
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.22635.4515"
MaxVersionTested="10.0.26120.4250" />
</Dependencies>
<Capabilities>
<rescap:Capability Name="runFullTrust" />
@@ -114,7 +114,7 @@ xmlns:build="http://schemas.microsoft.com/developer/appx/2015/build">
</uap:Extension>
<com:Extension Category="windows.comServer">
<com:ComServer>
<com:ExeServer Executable="Bitwarden.exe" DisplayName="Bitwarden Passkey Manager">
<com:ExeServer Executable="app\Bitwarden.exe" DisplayName="Bitwarden Passkey Manager">
<com:Class Id="0f7dc5d9-69ce-4652-8572-6877fd695062"
DisplayName="Bitwarden Passkey Manager" />
</com:ExeServer>

View File

@@ -84,7 +84,7 @@ impl EXPERIMENTAL_IPluginAuthenticator_Impl for PluginAuthenticatorComObject_Imp
request: *const ExperimentalWebAuthnPluginOperationRequest,
response: *mut *mut ExperimentalWebAuthnPluginOperationResponse,
) -> HRESULT {
panic!("EXPERIMENTAL_PluginMakeCredential() called");
//panic!("EXPERIMENTAL_PluginMakeCredential() called");
util::message(String::from("EXPERIMENTAL_PluginMakeCredential() called"));
HRESULT(0)
}
@@ -94,7 +94,7 @@ impl EXPERIMENTAL_IPluginAuthenticator_Impl for PluginAuthenticatorComObject_Imp
request: *const ExperimentalWebAuthnPluginOperationRequest,
response: *mut *mut ExperimentalWebAuthnPluginOperationResponse,
) -> HRESULT {
panic!("EXPERIMENTAL_PluginGetAssertion() called");
//panic!("EXPERIMENTAL_PluginGetAssertion() called");
util::message(String::from("EXPERIMENTAL_PluginGetAssertion() called"));
HRESULT(0)
}
@@ -103,7 +103,7 @@ impl EXPERIMENTAL_IPluginAuthenticator_Impl for PluginAuthenticatorComObject_Imp
&self,
request: *const ExperimentalWebAuthnPluginCancelOperationRequest,
) -> HRESULT {
panic!("EXPERIMENTAL_PluginCancelOperation() called");
//panic!("EXPERIMENTAL_PluginCancelOperation() called");
util::message(String::from("EXPERIMENTAL_PluginCancelOperation() called"));
HRESULT(0)
}