File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1+ ## 0.8.0
2+
3+ - Added web support (web functionality is in beta)
4+
15## 0.7.0
26
37- BREAKING CHANGE: Update all Database types to use a ` CommonDatabase ` interface.
Original file line number Diff line number Diff line change @@ -78,6 +78,8 @@ void main() async {
7878
7979# Web
8080
81+ Note: Web support is currently in Beta.
82+
8183Web support requires Sqlite3 WASM and web worker Javascript files to be accessible via configurable URIs.
8284
8385Default URIs are shown in the example below. URIs only need to be specified if they differ from default values.
Original file line number Diff line number Diff line change @@ -3,12 +3,7 @@ import 'dart:js_interop';
33
44import 'package:sqlite3/common.dart' ;
55import 'package:sqlite3_web/sqlite3_web.dart' ;
6- import 'package:sqlite_async/mutex.dart' ;
76import 'package:sqlite_async/sqlite_async.dart' ;
8- import 'package:sqlite_async/src/common/sqlite_database.dart' ;
9- import 'package:sqlite_async/src/sqlite_connection.dart' ;
10- import 'package:sqlite_async/src/sqlite_queries.dart' ;
11- import 'package:sqlite_async/src/update_notification.dart' ;
127import 'package:sqlite_async/src/utils/shared_utils.dart' ;
138import 'protocol.dart' ;
149
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import 'dart:js_util' as js_util;
44import 'package:mutex/mutex.dart' ;
55import 'package:sqlite3/wasm.dart' ;
66import 'package:sqlite3_web/sqlite3_web.dart' ;
7- import 'package:sqlite_async/sqlite3_common.dart' ;
87
98import '../protocol.dart' ;
109
You can’t perform that action at this time.
0 commit comments