cordova-sqlite-evmax-build-free 0.0.5 → 0.0.6

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,5 +1,11 @@
1
1
  # Changes
2
2
 
3
+ # cordova-sqlite-evmax-build-free 0.0.6
4
+
5
+ - remove useless Windows project references
6
+ - Windows SQLite3 lib build as needed for Volt build - x86 & x64 now working
7
+ - SQLite 3.40.0 update for iOS, macOS (OSX), & Windows
8
+
3
9
  # cordova-sqlite-evmax-build-free 0.0.5
4
10
 
5
11
  - BLOBFROMBASE64 for other platforms from:
package/README.md CHANGED
@@ -201,7 +201,7 @@ See the [Sample section](#sample) for a sample with a more detailed explanation
201
201
  - This plugin version includes the following extra (non-standard) features:
202
202
  - BASE64 and BLOBFROMBASE64 integrated from [brodybits / sqlite3-base64](https://github.com/brodybits/sqlite3-base64), using [brodybits / libb64-core](https://github.com/brodybits/libb64-core) (based on <http://libb64.sourceforge.net/> by Chris Venter, public domain)
203
203
  - 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)
204
- - SQLite __`3.38.5`__ included when building (all platforms), with the following compile-time definitions:
204
+ - SQLite __(`3.38.5` for Android, `3.40.0` for other platforms)__ included when building (all platforms), with the following compile-time definitions:
205
205
  - `SQLITE_THREADSAFE=1`
206
206
  - `SQLITE_DEFAULT_SYNCHRONOUS=3` (EXTRA DURABLE build setting) ref: [xpbrew/cordova-sqlite-storage#736](https://github.com/xpbrew/cordova-sqlite-storage/issues/736)
207
207
  - `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.5",
3
+ "version": "0.0.6",
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",
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.5">
5
+ version="0.0.6">
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
 
@@ -114,7 +114,18 @@
114
114
  </js-module>
115
115
 
116
116
  <!-- Thanks to AllJoyn-Cordova / cordova-plugin-alljoyn for guidance: -->
117
+ <!-- uncomment next line to rebuild WinMD & DLL artifacts - Release build is required:
117
118
  <framework src="src/windows/SQLite3-WinRT-sync/SQLite3/SQLite3.UWP.vcxproj" custom="true" type="projectReference" versions="10.*" />
119
+ -->
120
+ <!-- remove these when rebuilding WinMD & DLL artifacts -->
121
+ <!-- sources:
122
+ - https://www.dynamsoft.com/codepool/cordova-plugin-barcode-winrt.html
123
+ - https://github.com/yushulx/cordova-windows-barcode
124
+ - -->
125
+ <framework src="src/windows/libs/x86/BarcodeComponent.winmd" target-dir="x86" arch="x86" custom="true"/>
126
+ <framework src="src/windows/libs/x86/SQLite3.winmd" target-dir="x86" arch="x86" custom="true" implementation="src/windows/libs/x86/SQLite3.UWP.dll"/>
127
+ <framework src="src/windows/libs/x86/BarcodeComponent.winmd" target-dir="x64" arch="x64" custom="true"/>
128
+ <framework src="src/windows/libs/x86/SQLite3.winmd" target-dir="x64" arch="x64" custom="true" implementation="src/windows/libs/x64/SQLite3.UWP.dll"/>
118
129
  </platform>
119
130
 
120
131
  </plugin>
@@ -104,7 +104,10 @@ 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.38.5');
107
+ if (isAndroid)
108
+ expect(rs.rows.item(0).myResult).toBe('3.38.5');
109
+ else
110
+ expect(rs.rows.item(0).myResult).toBe('3.40.0');
108
111
 
109
112
  // Close (plugin only) & finish:
110
113
  (isWebSql) ? done() : db.close(done, done);