Is there a way to get the download % of the update using the onUpdaterEvent? I'm using the server approach for the update (manually calling checkUpdate then installUpdate()
From what I can see at the moment, the only updates we get are "PENDING" and "DOWNLOADED" when using the following code:
const unlisten = await onUpdaterEvent(({ error, status }) => {
console.log('Updater event', error, status);
});
Note: This is on the JS side, not rust.
I see the rust side has more information about chunk_length etc. Is this not accessible via JS without me forwarding the data to the JS app?