@capacitor-community/sqlite 4.1.0-1 → 4.1.0-4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +71 -330
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -26,250 +26,51 @@
26
26
  | ----------------- | ----------------------------------------- | ------ |
27
27
  | Quéau Jean Pierre | [jepiqueau](https://github.com/jepiqueau) | |
28
28
 
29
- ## CAPACITOR 4 (Master)
30
-
31
- 🚨 Release 4.0.1 all platforms ->> 🚨
32
-
33
- As no any issues where opened against version 4.0.0-1 using Capacitor 4,
34
- Developers can now install it as normal
35
-
36
- ```
37
- npm install @capacitor-community/sqlite@latest
38
- ```
39
-
40
- 🚨 Release 4.0.1 <<- 🚨
41
-
42
- 🚨 Release 4.0.0-1 all platforms ->> 🚨
43
- This is a tentative of implementing @Capacitor/core@4.0.1 proposed by rdlabo (Masahiko Sakakibara).
44
- For those who want to try it do
45
- ```
46
- npm install @capacitor-community/sqlite@next
47
- ```
48
- Revert quickly any issue by clearly mentionning V4 in the title of the issue.
49
-
50
- Thanks for your help in testing
51
-
52
- 🚨 Release 4.0.0-1 <<- 🚨
53
-
54
- ## CAPACITOR 3 (v3.7.0)
55
-
56
- 🚨 Release 3.4.3-3 all platforms ->> 🚨
57
-
58
- The main change is related to the delete table's rows when a synchronization table exists as well as a last_mofidied table's column, allowing for database synchronization of the local database with a remote server database.
59
-
60
- - All existing triggers to YOUR_TABLE_NAME_trigger_last_modified must be modified as follows
61
- ```
62
- CREATE TRIGGER YOUR_TABLE_NAME_trigger_last_modified
63
- AFTER UPDATE ON YOUR_TABLE_NAME
64
- FOR EACH ROW WHEN NEW.last_modified < OLD.last_modified
65
- BEGIN
66
- UPDATE YOUR_TABLE_NAME SET last_modified= (strftime('%s', 'now')) WHERE id=OLD.id;
67
- END;
68
- ```
69
- - an new column `sql_deleted` must be added to each of your tables as
70
- ```
71
- sql_deleted BOOLEAN DEFAULT 0 CHECK (sql_deleted IN (0, 1))
72
- ```
73
- This column will be autommatically set to 1 when you will use a `DELETE FROM ...` sql statement in the `execute`, `run` or `executeSet` methods.
74
-
75
- - In the JSON object that you provide to `importFromJson`, all the deleted rows in your remote server database's tables must have the `sql_deleted` column set to 1. This will indicate to the import process to physically delete the corresponding rows in your local database. All the others rows must have the `sql_deleted` column set to 0.
76
-
77
- - In the JSON object outputs by the `exportToJson`, all the deleted rows in your local database have got the `sql_deleted` column set to 1 to help in your synchronization management process with the remote server database. A system `last_exported_date` is automatically saved in the synchronization table at the start of the export process flow.
78
-
79
- - On successful completion of your synchronization management process with the remote server database, you must
80
- - Set a new synchronization date (as `(new Date()).toISOString()`) with the `setSyncDate` method.
81
- - Execute the `deleteExportedRows` method which physically deletes all table's rows having 1 as value for the `sql_deleted` column prior to the `last_exported_date` in your local database.
82
-
83
- An example of using this new feature is given in [solidjs-vite-sqlite-app](https://github.com/jepiqueau/capacitor-solid-sqlite). It has been used to test the validity of the implementation.
84
-
85
-
86
- 🚨 Release 3.4.3-3 <<- 🚨
87
-
88
- 🚨 Release 3.4.2-4 ->> 🚨
89
- !!!! DO NOT USE IT !!!!
90
- 🚨 Release 3.4.2-4 <<- 🚨
91
-
92
- 🚨 Since release 3.4.2-3 ->> 🚨
93
-
94
- - **overwrite** boolean parameter has been added to the Json Object (default false)
95
- - `true` : delete the physically the database whatever the version is.
96
- - `false`:
97
- - re-importing a database with the same `version` number will do nothing, keeping the existing database and will return `changes = 0`
98
- - re-importing a database with a lower `version` number will throw an error `ImportFromJson: Cannot import a version lower than `
99
-
100
- - During an import in `full` mode the `Foreign Key` constraint has been turn off before dropping the tables and turn back on after
101
-
102
- 🚨 Since release 3.4.2-3 <<- 🚨
103
- 🚨 Since release 3.4.1 ->> 🚨
104
- Databases location for Electron can be set in `the config.config.ts` as followed:
105
-
106
- - for sharing databases between users:
107
-
108
- ```
109
- plugins: {
110
- CapacitorSQLite: {
111
- electronMacLocation: "/YOUR_DATABASES_PATH",
112
- electronWindowsLocation: "C:\\ProgramData\\CapacitorDatabases",
113
- electronLinuxLocation: "/home/CapacitorDatabases"
114
- }
115
- }
116
- ```
117
-
118
- - for only the user in its Home folder
119
-
120
- ```
121
- Plugins: {
122
- CapacitorSQLite: {
123
- electronMacLocation: "Databases",
124
- electronWindowsLocation: "Databases",
125
- electronLinuxLocation: "Databases"
126
- }
127
- }
128
- ```
129
-
130
- For existing databases, YOU MUST COPY old databases to the new location
131
- You MUST remove the Electron folder and add it again with
132
-
133
- ```
134
- npx cap add @capacitor-community/electron
135
- npm run build
136
- cd electron
137
- npm i --save sqlite3
138
- npm i --save @types:sqlite3
139
- npm run rebuild
140
- cd ..
141
- npx cap sync @capacitor-community/electron
142
- npm run build
143
- npx cap copy @capacitor-community/electron
144
- npx cap open @capacitor-community/electron
145
- ```
146
- 🚨 Since release 3.4.1 <<- 🚨
147
-
148
- 🚨 Since release 3.4.1-1 ->> 🚨
149
-
150
- - add iosIsEncryption, androidIsEncryption in capacitor.config.ts
151
- When your application use only `non-encrypted databases` set those parameter to false then iOS KeyChain & Android MasterKey are not defined.
152
-
153
- 🚨 Since release 3.4.1-1 <<- 🚨
154
-
155
- 🚨 Since release 3.4.0-2 ->> 🚨
156
-
157
- - iOS & Android only
158
- Adding biometric FaceID/TouchID to secure the pass phrase in the Keychain/SharedPreferences stores. see:
159
- [Biometric_Authentication](https://github.com/capacitor-community/sqlite/blob/master/docs/Biometric-Authentication.md)
160
-
161
- - iOS only
162
- Fix identical pass phrase stored in the Keychain for differents applications using the plugin by adding an application prefix to the Keychain account.
163
- Before the account `"CapacitorSQLitePlugin"` was used and was the same for all applications.
164
- Now by adding `iosKeychainPrefix: 'YOUR_APP_NAME'`in the `capacitor.config.ts` of your application,
165
- the account will be `"YOUR_APP_NAME_CapacitorSQLitePlugin"`
166
- If you were having a pass phrase stored, first modify the `capacitor.config.ts` and then run the command `isSecretStored` which will manage the upgrade of the Keychain account.
167
- 🚨 Since release 3.4.0-2 <<- 🚨
168
-
169
- 🚨 Since release 3.3.3-2 ->> 🚨
170
-
171
- - iOS only
172
- Support for a database location not visible to iTunes and backed up to iCloud.
173
- For this you must add to the `const config: CapacitorConfig` of the `capacitor.config.ts` file of your application the following:
174
- ```ts
175
- plugins: {
176
- CapacitorSQLite: {
177
- "iosDatabaseLocation": "Library/CapacitorDatabase"
178
- }
179
- }
180
- ```
181
- Pre-existing databases from the `Documents` folder will be moved to the new folder `Library/CapacitorDatabase` and your application will work as before.
182
- If you do not modify the `capacitor.config.ts` file of your application the databases will still reside in the `Documents` folder
183
-
184
- 🚨 Since release 3.3.3-2 <<- 🚨
185
-
186
- 🚨 Since release 3.2.5-2 ->> 🚨
187
-
188
- - support zip file in copyFromAssets method
189
- - add optional `overwrite` parameter (true/false) default to true
190
-
191
- 🚨 Since release 3.2.5-2 <<- 🚨
192
-
193
- 🚨 Since release 3.2.3-1 ->> 🚨
194
-
195
- The `initWebStore` and `saveToStore` methods have been added to the Web platform.
196
- - The `initWebStore` has been added to fix the issue#172 and since then is `MANDATORY`
197
- ```js
198
- ...
199
- if(platform === "web") {
200
- await customElements.whenDefined('jeep-sqlite');
201
- const jeepSqliteEl = document.querySelector('jeep-sqlite');
202
- if(jeepSqliteEl != null) {
203
- await sqliteConnection.initWebStore()
204
- ...
205
- }
206
- }
207
- ...
208
- ```
209
- - the `saveToStore` allows to perform intermediate save of the database in case the browser needs to delete the cache.
210
-
211
- 🚨 Since release 3.2.3-1 <<- 🚨
212
-
213
- The test has been achieved on:
214
-
215
- - a [Ionic/Angular app](https://github.com/jepiqueau/angular-sqlite-app-starter)
216
-
217
- - a [Ionic/React app](https://github.com/jepiqueau/react-sqlite-app-starter)
218
-
219
- - a [Ionic/Vue app](https://github.com/jepiqueau/vue-sqlite-app-starter)
220
-
221
- - a [React Vite app](https://github.com/jepiqueau/react-vite-sqlite-app)
29
+ To install:
30
+ ```
31
+ npm install @capacitor-community/sqlite
32
+ npx cap sync
33
+ ```
222
34
 
223
- - a [Vue Vite app](https://github.com/jepiqueau/vuevite-app)
35
+ ## More Reading:
224
36
 
225
- - a [Vue TypeORM app](https://github.com/jepiqueau/vue-typeorm-app)
37
+ - [Releases](https://github.com/capacitor-community/sqlite/blob/master/info_releases.md)
38
+ - [Changelog](https://github.com/capacitor-community/sqlite/blob/master/CHANGELOG.md)
39
+ - [Issues](https://github.com/capacitor-community/sqlite/issues)
40
+ - [Capacitor documentation](https://capacitorjs.com/docs/)
41
+ - [Datatypes In SQLite Version 3](https://www.sqlite.org/datatype3.html)
226
42
 
227
43
 
228
- ## Browser Support
44
+ ## Web Quirks
229
45
 
230
46
  The plugin follows the guidelines from the `Capacitor Team`,
231
47
 
232
48
  - [Capacitor Browser Support](https://capacitorjs.com/docs/v3/web#browser-support)
233
49
 
234
- meaning that it will not work in IE11 without additional JavaScript transformations, e.g. with [Babel](https://babeljs.io/).
235
-
236
- ## Installation
237
-
238
- ```bash
239
- npm install @capacitor-community/sqlite
240
- npm run build
241
- npx cap add android
242
- npx cap add ios
243
- npx cap add @capacitor-community/electron
244
- ```
245
-
246
- and do when you update
247
-
248
- ```bash
249
- npx cap sync
250
- npx cap sync @capacitor-community/electron
251
- ```
252
-
253
- ### Web
50
+ Meaning that it will not work in IE11 without additional JavaScript transformations, e.g. with [Babel](https://babeljs.io/).
51
+ You'll need the usual capacitor/android/react npm script to build and copy the assets folder.
254
52
 
255
53
  #### For Angular framework
256
54
 
257
- - copy manually the file `sql-wasm.wasm` from `node_modules/sql.js/dist/sql-wasm.wasm` to the `src/assets` folder of YOUR_APP
55
+ - Copy manually the file `sql-wasm.wasm` from `node_modules/sql.js/dist/sql-wasm.wasm` to the `src/assets` folder of YOUR_APP
258
56
 
259
57
  #### For Vue & React frameworks
260
58
 
261
- - copy manually the file `sql-wasm.wasm` from `node_modules/sql.js/dist/sql-wasm.wasm` to the `public/assets` folder of YOUR_APP
262
-
263
- ### IOS
264
-
265
- - on iOS, no further steps needed.
266
-
267
- ### Android
59
+ - Copy manually the file `sql-wasm.wasm` from `node_modules/sql.js/dist/sql-wasm.wasm` to the `public/assets` folder of YOUR_APP
268
60
 
269
- - On Android, no further steps needed.
61
+ ## Android Quirks
270
62
 
63
+ In case you get the following error when building your app in Android Studio:
64
+ `x files found with path 'build-data.properties'.`
65
+ You can you add the following code to `app/build.gradle`:
66
+ ```
67
+ packagingOptions {
68
+ exclude 'build-data.properties'
69
+ }
70
+ ```
71
+ See [#301](https://github.com/capacitor-community/sqlite/issues/301) and [SO question](https://stackoverflow.com/questions/63291529/how-to-fix-more-than-one-file-was-found-with-os-independent-path-build-data-pro) for more information.
271
72
 
272
- ### Electron
73
+ ## Electron Quirks
273
74
 
274
75
  - On Electron, go to the Electron folder of YOUR_APPLICATION
275
76
 
@@ -278,64 +79,14 @@ cd electron
278
79
  npm install --save sqlite3
279
80
  npm install --save jszip
280
81
  npm install --save-dev @types/sqlite3
281
- npm run build
282
- ```
283
-
284
- ## Build & Run
285
-
286
- ```
287
- npm run build
288
- npx cap copy
289
- npx cap copy web
290
- npx cap copy @capacitor-community/electron
291
82
  ```
292
83
 
293
- ### Web
294
- - Angular
295
- ```
296
- ionic serve
297
- ```
298
- - Vue
299
- ```
300
- npm run serve
301
- ```
302
- - React
303
- ```
304
- npm run start
305
- ```
84
+ ## IOS Quirks
306
85
 
307
- ### IOS
308
-
309
- ```
310
- npx cap open ios
311
- ```
312
-
313
- ### Android
314
-
315
- ```
316
- npx cap open android
317
- ```
318
-
319
- ### Electron
320
-
321
- ```
322
- npx cap open @capacitor-community/electron
323
- ```
324
-
325
- ## Readme previous releases
326
-
327
- [previous releases](https://github.com/capacitor-community/sqlite/readme_previous_release.md)
328
-
329
- ## Issues
330
-
331
- [issues](https://github.com/capacitor-community/sqlite/issues)
332
-
333
-
334
- ## Configuration
86
+ - on iOS, no further steps needed.
335
87
 
336
- No configuration required for this plugin
337
88
 
338
- ## Supported methods
89
+ ## Supported Methods by Platform
339
90
 
340
91
  | Name | Android | iOS | Electron | Web |
341
92
  | :-------------------------- | :------ | :-- | :------- | :-- |
@@ -384,62 +135,54 @@ No configuration required for this plugin
384
135
  | isNCDatabase | ✅ | ✅ | ❌ | ❌ |
385
136
  | transaction | ✅ | ✅ | ✅ | ✅ |
386
137
 
387
- ## Supported SQLite Types
388
138
 
389
- -[Datatypes In SQLite Version 3](https://www.sqlite.org/datatype3.html)
139
+ ## Documentation & APIs
390
140
 
391
- ## Documentation
141
+ - [API](https://github.com/capacitor-community/sqlite/blob/master/docs/API.md)
392
142
 
393
- ### API
143
+ - [API Connection Wrapper](https://github.com/capacitor-community/sqlite/blob/master/docs/APIConnection.md)
394
144
 
395
- - [API_Documentation](https://github.com/capacitor-community/sqlite/blob/master/docs/API.md)
145
+ - [API DB Connection Wrapper](https://github.com/capacitor-community/sqlite/blob/master/docs/APIDBConnection.md)
396
146
 
397
- - [API_Connection_Wrapper_Documentation](https://github.com/capacitor-community/sqlite/blob/master/docs/APIConnection.md)
147
+ - [Import-Export Json](https://github.com/capacitor-community/sqlite/blob/master/docs/ImportExportJson.md)
398
148
 
399
- - [API_DB_Connection_Wrapper_Documentation](https://github.com/capacitor-community/sqlite/blob/master/docs/APIDBConnection.md)
149
+ - [Upgrade Database Version](https://github.com/capacitor-community/sqlite/blob/master/docs/UpgradeDatabaseVersion.md)
400
150
 
401
- - [ImportExportJson_Documentation](https://github.com/capacitor-community/sqlite/blob/master/docs/ImportExportJson.md)
151
+ - [Migrating Cordova Databases](https://github.com/capacitor-community/sqlite/blob/master/docs/MigratingCordovaDatabases.md)
402
152
 
403
- - [UpgradeDatabaseVersion_Documentation](https://github.com/capacitor-community/sqlite/blob/master/docs/UpgradeDatabaseVersion.md)
153
+ - [Type ORM](https://github.com/capacitor-community/sqlite/blob/master/docs/TypeORM-Usage.md)
404
154
 
405
- - [MigratingCordovaDatabases_Documentation](https://github.com/capacitor-community/sqlite/blob/master/docs/MigratingCordovaDatabases.md)
155
+ - [Web Usage](https://github.com/capacitor-community/sqlite/blob/master/docs/Web-Usage.md)
406
156
 
407
- - [TypeORM_Documentation](https://github.com/capacitor-community/sqlite/blob/master/docs/TypeORM-Usage.md)
157
+ - [Non Conformed Databases](https://github.com/capacitor-community/sqlite/blob/master/docs/NonConformedDatabases.md)
408
158
 
409
- - [Web_Documentation](https://github.com/capacitor-community/sqlite/blob/master/docs/Web-Usage.md)
159
+ - [Biometric Authentication](https://github.com/capacitor-community/sqlite/blob/master/docs/Biometric-Authentication.md)
410
160
 
411
- - [Non_Conformed_Databases_Documentation](https://github.com/capacitor-community/sqlite/blob/master/docs/NonConformedDatabases.md)
412
161
 
413
- - [Biometric_Authentication](https://github.com/capacitor-community/sqlite/blob/master/docs/Biometric-Authentication.md)
414
-
415
- ### Framework's Usage
416
-
417
- - [Ionic/Angular_Usage_Documentation](https://github.com/capacitor-community/sqlite/blob/master/docs/Ionic-Angular-Usage.md)
418
-
419
- - [Ionic/React_Usage_Documentation](https://github.com/capacitor-community/sqlite/blob/master/docs/Ionic-React-Usage.md)
420
-
421
- - [Ionic/Vue_Usage_Documentation](https://github.com/capacitor-community/sqlite/blob/master/docs/Ionic-Vue-Usage.md)
422
-
423
-
424
- ## Applications demonstrating the use of the plugin
162
+ ## Applications demonstrating the use of the plugin and related documentation
425
163
 
426
164
  ### Ionic/Angular
427
165
 
166
+ - [Ionic/Angular Usage Documentation](https://github.com/capacitor-community/sqlite/blob/master/docs/Ionic-Angular-Usage.md)
167
+
428
168
  - [angular-sqlite-app-starter](https://github.com/jepiqueau/angular-sqlite-app-starter)
429
169
 
430
170
  - [angular-sqlite-synchronize-app](https://github.com/jepiqueau/angular-sqlite-synchronize-app)
431
171
 
432
172
  ### Ionic/React
433
173
 
174
+ - [Ionic/React Usage Documentation](https://github.com/capacitor-community/sqlite/blob/master/docs/Ionic-React-Usage.md)
175
+
434
176
  - [react-sqlite-app-starter](https://github.com/jepiqueau/react-sqlite-app-starter)
435
177
 
436
178
  ### React+Vite
437
179
 
438
180
  - [react-vite-sqlite-app](https://github.com/jepiqueau/react-vite-sqlite-app)
439
181
 
440
-
441
182
  ### Ionic/Vue
442
183
 
184
+ - [Ionic/Vue Usage Documentation](https://github.com/capacitor-community/sqlite/blob/master/docs/Ionic-Vue-Usage.md)
185
+
443
186
  - [vue-sqlite-app-starter](https://github.com/jepiqueau/vue-sqlite-app-starter)
444
187
 
445
188
  ### Vue
@@ -454,10 +197,9 @@ No configuration required for this plugin
454
197
 
455
198
  - [solidjs-vite-sqlite-app](https://github.com/jepiqueau/capacitor-solid-sqlite)
456
199
 
200
+ ### Vue TypeORM app
457
201
 
458
- ## Usage
459
-
460
- - [see capacitor documentation](https://capacitor.ionicframework.com/docs/getting-started/with-ionic)
202
+ - [vue-typeorm-app](https://github.com/jepiqueau/vue-typeorm-app)
461
203
 
462
204
 
463
205
  ## Dependencies
@@ -475,28 +217,27 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
475
217
  <!-- prettier-ignore-start -->
476
218
  <!-- markdownlint-disable -->
477
219
  <p align="center">
478
- <a href="https://github.com/jepiqueau"><img src="https://github.com/jepiqueau.png?size=100" width="50" height="50" /></a>
479
- <a href="https://github.com/paulantoine2"><img src="https://github.com/paulantoine2.png?size=100" width="50" height="50" /></a>
480
- <a href="https://github.com/karyfars"><img src="https://github.com/karyfars.png?size=100" width="50" height="50" /></a>
481
- <a href="https://github.com/chriswep"><img src="https://github.com/chriswep.png?size=100" width="50" height="50" /></a>
482
- <a href="https://github.com/nirajhinge"><img src="https://github.com/nirajhinge.png?size=100" width="50" height="50" /></a>
483
- <a href="https://github.com/digaus"><img src="https://github.com/digaus.png?size=100" width="50" height="50" /></a>
484
- <a href="https://github.com/IT-MikeS"><img src="https://github.com/IT-MikeS.png?size=100" width="50" height="50" /></a>
485
- <a href="https://github.com/peakcool"><img src="https://github.com/peakcool.png?size=100" width="50" height="50" /></a>
486
- <a href="https://github.com/gion-andri"><img src="https://github.com/gion-andri.png?size=100" width="50" height="50" /></a>
487
- <a href="https://github.com/robingenz"><img src="https://github.com/robingenz.png?size=100" width="50" height="50" /></a>
488
- <a href="https://github.com/dewald-els"><img src="https://github.com/dewald-els.png?size=100" width="50" height="50" /></a>
489
- <a href="https://github.com/joewoodhouse"><img src="https://github.com/joewoodhouse.png?size=100" width="50" height="50" /></a>
490
- <a href="https://github.com/ptasheq"><img src="https://github.com/ptasheq.png?size=100" width="50" height="50" /></a>
491
- <a href="https://github.com/victorybiz"><img src="https://github.com/victorybiz.png?size=100" width="50" height="50" /></a>
492
- <a href="https://github.com/tobiasmuecksch"><img src="https://github.com/tobiasmuecksch.png?size=100" width="50" height="50" /></a>
493
- <a href="https://github.com/dragermrb"><img src="https://github.com/dragermrb.png?size=100" width="50" height="50" /></a>
494
- <a href="https://github.com/iamcco"><img src="https://github.com/iamcco.png?size=100" width="50" height="50" /></a>
495
- <a href="https://github.com/eltociear"><img src="https://github.com/eltociear.png?size=100" width="50" height="50" /></a>
496
- <a href="https://github.com/joewoodhouse"><img src="https://github.com/joewoodhouse.png?size=100" width="50" height="50" /></a>
497
- <a href="https://github.com/antoniovlx"><img src="https://github.com/antoniovlx.png?size=100" width="50" height="50" /></a>
498
- <a href="https://github.com/HarelM"><img src="https://github.com/HarelM.png?size=100" width="50" height="50" /></a>
499
- <a href="https://github.com/rdlabo"><img src="https://github.com/rdlabo.png?size=100" width="50" height="50" /></a>
220
+ <a href="https://github.com/jepiqueau" title="jepiqueau"><img src="https://github.com/jepiqueau.png?size=100" width="50" height="50"/></a>
221
+ <a href="https://github.com/paulantoine2" title="paulantoine2"><img src="https://github.com/paulantoine2.png?size=100" width="50" height="50" alt=""/></a>
222
+ <a href="https://github.com/karyfars" title="karyfars"><img src="https://github.com/karyfars.png?size=100" width="50" height="50" /></a>
223
+ <a href="https://github.com/chriswep" title="chriswep"><img src="https://github.com/chriswep.png?size=100" width="50" height="50" /></a>
224
+ <a href="https://github.com/nirajhinge" title="nirajhinge"><img src="https://github.com/nirajhinge.png?size=100" width="50" height="50" /></a>
225
+ <a href="https://github.com/digaus" title="digaus"><img src="https://github.com/digaus.png?size=100" width="50" height="50" /></a>
226
+ <a href="https://github.com/IT-MikeS" title="IT-MikeS"><img src="https://github.com/IT-MikeS.png?size=100" width="50" height="50" /></a>
227
+ <a href="https://github.com/peakcool" title="peakcool"><img src="https://github.com/peakcool.png?size=100" width="50" height="50" /></a>
228
+ <a href="https://github.com/gion-andri" title="gion-andri"><img src="https://github.com/gion-andri.png?size=100" width="50" height="50" /></a>
229
+ <a href="https://github.com/robingenz" title="robingenz"><img src="https://github.com/robingenz.png?size=100" width="50" height="50" /></a>
230
+ <a href="https://github.com/dewald-els" title="dewald-els"><img src="https://github.com/dewald-els.png?size=100" width="50" height="50" /></a>
231
+ <a href="https://github.com/joewoodhouse" title="joewoodhouse"><img src="https://github.com/joewoodhouse.png?size=100" width="50" height="50" /></a>
232
+ <a href="https://github.com/ptasheq" title="ptasheq"><img src="https://github.com/ptasheq.png?size=100" width="50" height="50" /></a>
233
+ <a href="https://github.com/victorybiz" title="victorybiz"><img src="https://github.com/victorybiz.png?size=100" width="50" height="50" /></a>
234
+ <a href="https://github.com/tobiasmuecksch" title="tobiasmuecksch"><img src="https://github.com/tobiasmuecksch.png?size=100" width="50" height="50" /></a>
235
+ <a href="https://github.com/dragermrb" title="dragermrb"><img src="https://github.com/dragermrb.png?size=100" width="50" height="50" /></a>
236
+ <a href="https://github.com/iamcco" title="iamcco"><img src="https://github.com/iamcco.png?size=100" width="50" height="50" /></a>
237
+ <a href="https://github.com/eltociear" title="eltociear"><img src="https://github.com/eltociear.png?size=100" width="50" height="50" /></a>
238
+ <a href="https://github.com/antoniovlx" title="antoniovlx"><img src="https://github.com/antoniovlx.png?size=100" width="50" height="50" /></a>
239
+ <a href="https://github.com/HarelM" title="HarelM"><img src="https://github.com/HarelM.png?size=100" width="50" height="50" /></a>
240
+ <a href="https://github.com/rdlabo" title="rdlabo"><img src="https://github.com/rdlabo.png?size=100" width="50" height="50" /></a>
500
241
  </p>
501
242
 
502
243
  <!-- markdownlint-enable -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capacitor-community/sqlite",
3
- "version": "4.1.0-1",
3
+ "version": "4.1.0-4",
4
4
  "description": "Community plugin for native & electron SQLite databases",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",