详情见:stackoverflow 1. 修改 powershell 默认编码为 utf-8 在 Powershell 中运行如下命令生成 Powershell 的配置文件: New-Item $PROFILE -ItemType File -Force 上述命令会生成一个名为 Microsoft.PowerShell_profile.ps1...
自动公证 macOS app 脚本
参考链接:https://github.com/CaicaiNo/Apple-Mac-Notarized-script 以下脚本用于自动公证 macOS app: #! /bin/bash # 从 config.json 中获取配置的函数 function getConfig() { CONFIG=`cat ./config.json | python3 -c "import...
如何公证 macOS app
1. 参考 参考 1:为 app 签名以通过“门禁”验证。 参考 2:Notarizing macOS Software Before Distribution 和 在分发前对 macOS 软件进行公证。 参考 3:Customizing the Notarization Workflow。 参考 4:macOS app 实现自动化 notarize 脚本。 自动公证脚本:nota...
Electron Builder 中如何自定义 NSIS 脚本
1. 自定义 NSIS 脚本 有两个选项可以在 Electron Builder 中自定义 NSIS 脚本 — include 和 script。 script 允许你提供完全不同的 NSIS 脚本。在大多数情况下,它不是必需的,因为你只需要自定义某些方面,但仍然使用经过良好测试和维护的默认 NSIS 脚本。 因此,建议使用 include。 详情见 https://www.elec...