IMPROVE: thêm tập tin LICENSE của dự án

This commit is contained in:
2026-08-08 07:20:09 +07:00
parent 8e3c652551
commit 9ef622f29a
9 changed files with 373 additions and 1 deletions
+4
View File
@@ -75,6 +75,10 @@ app.include_router(plugins_router, prefix="/api/v1/plugins", tags=["plugins"])
app.include_router(media_router, prefix="/api/v1/media", tags=["media"])
@app.get("/health")
async def health():
return {"status": "ok"}
@app.get("/", response_class=HTMLResponse)
async def get_index():
index_path = os.path.join(settings.TEMPLATES_DIR, "index.html")
+1 -1
View File
@@ -14273,7 +14273,7 @@ const App = () => {
setInstrumentDropdownTrackId(null);
setInstrumentDropdownBtnRect(null);
setSynthCategory(null);
// Trigger SpessaSynth load + program change when soundfont instrument selected
// Trigger FluidSynth load + program change when soundfont instrument selected
if (window.SonicSF && window.SonicSF.selectInstrument && instrumentId && isSfInstrument) {
const sfId = instrumentId.replace('sf_', '');
window.SonicSF.selectInstrument(mch, sfBank || 0, sfProg || 0, sfId);