(1.0.37) bump

This commit is contained in:
2025-12-01 21:21:05 +00:00
parent 855eb07d89
commit 6447692d4c
3 changed files with 3 additions and 3 deletions

2
dist/index.cjs.js vendored
View File

@@ -247,7 +247,7 @@ class Updater {
else {
// should be the file progress
let fileProgressView = new Uint32Array(rawData);
this._fileProgress += (dataView[3] << 24) |
this._fileProgress = (dataView[3] << 24) |
(dataView[2] << 16) |
(dataView[1] << 8) | dataView[0];
this.sendNextPacket();

2
dist/index.es.js vendored
View File

@@ -245,7 +245,7 @@ class Updater {
else {
// should be the file progress
let fileProgressView = new Uint32Array(rawData);
this._fileProgress += (dataView[3] << 24) |
this._fileProgress = (dataView[3] << 24) |
(dataView[2] << 16) |
(dataView[1] << 8) | dataView[0];
this.sendNextPacket();

View File

@@ -1,6 +1,6 @@
{
"name": "updaterweblibrary",
"version": "1.0.36",
"version": "1.0.37",
"description": "OTA Updater App frontend library",
"repository": {
"type": "git",