Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

web: Improve UI with bootstrap 4 #3079

Closed
wants to merge 42 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
135f63a
web: Improve UI with bootstrap 3
matlads Nov 10, 2018
4130fac
web: slight update to the documentation. New image
matlads Nov 10, 2018
02228d2
web: changelog entry
matlads Nov 10, 2018
a848cfc
Numerous fixes
matlads Dec 3, 2018
9e43d63
Merge branch 'master' into master
matlads Dec 3, 2018
5f93d65
Fix docs build.
matlads Dec 3, 2018
5f9be2d
Added active attribute to playing element
waweic Dec 16, 2018
67ac7e7
Make Play-Button resume instead of restarting
waweic Dec 16, 2018
7629c04
Fix Interaction between Play/Pause-Button and list
waweic Dec 16, 2018
8762125
Fix playing the next track
waweic Dec 16, 2018
1d02102
Merge pull request #1 from waweic/web_fixes
matlads Dec 18, 2018
9b362c7
Merge remote-tracking branch 'upstream/master'
matlads Jan 30, 2019
1ec3f19
Merge remote-tracking branch 'upstream/master'
matlads Mar 15, 2019
b5381ca
Add missing bootstrap.js file
matlads Mar 15, 2019
38258d6
Fix troubles trying too seek in the music with the progress bar
matlads Mar 15, 2019
0e96dc2
Merge branch 'master' of github.com:matlads/beets
matlads Mar 15, 2019
5981109
Add a view-button (eye) to allow viewing metatdata
matlads Mar 15, 2019
0c6daf9
Allow playlist items to be drag and dropped reordered
matlads Mar 15, 2019
68d7677
Move to bootstrap 4.3.1
matlads Mar 16, 2019
47a0de9
Only show art when the album has artwork
matlads Mar 16, 2019
8fbd018
Reference the proper bootstrap bundle css file
matlads Mar 16, 2019
cc56d5d
Properly indent the link to Groups. so that tox -e docs is happy
matlads Mar 16, 2019
8fd67ed
Travis: explicitly test setting libgles2-mesa-lts-utopic as a dep
matlads Mar 16, 2019
616737e
Revert "Travis: explicitly test setting libgles2-mesa-lts-utopic as a…
matlads Mar 16, 2019
111f28c
Travis: explicitly test removing gstreamer1.0-plugins-bad as a dep
matlads Mar 16, 2019
cb0fae9
Do not show the album art when there is no art
matlads Mar 16, 2019
af6eecd
Revert "Travis: explicitly test removing gstreamer1.0-plugins-bad as …
matlads Mar 16, 2019
46a0658
Update travis.yml
matlads Mar 16, 2019
f5ba92a
Update travis.yml
matlads Mar 16, 2019
0de9ec9
Specify the proper name for the tox env for 3.7
matlads Mar 16, 2019
7f4793c
Travis: Specify proper apt-get invokation
matlads Mar 16, 2019
f67644c
Travis: Use the apt addons
matlads Mar 16, 2019
5bc5956
Travis: User site-packages are not visible in the travis virtualenv
matlads Mar 16, 2019
3c767e3
Merge remote-tracking branch 'upstream/master'
matlads Apr 1, 2019
9907b5b
Sync up travis.yml with upstream - hallelujah
matlads Apr 1, 2019
d0446f4
Drop back to fa 4.7
matlads Apr 1, 2019
cdba0de
Remove bootstrap-theme css files. Only useful if on Bootstrap3
matlads Apr 1, 2019
5d54e3d
Add stats page view
matlads Apr 2, 2019
db3887a
Use vm.js and reuseView() to preserve views upon routing
matlads Apr 2, 2019
2ad269c
Add a searchView so that we can keep the events on the inputs, button…
matlads Apr 2, 2019
a7c94df
WIP: beets.js
matlads Apr 5, 2019
856ff95
Merge remote-tracking branch 'upstream/master'
matlads May 25, 2019
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 beetsplug/web/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ def _rep(obj, expand=False):
return out

elif isinstance(obj, beets.library.Album):
out['hasart'] = 0
if out['artpath']:
out['hasart'] = 1
del out['artpath']
if expand:
out['items'] = [_rep(item) for item in obj.items()]
Expand Down
Loading