You are not logged in.
Does anyone know what the new equivalent is for this old setting?
media_library_left_column = "A"Under 0.5.x, it used the "Album Artist" tag rather than "Artist" in the left most column which simplified the listing (reference). Thanks!
EDIT: Just read the post.install which showed where the skel was installed. The answer is:
media_library_primary_tag = album_artistLast edited by graysky (2014-09-09 14:49:10)
Offline
Thank you for this.
Also, how to call the help screen now? The man page still says to press 1, but it's now linked to the playlist.
Offline
@bonob try F1.
Offline
Fantastic, thanks a lot ![]()
Offline
The autocenter_mode settings does not work anymore. Any idea ?
Last edited by LeCrayonVert (2014-09-09 20:03:28)
I believe in a world I can and do understand. A rational universe, explained through rational means.
Offline
Do you mean ncmpcpp does not start anymore? If so, comment the line out in the configuration file. If you mean the function of centering in playlist view on the current song, use shift+u to toggle it.
Offline
Seems several config options have been broken/deprecated.
The two that I've experienced are
mpd_communication_modeand
visualizer_type = "spectrum" (spectrum/wave)not being recognized when I upgraded today.
Not much information in the changelog on the website either. Downgrading or simply commenting out the offending config options works fine though.
Offline
These are also not accepted:
#allow_physical_directories_deletion = "no"
#allow_physical_files_deletion = "no"Offline
Do you mean ncmpcpp does not start anymore? If so, comment the line out in the configuration file. If you mean the function of centering in playlist view on the current song, use shift+u to toggle it.
Yes I use shit+u to enable it...but the setting is not saved. I have to do that each time I start ncmpcpp.
I believe in a world I can and do understand. A rational universe, explained through rational means.
Offline
emeres wrote:Do you mean ncmpcpp does not start anymore? If so, comment the line out in the configuration file. If you mean the function of centering in playlist view on the current song, use shift+u to toggle it.
Yes I use shit+u to enable it...but the setting is not saved. I have to do that each time I start ncmpcpp.
Yes, I feel like you do exactly that. Next time provide relevant information when asking. Before you post a bug report**, do a proper troubleshooting first. Try to find other settings that do not get parsed correctly.
Comment by applebloom (2014-09-06 09:32)
There were some changes to the config parser: "spectrum" is replaced with "frequency" and "startup_screen" is now a string like "clock" or "playlist" (see file screen_type.cpp in the source for a list).
And read & compare your configuration with the new one from '/usr/share/doc/ncmpcpp/config'.
Note: ** The git version does not have a problem with parsing autocenter_mode.
Offline
Additional clarification: 'spectrum' being replaced by 'frequency' was a bug and is fixed in git.
Offline
emeres => thx, I'll use the git version of the package...how come a stable version has been replaced by a beta version anyway ?
I believe in a world I can and do understand. A rational universe, explained through rational means.
Offline
Ask the packager/maintainer about that, apparently it runs stable.
@unK Is there a way to disable listing playlists in the browser window?
Offline
No.
Offline
Why exactly are playlists displayed in the browser view in the first place? Is this for a special user case?
Offline
Is it just me, or are the vim-like key bindings for navigation not working anymore? I used to be able to use hjkl for moving up/down/left/right, but now I can only use the arrow keys.
Offline
From ncmpcpp-0.5.10-4, file keys contains:
#key_up = 259 'k'
#key_down = 258 'j'
#key_lyrics = 'l'The new bindings file mentions ~/.ncmpcpp/bindings while the manual still speaks of ~/.ncmpcpp/keys. The format/syntax has changed also.
Offline
Is it just me, or are the vim-like key bindings for navigation not working anymore? I used to be able to use hjkl for moving up/down/left/right, but now I can only use the arrow keys.
You need to create ~/.ncmpcpp/bindings. Example file in /usr/share/doc/ncmpcpp-0.6_beta2/bindings.bz2 (i think. I'm currently logged into gentoo). My bindings:
def_key "j"
scroll_down
def_key "k"
scroll_up
def_key "ctrl_j"
move_selected_items_down
def_key "ctrl_k"
move_selected_items_up
def_key "l"
next_column
def_key "l"
slave_screen
def_key "h"
previous_column
def_key "h"
master_screen
def_key "g"
move_home
def_key "G"
move_end
def_key "n"
next_found_item
def_key "N"
previous_found_item
def_key "I"
jump_to_browser
def_key "d"
delete_playlist_itemsBut look first for the example file. Some commands overlap.
Offline
Why exactly are playlists displayed in the browser view in the first place? Is this for a special user case?
It's just that when you fetch root music directory from MPD, you also get playlists.
Offline
I would be nice to have a option to disable it.
Offline
Seems several config options have been broken/deprecated.
The two that I've experienced are
mpd_communication_modeand
visualizer_type = "spectrum" (spectrum/wave)not being recognized when I upgraded today.
Not much information in the changelog on the website either. Downgrading or simply commenting out the offending config options works fine though.
Actually, ncmpcpp's website says this:
ncmpcpp-0.6_beta1
Support for polling communication mode has been removed. Additionally, MPD version >= 0.16 is required.
Last edited by ssri (2014-09-16 17:52:58)
Offline
Actually, ncmpcpp's website says this:
ncmpcpp-0.6_beta1
Support for polling communication mode has been removed. Additionally, MPD version >= 0.16 is required.
Yeah but you have to admit that this is still fairly vague compared to "mpd_communication_mode is now deprecated." Especially considering they only just now updated the config and bindings in the docs that come with the package.
Offline