Skip to content

Commit 8d59bd1

Browse files
committed
v0.1.6
1 parent bd41db7 commit 8d59bd1

File tree

7 files changed

+25
-20
lines changed

7 files changed

+25
-20
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.1.6
2+
3+
* Add `setScheduledCheckInterval` method #28
4+
15
## 0.1.5
26

37
* Add check update in background.

README-ZH.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565

6666
```yaml
6767
dependencies:
68-
auto_updater: ^0.1.5
68+
auto_updater: ^0.1.6
6969
```
7070
7171

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Add this to your package's pubspec.yaml file:
6565

6666
```yaml
6767
dependencies:
68-
auto_updater: ^0.1.5
68+
auto_updater: ^0.1.6
6969
```
7070
7171
Or

example/macos/Podfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ SPEC CHECKSUMS:
2626

2727
PODFILE CHECKSUM: 6eac6b3292e5142cfc23bdeb71848a40ec51c14c
2828

29-
COCOAPODS: 1.11.2
29+
COCOAPODS: 1.11.3

example/pubspec.lock

+9-16
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ packages:
1414
path: ".."
1515
relative: true
1616
source: path
17-
version: "0.1.4"
17+
version: "0.1.6"
1818
boolean_selector:
1919
dependency: transitive
2020
description:
@@ -56,7 +56,7 @@ packages:
5656
name: collection
5757
url: "https://pub.dartlang.org"
5858
source: hosted
59-
version: "1.15.0"
59+
version: "1.16.0"
6060
cupertino_icons:
6161
dependency: "direct main"
6262
description:
@@ -70,7 +70,7 @@ packages:
7070
name: fake_async
7171
url: "https://pub.dartlang.org"
7272
source: hosted
73-
version: "1.2.0"
73+
version: "1.3.0"
7474
flutter:
7575
dependency: "direct main"
7676
description: flutter
@@ -108,7 +108,7 @@ packages:
108108
name: material_color_utilities
109109
url: "https://pub.dartlang.org"
110110
source: hosted
111-
version: "0.1.3"
111+
version: "0.1.4"
112112
meta:
113113
dependency: transitive
114114
description:
@@ -122,7 +122,7 @@ packages:
122122
name: path
123123
url: "https://pub.dartlang.org"
124124
source: hosted
125-
version: "1.8.0"
125+
version: "1.8.1"
126126
preference_list:
127127
dependency: "direct main"
128128
description:
@@ -141,7 +141,7 @@ packages:
141141
name: source_span
142142
url: "https://pub.dartlang.org"
143143
source: hosted
144-
version: "1.8.1"
144+
version: "1.8.2"
145145
stack_trace:
146146
dependency: transitive
147147
description:
@@ -176,21 +176,14 @@ packages:
176176
name: test_api
177177
url: "https://pub.dartlang.org"
178178
source: hosted
179-
version: "0.4.8"
180-
typed_data:
181-
dependency: transitive
182-
description:
183-
name: typed_data
184-
url: "https://pub.dartlang.org"
185-
source: hosted
186-
version: "1.3.0"
179+
version: "0.4.9"
187180
vector_math:
188181
dependency: transitive
189182
description:
190183
name: vector_math
191184
url: "https://pub.dartlang.org"
192185
source: hosted
193-
version: "2.1.1"
186+
version: "2.1.2"
194187
sdks:
195-
dart: ">=2.14.0 <3.0.0"
188+
dart: ">=2.17.0-0 <3.0.0"
196189
flutter: ">=2.0.0"

example/windows/flutter/generated_plugins.cmake

+8
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ list(APPEND FLUTTER_PLUGIN_LIST
66
auto_updater
77
)
88

9+
list(APPEND FLUTTER_FFI_PLUGIN_LIST
10+
)
11+
912
set(PLUGIN_BUNDLED_LIBRARIES)
1013

1114
foreach(plugin ${FLUTTER_PLUGIN_LIST})
@@ -14,3 +17,8 @@ foreach(plugin ${FLUTTER_PLUGIN_LIST})
1417
list(APPEND PLUGIN_BUNDLED_LIBRARIES $<TARGET_FILE:${plugin}_plugin>)
1518
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries})
1619
endforeach(plugin)
20+
21+
foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST})
22+
add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/windows plugins/${ffi_plugin})
23+
list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries})
24+
endforeach(ffi_plugin)

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: auto_updater
22
description: This plugin allows Flutter desktop apps to automatically update themselves (based on sparkle and winsparkle).
3-
version: 0.1.5
3+
version: 0.1.6
44
homepage: https://github.com/leanflutter/auto_updater
55

66
platforms:

0 commit comments

Comments
 (0)