sqlmath 2024.12.25 → 2025.1.31

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/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
3
3
  # Todo
4
4
  - none
5
5
 
6
+ # v2025.1.31
7
+ - webdemo - Update coloring to highlight tqq/sqq stocks.
8
+ - sqlmath - Revamp sql-function win_sinefit2() to guess frequency from stdev of tt, instead of dft.
9
+
6
10
  # v2024.12.25
7
11
  - ci - Auto-create asset_image_logo_256.png from asset_image_logo_256.html.
8
12
  - ci - Fix shell-function shRollupFetch() from making excessive github-api-request.
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
 
4
4
  # Status
5
- | Branch | [master<br>(v2024.12.25)](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) |
5
+ | Branch | [master<br>(v2025.1.31)](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 | [![ci](https://github.com/sqlmath/sqlmath/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/sqlmath/sqlmath/actions?query=branch%3Amaster) | [![ci](https://github.com/sqlmath/sqlmath/actions/workflows/ci.yml/badge.svg?branch=beta)](https://github.com/sqlmath/sqlmath/actions?query=branch%3Abeta) | [![ci](https://github.com/sqlmath/sqlmath/actions/workflows/ci.yml/badge.svg?branch=alpha)](https://github.com/sqlmath/sqlmath/actions?query=branch%3Aalpha) |
8
8
  | Coverage | [![coverage](https://sqlmath.github.io/sqlmath/branch-master/.artifact/coverage/coverage_badge.svg)](https://sqlmath.github.io/sqlmath/branch-master/.artifact/coverage/index.html) | [![coverage](https://sqlmath.github.io/sqlmath/branch-beta/.artifact/coverage/coverage_badge.svg)](https://sqlmath.github.io/sqlmath/branch-beta/.artifact/coverage/index.html) | [![coverage](https://sqlmath.github.io/sqlmath/branch-alpha/.artifact/coverage/coverage_badge.svg)](https://sqlmath.github.io/sqlmath/branch-alpha/.artifact/coverage/index.html) |
@@ -121,11 +121,11 @@ PORT=8080 sh jslint_ci.sh shHttpFileServer
121
121
  ```shell
122
122
  python -m build
123
123
  #
124
- twine upload --repository testpypi dist/sqlmath-2024.12.25*
125
- py -m pip install --index-url https://test.pypi.org/simple/ sqlmath==2024.12.25
124
+ twine upload --repository testpypi dist/sqlmath-2025.1.31*
125
+ py -m pip install --index-url https://test.pypi.org/simple/ sqlmath==2025.1.31
126
126
  #
127
- twine upload dist/sqlmath-2024.12.25*
128
- pip install sqlmath==2024.12.25
127
+ twine upload dist/sqlmath-2025.1.31*
128
+ pip install sqlmath==2025.1.31
129
129
  ```
130
130
 
131
131
 
package/package.json CHANGED
@@ -32,5 +32,5 @@
32
32
  },
33
33
  "shCiArtifactUpload": 1,
34
34
  "shCiPublishNpm": 1,
35
- "version": "2024.12.25"
35
+ "version": "2025.1.31"
36
36
  }
package/sqlmath.mjs CHANGED
@@ -122,7 +122,7 @@ let {
122
122
  let sqlMessageDict = {}; // dict of web-worker-callbacks
123
123
  let sqlMessageId = 0;
124
124
  let sqlWorker;
125
- let version = "v2024.12.25";
125
+ let version = "v2025.1.31";
126
126
 
127
127
  async function assertErrorThrownAsync(asyncFunc, regexp) {
128
128