Fix auto update (win tested) and add stylus

This commit is contained in:
oxmc
2025-02-13 06:34:03 -08:00
parent ab6fe350d3
commit b32fcbd8f1
17 changed files with 1570 additions and 406 deletions

View File

@@ -36,6 +36,8 @@ document.addEventListener('DOMContentLoaded', () => {
ipcRenderer.on('ui:progtext', (event, other) => {
console.log('Updating progress text:', other);
infotext.innerText = other.title;
progtext.innerText = other.subtitle;
if (other.subtitle) {
progtext.innerText = other.subtitle;
};
});
});