这个插件允许 Flutter 桌面 应用自动更新自己 (基于 sparkle 和 winsparkle)。
English | 简体中文
Linux | macOS | Windows |
---|---|---|
➖ | ✔️ | ✔️ |
将此添加到你的软件包的 pubspec.yaml 文件:
dependencies:
auto_updater: ^0.1.6
或
dependencies:
auto_updater:
git:
url: https://github.com/leanflutter/auto_updater.git
ref: main
openssl
运行以下命令:
使用 Chocolatey
choco install openssl
import 'package:auto_updater/auto_updater.dart';
void main() async {
// 必须加上这一行。
WidgetsFlutterBinding.ensureInitialized();
String feedURL = 'http://localhost:5000/appcast.xml';
await autoUpdater.setFeedURL(feedURL);
await autoUpdater.checkForUpdates();
await autoUpdater.setScheduledCheckInterval(3600);
runApp(MyApp());
}
请看这个插件的示例应用,以了解完整的例子。
运行以下命令:
flutter pub run auto_updater:generate_keys
需要分别在
macOS
和Windows
系统中运行该命令。
准备使用 EdDSA
签名算法进行签名:
输出:
A key has been generated and saved in your keychain. Add the `SUPublicEDKey` key to
the Info.plist of each app for which you intend to use Sparkle for distributing
updates. It should appear like this:
<key>SUPublicEDKey</key>
<string>pfIShU4dEXqPd5ObYNfDBiQWcXozk7estwzTnF9BamQ=</string>
更改文件 macos/Runner/Info.plist
如下:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
...
+ <key>SUPublicEDKey</key>
+ <string>bHaXClrRGMmKoKP/3HJnr/jn2ODTRPAM3VZhhkI9ZvY=</string>
</dict>
</plist>
准备使用 DSA
签名算法进行签名:
输出:
Generated two files:
dsa_priv.pem: your private key. Keep it secret and don't share it!
dsa_pub.pem: public counterpart to include in youe app.
BACK UP YOUR PRIVATE KEY AND KEEP IT SAFE!
If you lose it, your users will be unable to upgrade!
命令将为你生成私钥(
dsa_priv.pem
)及公钥(dsa_pub.pem
),请备份你的私钥并确保其安全,并将公钥作为 Windows 资源添加到项目中。
更改文件 windows/runner/Runner.rc
如下:
...
+/////////////////////////////////////////////////////////////////////////////
+//
+// WinSparkle
+//
+// And verify signature using DSA public key:
+DSAPub DSAPEM "../../dsa_pub.pem"
为了简化打包的过程,这里使用了 Flutter Distributor ,一个专门用于打包和发布 Flutter 应用的完整工具。
将 distribute_options.yaml
添加到你的项目根目录。
output: dist/
releases:
- name: dev
jobs:
- name: release-macos
package:
platform: macos
target: zip
build_args:
dart-define:
APP_ENV: dev
# 查看完整文档:https://distributor.leanflutter.org/configuration/makers/exe
- name: release-windows
package:
platform: windows
target: exe
build_args:
dart-define:
APP_ENV: dev
运行以下命令:
flutter_distributor release --name dev --jobs release-macos
运行以下命令:
flutter_distributor release --name dev --jobs release-windows
运行以下命令:
flutter pub run auto_updater:sign_update dist/1.1.0+2/auto_updater_example-1.1.0+2-macos.zip
输出:
sparkle:edSignature="pbdyPt92pnPkzLfQ7BhS9hbjcV9/ndkzSIlWjFQIUMcaCNbAFO2fzl0tISMNJApG2POTkZY0/kJQ2yZYOSVgAA==" length="13400992"
将获得的新签名更新到 appcast.xml
文件 enclosure
节点的 sparkle:edSignature
属性值。
运行以下命令:
flutter pub run auto_updater:sign_update dist/1.1.0+2/auto_updater_example-1.1.0+2-windows-setup.exe
输出:
MEUCIQCVbVzVID7H3aUzAY5znpi+ySZKznkukV8whlMFzKh66AIgREUGOmvavlcg
6hwAwkb2o4IqVE/D56ipIBshIqCH8rk=
将获得的新签名更新到 appcast.xml
文件 enclosure
节点的 sparkle:dsaSignature
属性值。
将 appcast.xml
添加到你的项目 dist/
目录。
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:sparkle="http://www.andymatuschak.org/xml-namespaces/sparkle">
<channel>
<title>auto_updater_example</title>
<description>Most recent updates to auto_updater_example</description>
<language>en</language>
<item>
<title>Version 1.1.0</title>
<sparkle:releaseNotesLink>
https://your_domain/your_path/release_notes.html
</sparkle:releaseNotesLink>
<pubDate>Sun, 16 Feb 2022 12:00:00 +0800</pubDate>
<enclosure url="1.1.0+2/auto_updater_example-1.1.0+2-macos.zip"
sparkle:edSignature="pbdyPt92pnPkzLfQ7BhS9hbjcV9/ndkzSIlWjFQIUMcaCNbAFO2fzl0tISMNJApG2POTkZY0/kJQ2yZYOSVgAA=="
sparkle:version="1.1.0"
sparkle:os="macos"
length="13400992"
type="application/octet-stream" />
</item>
<item>
<title>Version 1.1.0</title>
<sparkle:releaseNotesLink>
https://your_domain/your_path/release_notes.html
</sparkle:releaseNotesLink>
<pubDate>Sun, 16 Feb 2022 12:00:00 +0800</pubDate>
<enclosure url="1.1.0+2/auto_updater_example-1.1.0+2-windows.exe"
sparkle:dsaSignature="MEUCIQCVbVzVID7H3aUzAY5znpi+ySZKznkukV8whlMFzKh66AIgREUGOmvavlcg6hwAwkb2o4IqVE/D56ipIBshIqCH8rk="
sparkle:version="1.1.0"
sparkle:os="windows"
length="0"
type="application/octet-stream" />
</item>
</channel>
</rss>
本示例中
macOS
和Windows
使用同一个appcast.xml
文件,你需根据配置sparkle:os
属性的值。
启动测试更新服务器:
cd dist/
serve -l 5002
- 比译 - 一个便捷的翻译和词典应用程序。
设置 url 并初始化 auto updater.
检查更新,在此之前必须先调用 setFeedURL.
设置检查时间间隔,默认 86400,最少 3600, 0 不更新