chore(embedded): cut v0.0.27-beta
Some checks failed
Notify chart dev on beta cut / notify-chart-dev (push) Failing after 5s
Some checks failed
Notify chart dev on beta cut / notify-chart-dev (push) Failing after 5s
This commit is contained in:
parent
8473ed3393
commit
4830cec2f8
7 changed files with 31 additions and 20 deletions
|
|
@ -2717,7 +2717,7 @@ td[data-field="trackingNumber"] {
|
|||
</svg>
|
||||
<div class="header-title-group">
|
||||
<span class="app-header__title">ZDDC Archive</span>
|
||||
<span class="build-timestamp"><span style="color:red;font-weight:bold">v0.0.27-beta · 2026-06-15 14:32:01 · 0d8125a</span></span>
|
||||
<span class="build-timestamp"><span style="color:red;font-weight:bold">v0.0.27-beta · 2026-06-15 14:57:53 · 8473ed3</span></span>
|
||||
</div>
|
||||
<button id="addDirectoryBtn" class="btn btn-primary">Use Local Directory</button>
|
||||
<button id="refreshHeaderBtn" class="btn btn-secondary hidden" title="Refresh Data">⟳</button>
|
||||
|
|
|
|||
|
|
@ -2824,7 +2824,7 @@ li.CodeMirror-hint-active {
|
|||
</svg>
|
||||
<div class="header-title-group">
|
||||
<span class="app-header__title">ZDDC Browse</span>
|
||||
<span class="build-timestamp"><span style="color:red;font-weight:bold">v0.0.27-beta · 2026-06-15 14:32:01 · 0d8125a</span></span>
|
||||
<span class="build-timestamp"><span style="color:red;font-weight:bold">v0.0.27-beta · 2026-06-15 14:57:53 · 8473ed3</span></span>
|
||||
</div>
|
||||
<button id="addDirectoryBtn" class="btn btn-primary">Use Local Directory</button>
|
||||
<button id="refreshHeaderBtn" class="btn btn-secondary hidden" title="Refresh listing" aria-label="Refresh listing">⟳</button>
|
||||
|
|
|
|||
|
|
@ -2421,7 +2421,7 @@ input.tfile__name:focus { border-color: var(--primary); background: var(--bg); o
|
|||
</svg>
|
||||
<div class="header-title-group">
|
||||
<span class="app-header__title">ZDDC Classifier</span>
|
||||
<span class="build-timestamp"><span style="color:red;font-weight:bold">v0.0.27-beta · 2026-06-15 14:32:01 · 0d8125a</span></span>
|
||||
<span class="build-timestamp"><span style="color:red;font-weight:bold">v0.0.27-beta · 2026-06-15 14:57:53 · 8473ed3</span></span>
|
||||
</div>
|
||||
<button id="addDirectoryBtn" class="btn btn-primary">Use Local Directory</button>
|
||||
<button id="refreshHeaderBtn" class="btn btn-secondary hidden" title="Refresh and rescan directory" aria-label="Refresh" style="font-size:1.1rem;">⟳</button>
|
||||
|
|
@ -10083,33 +10083,39 @@ X.B(E,Y);return E}return J}())
|
|||
var visible = null; // { folders, files } while filtering, else null
|
||||
function computeVisible() {
|
||||
var c = window.app.modules.classify;
|
||||
var folders = Object.create(null), files = Object.create(null);
|
||||
var folders = Object.create(null), files = Object.create(null), counts = Object.create(null);
|
||||
var nf = filterActive();
|
||||
function walk(folder, ancMatched) {
|
||||
var selfMatch = nf && nameHit(folder.path || folder.name);
|
||||
var matched = ancMatched || selfMatch;
|
||||
var show = false, hasFile = false, descMatch = false;
|
||||
// Post-filter counts for the row's "direct+total" badge: direct =
|
||||
// immediate visible children/files, total = visible across the subtree.
|
||||
var dDir = 0, tDir = 0, dFile = 0, tFile = 0;
|
||||
(folder.children || []).forEach(function (ch) {
|
||||
var r = walk(ch, matched);
|
||||
if (r.show) show = true;
|
||||
if (r.show) { show = true; dDir++; tDir += 1 + r.tDir; }
|
||||
if (r.hasFile) hasFile = true;
|
||||
if (r.subtreeMatch) descMatch = true; // a child leads to a match
|
||||
tFile += r.tFile;
|
||||
});
|
||||
(folder.files || []).forEach(function (f) {
|
||||
hasFile = true;
|
||||
if (!classifyAllows(f)) return;
|
||||
var fileMatch = nf && nameHit(c.srcKeyForFile(f));
|
||||
if (!nf || matched || fileMatch) { files[c.srcKeyForFile(f)] = true; show = true; }
|
||||
if (!nf || matched || fileMatch) { files[c.srcKeyForFile(f)] = true; show = true; dFile++; }
|
||||
if (fileMatch) descMatch = true; // a match sits directly in this folder
|
||||
});
|
||||
tFile += dFile;
|
||||
if (matched) show = true;
|
||||
// "Show Empty" off → hide folders whose whole subtree holds no files.
|
||||
if (!hasFile && !showEmpty && !matched) show = false;
|
||||
if (show) folders[folder.path] = true;
|
||||
return { show: show, hasFile: hasFile, subtreeMatch: descMatch || selfMatch };
|
||||
counts[folder.path] = { dDir: dDir, tDir: tDir, dFile: dFile, tFile: tFile };
|
||||
return { show: show, hasFile: hasFile, subtreeMatch: descMatch || selfMatch, tDir: tDir, tFile: tFile };
|
||||
}
|
||||
(window.app.folderTree || []).forEach(function (root) { walk(root, false); });
|
||||
return { folders: folders, files: files };
|
||||
return { folders: folders, files: files, counts: counts };
|
||||
}
|
||||
function folderShown(folder) { return !visible || !!visible.folders[folder.path]; }
|
||||
function fileShown(file) {
|
||||
|
|
@ -10183,8 +10189,13 @@ X.B(E,Y);return E}return J}())
|
|||
const done = st === 'done';
|
||||
// When fully scanned both numbers are blue; .done turns the labels blue too.
|
||||
if (done) el.classList.add('done');
|
||||
const dDir = folder.subdirCount || 0, tDir = folder.runDirs || 0;
|
||||
const dFile = folder.fileCount || 0, tFile = folder.runFiles || 0;
|
||||
// While a filter (autofilter or a Show checkbox) is narrowing the tree,
|
||||
// the badge counts what's VISIBLE; otherwise the raw scanned totals.
|
||||
const vc = visible && visible.counts && visible.counts[folder.path];
|
||||
const dDir = vc ? vc.dDir : (folder.subdirCount || 0);
|
||||
const tDir = vc ? vc.tDir : (folder.runDirs || 0);
|
||||
const dFile = vc ? vc.dFile : (folder.fileCount || 0);
|
||||
const tFile = vc ? vc.tFile : (folder.runFiles || 0);
|
||||
|
||||
const frag = document.createDocumentFragment();
|
||||
frag.appendChild(document.createTextNode('('));
|
||||
|
|
|
|||
|
|
@ -1793,7 +1793,7 @@ body {
|
|||
</svg>
|
||||
<div class="header-title-group">
|
||||
<span class="app-header__title">ZDDC</span>
|
||||
<span class="build-timestamp"><span style="color:red;font-weight:bold">v0.0.27-beta · 2026-06-15 14:32:01 · 0d8125a</span></span>
|
||||
<span class="build-timestamp"><span style="color:red;font-weight:bold">v0.0.27-beta · 2026-06-15 14:57:53 · 8473ed3</span></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
|
|
|
|||
|
|
@ -2770,7 +2770,7 @@ dialog.modal--narrow {
|
|||
</svg>
|
||||
<div class="header-title-group">
|
||||
<span class="app-header__title">ZDDC Transmittal</span>
|
||||
<span class="build-timestamp"><span style="color:red;font-weight:bold">v0.0.27-beta · 2026-06-15 14:32:01 · 0d8125a</span></span>
|
||||
<span class="build-timestamp"><span style="color:red;font-weight:bold">v0.0.27-beta · 2026-06-15 14:57:52 · 8473ed3</span></span>
|
||||
</div>
|
||||
<span id="no-js-notice" class="text-gray-400 text-xs italic">JavaScript not available</span>
|
||||
<!-- Publish split-button (Transmittal-specific primary action;
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
# Generated by build.sh — do not edit. One <app>=<build label> per line.
|
||||
archive=v0.0.27-beta · 2026-06-15 14:32:01 · 0d8125a
|
||||
transmittal=v0.0.27-beta · 2026-06-15 14:32:01 · 0d8125a
|
||||
classifier=v0.0.27-beta · 2026-06-15 14:32:01 · 0d8125a
|
||||
landing=v0.0.27-beta · 2026-06-15 14:32:01 · 0d8125a
|
||||
form=v0.0.27-beta · 2026-06-15 14:32:01 · 0d8125a
|
||||
tables=v0.0.27-beta · 2026-06-15 14:32:01 · 0d8125a
|
||||
browse=v0.0.27-beta · 2026-06-15 14:32:01 · 0d8125a
|
||||
archive=v0.0.27-beta · 2026-06-15 14:57:53 · 8473ed3
|
||||
transmittal=v0.0.27-beta · 2026-06-15 14:57:52 · 8473ed3
|
||||
classifier=v0.0.27-beta · 2026-06-15 14:57:53 · 8473ed3
|
||||
landing=v0.0.27-beta · 2026-06-15 14:57:53 · 8473ed3
|
||||
form=v0.0.27-beta · 2026-06-15 14:57:53 · 8473ed3
|
||||
tables=v0.0.27-beta · 2026-06-15 14:57:53 · 8473ed3
|
||||
browse=v0.0.27-beta · 2026-06-15 14:57:53 · 8473ed3
|
||||
|
|
|
|||
|
|
@ -1770,7 +1770,7 @@ body.is-elevated::after {
|
|||
</svg>
|
||||
<div class="header-title-group">
|
||||
<span class="app-header__title" id="table-title">ZDDC Table</span>
|
||||
<span class="build-timestamp"><span style="color:red;font-weight:bold">v0.0.27-beta · 2026-06-15 14:32:01 · 0d8125a</span></span>
|
||||
<span class="build-timestamp"><span style="color:red;font-weight:bold">v0.0.27-beta · 2026-06-15 14:57:53 · 8473ed3</span></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
|
|
|
|||
Loading…
Reference in a new issue