beast-agent 0.24.2 → 0.24.3

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,7 +1,7 @@
1
1
  {
2
2
  "name": "beast-agent",
3
3
  "productName": "Beast Agent",
4
- "version": "0.24.2",
4
+ "version": "0.24.3",
5
5
  "description": "Ultra-fast local agent shell for Windows.",
6
6
  "author": "algokodcom (AlgoKod)",
7
7
  "license": "MIT",
@@ -2472,7 +2472,8 @@ function renderGuestBotMenu() {
2472
2472
  if (!btn || !menu) return;
2473
2473
  const isAdmin = activeBotId === 'beast';
2474
2474
  const show = isAdmin && !!activeId;
2475
- btn.style.display = show ? '' : 'none';
2475
+ /* DİKKAT: hidden ATTRIBUTUE'sünü kaldırmak şart — style.display ile açılmaz */
2476
+ btn.hidden = !show;
2476
2477
  if (!show) { menu.hidden = true; return; }
2477
2478
  const candidates = botsCache.filter((b) => !b.admin && b.vis !== false);
2478
2479
  menu.innerHTML = '';