fix typo, update NEWS & version bump

master
unK 18 years ago
parent 48ba7cbcf2
commit d732c85537
  1. 15
      NEWS
  2. 2
      configure.in
  3. 2
      src/helpers.cpp

15
NEWS

@ -1,3 +1,18 @@
ncmpcpp-0.2.4
+ fixed bug with not null terminated strings on mac os x
+ support for renaming files in tiny tag editor
+ support for editing composer, performer and disc tag in mp3 files
+ support for user defined base seek time
+ support for user defined tag type in left column of media library
+ support for user defined display format in album column of media library
+ support for basic mpc commands and command line arguments
+ adding items to playlist can be done like in ncmpc
+ fetching lyrics and artist's info doesn't lock ncmpcpp anymore
+ changed place of storing config files
+ list of recently used patterns in tag editor is now remembered
ncmpcpp-0.2.3
+ new screen - complex tag editor (with albums/directories view)

@ -1,7 +1,7 @@
AC_INIT(configure.in)
AM_CONFIG_HEADER(config.h)
AM_INIT_AUTOMAKE(ncmpcpp, 0.2.4_pre)
AM_INIT_AUTOMAKE(ncmpcpp, 0.2.4)
AC_PREREQ(2.59)

@ -77,7 +77,7 @@ bool ParseArgv(vector<string> &v)
if (*it == "-v" || *it == "--version")
{
cout << "ncmpcpp version: " << VERSION << endl
<< "build with support for:"
<< "built with support for:"
# ifdef HAVE_CURL_CURL_H
<< " curl"
# endif

Loading…
Cancel
Save