sqlmath 2022.4.28 → 2022.5.20
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/.npmignore +1 -0
- package/CHANGELOG.md +6 -1
- package/LICENSE +2 -2
- package/README.md +13 -1
- package/_binary_sqlmath_napi8_darwin_x64.node +0 -0
- package/_binary_sqlmath_napi8_linux_x64.node +0 -0
- package/_binary_sqlmath_napi8_win32_x64.node +0 -0
- package/_binary_sqlmath_shell_darwin_x64 +0 -0
- package/_binary_sqlmath_shell_linux_x64 +0 -0
- package/_binary_sqlmath_shell_win32_x64.exe +0 -0
- package/jslint.mjs +347 -80
- package/package.json +3 -3
- package/sqlmath.mjs +34 -920
package/.npmignore
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
3
|
# Todo
|
|
4
|
-
- sqlmath - migrate test to jsTestXxx
|
|
5
4
|
- none
|
|
6
5
|
|
|
6
|
+
# v2022.5.20
|
|
7
|
+
- sqlite - update to sqlite v3.38.5
|
|
8
|
+
- sqlmath - add sql-functions castrealorzero(), casttextorempty()
|
|
9
|
+
- sqlmath - migrate test to jsTestXxx
|
|
10
|
+
- jslint - update jslint v2022.05.13
|
|
11
|
+
|
|
7
12
|
# v2022.4.28
|
|
8
13
|
- jslint - update jslint v2022.4.28
|
|
9
14
|
- sqlite - update to sqlite v3.38.2
|
package/LICENSE
CHANGED
|
@@ -7,8 +7,8 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
7
7
|
copies of the Software, and to permit persons to whom the Software is
|
|
8
8
|
furnished to do so, subject to the following conditions:
|
|
9
9
|
|
|
10
|
-
The above copyright notice and this permission notice shall be included in
|
|
11
|
-
copies or substantial portions of the Software.
|
|
10
|
+
The above copyright notice and this permission notice shall be included in
|
|
11
|
+
all copies or substantial portions of the Software.
|
|
12
12
|
|
|
13
13
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
14
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
# Status
|
|
5
|
-
| Branch | [master<br>(v2022.
|
|
5
|
+
| Branch | [master<br>(v2022.5.20)](https://github.com/sqlmath/sqlmath/tree/master) | [beta<br>(Web Demo)](https://github.com/sqlmath/sqlmath/tree/beta) | [alpha<br>(Development)](https://github.com/sqlmath/sqlmath/tree/alpha) |
|
|
6
6
|
|--:|:--:|:--:|:--:|
|
|
7
7
|
| CI | [](https://github.com/sqlmath/sqlmath/actions?query=branch%3Amaster) | [](https://github.com/sqlmath/sqlmath/actions?query=branch%3Abeta) | [](https://github.com/sqlmath/sqlmath/actions?query=branch%3Aalpha) |
|
|
8
8
|
| Coverage | [](https://sqlmath.github.io/sqlmath/branch-master/.artifact/coverage/index.html) | [](https://sqlmath.github.io/sqlmath/branch-beta/.artifact/coverage/index.html) | [](https://sqlmath.github.io/sqlmath/branch-alpha/.artifact/coverage/index.html) |
|
|
@@ -16,6 +16,8 @@
|
|
|
16
16
|
|
|
17
17
|
2. [Changelog](#changelog)
|
|
18
18
|
|
|
19
|
+
3. [License](#license)
|
|
20
|
+
|
|
19
21
|
|
|
20
22
|
<br><br>
|
|
21
23
|
# Package Listing
|
|
@@ -27,3 +29,13 @@
|
|
|
27
29
|
- [Full CHANGELOG.md](CHANGELOG.md)
|
|
28
30
|
|
|
29
31
|

|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
<br><br>
|
|
35
|
+
# License
|
|
36
|
+
- SQLite is under public domain.
|
|
37
|
+
- JSLint is under [Unlicense License](https://github.com/jslint-org/jslint/blob/master/LICENSE).
|
|
38
|
+
- [cpplint.py](cpplint.py) is under [BSD 3-clause license](https://github.com/cpplint/cpplint/blob/develop/LICENSE).
|
|
39
|
+
- [indent.exe](indent.exe) is under [GPLv3 License](https://www.gnu.org/licenses/gpl-3.0.txt).
|
|
40
|
+
- [sqlmath_jenks.c](sqlmath_jenks.c) is derived from [GPLv3 licensed CalcNaturalBreaks](https://www.geodms.nl/CalcNaturalBreaks).
|
|
41
|
+
- Everything else is under MIT License.
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|