Skip to content

Commit 6729295

Browse files
committed
remove beta labels
1 parent 673f9a4 commit 6729295

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

packages/app-builder-lib/scheme.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6536,7 +6536,7 @@
65366536
"type": "null"
65376537
}
65386538
],
6539-
"description": "Options for usage of Azure Trusted Signing (beta)\nCannot be used in conjunction with `signtoolOptions`, signing will default to Azure Trusted Signing"
6539+
"description": "Options for usage of Azure Trusted Signing service\nCannot be used in conjunction with `signtoolOptions`, signing will default to Azure Trusted Signing"
65406540
},
65416541
"compression": {
65426542
"anyOf": [

packages/app-builder-lib/src/codeSign/windowsCodeSign.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export async function signWindows(options: WindowsSignOptions, packager: WinPack
1212
if (options.options.signtoolOptions) {
1313
log.warn(null, "ignoring signtool options, using Azure Trusted Signing; please only configure one")
1414
}
15-
log.info({ path: log.filePath(options.path) }, "signing with Azure Trusted Signing (beta)")
15+
log.info({ path: log.filePath(options.path) }, "signing with Azure Trusted Signing")
1616
} else {
1717
log.info({ path: log.filePath(options.path) }, "signing with signtool.exe")
1818
}

packages/app-builder-lib/src/options/winOptions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export interface WindowsConfiguration extends PlatformSpecificBuildOptions {
3131
readonly signtoolOptions?: WindowsSigntoolConfiguration | null
3232

3333
/**
34-
* Options for usage of Azure Trusted Signing (beta)
34+
* Options for usage of Azure Trusted Signing service
3535
* Cannot be used in conjunction with `signtoolOptions`, signing will default to Azure Trusted Signing
3636
*/
3737
readonly azureSignOptions?: WindowsAzureSigningConfiguration | null

packages/electron-updater/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ function doLoadAutoUpdater(): AppUpdater {
5252
}
5353
} catch (error: any) {
5454
console.warn(
55-
"Unable to detect 'package-type' for autoUpdater (beta rpm/deb/pacman support). If you'd like to expand support, please consider contributing to electron-builder",
55+
"Unable to detect 'package-type' for autoUpdater (rpm/deb/pacman support). If you'd like to expand support, please consider contributing to electron-builder",
5656
error.message
5757
)
5858
}

0 commit comments

Comments
 (0)