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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flying-lobster",
3
- "version": "1.9.1",
3
+ "version": "1.9.2",
4
4
  "description": "Always-on-top chat window for OpenClaw gateways 🦞",
5
5
  "author": "Rootlab.ai",
6
6
  "license": "MIT",
@@ -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
- // Get initial update state
378
- const updateState = await window.api.getUpdateState();
379
- renderUpdateState(updateState);
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
  })();