@capacitor-community/sqlite 5.0.3-2.test2 → 5.0.4-alphabetter.1
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.
- package/README.md +5 -2
- package/electron/dist/plugin.js +2708 -2714
- package/electron/dist/plugin.js.map +1 -1
- package/electron/rollup.config.js +1 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -73,6 +73,7 @@ const config: CapacitorConfig = {
|
|
|
73
73
|
biometricTitle : "Biometric login for capacitor sqlite",
|
|
74
74
|
biometricSubTitle : "Log in using your biometric"
|
|
75
75
|
},
|
|
76
|
+
electronIsEncryption: false,
|
|
76
77
|
electronWindowsLocation: "C:\\ProgramData\\CapacitorDatabases",
|
|
77
78
|
electronMacLocation: "/Volumes/Development_Lacie/Development/Databases",
|
|
78
79
|
electronLinuxLocation: "Databases"
|
|
@@ -165,8 +166,10 @@ You'll need the usual capacitor/android/react npm script to build and copy the a
|
|
|
165
166
|
```bash
|
|
166
167
|
cd electron
|
|
167
168
|
npm install --save @journeyapps/sqlcipher
|
|
169
|
+
npm install --save sqlite3
|
|
168
170
|
npm install --save jszip
|
|
169
171
|
npm install --save node-fetch@2.6.7
|
|
172
|
+
npm install --save-dev @types/sqlite3
|
|
170
173
|
```
|
|
171
174
|
- **Important**: `node-fetch` version must be `<=2.6.7`; otherwise [you'll get an error](https://github.com/capacitor-community/sqlite/issues/349 "you'll get an error ERR_REQUIRE_ESM") running the app.
|
|
172
175
|
|
|
@@ -228,8 +231,8 @@ npm install --save node-fetch@2.6.7
|
|
|
228
231
|
| isNCDatabase | ✅ | ✅ | ❌ | ❌ |
|
|
229
232
|
| transaction | ✅ | ✅ | ✅ | ✅ |
|
|
230
233
|
| getFromHTTPRequest | ✅ | ✅ | ✅ | ✅ | since 4.2.0
|
|
231
|
-
| isDatabaseEncrypted | ✅ | ✅ |
|
|
232
|
-
| isInConfigEncryption | ✅ | ✅ |
|
|
234
|
+
| isDatabaseEncrypted | ✅ | ✅ | ✅ | ❌ | since 4.6.2-2
|
|
235
|
+
| isInConfigEncryption | ✅ | ✅ | ✅ | ❌ | since 4.6.2-2
|
|
233
236
|
| isInConfigBiometricAuth | ✅ | ✅ | ❌ | ❌ | since 4.6.2-2
|
|
234
237
|
| getFromLocalDiskToStore | ❌ | ❌ | ❌ | ✅ | since 4.6.3
|
|
235
238
|
| saveToLocalDisk | ❌ | ❌ | ❌ | ✅ | since 4.6.3
|