cordova-sqlite-evmax-build-free 0.0.4 → 0.0.6-voltbuild-test01
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 +29 -1
- package/README.md +37 -32
- package/package.json +4 -7
- package/plugin.xml +21 -6
- package/spec/www/index.html +1 -0
- package/spec/www/spec/blobfrombase64-test.js +159 -0
- package/spec/www/spec/db-open-close-delete-test.js +3 -1
- package/spec/www/spec/db-tx-string-test.js +10 -13
- package/spec/www/spec/db-tx-value-bindings-test.js +6 -7
- package/spec/www/spec/sqlite-version-test.js +4 -1
- package/src/android/io/sqlc/SQLitePlugin.java +6 -3
- package/src/deps/android/sqlc-evplus-ndk-driver.jar +0 -0
- package/src/deps/common/{libb64-encode → libb64-core}/LICENSE +0 -0
- package/src/deps/common/libb64-core/README.md +31 -0
- package/src/deps/common/libb64-core/cdecode.c +93 -0
- package/src/deps/common/libb64-core/cdecode.h +29 -0
- package/src/deps/common/{libb64-encode → libb64-core}/cencode.c +0 -0
- package/src/deps/common/{libb64-encode → libb64-core}/cencode.h +0 -0
- package/src/deps/common/sqlite3-base64/README.md +18 -4
- package/src/deps/common/sqlite3-base64/sqlite3_base64.c +37 -2
- package/src/deps/common/sqlite3.c +13097 -7056
- package/src/deps/common/sqlite3.h +459 -64
- package/src/windows/SQLite3-WinRT-sync/SQLite3/SQLite3.Shared.vcxitems +7 -3
- package/src/windows/SQLite3-WinRT-sync/SQLite3/SQLite3.UWP.vcxproj +2 -2
- package/src/windows/SQLite3-WinRT-sync/SQLite3/SQLite3.sln +0 -4
- package/src/windows/libs/x64/BarcodeComponent.winmd +0 -0
- package/src/windows/libs/x64/SQLite3.UWP.dll +0 -0
- package/src/windows/libs/x64/SQLite3.winmd +0 -0
- package/src/windows/libs/x86/BarcodeComponent.winmd +0 -0
- package/src/windows/libs/x86/SQLite3.UWP.dll +0 -0
- package/src/windows/libs/x86/SQLite3.winmd +0 -0
- package/src/deps/common/libb64-encode/README.md +0 -27
|
@@ -10,12 +10,13 @@
|
|
|
10
10
|
</PropertyGroup>
|
|
11
11
|
<ItemDefinitionGroup>
|
|
12
12
|
<ClCompile>
|
|
13
|
-
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories);$(MSBuildThisFileDirectory);$(MSBuildThisFileDirectory)..\..\..\deps\common;$(MSBuildThisFileDirectory)..\..\..\deps\common\sqlite3-base64;$(MSBuildThisFileDirectory)..\..\..\deps\common\libb64-
|
|
13
|
+
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories);$(MSBuildThisFileDirectory);$(MSBuildThisFileDirectory)..\..\..\deps\common;$(MSBuildThisFileDirectory)..\..\..\deps\common\sqlite3-base64;$(MSBuildThisFileDirectory)..\..\..\deps\common\libb64-core</AdditionalIncludeDirectories>
|
|
14
14
|
<AdditionalOptions>/DSQLITE_THREADSAFE=1 /DSQLITE_DEFAULT_SYNCHRONOUS=3 /DHAVE_USLEEP=1 /DSQLITE_DEFAULT_MEMSTATUS=0 /DSQLITE_OMIT_DECLTYPE /DSQLITE_OMIT_DEPRECATED /DSQLITE_OMIT_PROGRESS_CALLBACK /DSQLITE_OMIT_SHARED_CACHE /DSQLITE_TEMP_STORE=2 /DSQLITE_OMIT_LOAD_EXTENSION /DSQLITE_ENABLE_FTS3 /DSQLITE_ENABLE_FTS3_PARENTHESIS /DSQLITE_ENABLE_FTS4 /DSQLITE_ENABLE_FTS5 /DSQLITE_ENABLE_RTREE /DSQLITE_ENABLE_JSON1 /DSQLITE_DEFAULT_PAGE_SIZE=4096 /DSQLITE_DEFAULT_CACHE_SIZE=-2000 /DSQLITE_OS_WINRT %(AdditionalOptions)</AdditionalOptions>
|
|
15
15
|
</ClCompile>
|
|
16
16
|
</ItemDefinitionGroup>
|
|
17
17
|
<ItemGroup>
|
|
18
|
-
<ClInclude Include="$(MSBuildThisFileDirectory)..\..\..\deps\common\libb64-
|
|
18
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)..\..\..\deps\common\libb64-core\cencode.h" />
|
|
19
|
+
<ClInclude Include="$(MSBuildThisFileDirectory)..\..\..\deps\common\libb64-core\cdecode.h" />
|
|
19
20
|
<ClInclude Include="$(MSBuildThisFileDirectory)..\..\..\deps\common\sqlite3-base64\sqlite3_base64.h" />
|
|
20
21
|
<ClInclude Include="$(MSBuildThisFileDirectory)..\..\..\deps\common\sqlite3.h" />
|
|
21
22
|
<ClInclude Include="$(MSBuildThisFileDirectory)Constants.h" />
|
|
@@ -33,7 +34,10 @@
|
|
|
33
34
|
<ClCompile Include="$(MSBuildThisFileDirectory)..\..\..\deps\common\sqlite3-base64\sqlite3_base64.c">
|
|
34
35
|
<CompileAsWinRT>false</CompileAsWinRT>
|
|
35
36
|
</ClCompile>
|
|
36
|
-
<ClCompile Include="$(MSBuildThisFileDirectory)..\..\..\deps\common\libb64-
|
|
37
|
+
<ClCompile Include="$(MSBuildThisFileDirectory)..\..\..\deps\common\libb64-core\cencode.c">
|
|
38
|
+
<CompileAsWinRT>false</CompileAsWinRT>
|
|
39
|
+
</ClCompile>
|
|
40
|
+
<ClCompile Include="$(MSBuildThisFileDirectory)..\..\..\deps\common\libb64-core\cdecode.c">
|
|
37
41
|
<CompileAsWinRT>false</CompileAsWinRT>
|
|
38
42
|
</ClCompile>
|
|
39
43
|
<ClCompile Include="$(MSBuildThisFileDirectory)pch.cpp">
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
<MinimumVisualStudioVersion>14.0</MinimumVisualStudioVersion>
|
|
42
42
|
<AppContainerApplication>true</AppContainerApplication>
|
|
43
43
|
<ApplicationType>Windows Store</ApplicationType>
|
|
44
|
-
<WindowsTargetPlatformVersion>10.0.
|
|
45
|
-
<WindowsTargetPlatformMinVersion>10.0.
|
|
44
|
+
<WindowsTargetPlatformVersion>10.0.17763.0</WindowsTargetPlatformVersion>
|
|
45
|
+
<WindowsTargetPlatformMinVersion>10.0.15063.0</WindowsTargetPlatformMinVersion>
|
|
46
46
|
<ApplicationTypeRevision>10.0</ApplicationTypeRevision>
|
|
47
47
|
</PropertyGroup>
|
|
48
48
|
|
|
@@ -7,10 +7,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SQLite3", "SQLite3", "{F0B5
|
|
|
7
7
|
EndProject
|
|
8
8
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SQLite3.Shared", "SQLite3.Shared.vcxitems", "{DB84AE51-4B93-44F5-BE22-1EAE1833ECEC}"
|
|
9
9
|
EndProject
|
|
10
|
-
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SQLite3.Windows", "SQLite3.Windows\SQLite3.Windows.vcxproj", "{D1848FEE-6A8E-4EF1-8BFB-8652E5A9CD4A}"
|
|
11
|
-
EndProject
|
|
12
|
-
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SQLite3.WindowsPhone", "SQLite3.WindowsPhone\SQLite3.WindowsPhone.vcxproj", "{6435C2E4-4FD2-405A-9EE2-5312AE852782}"
|
|
13
|
-
EndProject
|
|
14
10
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SQLite3.UWP", "SQLite3.UWP\SQLite3.UWP.vcxproj", "{76E68196-B7DC-4393-A070-D32FC33BC489}"
|
|
15
11
|
EndProject
|
|
16
12
|
Global
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
libb64: Base64 Encoding C Routine
|
|
2
|
-
=================================
|
|
3
|
-
|
|
4
|
-
From project: <http://libb64.sourceforge.net/> (latest CVS source from <http://libb64.cvs.sourceforge.net/viewvc/libb64/>)
|
|
5
|
-
|
|
6
|
-
LICENSE:
|
|
7
|
-
--------
|
|
8
|
-
|
|
9
|
-
Public domain
|
|
10
|
-
|
|
11
|
-
Authors:
|
|
12
|
-
--------
|
|
13
|
-
|
|
14
|
-
- Chris Venter ([@gorb314](https://github.com/gorb314))
|
|
15
|
-
- Christopher J. Brody ([@brodybits](https://github.com/brodybits))
|
|
16
|
-
|
|
17
|
-
Major changes:
|
|
18
|
-
--------------
|
|
19
|
-
|
|
20
|
-
- Use macro instead of function to encode each value
|
|
21
|
-
- Line breaks disabled by default
|
|
22
|
-
- Include fixed for iOS build
|
|
23
|
-
|
|
24
|
-
Other versions:
|
|
25
|
-
---------------
|
|
26
|
-
|
|
27
|
-
- <https://github.com/libb64/libb64>
|