File tree Expand file tree Collapse file tree 5 files changed +13
-5
lines changed
Expand file tree Collapse file tree 5 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 1+ ## 0.2.1
2+
3+ * chore(windows): Support before-quit-for-update event
4+
15## 0.2.0
26
37* feat: Convert to federated plugin
Original file line number Diff line number Diff line change 11name : auto_updater
22description : This plugin allows Flutter desktop apps to automatically update themselves (based on sparkle and winsparkle).
3- version : 0.2.0
3+ version : 0.2.1
44homepage : https://github.com/leanflutter/auto_updater
55
66platforms :
@@ -17,7 +17,7 @@ environment:
1717dependencies :
1818 auto_updater_macos : ^0.2.0
1919 auto_updater_platform_interface : ^0.2.0
20- auto_updater_windows : ^0.2.0
20+ auto_updater_windows : ^0.2.1
2121 flutter :
2222 sdk : flutter
2323 json_annotation : ^4.8.0
Original file line number Diff line number Diff line change 1+ ## 0.2.1
2+
3+ * chore(windows): Support before-quit-for-update event
4+
15## 0.2.0
26
37* First release.
Original file line number Diff line number Diff line change 11name : auto_updater_windows
22description : Windows implementation of the auto_updater plugin.
3- version : 0.2.0
3+ version : 0.2.1
44repository : https://github.com/leanflutter/auto_updater/tree/main/packages/auto_updater_windows
55
66environment :
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ void __onShutdownRequestCallback() {
115115 AutoUpdater* autoUpdater = AutoUpdater::GetInstance ();
116116 if (autoUpdater == nullptr )
117117 return ;
118- autoUpdater->OnWinSparkleEvent (" shutdownRequest " );
118+ autoUpdater->OnWinSparkleEvent (" before-quit-for-update " );
119119}
120120
121121void __onDidFindUpdateCallback () {
@@ -164,6 +164,6 @@ void __onUserRunInstallerCallback() {
164164 AutoUpdater* autoUpdater = AutoUpdater::GetInstance ();
165165 if (autoUpdater == nullptr )
166166 return ;
167- autoUpdater->OnWinSparkleEvent (" before-quit-for-update " );
167+ autoUpdater->OnWinSparkleEvent (" userRunInstaller " );
168168}
169169} // namespace
You can’t perform that action at this time.
0 commit comments