Skip to content

Commit 130e8cf

Browse files
committed
v0.1.3
1 parent a878cd7 commit 130e8cf

File tree

6 files changed

+24
-19
lines changed

6 files changed

+24
-19
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.1.3
2+
3+
- [windows] fix startup crash when argc is 1 #4
4+
15
## 0.1.2
26

37
- Support android & ios platform.

README-ZH.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ https://user-images.githubusercontent.com/3889523/167283452-aff2535b-c322-45c7-9
5555

5656
```yaml
5757
dependencies:
58-
protocol_handler: ^0.1.2
58+
protocol_handler: ^0.1.3
5959
```
6060
6161

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Add this to your package's pubspec.yaml file:
5555

5656
```yaml
5757
dependencies:
58-
protocol_handler: ^0.1.2
58+
protocol_handler: ^0.1.3
5959
```
6060
6161
Or

example/pubspec.lock

Lines changed: 9 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ packages:
4949
name: collection
5050
url: "https://pub.dartlang.org"
5151
source: hosted
52-
version: "1.15.0"
52+
version: "1.16.0"
5353
cupertino_icons:
5454
dependency: "direct main"
5555
description:
@@ -63,7 +63,7 @@ packages:
6363
name: fake_async
6464
url: "https://pub.dartlang.org"
6565
source: hosted
66-
version: "1.2.0"
66+
version: "1.3.0"
6767
ffi:
6868
dependency: transitive
6969
description:
@@ -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:
@@ -136,7 +136,7 @@ packages:
136136
path: ".."
137137
relative: true
138138
source: path
139-
version: "0.1.2"
139+
version: "0.1.3"
140140
sky_engine:
141141
dependency: transitive
142142
description: flutter
@@ -148,7 +148,7 @@ packages:
148148
name: source_span
149149
url: "https://pub.dartlang.org"
150150
source: hosted
151-
version: "1.8.1"
151+
version: "1.8.2"
152152
stack_trace:
153153
dependency: transitive
154154
description:
@@ -183,21 +183,14 @@ packages:
183183
name: test_api
184184
url: "https://pub.dartlang.org"
185185
source: hosted
186-
version: "0.4.8"
187-
typed_data:
188-
dependency: transitive
189-
description:
190-
name: typed_data
191-
url: "https://pub.dartlang.org"
192-
source: hosted
193-
version: "1.3.0"
186+
version: "0.4.9"
194187
vector_math:
195188
dependency: transitive
196189
description:
197190
name: vector_math
198191
url: "https://pub.dartlang.org"
199192
source: hosted
200-
version: "2.1.1"
193+
version: "2.1.2"
201194
win32:
202195
dependency: transitive
203196
description:
@@ -220,5 +213,5 @@ packages:
220213
source: hosted
221214
version: "0.2.0"
222215
sdks:
223-
dart: ">=2.16.1 <3.0.0"
216+
dart: ">=2.17.0-0 <3.0.0"
224217
flutter: ">=2.5.0"

example/windows/flutter/generated_plugins.cmake

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ list(APPEND FLUTTER_PLUGIN_LIST
77
window_manager
88
)
99

10+
list(APPEND FLUTTER_FFI_PLUGIN_LIST
11+
)
12+
1013
set(PLUGIN_BUNDLED_LIBRARIES)
1114

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

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: protocol_handler
22
description: This plugin allows Flutter apps to register and handle custom protocols (i.e. deep linking).
3-
version: 0.1.2
3+
version: 0.1.3
44
homepage: https://github.com/leanflutter/protocol_handler
55

66
platforms:

0 commit comments

Comments
 (0)