Code

Renamed mpc-ncurses to ncmpc
authorKalle Wallin <kaw@linux.se>
Fri, 19 Mar 2004 14:18:57 +0000 (14:18 +0000)
committerKalle Wallin <kaw@linux.se>
Fri, 19 Mar 2004 14:18:57 +0000 (14:18 +0000)
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@295 09075e82-0dd4-0310-85a5-a0d7c8717e4f

ChangeLog
Makefile.am
README
configure.ac

index ca3354b216afdfa53f2138f36927dc3fdf0cb13a..69c8aea4d4a3d8152ee41b9e95c5c22b3fe95bec 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,5 @@
-0.1.2  * Fixed a bug introduced in version 0.1.1. The full path to files 
-         was printed in the browse screen (changed back to basename). 
        
-0.1.1  * Added support for utf-8 (MPD >= 0.10.0)
-       
-0.1.0  * First published version of mpc-ncurses
+0.10.0 * First version of ncmpc
 
 
        
index 82cfd5897af187cb6b0d9a88b9a8fd0e231788eb..9731afbec33046f948f601ac2f1dd0d40d9c8f29 100644 (file)
@@ -2,21 +2,21 @@
 # $Id: Makefile.am,v 1.5 2004/03/16 23:49:14 kalle Exp $
 #
 
-bin_PROGRAMS = mpc-ncurses
+bin_PROGRAMS = ncmpc
 man_MANS = doc/ncmpc.1
 pkgdata_DATA =
 docdir = $(prefix)/share/doc/$(PACKAGE)
 doc_DATA = AUTHORS README ChangeLog
 EXTRA_DIST = COPYING $(pkgdata_DATA) $(man_MANS) $(doc_DATA)
 
-mpc_ncurses_headers = libmpdclient.h mpc.h options.h command.h screen.h \
+ncmpc_headers = libmpdclient.h mpc.h options.h command.h screen.h \
               screen_utils.h screen_play.h screen_file.h screen_search.h \
              screen_help.h support.h
 
-mpc_ncurses_SOURCES = libmpdclient.c main.c mpc.c options.c command.c \
+ncmpc_SOURCES = libmpdclient.c main.c mpc.c options.c command.c \
                      screen.c screen_utils.c screen_play.c screen_file.c \
                      screen_search.c screen_help.c \
-                      support.c $(mpc_ncurses_headers)
+                      support.c $(ncmpc_headers)
 
 
 
diff --git a/README b/README
index f2deb592048db74ef81edc029316d3274a97d262..7367b13f03390d14f10a5612cb14a46c91a7252b 100644 (file)
--- a/README
+++ b/README
@@ -1,11 +1,11 @@
-mpc-ncurses is a ncurses client for MPD, the Music Player Daemon.  
+ncmpc is a ncurses client for MPD, the Music Player Daemon.  
 The client connects to a MPD running on a machine on the local network.
-By default,  mpc-ncurses  connects  to  localhost:2100.   This  can  be
+By default,  ncmpc  connects  to  localhost:2100.   This  can  be
 changed  either  at  compile-time,  or  by  exporting  the MPD_HOST and
 MPD_PORT environment variables, or by the command line  options  --host
 and --port.
 
-       $ mpc-ncurses --host=musicserver --port=44000
+       $ ncmpc --host=musicserver --port=44000
 
 
 Note!
@@ -15,9 +15,8 @@ and you dont use utf-8 as your  charset set the CHARSET enviroment variable.
        $ export CHARSET=ISO_8859-1
 
 
-
 Read more about MPD on http://www.musicpd.org
-Read more about mpc-ncurses on http://hem.bredband.net/kaw/apps/mpc-ncurses
+
 
 
 
index 0b39bec4a324505e94e0c0634abaf4b1f56a5c2d..8adb481ee7d26a49eee5b25eade0fb9ff563e663 100644 (file)
@@ -3,7 +3,7 @@ dnl  $Id: configure.ac,v 1.10 2004/03/18 09:33:43 kalle Exp $
 dnl
 
 AC_INIT(main.c)
-AM_INIT_AUTOMAKE(mpc-ncurses, 0.1.2)
+AM_INIT_AUTOMAKE(ncmpc, 0.10.0)
 
 dnl Check for programs
 AC_PROG_CC