Skip to content

Commit d1c1cce

Browse files
committed
chore: [windows] Upgrade to WinSparkle-0.8.1
1 parent 873da29 commit d1c1cce

29 files changed

+24
-17
lines changed

packages/auto_updater/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
* feat: Convert to federated plugin
44
* feat: Add `UpdaterListener` to listen for update events
5+
* chore: [windows] Upgrade to `WinSparkle-0.8.1`
56

67
## 0.1.7
78

packages/auto_updater/bin/generate_keys.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ Future<void> main(List<String> arguments) async {
1616
'flutter',
1717
'ephemeral',
1818
'.plugin_symlinks',
19-
'auto_updater',
19+
'auto_updater_windows',
2020
'windows',
21-
'WinSparkle-0.8.0',
21+
'WinSparkle-0.8.1',
2222
'bin',
2323
'generate_keys.bat',
2424
],

packages/auto_updater/bin/sign_update.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ SignUpdateResult signUpdate(List<String> args) {
2121
'flutter',
2222
'ephemeral',
2323
'.plugin_symlinks',
24-
'auto_updater',
24+
'auto_updater_windows',
2525
'windows',
26-
'WinSparkle-0.8.0',
26+
'WinSparkle-0.8.1',
2727
'bin',
2828
'sign_update.bat',
2929
],

packages/auto_updater/example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: auto_updater_example
22
description: Demonstrates how to use the auto_updater plugin.
3-
version: 1.1.0+2
3+
version: 1.0.0+1
44
publish_to: "none"
55

66
environment:

packages/auto_updater/example/windows/packaging/exe/make_config.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@ app_id: 1D7A5470-942F-4649-8B69-122888AB0BA5
22
display_name: auto_updater_example
33
publisher: LeanFlutter
44
publisher_url: https://github.com/leanflutter/auto_updater
5+
locales:
6+
- en

packages/auto_updater/lib/src/auto_updater.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ class AutoUpdater {
1818
final List<UpdaterListener> _listeners = [];
1919

2020
void _handleSparkleEvents(event) {
21-
print(event);
2221
UpdaterError? updaterError;
2322
Appcast? appcast;
2423
AppcastItem? appcastItem;

packages/auto_updater_windows/windows/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ x86/
1616
# but keep track of directories ending in .cache
1717
!*.[Cc]ache/
1818

19-
!WinSparkle-0.8.0/x64
19+
!WinSparkle-0.8.1/x64

packages/auto_updater_windows/windows/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ cmake_policy(VERSION 3.14...3.25)
1717
set(PLUGIN_NAME "auto_updater_windows_plugin")
1818

1919
# WinSparkle
20-
set(WIN_SPARKLE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/WinSparkle-0.8.0")
20+
set(WIN_SPARKLE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/WinSparkle-0.8.1")
2121
set(WIN_SPARKLE_BINARIES "${WIN_SPARKLE_DIR}/x64/Release/WinSparkle.dll")
2222
set(WIN_SPARKLE_LIBRARIES "${WIN_SPARKLE_DIR}/x64/Release/WinSparkle.lib")
2323

Binary file not shown.

0 commit comments

Comments
 (0)