@floless/app 0.6.0 → 0.6.1

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.
@@ -52254,7 +52254,7 @@ function appVersion() {
52254
52254
  return resolveVersion({
52255
52255
  isSea: isSea2(),
52256
52256
  sqVersionXml: readSqVersionXml(),
52257
- define: true ? "0.6.0" : void 0,
52257
+ define: true ? "0.6.1" : void 0,
52258
52258
  pkgVersion: readPkgVersion()
52259
52259
  });
52260
52260
  }
@@ -52264,7 +52264,7 @@ function resolveChannel(s) {
52264
52264
  return "dev";
52265
52265
  }
52266
52266
  function appChannel() {
52267
- return resolveChannel({ isSea: isSea2(), define: true ? "0.6.0" : void 0 });
52267
+ return resolveChannel({ isSea: isSea2(), define: true ? "0.6.1" : void 0 });
52268
52268
  }
52269
52269
 
52270
52270
  // bake.ts
package/dist/web/aware.js CHANGED
@@ -473,7 +473,16 @@
473
473
  const $wfList = document.getElementById('wf-list');
474
474
  let comboHi = -1; // index into the currently-visible options (-1 = none)
475
475
 
476
- function setComboTriggerLabel(text) { if ($wfTriggerLabel) $wfTriggerLabel.textContent = text || 'select workflow'; }
476
+ // Status placeholders that flow through setComboTriggerLabel but are NOT workflow names.
477
+ const WF_STATUS_TEXT = new Set(['loading…', 'no workflows installed', 'server unreachable', 'select workflow', '']);
478
+ function setComboTriggerLabel(text) {
479
+ if ($wfTriggerLabel) $wfTriggerLabel.textContent = text || 'select workflow';
480
+ // App tab title — kept distinct from the marketing site's "FloLess — Workflow
481
+ // Automation for AEC": show "<workflow> — FloLess" when a workflow is selected so
482
+ // parallel browser tabs are tellable apart, else the static "FloLess Workspace"
483
+ // (which is also the initial <title> in index.html).
484
+ document.title = (text && !WF_STATUS_TEXT.has(text)) ? `${text} — FloLess` : 'FloLess Workspace';
485
+ }
477
486
  function setComboSelected(id) {
478
487
  if (!$wfList) return;
479
488
  $wfList.querySelectorAll('.wf-option').forEach((o) => {
@@ -3,7 +3,7 @@
3
3
  <head>
4
4
  <meta charset="UTF-8">
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1">
6
- <title>floless.app — prompt-native front door to AWARE</title>
6
+ <title>FloLess Workspace</title>
7
7
  <meta name="theme-color" content="#1E3A5F" />
8
8
  <!-- Favicons (mirrors floless-web) -->
9
9
  <link rel="icon" type="image/svg+xml" href="/favicon.svg?v=2" />
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@floless/app",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "type": "module",
5
5
  "description": "Thin localhost host for floless.app — serves web/ and shells the aware CLI. No engine, no LLM.",
6
6
  "bin": {