mirror of
https://github.com/got-feedBack/feedBack.git
synced 2026-09-13 08:29:28 +00:00
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:
committed by
byrongamatos
parent
fdbab2a9e1
commit
d3037b903e
@@ -7,7 +7,7 @@ test('legacy audio fader and analyser bridges stay visible in browser diagnostic
|
||||
const result = await page.evaluate(() => {
|
||||
const appWindow = window as any;
|
||||
let faderValue = 1;
|
||||
appWindow.slopsmith.audio.registerFader({
|
||||
appWindow.feedBack.audio.registerFader({
|
||||
id: 'browser-smoke',
|
||||
label: 'Browser Smoke',
|
||||
min: 0,
|
||||
@@ -17,14 +17,14 @@ test('legacy audio fader and analyser bridges stay visible in browser diagnostic
|
||||
getValue: () => faderValue,
|
||||
setValue: (value: number) => { faderValue = value; },
|
||||
});
|
||||
appWindow.slopsmith.audioSession.recordBridgeHit({
|
||||
appWindow.feedBack.audioSession.recordBridgeHit({
|
||||
domain: 'audio-mix',
|
||||
bridgeId: 'audio-mix.analyser',
|
||||
legacySurface: 'browser smoke analyser',
|
||||
participantId: 'highway_3d',
|
||||
});
|
||||
const snapshot = appWindow.slopsmith.audioSession.snapshot();
|
||||
const diagnostics = appWindow.slopsmith.capabilities.snapshotDiagnostics();
|
||||
const snapshot = appWindow.feedBack.audioSession.snapshot();
|
||||
const diagnostics = appWindow.feedBack.capabilities.snapshotDiagnostics();
|
||||
return {
|
||||
hasFader: snapshot.domains['audio-mix'].participants.some((entry: any) => entry.participantId === 'fader.browser-smoke'),
|
||||
hasAnalyserBridge: snapshot.domains['audio-mix'].bridges.some((entry: any) => entry.bridgeId === 'audio-mix.analyser'),
|
||||
|
||||
Reference in New Issue
Block a user