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
+4 -4
View File
@@ -116,8 +116,8 @@
if (r.ok) {
const profile = await r.json();
applyCosmetics(profile.cosmetics);
if (window.slopsmith && typeof window.slopsmith.emit === 'function') {
window.slopsmith.emit('v3:cosmetics-applied', profile.cosmetics || {});
if (window.feedBack && typeof window.feedBack.emit === 'function') {
window.feedBack.emit('v3:cosmetics-applied', profile.cosmetics || {});
}
}
} catch (e) { /* offline — keep current look */ }
@@ -134,7 +134,7 @@
refresh();
// Re-apply when an equip/unequip happens anywhere (shop screen, capability
// command from a plugin).
if (window.slopsmith && typeof window.slopsmith.on === 'function') {
window.slopsmith.on('progression:cosmetic-equipped', refresh);
if (window.feedBack && typeof window.feedBack.on === 'function') {
window.feedBack.on('progression:cosmetic-equipped', refresh);
}
})();