flying-lobster 1.9.1 → 1.9.2
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/package.json +1 -1
- package/src/renderer/settings.js +3 -3
package/package.json
CHANGED
package/src/renderer/settings.js
CHANGED
|
@@ -374,7 +374,7 @@ checkUpdateBtn.addEventListener('click', async () => {
|
|
|
374
374
|
const version = await window.api.getAppVersion();
|
|
375
375
|
$('#app-version').textContent = `v${version}`;
|
|
376
376
|
|
|
377
|
-
//
|
|
378
|
-
|
|
379
|
-
|
|
377
|
+
// Don't show update status on load - only after user clicks "Check for Updates"
|
|
378
|
+
// Hide the status item initially
|
|
379
|
+
updateStatusItem.style.display = 'none';
|
|
380
380
|
})();
|