From eeb90f630d01b9d4b17c23719026854e91bd62b4 Mon Sep 17 00:00:00 2001 From: chopster44 Date: Mon, 1 Dec 2025 20:45:31 +0000 Subject: [PATCH] (1.0.32) bump --- dist/index.cjs.js | 1 + dist/index.es.js | 1 + package.json | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/dist/index.cjs.js b/dist/index.cjs.js index c666f3e..fd57cd9 100644 --- a/dist/index.cjs.js +++ b/dist/index.cjs.js @@ -248,6 +248,7 @@ class Updater { let fileProgressView = new Uint32Array(rawData); this._fileProgress += fileProgressView[0]; this.sendNextPacket(); + progressCallback(`Recieved progress ${fileProgressView[0]}; Sending (${Math.floor((this._fileProgress * 100) / this._fileSize)}%), ${this._fileProgress} / ${this._fileSize}`); } }, (error) => { reject("Error: Failed to start notify"); diff --git a/dist/index.es.js b/dist/index.es.js index fdb9cb4..18b4f83 100644 --- a/dist/index.es.js +++ b/dist/index.es.js @@ -246,6 +246,7 @@ class Updater { let fileProgressView = new Uint32Array(rawData); this._fileProgress += fileProgressView[0]; this.sendNextPacket(); + progressCallback(`Recieved progress ${fileProgressView[0]}; Sending (${Math.floor((this._fileProgress * 100) / this._fileSize)}%), ${this._fileProgress} / ${this._fileSize}`); } }, (error) => { reject("Error: Failed to start notify"); diff --git a/package.json b/package.json index aca90c3..4ce156b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "updaterweblibrary", - "version": "1.0.31", + "version": "1.0.32", "description": "OTA Updater App frontend library", "repository": { "type": "git",