Code

Documentation update.
authorKalle Wallin <kaw@linux.se>
Fri, 23 Apr 2004 16:48:31 +0000 (16:48 +0000)
committerKalle Wallin <kaw@linux.se>
Fri, 23 Apr 2004 16:48:31 +0000 (16:48 +0000)
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@878 09075e82-0dd4-0310-85a5-a0d7c8717e4f

ChangeLog
NEWS
TODO
doc/ncmpc.1

index d2ab05d22362b2050a951c368c770708909fe2a5..330406d1c8636cf1a06db6a18ff3d9cbe12bc901 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,17 @@
+2004-04-23 Kalle Wallin <kaw@linux.se>
+       * Updated Changelog, TODO, NEWS and the manual page.
+
+2004-04-22 Kalle Wallin <kaw@linux.se>
+       * Added smart delete and add (#0000220), at the moment only used 
+               when deleting or adding a single song.
+       * mpc.c: make shure selections in the browse screen is updated 
+                when the playlist updated
+         
+       
+2004-04-21 Kalle Wallin <kaw@linux.se>
+       * Fixed resize handling (SIGWINCH), problems may still occur when
+         ncmpc is inside some of ncurses [w]getstr functions.
+       
 2004-04-20 Kalle Wallin <kaw@linux.se>
        * Added support for seeking 
        * Added crossfade support
diff --git a/NEWS b/NEWS
index a09f8d3b2fde26434bebcbb88d3f2ed69e1a308d..bb56a46cdbfba6b1145e0aad57315f221696f0d2 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,17 @@
 
+ncmpc-0.10.1 
+
+ + support for user key bindings (~/.ncmpc/keys)
+ + a key configuration screen (press 'K')
+ + fixed resize event (SIGWINCH) handling.
+ + improved drawing routines (removes flickering)
+ + support for seeking, toggle crossfade 
+ + support for a wide (like cplay) cursor (se the man page for details)
+ + display mpd status flags on the second row [rzx] (repeat,random,crossfade)
+ + support for system-wide configuration files (config,keys)
+ + the user configuration file is moved to ~/.ncmpc/config
+ + and some small changes (view the ChangeLog for details)
 
        
+
+
diff --git a/TODO b/TODO
index 03300192c369ca545b10575c317bfc38f8b522bb..a09a8a24e7ebb88c3901e0c0517fcece08f6f552 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,20 +1,18 @@
 
 client functions
 ----------------------------------------------------------------------------
+  * move songs in playlists
   * search screen
   * id3 browser
 
 ncurses
 ----------------------------------------------------------------------------
-  * customizable keybindings
-  * improve list drawing (faster) 
-  
+  * a small line editor (with history and support for KEY_RESIZE).
 
 other
 ----------------------------------------------------------------------------
   * internationalization - gettext
-  * SIGWINCH handling
-
+  * A cleanup would be nice
 
 
 
index ec83e888ca7b52c491bcfb5e6ae27ac1102f8692..ca89ded3803b5fe9814a3f6a318747e6c3fcc0f8 100644 (file)
@@ -1,4 +1,4 @@
-.TH "ncmpc" "1" "0.10.0" "Kalle Wallin" ""
+.TH "ncmpc" "1" "April 2004" "" ""
 .SH "NAME"
 ncmpc \- curses Music Player Daemon (MPD) client.
 .SH "SYNOPSIS"
@@ -46,15 +46,55 @@ Specify MPD host.
 Connect to server on PORT.
 .TP 
 .B \-P, \-\-password=PASSWORD
-Connect top MPD with a password.
+Use password when connecting.
 .TP 
 Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options.
+.SH "CONFIGURATION"
+When ncmpc start it tries to read user setting from the ~/ncmpc/config file. If no user configuration is found ncmpc tries to load global settings from $SYSCONFDIR/ncmpc/config (the actual path is displayed on the help screen). An example configuration file (config.sample) should be provided with ncmpc.
+
+Avalible colors: black, red, green, yellow, blue, magenta, cyan and white.
+
+Supported configuration options:
+.TP 
+.B auto_center = yes|no
+Enable/disable auto center mode. When auto center mode is enabled 
+ncmpc centers the current track in the playlist window.
+.TP 
+.B wide_cursor = yes|no
+Make the cursor as wide as the screen.
+.TP 
+.B enable_colors = yes|no
+Enable/disable colors.
+.TP 
+.B title_color = color
+Set the text color for the title row (first row).
+.TP 
+.B line_color = color
+Set the color of the line on the second row.
+.TP 
+.B list_color = color
+Set the text color in the main area of ncmpc.
+.TP 
+.B progress_color = color
+Set the color of the progress indicator.
+.TP 
+.B status_color = color
+Set the text color used in the status window (last row). 
+.TP 
+.B alert_color = color
+Text color used to display alerts in the status window.
 .SH "KEYS"
-You can view ncmpc's key bindings by pressing F1 (help) when 
-ncmpc is running.
-.SH "CONFIGURATION FILE"
-When ncmpc start it read user setting from ~/.ncmpcrc. An example file ncmpcrc.sample should be provided with ncmpc.
+When ncmpc start it tries to read user key bindings from the ~/ncmpc/keys file. If no user key bindings is found ncmpc tries to load global key bindings from $SYSCONFDIR/ncmpc/keys (the actual path is displayed on the help screen). 
+
+You can view ncmpc's key bindings by pressing '1' (help) when 
+ncmpc is running. To edit key bindings use the key editor in ncmpc (press 'K').
+.SH "BUGS"
+Report bugs on http://www.musicpd.org/mantis/
+.SH "NOTE"
+Since MPD uses UTF\-8, ncmpc needs to convert characters to the 
+charset used by the local system. If you get character conversion errors when your running ncmpc you probably need to set up your locale. This is done by setting any of the LC_CTYPE, LANG or LC_ALL enviroment variables (LC_CTYPE only affects character handling). For example if you want UK settings and use bash you should add the following line to your /etc/profile:
 
+  export LC_CTYPE=en_UK
 
-.SH "SEE ALSO"
-mpc(1), MPD(1)
+.SH "SE ALSO"
+mpc(1), mpd(1), locale(5), locale(7)