head 1.3; access; symbols pkgsrc-2013Q2:1.3.0.10 pkgsrc-2013Q2-base:1.3 pkgsrc-2012Q4:1.3.0.8 pkgsrc-2012Q4-base:1.3 pkgsrc-2011Q4:1.3.0.6 pkgsrc-2011Q4-base:1.3 pkgsrc-2011Q2:1.3.0.4 pkgsrc-2011Q2-base:1.3 pkgsrc-2009Q4:1.3.0.2 pkgsrc-2009Q4-base:1.3 pkgsrc-2008Q4:1.2.0.36 pkgsrc-2008Q4-base:1.2 pkgsrc-2008Q3:1.2.0.34 pkgsrc-2008Q3-base:1.2 cube-native-xorg:1.2.0.32 cube-native-xorg-base:1.2 pkgsrc-2008Q2:1.2.0.30 pkgsrc-2008Q2-base:1.2 cwrapper:1.2.0.28 pkgsrc-2008Q1:1.2.0.26 pkgsrc-2008Q1-base:1.2 pkgsrc-2007Q4:1.2.0.24 pkgsrc-2007Q4-base:1.2 pkgsrc-2007Q3:1.2.0.22 pkgsrc-2007Q3-base:1.2 pkgsrc-2007Q2:1.2.0.20 pkgsrc-2007Q2-base:1.2 pkgsrc-2007Q1:1.2.0.18 pkgsrc-2007Q1-base:1.2 pkgsrc-2006Q4:1.2.0.16 pkgsrc-2006Q4-base:1.2 pkgsrc-2006Q3:1.2.0.14 pkgsrc-2006Q3-base:1.2 pkgsrc-2006Q2:1.2.0.12 pkgsrc-2006Q2-base:1.2 pkgsrc-2006Q1:1.2.0.10 pkgsrc-2006Q1-base:1.2 pkgsrc-2005Q4:1.2.0.8 pkgsrc-2005Q4-base:1.2 pkgsrc-2005Q3:1.2.0.6 pkgsrc-2005Q3-base:1.2 pkgsrc-2005Q2:1.2.0.4 pkgsrc-2005Q2-base:1.2 pkgsrc-2005Q1:1.2.0.2 pkgsrc-2005Q1-base:1.2 pkgsrc-2004Q4:1.1.0.4 pkgsrc-2004Q4-base:1.1 pkgsrc-2004Q3:1.1.0.2 pkgsrc-2004Q3-base:1.1; locks; strict; comment @# @; 1.3 date 2009.02.07.18.38.06; author jakllsch; state dead; branches; next 1.2; 1.2 date 2005.03.19.16.54.51; author wiz; state Exp; branches; next 1.1; 1.1 date 2004.09.07.08.05.50; author simonb; state Exp; branches; next ; desc @@ 1.3 log @Update to ncmpc-0.13. Changes for versions since 0.11.1: ncmpc 0.13 - 2009-01-09 * added output configuration screen, default hotkey F8 * new --disable-locale configure option * new --disable-multibyte configure option; this allows you to disable wide character support, retaining multibyte character support * search with regular expressions ncmpc 0.12 - 2008-12-05 * added artist screen (tag browser) * added highly experimental lyrics screen (disabled by default) * removed clock screen * support wide characters * optimized memory usage * always try to reconnect after server failure * support unix domain sockets for the MPD connection * added compile-time "mini" option which produces the smallest possible ncmpc binary * added LIRC support * scroll long song names in the playlist * added command "locate" ('G') which locates a song in the database browser * added "song" screen ('i') which displays song information @ text @$NetBSD: patch-ab,v 1.2 2005/03/19 16:54:51 wiz Exp $ --- src/screen.c.orig 2005-01-23 18:37:42.000000000 +0100 +++ src/screen.c @@@@ -293,7 +293,7 @@@@ paint_status_window(mpdclient_t *c) if( c->song && seek_id == c->song->id ) elapsedTime = seek_target_time; g_snprintf(screen->buf, screen->buf_size, - " [%i:%02i/%i:%02i]", + " [%i:%02i/%i:%02i] ", elapsedTime/60, elapsedTime%60, status->totalTime/60, status->totalTime%60 ); } @ 1.2 log @Update to 0.11.1, provided by Robert Lillack in PR 29027. + Spanish translations from Jose Cedeno + Russian translations from Nikolay Pavlov + French translations from Yann Cézard + ncmpc now supports SIGSTOP and SIGCONT (Ctrl-Z) + ncmpc now hides the cursor on the help screen + ncmpc now can enqueue and play a song from the browse screen (Enter) + configuration changes: o ncmpc no longer supports the old configuration file syntax o the crossfade time can now be definied in (crossfade-time) o support for ncurses mouse events is now optional (enable-mouse) + bugfixes: o fixed short option handling for multiple short options o %time% format fix from Aurelien Foret (use %02d for seconds) o Fixed abort (Ctrl-G) handling when saving playlist o survive select/find operations on empty lists (Niko Tyni) @ text @d1 1 a1 1 $NetBSD: patch-ab,v 1.1 2004/09/07 08:05:50 simonb Exp $ @ 1.1 log @Pad out the time display on status line with an extra space so that the closing ']' doesn't disappear. Problem report and suggested fix sent on to musicpd folks. @ text @d1 1 a1 1 $NetBSD$ d3 1 a3 1 --- src/screen.c.orig 2004-07-09 17:49:42.000000000 +1000 d5 1 a5 1 @@@@ -267,7 +267,7 @@@@ paint_status_window(mpdclient_t *c) d8 1 a8 1 snprintf(screen->buf, screen->buf_size, @