update NEWS & version bump

This commit is contained in:
unK
2008-09-20 22:00:22 +02:00
parent aa80c13c2e
commit d992af15b0
3 changed files with 22 additions and 2 deletions

18
NEWS
View File

@@ -1,3 +1,21 @@
ncmpcpp-0.2.3
+ new screen - complex tag editor (with albums/directories view)
+ brand new song info screen (old one removed)
+ support for renaming files and directories
+ support for reading tags from filename
+ support for editing artist and album in media library
+ support for playlist renaming
+ support for following lyrics of now playing song
+ support for fetching artist's info from last.fm
+ fixed compilation for Mac OS X and *BSD
+ fixed compilation for older gcc versions
+ extended configuration (e.g. all colors can be user-defined)
+ 'repeat one song' mode works with random mode now
+ incremental seeking (old behaviour is still available through config)
+ a bunch of fixes and improvements
ncmpcpp-0.2.2
+ new screen - playlist editor

View File

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

View File

@@ -189,6 +189,9 @@ string GetKeybindings()
result += DisplayKeys(Key.MvSongUp) + "Move item/group of items up\n";
result += DisplayKeys(Key.MvSongDown) + "Move item/group of items down\n";
result += "\n\n [.b]Keys - Lyrics\n -----------------------------------------[/b]\n";
result += DisplayKeys(Key.Space) + "Switch for following lyrics of now playing song\n";
# ifdef HAVE_TAGLIB_H
result += "\n\n [.b]Keys - Tag editor\n -----------------------------------------[/b]\n";
result += DisplayKeys(Key.Enter) + "Change tag/filename for one song (left column)\n";
@@ -197,7 +200,6 @@ string GetKeybindings()
result += DisplayKeys(Key.Space) + "Select/deselect song (right column)\n";
result += DisplayKeys(&Key.VolumeDown[0], 1) + "Previous column\n";
result += DisplayKeys(&Key.VolumeUp[0], 1) + "Next column\n";
# endif // HAVE_TAGLIB_H
return result;