queclink-parser 1.9.26 → 1.9.27
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 +8 -0
- package/package.json +1 -1
- package/src/gv310lau.js +3 -1
- package/src/gv57cg.js +3 -1
- package/src/gv58lau.js +6 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
#### 1.9.27 (2026-03-16)
|
|
2
|
+
|
|
3
|
+
##### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **hbe:**
|
|
6
|
+
* se corrige unidad de medida de duración del evento ([6ef963a2](https://github.com/jaayesta/queclink-parser/commit/6ef963a27ddcfce95a46573d413723f258fdff6c))
|
|
7
|
+
* se corrige duración del evento ([2761d04b](https://github.com/jaayesta/queclink-parser/commit/2761d04bd5eb6e327f981f7a57e836b93ac7dbf6))
|
|
8
|
+
|
|
1
9
|
#### 1.9.26 (2026-03-13)
|
|
2
10
|
|
|
3
11
|
##### New Features
|
package/package.json
CHANGED
package/src/gv310lau.js
CHANGED
|
@@ -3130,7 +3130,9 @@ const parse = raw => {
|
|
|
3130
3130
|
let maxAcc = parsedData[index + 1] !== '' ? parsedData[index + 1] : null
|
|
3131
3131
|
let avgAcc = parsedData[index + 2] !== '' ? parsedData[index + 2] : null
|
|
3132
3132
|
let duration =
|
|
3133
|
-
parsedData[index + 3] !== ''
|
|
3133
|
+
parsedData[index + 3] !== ''
|
|
3134
|
+
? parseFloat(parsedData[index + 3]) / 100
|
|
3135
|
+
: null
|
|
3134
3136
|
let speed = parsedData[8] !== '' ? parseFloat(parsedData[8]) : null
|
|
3135
3137
|
|
|
3136
3138
|
data = Object.assign(data, {
|
package/src/gv57cg.js
CHANGED
|
@@ -2446,7 +2446,9 @@ const parse = raw => {
|
|
|
2446
2446
|
let maxAcc = parsedData[index + 1] !== '' ? parsedData[index + 1] : null
|
|
2447
2447
|
let avgAcc = parsedData[index + 2] !== '' ? parsedData[index + 2] : null
|
|
2448
2448
|
let duration =
|
|
2449
|
-
parsedData[index + 3] !== ''
|
|
2449
|
+
parsedData[index + 3] !== ''
|
|
2450
|
+
? parseFloat(parsedData[index + 3]) / 100
|
|
2451
|
+
: null
|
|
2450
2452
|
let speed = parsedData[8] !== '' ? parseFloat(parsedData[8]) : null
|
|
2451
2453
|
|
|
2452
2454
|
data = Object.assign(data, {
|
package/src/gv58lau.js
CHANGED
|
@@ -3381,8 +3381,12 @@ const parse = raw => {
|
|
|
3381
3381
|
? parsedData[index + 3] !== '' ? parsedData[index + 3] : null
|
|
3382
3382
|
: parsedData[index + 2] !== '' ? parsedData[index + 2] : null
|
|
3383
3383
|
let duration = includeStatus
|
|
3384
|
-
? parsedData[index + 4] !== ''
|
|
3385
|
-
|
|
3384
|
+
? parsedData[index + 4] !== ''
|
|
3385
|
+
? parseFloat(parsedData[index + 4]) / 100
|
|
3386
|
+
: null
|
|
3387
|
+
: parsedData[index + 3] !== ''
|
|
3388
|
+
? parseFloat(parsedData[index + 3]) / 100
|
|
3389
|
+
: null
|
|
3386
3390
|
let speed = parsedData[8] !== '' ? parseFloat(parsedData[8]) : null
|
|
3387
3391
|
|
|
3388
3392
|
data = Object.assign(data, {
|