-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(updater): Use escaped installer path to start the nsis updater (#…
…727) Port of v1 change: tauri-apps/tauri#7956 Committed via a GitHub action: https://github.com/tauri-apps/plugins-workspace/actions/runs/6877612128 Co-authored-by: amrbashir <[email protected]>
- Loading branch information
Showing
9 changed files
with
57 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
'use strict'; | ||
|
||
var primitives = require('@tauri-apps/api/primitives'); | ||
|
||
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// SPDX-License-Identifier: MIT | ||
class Authenticator { | ||
async init() { | ||
return await primitives.invoke("plugin:authenticator|init_auth"); | ||
} | ||
async register(challenge, application) { | ||
return await primitives.invoke("plugin:authenticator|register", { | ||
timeout: 10000, | ||
challenge, | ||
application, | ||
}); | ||
} | ||
async verifyRegistration(challenge, application, registerData, clientData) { | ||
return await primitives.invoke("plugin:authenticator|verify_registration", { | ||
challenge, | ||
application, | ||
registerData, | ||
clientData, | ||
}); | ||
} | ||
async sign(challenge, application, keyHandle) { | ||
return await primitives.invoke("plugin:authenticator|sign", { | ||
timeout: 10000, | ||
challenge, | ||
application, | ||
keyHandle, | ||
}); | ||
} | ||
async verifySignature(challenge, application, signData, clientData, keyHandle, pubkey) { | ||
return await primitives.invoke("plugin:authenticator|verify_signature", { | ||
challenge, | ||
application, | ||
signData, | ||
clientData, | ||
keyHandle, | ||
pubkey, | ||
}); | ||
} | ||
} | ||
|
||
exports.Authenticator = Authenticator; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,4 +43,3 @@ class Authenticator { | |
} | ||
|
||
export { Authenticator }; | ||
//# sourceMappingURL=index.mjs.map |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// Copyright 2019-2023 Tauri Programme within The Commons Conservancy | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// SPDX-License-Identifier: MIT | ||
|
||
import { createConfig } from "../../shared/rollup.config.js"; | ||
|
||
export default createConfig(); |
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.