Updated ChangeLog and diffstat for 0.8.4 final.
Please approve, bugfixes only.
--- muine-0.8.3/ChangeLog	2005-05-04 13:02:39.000000000 -0400
+++ muine-0.8.4/ChangeLog	2006-01-29 23:50:19.000000000 -0500
@@ -1,3 +1,308 @@
+2006-01-29  Peter Johanson <[EMAIL PROTECTED]>
+
+	* configure.in: Bump to 0.8.4 for a release.
+
+2006-01-29  Peter Johanson <[EMAIL PROTECTED]>
+
+	* NEWS: Small update to changes since 0.8.3
+	* libmuine/Makefile.am: Add macros.h from missing automake foo.
+
+2006-01-29  Peter Johanson <[EMAIL PROTECTED]>
+
+	* src/PlaylistWindow.cs: Fix bug where 'clear played song' failed to
+	remove the cover image and song label information if it cleared the
+	whole list.
+
+2006-01-28  Peter Johanson <[EMAIL PROTECTED]>
+
+	A libmuine/macros.h:
+	* libmuine/*: Add new macro to mark function parameters as unused, and
+	use it to silence a bunch of errors/warnings. Fix a few other warnings
+	while we're at it (libmuine now compiles with -Wextra).
+
+2006-01-28  Peter Johanson <[EMAIL PROTECTED]>
+
+	* configure.in: Bump gtk-sharp dep to 2.4.0. Everyone should already
+	be using it anyways, and will prevent the one or two bug reports from
+	people using ancient gtk-sharp-1.9.x stuff.
+
+2006-01-28  Peter Johanson <[EMAIL PROTECTED]>
+
+	* src/Global.cs: Fix issues with trying to run a second instance
+	bringing down the whole lot. Done by 1) Doing Application.Init()
+	before any dbus stuff, so that dbus uses the right mainloop (afaict),
+	and 2) using SuppressFinalize on the remote object before returning
+	(work around dbus-sharp bug). Note: To use the dbus interface on
+	amd64, you need a fix for the dbus-sharp found at:
+	https://bugs.freedesktop.org/show_bug.cgi?id=4410
+
+2006-01-25  Peter Johanson <[EMAIL PROTECTED]>
+
+	* src/About.cs: No really, avoid the bug in Gnome.About. I mean it
+	this time.
+
+2006-01-25  Peter Johanson <[EMAIL PROTECTED]>
+
+	* src/About.cs: Fix odd bug with Gnome.About when being passed a
+	zero-length string array for the documenters variable. Will submit bug
+	upstream when a simple test case is created.
+
+2006-01-24  Peter Johanson <[EMAIL PROTECTED]>
+
+	* src/*: Convert to using Mono.Unix namespace as found in mono-1.1.x.
+	* configure.in: Update to depend on mono-1.1.x. All major distros are
+	shipping mono-1.1.x at this point (Debian has it in testing and
+	backports exist for stable).
+
+2006-01-22  Peter Johanson <[EMAIL PROTECTED]>
+
+	* src/About.cs: Change copy right dates to a range, add myself to
+	authors list, and update cover fetching string to attribute
+	musicbrainz.org as well as amazon.com. Patch from floam on IRC.
+
+2006-01-22  Peter Johanson <[EMAIL PROTECTED]>
+
+	* configure.in: Add vi to ALL_LINGUAS.
+	* NEWS: Add a bunch of translation updates/adds that I missed by not
+	scanning po/ChangeLog, and fix one attribution based on po/ChangeLog.
+
+2006-01-22  Peter Johanson <[EMAIL PROTECTED]>
+
+	* src/FileUtils.cs: Use gnome-vfs to get the URI from the local path,
+	instead of just prepending "file://". Fixes issues with special
+	characters like '?', '#', etc. in filenames. Patch from Brian Kerrick
+	Nickel <[EMAIL PROTECTED]>. Fixes bug #305895.
+
+2006-01-21  Peter Johanson <[EMAIL PROTECTED]>
+
+	* src/About.cs: Fix extra space in copyright string.
+	* src/Player.cs:
+	* src/PlaylistWindow.cs: Fix bug where Player.Position is equal to the
+	final position of the previous song during the SongChangedEvent,
+	instead of 0. Should finally resolve the issue with the muinescrobbler
+	plugin.
+
+2006-01-19  Peter Johanson <[EMAIL PROTECTED]>
+
+	* src/About.cs: Add new copyright year.
+	* NEWS:
+	* configure.in: Bump to 0.8.4pre1
+
+2006-01-19  Peter Johanson <[EMAIL PROTECTED]>
+
+	* doc/Makefile.am: Actually fix docs generation, not 1/2 fix it like
+	had previously been done.
+	* doc/en/*: Update all the documentation files. No new actual
+	documentation, just new monodoc tool updates.
+
+2006-01-19  Peter Johanson <[EMAIL PROTECTED]>
+
+	* src/CoverGetter.cs: Fix some (potential) null references in the
+	MusicBrainz fetching code.
+
+2006-01-19  Peter Johanson <[EMAIL PROTECTED]>
+
+	* src/PlaylistWindow.cs: Remove extra Console.WriteLine that snuck in.
+
+2006-01-19  Peter Johanson <[EMAIL PROTECTED]>
+
+	* src/PlaylistWindow.cs: Change SongChanged private method to accept a
+	'fire_event' boolean for whether to fire the SongChanged event or not.
+	Add an overload that sets fire_event=true, as this is the common case.
+	Make use of this overload to *not* fire a SongChanged from
+	OnSongChanged when we really just want to update the song info in the
+	GUI. Fixes the 'duplicate SongChanged event before last tick' bug.
+	*phew*.
+
+2006-01-18  Peter Johanson <[EMAIL PROTECTED]>
+
+	* configure.in:
+	* doc/Makefile.am: Move to new monodoc-1.1.x utilities.
+
+2006-01-16  Peter Johanson <[EMAIL PROTECTED]>
+
+	* DBusLib/Player.cs: Fix issue with calling Pixbuf.Savev with last two
+	arguments null. Instead use normal Pixbuf.Save. Patch from Eric Lesh
+	<[EMAIL PROTECTED]>. See bug #321688.
+
+2006-01-16  Peter Johanson <[EMAIL PROTECTED]>
+
+	A plugins/TrayIcon.dll.config:
+	* plugins/Makefile.am:
+	* src/muine.exe.config.in: Fix mapping of new musicbrainz stuff, and
+	add mapping for TrayIcon plugin. Patch from Götz Waschk
+	<[EMAIL PROTECTED]>.
+
+2006-01-15  Peter Johanson <[EMAIL PROTECTED]>
+
+	A plugins/inotify-syscalls.h:
+	* plugins/Inotify.cs:
+	* plugins/InotifyPlugin.cs:
+	* plugins/Makefile.am:
+	* plugins/inotify-glue.c:
+	* plugins/inotify.h: inotify plugin update from James Willcox
+	<[EMAIL PROTECTED]> to make the plugin work with current inotify.
+
+2006-01-10  Peter Johanson <[EMAIL PROTECTED]>
+
+	* plugins/egg-sharp.cs: Fix amd64 issues as reported on bug #311158.
+	Original patch from Ubuntu or wherever they got the patch from.
+
+2006-01-10  Peter Johanson <[EMAIL PROTECTED]>
+
+	* data/muine.schemas.in:
+	* src/CoverGetter.cs:
+	A src/MusicBrainz.cs:
+	* src/Makefile.am: Add musicbrainz cover fetching support, based on
+	the work of Yi Qiang <[EMAIL PROTECTED]>. Simultaneously, add
+	support for setting an amazon dev tag in GConf to allow cover fetching
+	via amazon if musicbrainz fails, based on the work of Martin Willis
+	Monroe <[EMAIL PROTECTED]>.
+
+2005-12-17  Peter Johanson <[EMAIL PROTECTED]>
+
+	* src/PlaylistWindow.cs: Fix compilation issue with recent gtk#
+	versions.
+	* plugins/.cvsignore: Ignore generated InotifyPlugin files.
+
+2005-08-10  Maxim Dziumanenko <[EMAIL PROTECTED]>
+
+	* configure.in: Added uk in ALL_LINGUAS
+
+2005-07-19  Pawan Chitrakar  <[EMAIL PROTECTED]>
+
+	* configure.in: Added ne in ALL_LINGUAS
+
+2005-07-06  James Willcox  <[EMAIL PROTECTED]>
+
+	* libmuine/metadata.c: (metadata_load): handle a NULL mime type
+
+2005-06-22  Marcel Telka  <[EMAIL PROTECTED]>
+
+	* configure.in (ALL_LINGUAS): Added sk.
+
+2005-06-14  Jorn Baayen  <[EMAIL PROTECTED]>
+
+	* configure.in:
+
+	Abort if mcs is not present.
+	
+	* PluginLib/IPlayer.cs:
+	* doc/en/Muine.PluginLib/IPlayer.xml:
+	* src/ImportDialog.cs:
+	* src/PlaylistWindow.cs:
+	* src/SongDatabase.cs:
+
+	Extend plugin API with support for adding, removing, and syncing files.
+	Based on the work of James Willcox <[EMAIL PROTECTED]>.
+
+	A plugins/Inotify.cs:
+	A plugins/InotifyPlugin.cs:
+	A plugins/InotifyPlugin.dll.config.in:
+	* plugins/Makefile.am:
+	A plugins/inotify-glue.c: (read_int), (inotify_glue_init),
+	(inotify_glue_watch), (inotify_glue_ignore),
+	(inotify_snarf_events):
+	A plugins/inotify.h:
+
+	Added inotify plugin by same James Willcox. Installed by default.
+
+2005-06-14  Jorn Baayen  <[EMAIL PROTECTED]>
+
+	* src/PlaylistWindow.cs:
+
+	Emit SongChangedEvent before TickEvent when changing songs.
+
+2005-06-14  Jorn Baayen  <[EMAIL PROTECTED]>
+
+	* configure.in:
+
+	Pass '-debug' instead of '-g' to mcs.
+	
+	* doc/en/Muine.DBusLib/Player.xml:
+	* doc/en/Muine.PluginLib/IPlayer.xml:
+
+	Updated documentation.
+	
+	* src/SongDatabase.cs:
+	* plugins/TrayIcon.cs:
+
+	Remove unused functions.
+	
+	* src/AddWindow.cs:
+	* src/ProgressWindow.cs:
+	* src/SkipToWindow.cs:
+
+	Mark glade-connected callbacks as public to silence compiler
+	warnings.
+
+2005-06-14  Jorn Baayen  <[EMAIL PROTECTED]>
+
+	* configure.in:
+
+	Depend on Gtk 2.6 and gnome-icon-theme 2.10.
+
+	* data/images/Makefile.am:
+	R data/images/muine-volume-max.png:
+	R data/images/muine-volume-medium.png:
+	R data/images/muine-volume-min.png:
+	R data/images/muine-volume-zero.png:
+	* src/VolumeButton.cs:
+	* src/StockIcons.cs:
+
+	Take volume icons from the icon theme instead.
+
+	* src/About.cs:
+
+	Remove unused variable.
+
+	* data/glade/PlaylistWindow.glade:
+	* data/glade/ProgressWindow.glade:
+	* libmuine/Makefile.am:
+	R libmuine/rb-ellipsizing-label.c:
+	R libmuine/rb-ellipsizing-label.h:
+	* src/Actions.cs:
+	R src/EllipsizingLabel.cs:
+	* src/Makefile.am:
+	* src/PlaylistWindow.cs:
+	* src/ProgressWindow.cs:
+
+	- Use stock GtkLabel widget with built-in ellipsis.
+	- Use ipod-style PlayPause button; should fix #304969.
+
+2005-06-13  Jorn Baayen  <[EMAIL PROTECTED]>
+
+	* DBusLib/Player.cs:
+	* PluginLib/IPlayer.cs:
+	* plugins/TrayIcon.cs:
+	* src/Actions.cs:
+	* src/AddWindow.cs:
+	* src/Global.cs:
+	* src/PlaylistWindow.cs:
+
+	Provide timestamps to functions raising windows, and use
+	Gdk.Window.Focus instead of Gtk.Window.Present.
+
+	Fixes #303333.
+
+2005-05-07  Ryan Lortie  <[EMAIL PROTECTED]>
+
+	* plugins/TrayIcon.cs:
+
+	Ignore all but single click events in tray icon.
+
+2005-05-04  Jorn Baayen  <[EMAIL PROTECTED]>
+
+	* configure.in:
+
+	Bump version number to 0.8.3.99.
+	
+	* data/ui/PlaylistWindow.xml:
+	* src/Actions.cs:
+
+	Swap location of playlist open/save and play song/album menu
+	items.
+
 2005-05-04  Jorn Baayen  <[EMAIL PROTECTED]>
 
 	* configure.in:
 ChangeLog                                           |  305 
 DBusLib/Makefile.in                                 |    5 
 DBusLib/Player.cs                                   |   14 
 Makefile.in                                         |    5 
 NEWS                                                |   38 
 PluginLib/IPlayer.cs                                |   23 
 PluginLib/Makefile.in                               |    5 
 TODO                                                |    8 
 aclocal.m4                                          | 1849 +++-
 config.guess                                        |  614 -
 config.sub                                          |  108 
 configure                                           | 7474 +++++++++-----------
 configure.in                                        |   29 
 data/Makefile.in                                    |    5 
 data/glade/Makefile.in                              |    5 
 data/glade/PlaylistWindow.glade                     |   79 
 data/glade/ProgressWindow.glade                     |   23 
 data/images/Makefile.am                             |    6 
 data/images/Makefile.in                             |   11 
 data/images/muine-volume-max.png                    |binary
 data/images/muine-volume-medium.png                 |binary
 data/images/muine-volume-min.png                    |binary
 data/images/muine-volume-zero.png                   |binary
 data/muine.schemas.in                               |   11 
 data/ui/Makefile.in                                 |    5 
 data/ui/PlaylistWindow.xml                          |    8 
 doc/Makefile.am                                     |   30 
 doc/Makefile.in                                     |   36 
 doc/en/Muine.DBusLib/Player.xml                     |   77 
 doc/en/Muine.DBusLib/SongChangedHandler.xml         |   16 
 doc/en/Muine.DBusLib/StateChangedHandler.xml        |   16 
 doc/en/Muine.PluginLib/GenericEventHandler.xml      |   15 
 doc/en/Muine.PluginLib/IPlayer.xml                  |  262 
 doc/en/Muine.PluginLib/ISong.xml                    |   46 
 doc/en/Muine.PluginLib/Plugin.xml                   |    6 
 doc/en/Muine.PluginLib/SongChangedEventHandler.xml  |   16 
 doc/en/Muine.PluginLib/StateChangedEventHandler.xml |   16 
 doc/en/Muine.PluginLib/TickEventHandler.xml         |   14 
 doc/en/index.xml                                    |   25 
 intltool-extract.in                                 |  351 
 intltool-merge.in                                   |  111 
 intltool-update.in                                  |   12 
 libmuine/Makefile.am                                |    3 
 libmuine/Makefile.in                                |   26 
 libmuine/id3-vfs/Makefile.in                        |    5 
 libmuine/macros.h                                   |   33 
 libmuine/metadata.c                                 |   18 
 libmuine/mm-keys.c                                  |    4 
 libmuine/ogg-helper.c                               |    5 
 libmuine/player-gst.c                               |   14 
 libmuine/pointer-list-model.c                       |   34 
 libmuine/rb-cell-renderer-pixbuf.c                  |   10 
 libmuine/rb-ellipsizing-label.c                     |  896 --
 libmuine/rb-ellipsizing-label.h                     |   77 
 ltmain.sh                                           | 1379 ++-
 m4/Makefile.in                                      |    5 
 muine.spec                                          |    2 
 plugins/Inotify.cs                                  |  792 ++
 plugins/InotifyPlugin.cs                            |  140 
 plugins/InotifyPlugin.dll.config.in                 |    3 
 plugins/Makefile.am                                 |   30 
 plugins/Makefile.in                                 |  242 
 plugins/TrayIcon.cs                                 |   19 
 plugins/TrayIcon.dll.config                         |    4 
 plugins/egg-sharp.cs                                |    2 
 plugins/inotify-glue.c                              |  196 
 plugins/inotify-syscalls.h                          |   65 
 plugins/inotify.h                                   |  108 
 po/ChangeLog                                        |  135 
 po/Makefile.in.in                                   |   41 
 po/POTFILES.skip                                    |    4 
 po/az.gmo                                           |binary
 po/bg.gmo                                           |binary
 po/bg.po                                            |  443 -
 po/ca.gmo                                           |binary
 po/cs.gmo                                           |binary
 po/cs.po                                            |  285 
 po/da.gmo                                           |binary
 po/da.po                                            |  857 +-
 po/de.gmo                                           |binary
 po/de.po                                            |  299 
 po/en_CA.gmo                                        |binary
 po/en_CA.po                                         |  311 
 po/en_GB.gmo                                        |binary
 po/es.gmo                                           |binary
 po/es.po                                            |   98 
 po/et.gmo                                           |binary
 po/et.po                                            |  332 
 po/eu.gmo                                           |binary
 po/fi.gmo                                           |binary
 po/fi.po                                            |  815 +-
 po/fr.gmo                                           |binary
 po/hr.gmo                                           |binary
 po/hu.gmo                                           |binary
 po/hu.po                                            |  289 
 po/is.gmo                                           |binary
 po/ja.gmo                                           |binary
 po/ja.po                                            |  705 -
 po/ko.gmo                                           |binary
 po/ko.po                                            |  767 --
 po/lt.gmo                                           |binary
 po/lt.po                                            |  415 -
 po/ms.gmo                                           |binary
 po/nb.gmo                                           |binary
 po/nb.po                                            |  295 
 po/ne.po                                            |  569 +
 po/nl.gmo                                           |binary
 po/nl.po                                            |  329 
 po/no.gmo                                           |binary
 po/no.po                                            |  295 
 po/pl.gmo                                           |binary
 po/pt.gmo                                           |binary
 po/pt_BR.gmo                                        |binary
 po/ro.gmo                                           |binary
 po/ru.gmo                                           |binary
 po/rw.gmo                                           |binary
 po/sk.po                                            |  574 +
 po/sr.gmo                                           |binary
 po/[EMAIL PROTECTED]                                      |binary
 po/sv.gmo                                           |binary
 po/uk.po                                            |  567 +
 po/vi.po                                            |  568 +
 po/zh_CN.gmo                                        |binary
 src/About.cs                                        |   10 
 src/Actions.cs                                      |   15 
 src/AddAlbumWindow.cs                               |    2 
 src/AddSongWindow.cs                                |    2 
 src/AddWindow.cs                                    |   13 
 src/Album.cs                                        |    2 
 src/CoverGetter.cs                                  |  159 
 src/EllipsizingLabel.cs                             |   82 
 src/ErrorDialog.cs                                  |    2 
 src/FileUtils.cs                                    |   11 
 src/Global.cs                                       |   15 
 src/ImportDialog.cs                                 |    4 
 src/Makefile.am                                     |    8 
 src/Makefile.in                                     |   13 
 src/Metadata.cs                                     |    2 
 src/MusicBrainz.cs                                  |  727 +
 src/OpenDialog.cs                                   |    2 
 src/OverwriteDialog.cs                              |    2 
 src/Player.cs                                       |   11 
 src/PlaylistWindow.cs                               |  224 
 src/PluginManager.cs                                |    2 
 src/ProgressWindow.cs                               |   21 
 src/SaveDialog.cs                                   |    2 
 src/SkipToWindow.cs                                 |    8 
 src/SongDatabase.cs                                 |   61 
 src/StockIcons.cs                                   |   12 
 src/StringUtils.cs                                  |    2 
 src/VolumeButton.cs                                 |   10 
 src/muine.exe.config.in                             |    1 
 152 files changed, 15916 insertions(+), 10293 deletions(-)
-- 
Ubuntu-motu mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-motu

Reply via email to