Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
c8d9357
feat(playlist_curator): port blueprint for single-server architecture
rendyhd Apr 10, 2026
6c3fde5
feat(playlist_curator): port template for single-server architecture
rendyhd Apr 10, 2026
0d55cba
feat(playlist_curator): register blueprint and add sidebar nav link
rendyhd Apr 10, 2026
008b9f1
feat(playlist_curator): flag near-duplicate results in extend mode
rendyhd Apr 12, 2026
d62dc1c
style(playlist_curator): integrate duplicate controls into extend par…
rendyhd Apr 12, 2026
f0799e0
fix(playlist_curator): tune duplicate detection defaults and UI polish
rendyhd Apr 12, 2026
13717ff
feat(playlist_curator): influence-based weights, score-aware filters,…
rendyhd Apr 12, 2026
9c8ea37
fix(playlist_curator): smart filter dropdown in playlist extender
rendyhd Apr 12, 2026
e801d1b
fix(playlist_curator): skip duplicate annotation when disabled, fix d…
rendyhd Apr 13, 2026
5391cfe
Merge branch 'main' into feature/playlist-curator-port
rendyhd Apr 13, 2026
0789258
Merge branch 'NeptuneHub:main' into feature/playlist-curator-port
rendyhd Apr 13, 2026
4b4c02e
Proxy audio streams through backend instead of redirecting
rendyhd Apr 14, 2026
d9e4d1a
Fix curator UI: progress bar, responsive layout, duplicate control, s…
rendyhd Apr 14, 2026
30d015b
Merge remote-tracking branch 'origin/main' into feature/playlist-cura…
rendyhd Apr 14, 2026
da67822
Tighten curator UI: duplicate-mode selector width, Influence header t…
rendyhd Apr 14, 2026
6ce4488
Merge branch 'feature/playlist-curator-port' of https://github.com/re…
rendyhd Apr 14, 2026
cd44c24
Merge branch 'main' into feature/playlist-curator-port
rendyhd Apr 15, 2026
a130234
Polish curator UI: tab-aware header, Avoid rename, header info tooltips
rendyhd Apr 15, 2026
7a5cf29
Force LF for CSS/HTML/JS files
rendyhd Apr 15, 2026
cecc5f1
Merge branch 'main' into feature/playlist-curator-port
rendyhd Apr 15, 2026
612501b
Fix curator: cancel stale search when weights change
rendyhd Apr 15, 2026
3393284
Merge branch 'main' into feature/playlist-curator-port
rendyhd Apr 21, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,7 @@
*.sh text eol=lf
*.py text eol=lf
*.conf text eol=lf
*.css text eol=lf
*.html text eol=lf
*.js text eol=lf
Dockerfile* text eol=lf
2 changes: 2 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -657,6 +657,7 @@ def listen_for_index_reloads():
from app_clap_search import clap_search_bp
from app_mulan_search import mulan_search_bp
from app_backup import backup_bp
from app_playlist_curator import playlist_curator_bp
from app_dashboard import dashboard_bp
from app_users import users_bp

Expand All @@ -676,6 +677,7 @@ def listen_for_index_reloads():
app.register_blueprint(clap_search_bp)
app.register_blueprint(mulan_search_bp)
app.register_blueprint(backup_bp)
app.register_blueprint(playlist_curator_bp)
app.register_blueprint(migration_bp)
app.register_blueprint(dashboard_bp)
app.register_blueprint(users_bp)
Expand Down
Loading
Loading