mirror of
https://github.com/got-feedBack/feedBack.git
synced 2026-09-17 10:20:09 +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
@@ -69,14 +69,14 @@ test('player arrangement pin saves the selected arrangement name', async ({ page
|
||||
.join('');
|
||||
select.value = '2';
|
||||
// @ts-ignore - browser app namespace
|
||||
window.slopsmith.currentSong = {
|
||||
window.feedBack.currentSong = {
|
||||
filename: 'demo.archive',
|
||||
arrangement: 'Rhythm',
|
||||
arrangementIndex: 2,
|
||||
arrangements,
|
||||
};
|
||||
// @ts-ignore - browser app namespace
|
||||
window.slopsmith.emit('song:loaded', window.slopsmith.currentSong);
|
||||
window.feedBack.emit('song:loaded', window.feedBack.currentSong);
|
||||
});
|
||||
|
||||
const pin = page.locator('#arr-default-pin');
|
||||
@@ -137,14 +137,14 @@ test('player arrangement pin preserves non-built-in arrangement names', async ({
|
||||
.join('');
|
||||
select.value = '2';
|
||||
// @ts-ignore - browser app namespace
|
||||
window.slopsmith.currentSong = {
|
||||
window.feedBack.currentSong = {
|
||||
filename: 'demo.archive',
|
||||
arrangement: 'Rhythm',
|
||||
arrangementIndex: 2,
|
||||
arrangements,
|
||||
};
|
||||
// @ts-ignore - browser app namespace
|
||||
window.slopsmith.emit('song:loaded', window.slopsmith.currentSong);
|
||||
window.feedBack.emit('song:loaded', window.feedBack.currentSong);
|
||||
});
|
||||
|
||||
await page.locator('#arr-default-pin').click();
|
||||
@@ -191,14 +191,14 @@ test('failed settings save does not mark arrangement default as persisted', asyn
|
||||
.join('');
|
||||
select.value = '2';
|
||||
// @ts-ignore - browser app namespace
|
||||
window.slopsmith.currentSong = {
|
||||
window.feedBack.currentSong = {
|
||||
filename: 'demo.archive',
|
||||
arrangement: 'Rhythm',
|
||||
arrangementIndex: 2,
|
||||
arrangements,
|
||||
};
|
||||
// @ts-ignore - browser app namespace
|
||||
window.slopsmith.emit('song:loaded', window.slopsmith.currentSong);
|
||||
window.feedBack.emit('song:loaded', window.feedBack.currentSong);
|
||||
});
|
||||
|
||||
const pin = page.locator('#arr-default-pin');
|
||||
|
||||
Reference in New Issue
Block a user