cordova-sqlite-evmax-build-free 0.0.1 → 0.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.
package/CHANGES.md CHANGED
@@ -1,6 +1,18 @@
1
1
  # Changes
2
2
 
3
- ## cordova-sqlite-evmax-build-free 0.0.1
3
+ # cordova-sqlite-evmax-build-free 0.0.4
4
+
5
+ - SQLite 3.37.2 update from cordova-sqlite-evplus-ext-free-dependencies@0.4.2 - with resolution for a very rare & unlikely corruption issue from SQLite 3.35.0 ref: https://sqlite.org/forum/forumpost/ac381d64d8
6
+
7
+ # cordova-sqlite-evmax-build-free 0.0.3
8
+
9
+ - SQLite 3.36.0 update from cordova-sqlite-evplus-ext-free-dependencies@0.4.1 - includes BLOBFROMBASE64 for Android only at this point
10
+
11
+ # cordova-sqlite-evmax-build-free 0.0.2
12
+
13
+ - fix evmax build URLs in package.json
14
+
15
+ # cordova-sqlite-evmax-build-free 0.0.1
4
16
 
5
17
  - use included SQLite3 dependencies in this plugin version
6
18
 
package/README.md CHANGED
@@ -202,7 +202,7 @@ See the [Sample section](#sample) for a sample with a more detailed explanation
202
202
  - This plugin version includes the following extra (non-standard) features:
203
203
  - BASE64 integrated from [brodybits / sqlite3-base64](https://github.com/brodybits/sqlite3-base64), using [brodybits / libb64-encode](https://github.com/brodybits/libb64-encode) (based on <http://libb64.sourceforge.net/> by Chris Venter, public domain)
204
204
  - REGEXP for Android (default Android-sqlite-connector database implementation), iOS, and macOS using [brodybits / sqlite3-regexp-cached](https://github.com/brodybits/sqlite3-regexp-cached) (based on <http://git.altlinux.org/people/at/packages/?p=sqlite3-pcre.git> by Alexey Tourbin, public domain)
205
- - SQLite __`3.35.4`__ included when building (all platforms), with the following compile-time definitions:
205
+ - SQLite __`3.37.2`__ included when building (all platforms), with the following compile-time definitions:
206
206
  - `SQLITE_THREADSAFE=1`
207
207
  - `SQLITE_DEFAULT_SYNCHRONOUS=3` (EXTRA DURABLE build setting) ref: [xpbrew/cordova-sqlite-storage#736](https://github.com/xpbrew/cordova-sqlite-storage/issues/736)
208
208
  - `SQLITE_LOCKING_STYLE=1` on iOS/macOS ONLY
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cordova-sqlite-evmax-build-free",
3
- "version": "0.0.1",
3
+ "version": "0.0.4",
4
4
  "description": "Cordova/PhoneGap sqlite storage - free evmax enterprise version with premium stability and performance improvements including workaround for super-large INSERT transactions & SELECT results on Android (version with external sqlite3 dependencies)",
5
5
  "cordova": {
6
6
  "id": "cordova-sqlite-evmax-common-free",
@@ -13,7 +13,7 @@
13
13
  },
14
14
  "repository": {
15
15
  "type": "git",
16
- "url": "https://github.com/litehelpers/cordova-plugin-sqlite-evplus-ext-common-free.git"
16
+ "url": "https://github.com/brodybits/cordova-sqlite-evmax-build-free.git"
17
17
  },
18
18
  "keywords": [
19
19
  "sqlite",
@@ -26,9 +26,9 @@
26
26
  "author": "various",
27
27
  "license": "GPL-3.0 OR Commercial",
28
28
  "bugs": {
29
- "url": "https://github.com/litehelpers/cordova-plugin-sqlite-evplus-ext-common-free/issues"
29
+ "url": "https://github.com/brodybits/cordova-sqlite-evmax-build-free/issues"
30
30
  },
31
- "homepage": "https://github.com/litehelpers/cordova-plugin-sqlite-evplus-ext-common-free",
31
+ "homepage": "https://github.com/brodybits/cordova-sqlite-evmax-build-free",
32
32
  "dependencies": {
33
33
  "cordova-sqlite-evplus-ext-free-dependencies": "0.3.0"
34
34
  },
package/plugin.xml CHANGED
@@ -2,7 +2,7 @@
2
2
  <plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
3
3
  xmlns:android="http://schemas.android.com/apk/res/android"
4
4
  id="cordova-sqlite-evmax-build-free"
5
- version="0.0.1">
5
+ version="0.0.4">
6
6
 
7
7
  <name>Cordova sqlite storage - free evmax common version branch with premium stability performance improvements including workaround for super-large INSERT transactions and SELECT results on Android (with external sqlite3 dependencies)</name>
8
8
 
@@ -104,7 +104,7 @@ var mytests = function() {
104
104
  expect(rs).toBeDefined();
105
105
  expect(rs.rows).toBeDefined();
106
106
  expect(rs.rows.length).toBe(1);
107
- expect(rs.rows.item(0).myResult).toBe('3.35.5');
107
+ expect(rs.rows.item(0).myResult).toBe('3.37.2');
108
108
 
109
109
  // Close (plugin only) & finish:
110
110
  (isWebSql) ? done() : db.close(done, done);