-
Notifications
You must be signed in to change notification settings - Fork 230
Album artwork via Ueberzug #437
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
Open
evanc577
wants to merge
60
commits into
ncmpcpp:master
Choose a base branch
from
evanc577:artwork
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
60 commits
Select commit
Hold shift + click to select a range
b9a40c7
Artwork: Album art proof of concert
evanc577 73403d6
Artwork: Use POSIX_SPAWN_SETPGROUP rather than setsid
evanc577 8c2f9e8
Artwork: exec ueberzug directly without bash
evanc577 a05b7d5
Artwork: albumart_default_path and albumart_scaler config options
evanc577 6c832ee
Artwork: modular backend, fix artwork after popup
evanc577 3f9ebbf
Artwork: update config, bindings, and manpage
evanc577 08b2c5e
Artwork: reap forked process if exec() ueberzug fails
evanc577 81bab0d
Artwork: Use boost::process instead of fork/exec
evanc577 5ff50a0
Artwork: Minor fixes
evanc577 c988e3e
Configure: check for boost::process
evanc577 ce5f363
Artwork: Use boost::json
evanc577 ba32da6
Artwork: Use boost::property_tree rather than boost::json
evanc577 bc72fe5
Artwork: Various style fixes
evanc577 83e08c5
Artwork: Use MPD albumart API
evanc577 4a3bb59
Artwork: Add readpicture support for embedded art
evanc577 23f94ab
Artwork: Use queue of std::functions for worker
evanc577 693bf38
Artwork: Don't send too many requests to MPD
evanc577 6a50de8
Artwork: re-support local artwork
evanc577 f4332c0
Artwork: Allow configuration of album artwork sources
evanc577 3d7d7a7
Artwork: Proof of concept Kitty backend
evanc577 6a446d4
Artwork: Find Magick++ library and headers
evanc577 5349334
Artwork: Usable kitty backend
evanc577 098e208
Artwork: Optimize kitty backend
evanc577 f75bffa
Artwork: Postproccess all images
evanc577 536ac3e
Artwork: Support artwork alignment
evanc577 9fd6036
Artwork: clean up some code
evanc577 cc08ef9
Artwork: Fix checking wrong buffer after getting artwork from mpd
evanc577 540bb6a
Artwork: Fix wrong positioning with some images
evanc577 b3bd9fb
Artwork: Remove Kitty backend from docs
evanc577 90183f2
Artwork: Tidy up for merge
evanc577 0c353a7
Artwork: Don't allow empty albumart_sources config
evanc577 3e306ce
Artwork: Allow manual font size and image offset
evanc577 5e77b9c
Artwork: Fix compilation with artwork disabled
evanc577 f2e283d
Artwork: Workaround for <IM6 Blob::base64() being non-const
evanc577 13ae2f3
Artwork: Fix scrolling art off screen when user scrolls
evanc577 12d1166
Artwork: Change static functions to methods
evanc577 f6e3509
Artwork: Fix screen switching data races
evanc577 6c28c4b
Artwork: allow setting custom local files
evanc577 c5f4e0b
Artwork: Allow globs in albumart_filenames
evanc577 a74d041
Artwork: Re-order includes to fix compilation on some systems
evanc577 e55a565
Artwork: Add small LRU cache for rendered PNG images
evanc577 78cf8b4
Artwork: Remove unused includes, fix comment typo
evanc577 df758f0
Artwork: Add EscapedArtworkBackend
evanc577 b430b3d
Artwork: Use std::string for EscapedArtworkBackend
evanc577 59ff62a
Artwork: Add support for ueberzugpp
evanc577 5326836
Artwork: takeOutput return reference instead of copying
evanc577 ce94376
Add albumart_backend to example config
evanc577 e13a860
Artwork: Add magick++ dependency to readme
evanc577 a32d56e
Artwork: Fix new warnings
evanc577 4aabbe1
Artwork: Add slave screen example config to manpage
evanc577 641df18
Artwork: address PR comments
evanc577 7db66ce
Artwork: Use std::format
evanc577 49fed34
Artwork: Add a comment to Artwork::resetArtworkPosition
evanc577 b7d8f0b
Artwork: Read screen dimensions in main thread
evanc577 2b01a4c
Artwork: Remove typedefs
evanc577 63bb62a
Artwork: Update magick++ in configure script
evanc577 6710856
Artwork: Revert to boost::format
evanc577 4b29c5d
Artwork: Add artwork build to CI
evanc577 75fc943
Artwork: Add libmagick++ to CI
evanc577 80f755e
Artwork: Call resetArtworkPosition() if characters are printed via
evanc577 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -297,6 +297,9 @@ | |
| #def_key "8" | ||
| # show_visualizer | ||
| # | ||
| #def_key "9" | ||
| # show_artwork | ||
| # | ||
| #def_key "=" | ||
| # show_clock | ||
| # | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,6 +22,7 @@ | |
| #define NCMPCPP_MENU_IMPL_H | ||
|
|
||
| #include "menu.h" | ||
| #include "screens/artwork.h" | ||
|
|
||
| namespace NC { | ||
|
|
||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.