v0.2 - drop fingerprinting, add LUFS cart normalisation, playlist save/load, editable history with TXT+CSV export

This commit is contained in:
2026-05-08 17:19:11 +10:00
parent 0c8900ac36
commit 95f74d813f
19 changed files with 679 additions and 483 deletions
+1 -1
View File
@@ -156,7 +156,7 @@ class CartSlot(QFrame):
self.btn_eject.clicked.connect(self._eject)
def load_track(self, filepath: str):
self.engine.load_track(self.cart_key, filepath)
self.engine.load_cart_track(self.cart_key, filepath)
name = os.path.basename(filepath)
short = name[:28] + "..." if len(name) > 28 else name
self.track_label.setText(short)