feat: show REPO and PLAYLIST columns by default in list --all-repos#62
Open
feat: show REPO and PLAYLIST columns by default in list --all-repos#62
Conversation
When using 'runbox list --all-repos', the output now includes: - REPO column showing repository path (previously required --verbose) - PLAYLIST column showing the playlist display name for playlist items This provides better context when viewing runnables across multiple repositories.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
runbox list --all-repos(previously required--verbose)playlist_namein JSON output when--all-reposis usedChanges Made
crates/runbox-cli/src/main.rsplaylist_name: Option<String>field toRunnableInfostructif verbosetoif show_repo(whereshow_repo = all_repos || verbose)playlist_namefrom storage whenshow_repois truecrates/runbox-core/src/storage.rsget_runnable_playlist_name()method to retrieve playlist display name for runnable itemscrates/runbox-cli/tests/list.rstest_list_all_repos_shows_repo_and_playlist_columnstesttest_list_all_repos_json_includes_playlist_nametestExample Output
Before:
After (with
--all-repos):Testing Evidence
All 13 list tests pass:
Closes
Resolves ISSUE-021