File tree Expand file tree Collapse file tree 4 files changed +15
-13
lines changed Expand file tree Collapse file tree 4 files changed +15
-13
lines changed Original file line number Diff line number Diff line change 1
1
## 0.1.0
2
2
3
+ * ** Breaking** in ` Bluetooth.requestDevice() ` the ` RequestOptions ` are no longer nullable.
4
+ * ** Breaking** ` BluetoothDevice.gatt ` is no longer marked as deprecated, it is still marked as ` visibleForTesting ` .
3
5
* Added bluetooth advertisements event to a bluetooth device. (Note this is still behind a flag in most browsers.)
4
6
* Support the newest version of logging.
5
- * ** Breaking** in ` Bluetooth.requestDevice() ` the ` RequestOptions ` are no longer nullable.
6
7
* Added ` requestLEScan ` to ` Bluetooth ` and ` FlutterWebBluetooth ` . You can now scan for devices advertisements without
7
8
needing to pair with each device. However, a normal pair does need to happen before characteristics can be used.
8
- * ** Breaking** ` BluetoothDevice.gatt ` is no longer marked as deprecated, it is still marked as ` visibleForTesting ` .
9
9
* Continuing with the IOS Bluefy browser fix for characteristic properties.
10
10
* Added ` has ` methods for all the fields in characteristic properties.
11
11
* Return ` false ` as default value when a property doesn't exist.
12
12
* Added ` hasProperties ` method to check if there are any properties at all. Use this to test if the properties are
13
13
even reliable.
14
14
* You can remove any try-catch logic around reading properties if you added those for the mitigation.
15
+ * The next version of the library will probably upgrade the minimum SDK from ` 2.12 ` to ` 2.17 ` to keep up with other
16
+ packages. If there are any good reasons to not do this then please create an issue on Github.
15
17
16
18
## 0.0.9
17
19
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ packages:
101
101
path: ".."
102
102
relative: true
103
103
source: path
104
- version: "0.0.9 "
104
+ version: "0.1.0 "
105
105
flutter_web_plugins:
106
106
dependency: transitive
107
107
description: flutter
Original file line number Diff line number Diff line change @@ -7,14 +7,14 @@ packages:
7
7
name: _fe_analyzer_shared
8
8
url: "https://pub.dartlang.org"
9
9
source: hosted
10
- version: "50 .0.0"
10
+ version: "51 .0.0"
11
11
analyzer:
12
12
dependency: transitive
13
13
description:
14
14
name: analyzer
15
15
url: "https://pub.dartlang.org"
16
16
source: hosted
17
- version: "5.2.0 "
17
+ version: "5.3.1 "
18
18
args:
19
19
dependency: transitive
20
20
description:
@@ -77,7 +77,7 @@ packages:
77
77
name: frontend_server_client
78
78
url: "https://pub.dartlang.org"
79
79
source: hosted
80
- version: "3.1 .0"
80
+ version: "3.2 .0"
81
81
glob:
82
82
dependency: transitive
83
83
description:
@@ -133,7 +133,7 @@ packages:
133
133
name: matcher
134
134
url: "https://pub.dartlang.org"
135
135
source: hosted
136
- version: "0.12.13 "
136
+ version: "0.12.14 "
137
137
meta:
138
138
dependency: "direct main"
139
139
description:
@@ -147,7 +147,7 @@ packages:
147
147
name: mime
148
148
url: "https://pub.dartlang.org"
149
149
source: hosted
150
- version: "1.0.2 "
150
+ version: "1.0.3 "
151
151
node_preamble:
152
152
dependency: transitive
153
153
description:
@@ -168,7 +168,7 @@ packages:
168
168
name: path
169
169
url: "https://pub.dartlang.org"
170
170
source: hosted
171
- version: "1.8.2 "
171
+ version: "1.8.3 "
172
172
pool:
173
173
dependency: transitive
174
174
description:
@@ -266,21 +266,21 @@ packages:
266
266
name: test
267
267
url: "https://pub.dartlang.org"
268
268
source: hosted
269
- version: "1.22.0 "
269
+ version: "1.22.1 "
270
270
test_api:
271
271
dependency: transitive
272
272
description:
273
273
name: test_api
274
274
url: "https://pub.dartlang.org"
275
275
source: hosted
276
- version: "0.4.16 "
276
+ version: "0.4.17 "
277
277
test_core:
278
278
dependency: transitive
279
279
description:
280
280
name: test_core
281
281
url: "https://pub.dartlang.org"
282
282
source: hosted
283
- version: "0.4.20 "
283
+ version: "0.4.21 "
284
284
typed_data:
285
285
dependency: transitive
286
286
description:
Original file line number Diff line number Diff line change 1
1
name : flutter_web_bluetooth
2
2
description : A library to use the web bluetooth api in your web project. Will play nice if used in IO projects.
3
- version : 0.0.9
3
+ version : 0.1.0
4
4
homepage : https://github.com/jeroen1602/flutter_web_bluetooth/
5
5
repository : https://github.com/jeroen1602/flutter_web_bluetooth/
6
6
issue_tracker : https://github.com/jeroen1602/flutter_web_bluetooth/issues/
You can’t perform that action at this time.
0 commit comments