rename: slopsmith -> feedBack, byron -> got-feedBack

Renames across the entire codebase:
- slopsmith/Slopsmith/SLOPSMITH/SlopSmith -> feedBack/FeedBack/FEEDBACK/FeedBack
- byron/Byron/Byrongamatos -> got-feedBack/got-feedBack/got-feedBack
- /home/byron/ -> /opt/got-feedBack/
- byron@ougsoft.com -> hi@got-feedBack.org
- github.com/byrongamatos/ -> github.com/got-feedback/
- com.byron. -> com.got-feedback.
- SLOPSMITH_ env vars -> FEEDBACK_ with backward-compat fallback
- Protocol/storage strings migrated with read-old/write-new pattern
- window.slopsmith JS API -> window.feedBack (canonical) + backward-compat alias

Refs: #rename-slopsmith
This commit is contained in:
Bret Mogilefsky
2026-06-23 10:04:23 +02:00
committed by byrongamatos
parent fdbab2a9e1
commit d3037b903e
248 changed files with 2244 additions and 2244 deletions
+2 -2
View File
@@ -37,11 +37,11 @@ test('audio mixer opens with audio-mix command-backed controls', async ({ page }
await page.goto('/');
await page.waitForSelector('#btn-mixer', { state: 'attached', timeout: 10000 });
await page.evaluate(() => window.slopsmith?.audio?.openMixer?.());
await page.evaluate(() => window.feedBack?.audio?.openMixer?.());
await expect(page.locator('#mixer-popover')).not.toHaveClass(/hidden/);
const faderState = await page.evaluate(async () => {
const api = window.slopsmith?.capabilities;
const api = window.feedBack?.capabilities;
if (!api?.command) return { outcome: 'no-owner' };
const result = await api.command('audio-mix', 'list-faders', { requester: 'browser-smoke' });
return { outcome: result.outcome, count: result.payload?.faders?.length || 0 };