2006-08-23 Aaron Bockover 0.10.12 Released * configure.ac: bump to 0.10.12 * NEWS: Updated release notes 2006-08-22 Aaron Bockover * burn-sharp/BurnDrive.cs: * burn-sharp/glue.c: If building against libnautilus-burn 2.15.3+, emulate API provided by libnautilus-burn 2.12/2.14 (nautilus_burn_drive_get_media_size, nautilus_burn_drive_copy, nautilus_burn_drive_get_list) * src/Banshee.Widgets/ActionButton.cs: Added 'new' keyword on Action property to allow for proper functionality under Gtk# 2.12, which provides Gtk.Widget.Action 2006-08-22 Aaron Bockover * configure.ac: Build a small test to check for DBus.Connection.ExitOnDisconnect as it's not available in all distributions due to poor upstream maintainership of dbus-sharp * src/Banshee.Base/Makefile.am: if MISSING_DBUS_SHARP_EOD, define it for mcs * src/Banshee.Base/NetworkManager/Manager.cs: Only use ExitOnDisconnect if MISSING_DBUS_SHARP_EOD is not defined 2006-08-22 Aaron Bockover * data/banshee.desktop.in.in: Updated from SLED * src/Banshee.Base/NetworkManager/Manager.cs: Handle network-manager, HAL, D-Bus restarts properly * src/Banshee.Plugins/NotificationAreaIcon/NotificationArea.cs: Redraw icon properly when panel is transparent, pixmapped, etc. * src/Banshee.Widgets/CoverArtPopup.cs: Scale cover art to a max of 75% of the screen size if too large (BNC #200953) * src/Banshee.Base/Sources/AudioCdSource.cs: Cancel the ripper if the source goes away (hardware eject) (BNC #199902) * src/Banshee.Base/AudioCdRipper.cs: Attempt to lock CD-ROM drive when ripping, unlock when done/canceled/failed using Linux CD-ROM ioctls; should use HAL here, but on SLED it seems libhal_device_lock/unlock does nothing - will punt HAL locking to HEAD (BNC #199902) * src/Banshee.Base/Sources/LocalQueueSource.cs: Implement Banshee.Source.Source.RemoveTrack(TrackInfo) (BNC #188437) * src/BurnCore.cs: Handle exception from BurnUtil.GetDriveByIdOrDefault in case there are no CD burners on the system (BNC #188486) 2006-07-31 Aaron Bockover 0.10.11 Released * NEWS: Fixed errors in release notes * configure.ac: require ipod-sharp >= 0.5.15, < 0.6.0 2006-07-31 Aaron Bockover 0.10.11 Released * configure;ac: Bump to 0.10.11 * NEWS: Updated with 0.10.11 release notes * banshee.mdp: * banshee.mds: Updated MonoDevelop project/splution * configure.ac: * burn-sharp/glue.c: Bulid against ncb 2.15.x (BGO #346501) * src/Main.cs: Allow queueing files on the remote instance * src/PlayerInterface.cs: Do not add LocalQueueSource * src/Banshee.Base/SourceManager.cs: Added ContainsSource * src/Banshee.Base/Sources/LocalQueueSource.cs: Allow enqueuing of files at any time (used by remote instance enqueue) * src/RemotePlayer.cs: D-Bus method to enqueue local files * src/Banshee.Plugins/MMKeys/MMKeysConfigPage.cs: * src/Banshee.Plugins/MMKeys/MMKeysPlugin.cs: * src/Banshee.Plugins/MetadataSearch/MetadataSearchPlugin.cs: Make some strings localizable 2006-06-02 Aaron Bockover * src/Main.cs: Moved StockIcons.Initialize here to ensure BNC #148034 doesn't creep back into the build * src/PlayerInterface.cs: Removed call to StockIcons.Initialize 2006-06-01 Aaron Bockover * src/Banshee.Base/Branding.cs: Added icon name support and renamed Logo property to AboutBoxLogo * src/AboutBox.cs: Minor API fix regarding Branding * src/Banshee.Base/IconThemeUtils.cs: Load icon name for window through the Branding class 2006-06-01 Aaron Bockover * src/Banshee.Base/Branding.cs: Added new branding support; allows for an external assembly (branding.dll) to set application name(s) and logo and to hook into the the beginning of the initialization routine * src/AboutBox.cs: * src/PlayerInterface.cs: Use Branding.Application*Name to replace hard-coded Banshee application name strings * src/PlayerInterface.cs: Call StockIcons.Initialize * src/Core.cs: Do not call StockIcons.Initialize here * src/Globals.cs: Call Branding.Initialize * src/Banshee.Base/Makefile.am: Added Branding.cs 2006-05-29 Aaron Bockover * src/BurnCore.cs: Calculate the total duration of the selection and ensure the media is large enough to hold it; all strings were reused and it will prompt to insert media before transcoding in order to check its size (BNC #151332) 2006-05-29 Aaron Bockover * libbanshee/gst-cd-rip-0.10.c: Added id3v2mux to list of tag muxers to search for when encoding to MP3 and no muxer was specified * src/banshee.in: Set GST_PLUGIN_PATH to $(libdir)/banshee/gstreamer-0.10 to support loading private plugins (gstxing, gstdtdriver on SUSE/SLED) * banshee.mds: * banshee.mdp: Updated MonoDevelop project 2006-05-25 Aaron Bockover * configure.ac: * src/Banshee.Plugins/Makefile.am: * src/Banshee.Plugins/FileSystemMonitor/*: Removed FSM plugin; it is unmaintained and very buggy; it will be imported as a standalone plugin module to Banshee Subversion where someone may choose to continue working on it 2006-05-22 Aaron Bockover * src/Banshee.Base/PlayerEngineCore.cs (set_Volume): pass on value to every loaded engine, not just active engine (BNC #176255) 2006-05-19 Aaron Bockover * src/Main.cs: Call dbus_g_thread_init after Gtk.Application.Init(); fixes the CD burning crash seen on SMP machines (BNC #175378) 2006-05-18 Aaron Bockover * src/PlaylistView.cs: Use a custom IComparer to sort columns by desired order before attaching to view; use AppendColumn on sorted columns instead of InsertColumn (BNC #120666) * src/Banshee.Base/Database.cs: Added ViewOrder column to PlaylistEntries table schema; check to see if ViewOrder exists on an existing PlaylistEntries table and if not, alter the table accordingly (BNC #168653) * src/Banshee.Base/Sources/PlaylistSource.cs: No longer sync local playlist back to database after every minor change; operations are now directly translated into SQL queries (append, delete, reorder) to bring great speed improvements when handling large playlists (BNC #168653) * src/Banshee.Base/Utilities.cs: Use g_filename_to_uri to convert from a filename to a proper URI (BNC #147144) 2006-05-16 Aaron Bockover * src/PlayerInterface.cs: Reset vertical scroll adjustment of the playlist view to the upper bound minus the page size if the value is greater than that when changing sources (BNC #174406) 2006-05-08 Aaron Bockover * docs/Makefile.am: Prefix doc_DATA with $(DESTDIR) so distcheck works 2006-05-07 Aaron Bockover * src/Banshee.MediaEngine/Gstreamer/GstPlayerEngine.cs: Added explicit support for ogg/vorbis to keep the vorbis leak in Helix from happening * src/Banshee.Widgets/HigMessageDialog.cs: Make 'Return' the default dialog action key (BNC #172450, Robert Vojta) * src/Banshee.Base/LibraryTrackInfo.cs: Add Path.DirectorySeparatorChar to 'StartsWith' check to determine if files should be copied, otherwise 'Music to import' will be treated as 'Music' (BNC #171101 Robert Vojta) * src/Banshee.Base/FileTrackInfo.cs: properly load files in shallow directories from command line (BNC #163911, Simon Brys) 2006-05-02 Aaron Bockover * entagged-sharp/Ogg/OggFileReader.cs: Added application/x-vorbis+ogg and application/x-vorbis+ogg as a SupportedMimeType (BNC #169616) 2006-05-01 Aaron Bockover 0.10.10 Released * configure.ac: Updated from HEAD, bumped to 0.10.10 * NEWS: Updated with 0.10.10 release information * po/LINGUAS: Added from HEAD 2006-05-01 Aaron Bockover * src/Banshee.Base/Dap/DapCore.cs: Fixed bug where iPod does not show up if Banshee has already been started (Gabriel Burt, BGO #340313). 2006-05-01 Aaron Bockover Fix a locking bug that caused crashes (BGO #340306) * src/Banshee.Base/Source.cs: Added virtual TracksMutex object that can be used to properly lock the Tracks collection * src/PlayerInterface.cs: * src/PlaylistModel.cs: lock SourceManager.ActiveSource.TracksMutex when performing operations on SourceManager.ActiveSource.Tracks * src/Banshee.Base/Sources/LibrarySource.cs: * src/Banshee.Base/Sources/PlaylistSource.cs: implement TracksMutext by inlining the internal collection SyncRoot mutex and locking when necessary 2006-04-20 Aaron Bockover * src/Banshee.MediaEngine/Helix/HelixRemotePlayer.cs: Added GetIsLive * src/Banshee.MediaEngine/Helix/HelixRemotePlayerEngine.cs: Added http support to SourceCapabilities, added more RealPlayer-specific file formats to ExplicitDecoderCapabilities; implemented CanSeek by calling GetIsLive on the remote player; properly handle buffering and title messages 2006-04-17 Aaron Bockover * configure.ac: Require njb-sharp 0.3.0+ * src/Banshee.Base/Dap/Dap.cs: Added virtual Activate method (see below); handle failure case if a track queued for a sync is null for some reason; if the transcoder handles its own threading and the finished event is raised from the main thread, spawn a new thread for the synchronize (the gst 0.10 transcoder does threading internally so we cannot guarantee a dedicated thread from the transcoder to do syncing in) * src/Banshee.Base/Sources/DapSource.cs: Added Activate method that calls Activate on the device; needed for NJB devices which cannot remain open for the entire session and must be accessed on demand * src/Banshee.Dap/Njb/Makefile.am: Link against Mono.Posix for Catalog.GetString support * src/Banshee.Dap/Njb/NjbDap.cs: Delay device activation (open+capture) until direct access to device is necessary; close the device when access is no longer necessary; ping every 5 minutes to keep device from shutting down, but to allow the handle to be closed most of the time; show an error dialog and do not crash if there is a problem grabbing a a handle to the device; wrap all access calls in GrabDevice/ReleaseDevice to properly reference and perform operations on the device; update the icon name to the proper icon spec name 2006-04-17 Aaron Bockover * src/DragDrop.cs: Check data length before trying to convert to string and catch any exceptions in the conversion (BGO #333946) * src/PlayerInterface.cs: Call model.RemoveTrack instead of model.Remove (BGO #324768) * src/PlaylistModel.cs (RemoveTrack): If the removed iter is the playing iter, set the playing iter to zero (BGO #324768) 2006-04-14 Sebastian Dröge * src/MusicBrainz/Client.cs (GetID): Check for null/handle any exception 2006-04-10 Aaron Bockover * src/Banshee.Plugins/NotificationAreaIcon/NotificationArea.cs: Prevent application crash if gnome-panel crashes 2006-04-07 Aaron Bockover * src/BurnCore.cs: Do not show error dialog if there aren't any errors 2006-04-05 Aaron Bockover * data/banshee.glade: Fixed packing in ErrorListDialog 2006-04-05 Aaron Bockover * libbanshee/gst-playback-0.10.c: do not try to unref playbin if it was never reffed * src/PlaylistView.cs: do not show the same file as playing multiple times * src/Banshee.Base/Utilities.cs: Updated (C) header 2006-04-05 Aaron Bockover * libbanshee/gst-misc-0.10.c: disable gstreamer typefinding (again) (sigh) 2006-04-05 Aaron Bockover * data/banshee.glade: make horizontal scrolling automatic * src/BurnCore.cs: do not try to burn files that don't exist and do not allow burning if not enough disk space * src/Banshee.Base/BatchTranscoder.cs: Move the instantiation of ActiveUserEvent to Start() * src/Banshee.Base/Utilities.cs: Added GetDirectoryAvailableSpace to PathUtil 2006-04-04 Aaron Bockover * banshee.mdp: Updated MonoDevelop project * data/banshee.glade: Added ErrorListDialog * libbanshee/gst-transcode-0.10.c: strdup the output URI and and free when necessary * src/BurnCore.cs: show an ErrorListDialog for files that cannot be transcoded, giving an option to cancel or continue; various fixes for MP3 and data disk burning * src/PlayerInterface.cs: fix to respect the disk type for burning * src/Preferences.cs: use only a single gconf key for disk type * src/Banshee.Base/BatchTranscoder.cs: do not try to transcode a file if the file type is the requested transcode type * src/Banshee.Base/GstTranscoder.cs: Free the input/output URIs * src/Banshee.Base/Makefile.am: Added ErrorListDialog.cs * src/Banshee.Base/Gui/ErrorListDialog.cs: ErrorListDialog glade implementation; shows a HIG error dialog with a list view 2006-04-04 Aaron Bockover * src/Banshee.Plugins/Daap/Daap.dll.config.in: map to libnss_mdns-0.2.so * src/Banshee.Plugins/Daap/daap-sharp/Server.cs: handle exception when trying to shutdown the service locator 2006-04-03 Aaron Bockover * src/PlayerInterface.cs: Remove tooltip from slider (BNC #158403) * src/Banshee.Base/GstMisc.cs: check for NULL from the string marshaller 2006-04-01 Aaron Bockover * src/Banshee.MediaEngine/Gstreamer/GstPlayerEngine.cs: Claim explicit support for ASF and FLAC 2006-03-31 Aaron Bockover * configure.ac: Added expanded_bindir * data/org.gnome.Banshee.service.in: Prefix Exec path with @expanded_bindir@ to make DBus activation work 2006-03-31 Aaron Bockover * src/Banshee.MediaEngine/Helix/HelixRemotePlayer.c: Properly activate the org.gnome.HelixDbusPlayer service using DBus activation through org.freedesktop.DBus.StartServiceByName() (Thanks Timo, fixes #161682) 2006-03-31 Aaron Bockover * libbanshee/gst-cd-rip-0.10.c: Add a proper ID3 muxer in to the pipeline if it didn't already exist and one can be found, similar to the oggmux injection 2006-03-30 Aaron Bockover * libbanshee/gst-misc-0.10.c: Fix from Sebastian Dröge for gstreamer typefinding; re-enabled * libbanshee/gst-playback-0.10.c: Reset pipeline on an error so we can try again later * src/Banshee.Base/PlayerEngineCore.cs: * src/Banshee.Base/MediaEngine/PlayerEngine.cs: Support explicit switching based on supported decoders * src/Banshee.MediaEngine/Gstreamer/GstPlayerEngine.cs: Explicitly declare WMA support, as it's impossible for Helix to ever do this * src/Banshee.MediaEngine/Helix/HelixRemotePlayer.cs: if DBus activation fails, manually run helix-dbus-server and try up to 15 times at half-second intervals to connect to it before giving up (Option B fix for BNC #161682) * src/Banshee.MediaEngine/Helix/HelixRemotePlayerEngine.cs: Ping the server every five seconds; if Banshee does not shut down properly, the server will shutdown if not pinged within 10 seconds; Added explicit decoder support for AAC and MP3 2006-03-30 Hendrik Richter * configure.ac: Added German translation. 2006-03-28 Fredrik Hedberg * data/UIManagerLayout.xml: Added a placeholder for ViewMenu additions. 2006-03-27 Fredrik Hedberg * src/Banshee.Base/Globals.cs: * src/PlayerInterface.cs: Expose MainContainer via InterfaceElements. 2006-03-24 Christian Schaller * src/Banshee.MediaEngine/Helix/Makefile.am: small fix to enable 'make dist' even when --disable-helix is passed 2006-03-21 James Willcox * src/Banshee.Base/Sources/DapSource.cs: when creating the 'syncing' widget, do a ShowAll() on it. 2006-03-21 Aaron Bockover * src/PlayerInterface.cs: Prefer the stream length over the metadata length in all situations, provided the stream length is non-zero * src/Banshee.Base/PlayerEngineCore.cs: Fixed automatic engine switching based on source type, handle any exceptions thrown by active engine and reset the engine * src/Banshee.MediaEngine/Gstreamer/GstPlayerEngine.cs: * src/Banshee.MediaEngine/Helix/HelixRemotePlayerEngine.cs: * src/Banshee.Base/MediaEngine/PlayerEngine.cs: make SourceCapabilities IEnumerable * src/Banshee.MediaEngine/Helix/HelixRemotePlayerEngine.cs: Removed http as a supported source capability as HTTP under Helix is broken 2006-03-20 Aaron Bockover * libbanshee/gst-cd-rip-0.10.c: If vorbisenc is chosen as the encoder for ripping and an oggmux is not in the pipeline profile, attempt to insert an oggmux element (BGO #335211) 2006-03-20 Aaron Bockover * NEWS: Updated with 0.10.9 release notes * configure.ac: Bumped to 0.10.9 * libbanshee/gst-misc-0.10.c: disabled typefinding with gstreamer 0.10 as it's a little buggy; will fall back on gnome vfs for now * src/PlayerInterface.cs: Do not switch sources if a source eject fails * src/Banshee.Base/AudioCd/AudioCdDisk.cs: Do not allow ejecting if we are ripping the CD * src/Banshee.Base/Sources/AudioCdSource.cs: Propagate the return of the disk eject 2006-03-20 Sebastian Dröge * src/MusicBrainz/Client.cs: Reverted a small part of Michael Hutchinson's proxy patch in GetIDFromUrl() to fix a bug in parsing of Urls which resulted in returning of a invalid result type. 2006-03-20 Aaron Bockover * src/PlaylistView.cs: Sensitize/desensitize audio cd rows based on their rip state * src/Banshee.Base/AudioCdRipper.cs: Update newly ripped track with its ripped URI so it can be played while the rest of the disk is ripping * src/Banshee.Base/Library.cs: Removed unused function * src/Banshee.Base/PlayerEngineCore.cs: Do not attempt to play track if it is explicitly marked as being unable to play; reversed order of Reset/Close in Close wrapper * src/Banshee.Base/TrackInfo.cs: Mark CanPlay as virtual * src/Banshee.Base/TrackInfoHeader.cs (SetIdle): Hide the box * src/Banshee.Base/AudioCd/AudioCdDisk.cs: Added an IsRipping property * src/Banshee.Base/AudioCd/AudioCdTrackInfo.cs: Added Disk, IsRipped, and CanPlay properties * src/Banshee.Base/Sources/AudioCdSource.cs: If current playing track in the engine is from the CD, shut down the engine; set disk.IsRipping accordingly * src/Banshee.Base/Sources/LibrarySource.cs: Removed old cruft * src/Banshee.MediaEngine/Helix/HelixRemotePlayerEngine.cs: Updated to reflect minor changes in the Buffering API in PlayerEngine * src/Banshee.Plugins/NotificationAreaIcon/NotificationAreaIconPlugin.cs: Guard against a potential nullref 2006-03-19 Aaron Bockover * entagged-sharp/EncodingInfo.cs: Handle invalid integer durations * src/PlayerInterface.cs: Moved the audio-CD specific view and ripping stuff into AudioCdSource; do not treat the LibrarySource as anything special; it now handles track additions like any good source should * src/Banshee.Base/Sources/AudioCdSource.cs: Handle ripping directly in the source; create a custom view to handle the audio CD status bar and embed the playlist view * src/Banshee.Base/Sources/LibrarySource.cs: Raise the proper OnTrackAdded/OnTrackRemoved events * src/Banshee.Base/AudioCd/AudioCdDisk.cs: Make Tracks property IEnumerable 2006-03-19 Aaron Bockover * data/UIManagerLayout.xml: Added RefreshSong * src/PlayerInterface.cs: When an entry in the main window is focused, disable the accel group from the main window, when not focused, re-enable it; handle skipping and song restarting in the ActionManager; playback seek group is now sensitive based on the engine state * src/Banshee.Base/ActionManager.cs: Added key bindings to more playback actions, added RestartSongAction 2006-03-19 Aaron Bockover * src/PlayerInterface.cs (ShowPlaylistView): Detach the playlist container before re-embedding it in the main view, in case the previous source has embedded it * src/Banshee.Base/Globals.cs: Added PlaylistContainer and DetatchPlaylistContainer utilities for sources to use to help embedding the PlaylistView in a custom view 2006-03-19 Aaron Bockover * src/Banshee.Base/Gui/SeekDialog.cs: Implement the glade SeekDialog; forgot to commit last time 2006-03-19 Aaron Bockover * banshee.mdp: Updated MonoDevelop project * src/PlayerInterface.cs: Handle SeekToAction and show the new seek dialog * src/Banshee.Base/ActionManager.cs: Implement an action for SeekToAction * src/Banshee.Base/Makefile.am: Added Gui/SeekDialog.cs * src/Banshee.Base/Gui/OpenLocationDialog.cs: Fixed typo in header * src/Banshee.Widgets/StreamPositionLabel.cs: Added FormatString parameter * data/UIManagerLayout.xml: Added SeekToAction to playback menu * data/banshee.glade: Added SeekDialog 2006-03-18 Aaron Bockover * src/Banshee.Plugins/NotificationAreaIcon/NotificationAreaIconPlugin.cs: Use DisplayArtist, DisplayAlbum, and DisplayTitle for setting the display data in TrackInfoHeader 2006-03-17 Aaron Bockover * libbanshee/gst-playback-0.10.c: Create a custom audio sink that contains a tee element; plugins can request and connect to new source pads from the tee to stream audio to elements in their control without breaking the normal flow of data to the sound card * src/Banshee.MediaEngine/Gstreamer/GstPlayerEngine.cs: Implement PlayerEngine.GetBaseElements and return an IntPtr array containing the playbin, audiotee, and audiobin elements plugins can use to extend the pipeline * src/Banshee.Base/MediaEngine/PlayerEngine.cs: Removed SetProperty; added GetBaseElements that returns an IntPtr array 2006-03-17 Aaron Bockover * src/Banshee.Base/AudioCd/AudioCdDisk.cs (Eject): Stop playback if the playing stream is a track on the disk that is about to be ejected * libbanshee/gst-playback-0.10.c (gst_playback_open): Reset the pipeline to READY state if not already there 2006-03-17 Aaron Bockover * libbanshee/gst-playback-0.10.c: Perform a manual seek on an audio CD if the current playing stream is from the same CD; this eliminates the need to set uri on playbin, so the pipeline does not need to re-link and the CDDA device does not need to be closed and opened again 2006-03-16 Aaron Bockover * configure.ac: Do an explicit -x test for gst-inspect before running an element check 2006-03-16 Aaron Bockover * banshee.mdp: Updated MonoDevelop project * libbanshee/Makefile.am: Added gst-tagger.[ch] * libbanshee/gst-playback-0.10.c: Support parsing tags from incoming audio stream and send off to consuming API * libbanshee/gst-tagger.c: * libbanshee/gst-tagger.h: Common API for handling tag reading/writing from GStreamer audio streams * src/PlayerInterface.cs: Update the metadata header when the PlayerEngineEvent.TrackInfoUpdated event is raised * src/TrackProperties.cs: * src/Banshee.Base/Globals.cs: * src/Banshee.Base/GstMisc.cs: * src/Banshee.Base/LibraryTrackInfo.cs: * src/Banshee.Base/PipelineProfile.cs: Updated to reflect namespace change for some GStreamer Utility methods * src/Banshee.Base/GstTagger.cs: Parse GStreamer tags into StreamTag instances * src/Banshee.Base/StreamTagger.cs: Common data structure for representing a single metadata tag; method for merging these into TrackInfo objects; added class with constant tag names (1:1 GStreamer correlation) * src/Banshee.Base/MediaEngine/PlayerEngine.cs: Update playing TrackInfo with tags that are read from the audio stream * src/Banshee.MediaEngine/Gstreamer/GstPlayerEngine.cs: Added bindings for the stream tag reading support 2006-03-16 Aaron Bockover * libbanshee/gst-playback-0.10.c: Parse device node from cdda:// URI and set it on the cdda source element in notify::source, non-default CD-ROM drives should work for playback under the 0.10 backend now; Manually seek on the cdda source element if changing tracks and the device does not change * src/PlayerInterface.cs: Display error messages sent from PlayerEngine * data/banshee.schemas.in: Set default engine to helix-remote 2006-03-16 Aaron Bockover * data/banshee.glade: Set the open button to default; make the dialog not visible by default 2006-03-16 Aaron Bockover * src/Banshee.Base/Gui/OpenLocationDialog.cs: Focus the text box when showing the dialog, open the URI when entry is activated (enter pressed) 2006-03-16 Aaron Bockover * data/banshee.glade: Removed combo box from Open Location dialog * src/Banshee.Base/GConfKeys.cs: Added OpenLocationHistory key * src/Banshee.Base/Gui/OpenLocationDialog.cs: Implemented history support and added a browse button that launches a FileChooserDialog (that supports remote locations); 2006-03-16 Aaron Bockover * banshee.mdp: Updated MonoDevelop project * configure.ac: Remove AM_GST_ELEMENT_CHECK calls and check for elements against the proper gst-inspect manually; AM_GST_ELEMENT_CHECK is not versioned and as a result, 0.10 checks were actually made against the 0.8 version of gst-inspect * data/banshee.glade: Removed the positon label and seek slider * libbanshee/gst-playback-0.10.c: Added buffering support and stream seekability detection * src/PlayerInterface.cs: Use new SeekSlider and StreamPositionLabel widgets; updated old stuff to use new stuff; handle the Buffering event and display the buffering progress in StreamPositionLabel * src/Banshee.Base/PlayerEngineCore.cs: Added CanSeek proxy property * src/Banshee.Base/MediaEngine/PlayerEngine.cs: Buffering should be an event, not a state; reworked signatures to account for this * src/Banshee.MediaEngine/Gstreamer/GstPlayerEngine.cs: Wrap the new buffering and stream seek detection in the engine implementation * src/Banshee.Widgets/LinearProgress.cs: Use the shared ColorBlend in DrawingUtilities * src/Banshee.Widgets/Makefile.am: Added SeekSlider.cs, StreamPositionLabel.cs, and DrawingUtilities.cs: * src/Banshee.Widgets/SeekSlider.cs: Custom Gtk.Scale that is well adapted to seeking in streams * src/Banshee.Widgets/StreamPositionLabel.cs: Custom Label that draws a buffering progress bar under the position label when buffering, and updates automatically based off SeekSlider events * src/Banshee.Widgets/DrawingUtilities.cs: Added static class that contains the ColorBlend method; shared between a few widgets 2006-03-15 Aaron Bockover * src/PlayerInterface.cs: * src/PlaylistView.cs: * src/Banshee.Base/TrackInfoPopup.cs: * src/Banshee.Base/Utilities.cs: Show track durations longer than one hour properly (BGO #333472, Ruben Vermeersch) 2006-03-15 Aaron Bockover * src/MusicBrainz/Client.cs: Added proxy server support (Michael Hutchinson) 2006-03-15 Aaron Bockover Patches by Sebastian Dröge: * *Makefile.am: Don't remove Makefile.in and other files generated by autogen.sh on distclean. Move these files to MAINTAINERCLEANFILES. This makes banshee buildable after a distclean. * src/Banshee.Plugins/NotificationAreaIcon/NotificationAreaIconPlugin.cs: Show the TrackInfoPopup only after 500ms when the mouse cursor is still over the Notification Area Icon and let it disappear on EndOfStream when we don't play anything else after 250 ms. * src/Banshee.Plugins/NotificationAreaIcon/Makefile.am: * src/Banshee.Plugins/NotificationAreaIcon/banshee-notificationareaicon.schemas.in: Rename the missed instances of tray icon to notification area icon. * src/Banshee.Widgets/CoverArtThumbnail.cs: Delay showing the popup for 500ms 2006-03-14 Aaron Bockover * libbanshee/xing: Nuked, gone, good-bye, sorry * libbanshee/Makefile.am: Killed xing * configure.ac: Removed xing 2006-03-13 Aaron Bockover Version 0.10.8 Released * NEWS: Updated with 0.10.8 Release Notes * configure.ac: Bumped to 0.10.8 * src/PlayerInterface.cs: Sensitize the Sync button based on DapDevice.CanSynchronize * src/Banshee.Base/TrackInfo.cs: Added TrackNumberTitle property * src/Banshee.Dap/MassStorage/MassStorageDap.cs: use TrackNumberTitle 2006-03-13 Aaron Bockover New NotificationAreaIcon plugin by Sebastian Dröge: * banshee.mdp: Updated MonoDevelop project * configure.ac: Added NotificationAreaIcon stuff for new plugin * data/UIManagerLayout.xml: Removed the tray icon menu * data/banshee.schemas.in: Removed tray icon schema entries * src/Makefile.am: Removed NotificationAreaIcon.cs * src/NotificationAreaIcon.cs: Removed * src/Banshee.Base/ActionManager.cs: * src/PlayerInterface.cs: Removed tray-specific code * src/Banshee.Base/Globals.cs: Added property to get handle to main window * src/Banshee.Plugins/Makefile.am: Added NotificationAreaIcon to SUBDIRS * src/Banshee.Widgets/Makefile.am: Removed NotificationAreaIcon.cs * src/Banshee.Widgets/NotificationAreaIcon.cs: Removed * src/Banshee.Plugins/NotificationAreaIcon/: Moved all the old tray icon code into new NotificationAreaIcon plugin 2006-03-13 Aaron Bockover * banshee.mdp: Updated MonoDevelop project * src/banshee.in: Removed HELIX_LIBS; handled by helix-dbus-server * src/Banshee.MediaEngine/Helix/HelixRemotePlayer.cs: Added process activation support to automatically run helix-dbus-server if not found over dbus already * src/Banshee.Base/PlayerEngineCore.cs: Do not die if a PlayerEngine could not be instantiated; report an error and continue Patches by Sebastian Dröge: * src/Banshee.Plugins/Audioscrobbler/Engine.cs: Ports the audioscrobbler plugin to the new PlayerEngine API. Seeking is now recognized correctly and pausing in a big track doesn't submit it twice anymore. * src/Banshee.Base/Sources/LibrarySource.cs: fix double import bug for the first track imported in an empty library 2006-03-12 Aaron Bockover * configure.ac: Removed Helix/RealPlayer detection; detect helix-dbus-server if --enable-helix * data/banshee.glade: Removed the engine description text box * src/Preferences.cs: Removed engine description * PlayerEngineCore.cs: Added a log entry to show selected engine * src/Banshee.MediaEngine/Helix/: Removed C# bindings to Helix/hxclientkit; helix support has been moved out of process to helix-dbus-server * src/Banshee.MediaEngine/Helix/HelixRemotePlayer.cs: DBus client object to the new helix-dbus-server program * src/Banshee.MediaEngine/Helix/HelixRemotePlayerEngine.cs: PlayerEngine implementation of HelixRemotePlayer; Helix support is out of process * src/Banshee.MediaEngine/Vlc/VlcPlayerEngine.cs: New VLC implementation of PlayerEngine; no more IPlayerEngines! * src/Banshee.Base/IPlayerEngine.cs: Removed * src/Banshee.Base/Makefile.am: Removed IPlayerEngine.cs 2006-03-11 James Willcox * src/Banshee.Plugins/Daap/daap-sharp: Updated from Mono svn (again) 2006-03-10 James Willcox * src/Banshee.Plugins/Daap/daap-sharp: Updated from Mono svn 2006-03-10 Aaron Bockover * banshee.mdb: Updated MonoDevelop project * src/Banshee.Base/PlayerEngineCore.cs: first pass at dynamic engine switching * src/Banshee.Base/Dap/Dap.cs: Added CanSynchronize * src/Banshee.Base/MediaEngine/PlayerEngine.cs: Added SetProperty method * src/Banshee.Dap/MassStorage/MassStorageDap.cs: Renamed IsSynchronizable to CanSynchronize; commented out some 'broke the build' stuff until gabaug can discuss * src/Banshee.MediaEngine/Gstreamer/GstPlayerEngine.cs: Added SetProperty method to set GObject properties on the underlying playbin * src/Banshee.MediaEngine/Helix/HelixPlayer.cs: Port of Helix backend from IPlayerEngine to PlayerEngine 2006-03-10 Gabriel Burt * src/Banshee.Dap/MassStorage/MassStorageDap.cs: Implemented adding and deleting tracks, bytes used. Use new HAL keys for where to find/write music, if they exist. * src/Banshee.Dap/MassStorage/MassStorageTrackInfo.cs: New file, simple subclass of FileTrackInfo. * src/Banshee.Dap/MassStorage/Makefile.am: add MassStorageTrackInfo.cs. 2006-03-09 Aaron Bockover * src/Banshee.Base/PlayerEngine.cs: Replacement for IPlayerEngine; base class that offers common functionality between all engines; new event/message system that is more verbose than old system... allows for metadata extraction from streams and buffering * src/Banshee.Base/PlayerEngineCore.cs: Proxy and wrapper for PlayerEngine that handles all loading of PlayerEngine types and switching out of engines at runtime * src/Banshee.Base/PlayerEngineLoader.cs: Removed, deprecated, etc... PlayerEngineCore now loads and instantiates engines from assemblies * src/PlayerInterface.cs: User interface is completely passive regarding interaction with PlayerEngineCore; UI updates only after getting events and messages from PlayerEngineCore; plugins now have the exact same functionality regarding playback that the UI has traditionally had * src/Banshee.MediaEngine/Gstreamer/GstPlayerEngine.cs: Reworked to implement new PlayerEngine base class; implementation is now much simpler (for 0.10 and 0.8 engines) * src/Banshee.Base/UnknownTrackInfo.cs: A placeholder TrackInfo class that is used to create a container for loading plain URIs; eventually metadata will be filled in if it's found in the stream itself * src/Banshee.Base/Gui/OpenLocationDialog.cs: Glade Dialog implementation for open URI functionality * src/Banshee.Base/Makefile.am: Added UnknownTrackInfo.cs, Gui/OpenLocationDialog.cs and MediaEngine/PlayerEngine.cs * src/Banshee.Base/ActionManager.cs: Added OpenLocationAction * src/NotificationAreaIcon.cs: * src/PlaylistModel.cs: * src/PlaylistView.cs: * src/RemotePlayer.cs: * src/Preferences.cs: * src/Banshee.Plugins/Audioscrobbler/Engine.cs: * src/TrackProperties.cs: Updated to reflect changes in PlayerEngineCore 2006-03-08 Aaron Bockover * configure.ac: Added a GStreamer element check for gconfaudiosink and removed the DEVELOPMENTAL verbage from the --with-gstreamer-0-10 help description 2006-03-07 Aaron Bockover * src/Banshee.Plugins/Daap/DaapProxyWebServer.cs: reworked how reading was done so we do not depend on a stream length; only send the Content-Length header if we actually have a length (BGO #329812) Thanks to Sebastian Dröge for helping out on this one 2006-03-07 Aaron Bockover * src/Banshee.Plugins/Daap/Daap.dll.config: Updated to new map made in Mono.Zeroconf/Native.cs * src/Banshee.Plugins/Daap/daap-sharp/Mono.Zerocon/*: Updated sources from daap-sharp/Mono.Zeroconf; (run an A query in DNSServiceQueryRecord to resolve addresses instead of using gethostbyname) 2006-03-07 Christopher Aillon * configure.ac: Look for required DLLs in ${prefix}/lib/mono instead of ${libdir}/mono 2006-03-07 Aaron Bockover * src/Banshee.Base/ImportManager.cs: Work around socket/directory bug in Mono (Ximian Bugzilla #76966) (Sebastian Dröge) 2006-03-07 Aaron Bockover * banshee.mdp: Updated MonoDevelop project * data/banshee.glade: Added SourceViewContainer wrapper VBox * src/PlayerInterface.cs: Set up and initialize the new UIManager * src/Banshee.Base/Globals.cs: Instantiate and hold a reference to a new UIManager * src/Banshee.Base/Gui/UIManager.cs: Simple new UIManager that acts as a proxy to main interface widgets and can notify when the main interface has been initialized and is ready to use * src/Banshee.Base/Makefile.am: Added Gui/UIManager.cs * src/Banshee.Base/Plugins/Plugin.cs: Added a new virtual method, InterfaceInitialize that will be called when Globals.UIManager has been set up and initialized by the main interface; plugins that wish to manipulate the main UI should override this method and place all UI calls in here; removal/disposal of widgets should be done only after a saftey check to Globals.UIManager.IsInitialized 2006-03-05 Aaron Bockover * libbanshee/gst-playback-0.10.c: Store the default audio sink (gconfaudiosink) in the GstPlayback struct; added a new function gst_playback_playbin_set_property to allow setting properties on the underlying playbin element; allow resetting of the audio-sink property to the default if value is NULL * src/Banshee.MediaEngine/Gstreamer/GstPlayerEngine.cs: Added binding for gst_playback_playbin_set_property 2006-03-05 Aaron Bockover DAAP Port Binding Patch by Sebastian Dröge * src/Banshee.Plugins/Daap/DaapCore.cs: Try to start DAAP server on default port, then fall back on any available port * src/Banshee.Plugins/Daap/DaapProxyWebServer.cs: Try to start proxy server on default port, then fall back on any available port; removed BoundPort/RequestedPort properties, replaced by a get-only Port property 2006-03-05 Aaron Bockover * configure.ac: Version 0.10.7 * NEWS: Updated with 0.10.7 release notes * src/Banshee.Dap/MassStorage/Makefile.am: Allow building but do not install this DAP * src/Banshee.Dap/Makefile.am: Added MassStorage to SUBDIRS 2006-03-05 Jeff Tickle * src/ToggleState.cs: Added support for matching a state to a ToggleAction.Active instead of just a ToggleAction through the use of ToggleState.MatchValue. If ToggleState.MatchActive is false, this is ignored. * src/PlayerInterface.cs: Changed the "Shuffle" button from a ToggleButton to a MultiStateToggleButton * src/Banshee.Widgets/MultiStateToggleButton.cs: Added support for the ToggleAction.Active matching in ToggleState. * src/Banshee.Widgets/ToggleStates.cs: The Shuffle ToggleStates now make use of the new features noted above. 2006-03-05 Aaron Bockover * src/AboutBox.cs: Added Christopher Orr (British English) * src/Banshee.Plugins/Daap/daap-sharp/*: Updated daap-sharp sources 2006-03-05 Christopher Orr * configure.ac: Added en_GB to ALL_LINGUAS. 2006-03-04 Aaron Bockover * src/Banshee.Plugins/Audioscrobbler/Queue.cs: Patch from Ruben to fix BGO #332205 2006-03-04 Aaron Bockover * data/banshee.glade: Window title changed to 'Banshee Music Player' * src/PlayerInterface.cs: Handle PlaylistView.Stopped event to hide the metadata header and close the track on the player engine; reset interface to idle state * src/PlaylistModel.cs: Added a Stopped event to raise when the end of the model is reached and no track is to be played by automatic transition * src/PlaylistView.cs: Do not show the play indicator if stopped; fixes small bug slomo noticed due to changes/optimizations from Oscar; 2006-03-04 Aaron Bockover * src/Banshee.Base/LibraryTrackInfo.cs: Rewrote some queries without the use of the SQL Query Builder APIs; in GetID, use System.Uri.AbsoluteUri instead of System.Uri.ToString(), (BGO #330580) * src/Banshee.Base/AudioCd/AudioCdCore.cs: Only check for volume.disc.has_audio for media in a cdrom drive (BGO #329966) 2006-03-03 Aaron Bockover * src/Banshee.Base/ImportManager.cs: FIFO patch to not try and import named pipes (Debian Bugzilla #354914) (Sebastian Dröge) * src/Banshee.Base/Sources/AudioCdSource.cs (Import): Call OnUpdated() to ensure UI redraws properly * src/AboutBox.cs: Added Sebastian * src/Banshee.Dap/Ipod/ipod-sharp.dll.config.in: * src/Banshee.Dap/Njb/njb-sharp.dll.config.in: * src/MusicBrainz/MusicBrainz.dll.config.in: Map to slightly less precise SOs (Sebastian Dröge) 2006-03-03 Aaron Bockover * data/UIManagerLayout.xml: Removed the ImportCDAction; replaced with ImportSourceAction; added ImportSourceAction to the source context menu * data/banshee.glade: Minor UI naming changes in the Import Dialog * src/PlayerInterface.cs: Contextually show new ImportSourceAction when a IImportSource is active; implemented OnImportSourceAction to call IImportSource.Import on an active IImportSource * src/Banshee.Base/ActionManager.cs: Implemented an action for ImportSourceAction * src/Banshee.Base/Gui/ImportDialog.cs: Use dynamic typechecking for IImportSource instead of handling a possible exception; only show the 'your library is empty' label if the library is actually empty * src/Banshee.Base/Sources/AudioCdSource.cs: Activate the import CD action on Import() to actually import the CD when the import is requested by the user 2006-03-03 Aaron Bockover * banshee.mdp: Updated MonoDevelop project * data/UIManagerLayout.xml: Commented out import folder/files and added a import music menu item that launches the import dialog * data/banshee.glade: Added a new import dialog that allows selecting from a list of import sources * data/banshee.schemas.in: Added a ShowInitialImportDialog key * src/AboutBox.cs: Added Gabriel Burt * src/PlayerInterface.cs: Moved all the import methods into new classes that implement IImportSource; show the generic import dialog on initial startup; removed obsolete importing code * src/Banshee.Base/ActionManager.cs: Implemented an action for ImportMusic * src/Banshee.Base/GConfKeys.cs: Added ShowInitialImportDialog key * src/Banshee.Base/Makefile.am: Added new Import-related files * src/Banshee.Base/Sources/AudioCdSource.cs: Call the OnUpdated method to propagate name changes; fix to implement IImportSource * src/Banshee.Base/Gui/GladeDialog.cs: Abstract base class for implementing Glade dialogs * src/Banshee.Base/Gui/ImportDialog.cs: New import dialog that allows choosing from a list of sources from which to import; shows active sources that implement IImportSource as well as registered IImportSources in the ImportSources class; this makes it possible for plugins to register IImportSources (i.e. an 'Import from beagle' or 'Import over GNOME VFS' plugin) * src/Banshee.Base/IImportSource.cs: Very simple interface to define classes that can import from some data source to the Banshee library * src/Banshee.Base/HomeDirectoryImportSource.cs: An IImportSource that loads all music from the user's home directory * src/Banshee.Base/FolderImportSource: An IImportSource that shows a folder selection dialog and imports recursively from that folder * src/Banshee.Base/FileImportSource.cs: An IImportSource that shows a file selection dialog and imports over the file selection * src/Banshee.Base/ImportSources.cs: Simple static class to act as an IImportSource registry that ImportDialog can use to show a list of import sources 2006-03-03 Gabriel Burt * src/Banshee.Base/ImportManager.cs: Make constructor public so DAPs can create a new importer just for them. * src/Banshee.Base/Dap/DapCore.cs: Check for null object and check Dap types for not IsAbstract. * src/Banshee.Dap/MassStorage/Makefile.am: New file. * src/Banshee.Dap/MassStorage/MassStorageDap.cs: New file for generic USB mass storage device DAP support. Not connected to buils system, so not run except by develpers. In CVS to further development. 2006-03-02 Aaron Bockover * src/Banshee.Plugins/Daap/DaapCore.cs: More properly account for collisions/key duplications (BGO #332840) (Sebastian Dröge) 2006-03-01 Aaron Bockover * configure.ac: Removed the 'GStreamer 0.10 may be incomplete' warning * libbanshee/gst-cd-rip-0.10.c: Using CLOCK_TIME_NONE may block; __tim recommends using 0 instead * src/Banshee.Base/AudioCdRipper.cs: #ifdef around some more stuff to avoid warnings when building for 0.10 2006-03-01 Aaron Bockover * libbanshee/gst-cd-rip-0.10.c: Implemented the 0.10 CD ripping backend * src/Banshee.Base/AudioCdRipper.cs: Support both the 0.8 and 0.10 backends and better error reporting with 0.10 2006-02-28 Aaron Bockover * src/PlaylistModel.cs: * src/PlaylistView.cs: Remove the need for SyncPlayingIter; big performance increase (Oscar Forero) 2006-02-28 Aaron Bockover * src/banshee.in: Set MONO_EXTERNAL_ENCODINGS=UTF8:Latin1 2006-02-27 Aaron Bockover Commit based on Oscar Forero's Genre support patch * data/banshee.glade: Add input/dropdown for editing genre field * src/AboutBox.cs: Added Oscar * src/PlayerInterface.cs: Allow filtering by genre in search * src/PlaylistView.cs: * src/PlaylistColumns.cs: Added genre column support * src/TrackProperties.cs: Connect and fill the genre dropdown * src/Banshee.Base/Library.cs (GetGenreList): Return a list of genres that exist in the database * src/Banshee.Base/LibraryTrackInfo.cs: If genre is unkown, then unset it 2006-02-27 Aaron Bockover * data/banshee.schemas.in: Added schemas for default column visibility settings; fixes BNC #153153 2006-02-24 Aaron Bockover * banshee.mdp: Updated MonoDevelop project * configure.ac: Automatically detect mDNSResponder; Added an explicit --enable-avahi option to override mDNSResponder detection in case a system has both Zeroconf services (which is not recommended); --enable-mdnsd can be used to force enable mDNSResponder as well * libbanshee/gst-cd-rip-0.10.c: * libbanshee/gst-cd-rip-0.8.c: * libbanshee/gst-cd-rip.h: * libbanshee/gst-playback-0.10.c: Renamed API from cd_rip_*/CdRip* to gst_cd_ripper_*/GstCdRipper* * src/RipTransaction.cs: * src/Makefile.am: Moved RipTranscation.cs to Banshee.Base/AudioCdRipper.cs * src/PlayerInterface.cs: Updated to reflect API renaming of RipTransaction->AudioCdRipper * src/Banshee.Base/AudioCdRipper.cs: Moved pieces around so threading is handled inside the track ripper instead of the batch wrapper to prepare managed layer for GStreamer 0.10, which handles threading magically; update P/Invoke calls to new gst_cd_ripper_* API * src/Banshee.Base/Makefile.am: Added AudioCdRipper.cs 2006-02-23 Aaron Bockover * libbanshee/gst-playback-0.10.c: fix minor duration calculation bug; fixes audioscrobbler reporting and last-played update (slomo) 2006-02-23 Aaron Bockover * libbanshee/gst-transcode-0.10.c: Fixed progress reporting by doing a duration query on the pipeline bin and a position query directly on audioconvert element 2006-02-23 Aaron Bockover * libbanshee/gst-playback-0.10.c: Use the audio sink specified in gconf (Zaheer Abbas Merali, BGO #332350) 2006-02-23 Aaron Bockover * configure.ac: If GStreamer 0.10 is enabled, require 0.10.3 (for gst_parse_bin_from_description) * libbanshee/gst-transcode-0.10.c: Transcoding now works; use ghost padding with new-decoded-pad from decodebin, and gst_parse_bin_from_description to create a bubble-wrapped encoder pipeline from a user-string description; progress reporting is still busted 2006-02-22 Aaron Bockover * banshee.mdp: Updated MonoDevelop project * configure.ac: Updated required GStreamer 0.10 version * libbanshee/gst-misc-0.10.c: Implement pipeline testing for 0.10 * libbanshee/gst-transcode-0.10.c: Implement a new transcoder for Gstreamer 0.10 * libbanshee/gst-transcode.h: Updated for the 0.8 transcoder * src/BurnCore.cs: Updated to reflect changes in top-level batch transcoding API * src/Banshee.Base/FileEncodeAction.cs: * src/Banshee.Base/BatchTranscoder.cs: Renamed to BatchTranscoder and updated to reflect changes in base Transcoder class; transcoder implementations handle threading instead of the BatchTranscoder to work best with the new GStreamer 0.10 threading model * src/Banshee.Base/Makefile.am: Reflect rename from FileEncodeAction.cs to BatchTranscoder.cs * src/Banshee.Base/GstTranscoder.cs: Implement managed layer for the 0.10 transcoder backend * src/Banshee.Base/Transcoder.cs: Updated API; Transcoder should handle threading; API is Async and event-based now * src/Banshee.Base/Dap/Dap.cs: Updated to reflect changes in BatchTranscoder API 2006-02-20 Aaron Bockover * banshee.mdp: Updated Banshee MonoDevelop project * src/Banshee.Plugins/Daap/DaapProxyWebServer.cs: Use the local address and not the bound address for passing URIs to clients; use DAAP.Database.GetHashCode instead of DAAP.Database.ID, which is not unique; send a Content-Disposition header with the song file name if it is not null * src/Banshee.Plugins/Daap/DaapTrackInfo.cs: Use DAAP.Database.GetHashCode to build the URI * src/Banshee.Plugins/Daap/daap-sharp/*: Updated daap-sharp sources * libbanshee/gst-transcode-0.8.c: * libbanshee/gst-transcode.h: Renamed gst_file_encoder/GstFileEncoder to gst_transcoder/GstTranscoder * src/AboutBox.cs: Added Alessandro Gervaso (Italian) and Ilkka Tuohela (Finnish) to translator credits * src/Banshee.Base/FileEncoder.cs: * src/Banshee.Base/GstFileEncoder.cs: Renamed to Transcoder/GstTranscoder * src/Banshee.Base/FileEncodeAction.cs: Updated to reflect rename changes * src/Banshee.Base/Makefile.am: Updated to reflect renamed files 2006-02-20 Ilkka Tuohela * configure.ac: Added "fi" to ALL_LINGUAS 2006-02-19 Aaron Bockover * configure.ac: Support using either Avahi or the bundled mDNSResponder support for the DAAP plugin. Avahi is used by default - if the system has Apple's mDNSResponder, pass --enable-mdnsd to configure * src/Banshee.Plugins/Daap/Daap.dll.config.in: Added mdns map to libdns_sd.so * src/Banshee.Plugins/Daap/Makefile.am: Pass DAAPSHARP_FLAGS to mcs and build the Mono.Zeroconf sources into the plugin assembly * src/Banshee.Plugins/Daap/daap-sharp/*.cs: Updated to latest daap-sharp, which has support for mDNSResponder * src/Banshee.Plugins/Daap/daap-sharp/Mono.Zeroconf/*: Bundled mDNSResponder C# bindings (Mono.Zeroconf) 2006-02-19 Aaron Bockover * entagged-sharp/Mpc/MpcFileReader.cs: Added application/x-apetag 2006-02-18 James Willcox * src/Banshee.Base/SourceManager.cs: emit the ActiveChanged event in the main thread. * src/Banshee.Widgets/CoverArtThumbnail.cs: fix the nasty flashing problem that occurred when the popup appears above the thumbnail. * src/SourceView.cs: don't allow a source to be added more than once. 2006-02-15 Alessio Frusciante * configure.ac: Added "it" (Italian) to ALL_LINGUAS. 2006-02-14 Chris Toshok * src/Banshee.Base/NetworkDetect.cs: rename "last_state" to "current_state", and make get_Connected just consult that field, instead of using nm_manager.State (which requires a dbus rpc). Fixes gc/dbus related hang. 2006-02-13 James Willcox * nuke all the (incorrect) emacs mode lines 2006-02-13 James Willcox * src/Banshee.Plugins/MetadataSearch/MetadataSearchPlugin.cs: Add a IsScanning property. When in album cover only mode, don't try to lookup the same album more than once. * src/Banshee.Plugins/MetadataSearch/MetadataSearchConfDialog.cs: Add a 'Rescan Library' button. 2006-02-13 Aaron Bockover * src/BansheeDbusClient.cs: Fixed interface name 2006-02-13 Aaron Bockover Banshee 0.10.6 Released * NEWS: Updated with 0.10.6 release notes * src/PlayerInterface.cs: Do not show 'Consider Importing...' notices in status bar: it's unnecessary and a little brusque 2006-02-13 Aaron Bockover * configure.ac: Version 0.10.6 * src/Banshee.Base/Utilities.cs (SetProcessName): Use IntPtr instead of ulong to avoid potential 64 bit issues * src/RemotePlayer.cs: Fix a potential dbus-sharp crash (BGO #330903) * src/Banshee.Widgets/VolumeButton.cs: Adjust volume fix (BGO #330524) * src/Banshee.Dap/Ipod/DatabaseRebuilder.cs: Handle the exceptions SongDatabase.Save may throw, display error to user 2006-02-12 Aaron Bockover * banshee.mdp: Updated MonoDevelop project * configure.ac: Require ipod-sharp 0.5.15 * src/PlayerInterface.cs: Sensitize the search widget based on Source.SearchEnabled; do this on source changes and updates * src/Banshee.Base/Source.cs: Added a virtual SearchEnabled property * src/Banshee.Base/Dap/Dap.cs: Initialize using new Initialize override method instead of constructor; support an error-type enum for detection flow instead of using exceptions - nice speed up * src/Banshee.Base/Dap/DapCore.cs: Only try to load DAP devices from HAL that support the portable_audio_player value for info.category; note this will affect NJB devices for now as there are no FDI entries upstream; a patch will be available soon; this is a major speed up * src/Banshee.Base/Dap/DapMisc.cs: Get rid of the DAP exceptions used for detection flow... bad style and inefficient/slow; using an enum * src/Banshee.Base/Sources/AudioCdSource.cs: Override SearchEnabled * src/Banshee.Base/Sources/DapSource.cs: Support propagating a custom view from the DAP; support DAP reactivation * src/Banshee.Dap/Ipod/IpodDap.cs: Support new detection/initialization model from base; show a nice error resolution view if iPod has a database that cannot be read * src/Banshee.Dap/Ipod/UnsupportedDatabaseView.cs: A custom view to detail why an iPod may not be supported; offers the ability to rebuild the database * src/Banshee.Dap/Ipod/DatabaseRebuilder.cs: Class to scan an iPod for music in iPod_Control/Music/F*/* and rebuild a supported database * src/Banshee.Dap/Ipod/Makefile.am: Added DatabaseRebuilder.cs and UnsupportedDatabaseView.cs; link against entagged-sharp.dll * src/Banshee.Dap/Njb/NjbDap.cs: Updated to reflect detection/init model from base * src/Banshee.Widgets/MessagePane.cs: A custom widget to show a header/icon and bullets of text/widgets; derived from beagle-search * src/Banshee.Widgets/LinkLabel.cs: Custom Label widget that allows for click/keypress activation; draws a blue link and shows a focus rect * src/Banshee.Widgets/Makefile.am: Added MessagePane.cs and LinkLabel.cs 2006-02-08 Aaron Bockover * src/LogCoreViewer.cs: Do null-detection on the raw objects returned from the model before casting and comparing; fixes a potential crasher * src/PlayerInterface.cs: Update the playlist view after a search is done * src/PlaylistModel.cs: Sync the playing iter off TrackInfo.Equals instead of a UID, which is TrackInfo subclass-specific; this allows for spreading the current song across multiple sources (say you start playing a song in the library that is also on an iPod... switching from the library to the iPod results in the version on the iPod to be indicated as currently playing) Fixed a GTK tree iter warning when trying to get a path for a null iter * src/PlaylistView.cs (UpdateView): Call model.SyncPlayingIter() * src/Banshee.Base/TrackInfo.cs: Added Equal and GetHashCode overrides; value-equality is based on Artist, Album, and Track strings matching 2006-02-08 Aaron Bockover * src/Banshee.Base/TrackInfo.cs: Use {[Cc]over,[Ff]older}.{jpg,png,jpeg,gif} as cover art if one exists in the song's directory * src/PlayerInterface.cs: Show song title and artist in window title 2006-02-07 Aaron Bockover * src/Banshee.Plugins/Audioscrobbler/AudioscrobblerPlugin.cs (StartEngine): Only instantiate the engine if it is null 2006-02-07 Aaron Bockover * src/Banshee.Widgets/NotificationAreaIcon.cs: Updated with fixes for AMD64 by Dan Winship (from Beagle, #327944); class renamed from NotificationAreaIcon to NotificationArea * src/Banshee.Widgets/NotificationAreaIcon.cs: Reflect change from NotificationAreaIcon to NotificationArea * src/PlayerInterface.cs: * src/PlaylistColumns.cs: * src/PlaylistView.cs: Patch from Ruben Vermeersch to fix column visibility bug (#326947) * src/AboutBox.cs: Added Theppitak Karoonboonyana to translator credits 2006-02-07 James Willcox * src/Banshee.Plugins/Daap/DaapCore.cs: avoid a null ref exception in the ServerName property when there is no server. 2006-02-07 Theppitak Karoonboonyanan * configure.ac: Added 'th' (Thai) to ALL_LINGUAS. 2006-02-06 Aaron Bockover * src/Banshee.Base/Utilities (Utilities.SetProcessName): NUL terminate the process name as ASIIEncoding does not do this (sigh) 2006-02-06 Aaron Bockover * configure.ac: Bumped version to 0.10.5 * NEWS: Updated for 0.10.5 release notes * banshee.mdp: Updated MonoDevelop project * docs/*: Updated Monodoc documentation * src/AboutBox.cs: Added Fredrik 2006-02-06 Aaron Bockover * data/data/UIManagerLayout.xml: Removed seek and repeat menu items from tray menu * src/PlayerInterface.cs: Do not focus search on s/j press if source view is in edit mode (BGO #329540) * src/Banshee.Base/Utilities.cs (PathUtil.CharsToQuote): Do not escape ' ' characters as they cause problems with importing * src/banshee.in: Run mono --debug if --debug is passed to wrapper * src/RemotePlayer.cs: * src/Main.cs: Add remote support for querying the cover art filename (BGO #328201, patch by Ruben Vermeersch) 2006-02-06 Aaron Bockover * src/Banshee.Dap/Ipod/IpodDap.cs: Use the volume or product name of the iPod from HAL if the user hasn't set a custom name * src/Banshee.Base/Utilities.cs (PathUtil.CharsToQuote): Escape the '%' and ' ' to hex sequences * src/Banshee.Base/ImportManager.cs: Handle a potential Win32IOException regarding recursive symlinks * src/Banshee.Base/GstFileEncoder.cs (Encode): Reworked to manually alloc/marshal/free file strings 2006-02-06 Aaron Bockover * src/Main.cs: Call Banshee.Base.Utilities.SetProcessName to set process name to 'banshee'; enables 'killall banshee' to work and shows up properly in 'top' and the Gnome system monitor (BNC #147947) * src/Banshee.Base/Utilities.cs: Added Utilities.SetProcessName to set the process name via the prctl system call * src/banshee.in: Removed --debug; added -a 'banshee' on exec to change argv[0]; removed support to run uninstalled copy as it could be a security hole * src/Banshee.Widgets/SearchEntry.cs: Use an inset frame border 2006-02-03 Aaron Bockover * src/Banshee.Plugins/Daap/DaapSource.cs: Catch an exception that DAAP.Client.Login may throw and present an error dialog instead; a 'this is the best I can do' response to the RB DAAP bug #329812 2006-02-03 Aaron Bockover * src/banshee.exe.config.in: * src/Banshee.Base/Banshee.Base.dll.config.in: * src/Banshee.Widgets/Banshee.Widgets.dll.config.in: Added libX11 map; fixes strange GtkUIManager crashes in NLD 2006-02-02 Aaron Bockover * configure.ac: Require GTK+-2.8 * src/PlayerInterface.cs: Removed custom pixbuf stuff for the search entry; it handles its own icon and hover icon now * src/Banshee.Widgets/Makefile.am: Added -unsafe to compile; removed resource icons * src/Banshee.Widgets/SearchEntry.cs: Use Stock.Find as the icon and color shift it for the hover icon * src/Banshee.Widgets/Resources: Removed * ChangeLog: Fixed formatting on Fredrik's last entry (spaces->tabs) 2006-02-01 Fredrik Hedberg * banshee.pc.in: Added gconf-sharp-2.0 as a requirement for our pkg-config file, as many plugins most certainly will use gconf. * src/Banshee.Base/SourceManager.cs: Call Deactivate() on the current source when the user switches to a new one. * src/Banshee.Base/Source.cs: Add the empty virtual method Deactivate. 2006-01-31 Aaron Bockover * src/AboutBox.cs: Class renamed to BansheeAboutDialog, which now extends Gtk.AboutDialog; no more Gnome.About support as Gtk# 2.8 is required now; updated copyright; added Ruben Vermeersch * src/PlayerInterface.cs (OnAboutAction): Updated to reflect change from AboutBox to BansheeAboutDialog * src/Banshee.Widgets/VolumeButton.cs: Turned the +/- icons into buttons that allow click and hold to adjust the volume (Ruben Vermeersch, BGO #329360); removed the +/- icons and replaced with text 2006-01-31 Aaron Bockover * src/PlayerInterface.cs: Use search icon for the search entry from the theme; do not respond to search if the source is to handle it * src/Banshee.Base/Globals.cs: Added InterfaceElements.SearchEntry * src/Banshee.Base/Source.cs: Added virtual property HandlesSearch; sources can override this and return true, and then connect to events on InterfaceElements.SearchEntry to do custom searching * src/Banshee.Widgets/SearchEntry.cs: Allow setting of custom search icons through the Icon and HoverIcon properties 2006-01-30 Aaron Bockover * autogen.sh: Require automake 1.9 2006-01-30 Aaron Bockover * banshee.mdp: Updated MonoDevelop project * conifgure.ac: Generate necessary files for MMKeys plugin * src/PlayerInterface.cs: Removed old commented out special keys code * src/Banshee.Base/SpecialKeys.cs: Minor fixes and ungrab support based on patch by Danilo Reinhardt * src/Banshee.Base/Utilities.cs (Utilities.ExecProcess): Minor fix to work around 77393 (SIGSEGV) in Ximian/Mono bugzilla * src/Banshee.Plugins/Makefile.am: Add MMKeys to SUBDIRS * src/Banshee.Plugins/MMKeys/*: Initial commit of the MMKeys plugin by Danilo Reinhardt 2006-01-28 Aaron Bockover * banshee.mdp: Removed obsolete files (BGO #328931) 2006-01-28 Aaron Bockover * configure.ac: Use libdir instead of $prefix/lib for detecting mono fixes BGO #328916 2006-01-27 Aaron Bockover * configure.ac: Require Gtk# 2.7+; remove references to GtkSharpBackports * src/AboutBox.cs: * src/Preferences.cs: Remove GtkSharpBackports namespace prefix on widgets that were available only in Gtk# 2.8 * src/Makefile.am: Remove GtkSharpBackports from SUBDIRS and do not link against GtkSharpBackports.dll * src/GtkSharpBackports: Removed; everything that was in GtkSharpBackports was backported from 2.8 to use in 2.4; now using 2.8 2006-01-27 Aaron Bockover * src/StockIcons.cs: Instead of relying on an exception, check the resource manifest to see if a resource icon exists; reduces exception overhead and thwarts GdkPixbufLoader warnings from being spewed to the console (BNC #145487) * src/Banshee.MediaEngine/Helix/HelixPlayer.cs: Make the iterate thread a background thread; does not hang on exit 2006-01-27 Aaron Bockover * src/PlayerInterface.cs: Minor cosmetic bug fixed regarding sensitivity of search box after a DAP sync completes 2006-01-27 Aaron Bockover * src/PlayerInterface.cs: Moved the custom DAP syncing view to DapSource; support switching between the default playlist view and custom source views (Source.ViewWidget); sources can now provide custom and hybrid views * src/Banshee.Base/Globals.cs: Provide a basic InterfaceElements proxy class; Currently only provides access to the PlaylistView widget as a TreeView; but is sufficient enough for plugins and sources to directly access selections * src/Banshee.Base/Source.cs: Added virtual ViewWidget and ShowPlaylistHeader properties; added a ViewUpdated event * src/Banshee.Base/SourceManager.cs: Proxy the Source.ViewUpdated event for sources * src/Banshee.Base/Sources/DapSource.cs: Moved the DAP syncing view from PlayerInterface and implemented as a ViewWidget 2006-01-25 Aaron Bockover * configure.ac: Check for DBus 0.60 or better and set DBUS_SOVERSION accordingly to either 2 or 1 * data/banshee.desktop.in.in: Changed --play to --play-enqueued so playing will only happen if songs were passed to --enqueue; was a small bug where just clicking on the desktop file would cause banshee to start playing no matter what - quite annoying * src/PlayerInterface.cs: Support --play-enqueued which can now be passed with a populated --enqueue to auto-play conditionally * hal-sharp/hal-sharp.dll.config.in: * src/Banshee.Dap/Ipod/ipod-sharp.dll.config.in: Use @DBUS_SOVERSION@ for mapping to the proper dbus libraries 2006-01-25 Aaron Bockover * src/Banshee.Base/QueuedSqliteDatabase.cs: Open the connection to the database on the processing thread; otherwise that kinda defeats the entire purpose of the threaded queue processor ;) 2006-01-23 Aaron Bockover * banshee.mdp: Updated MonoDevelop project * data/Tables.sql: Removed; Tables are now defined in code * data/banshe.desktop.in.in: Added more standard desktop categories * src/Makefile.am: * src/Banshee.Base/Makefile.am: Removed resource data/Tracks.sql * src/Main.cs: Disabled process-based instance detection for now; it is causing problems for some and needs investigating * src/Banshee.Base/Database.cs: Rewritten database layer; class now extends new QueuedSqliteDatabase class and all table detection and creation SQL is now embedded in code * src/Banshee.Base/QueuedSqliteDatabase.cs: New database layer that queues queries to execute sequentially on a single thread; fixes many various sqlite-related database issues including database/thread synchronization and database locking * src/Banshee.Base/Globals.cs: * src/Banshee.Base/Library.cs: * src/Banshee.Base/LibraryTrackInfo.cs: * src/Banshee.Base/Sources/PlaylistSource.cs: Updated to reflect minor API changes in database layer * src/Banshee.Base/SqlGenerator.cs (Statement.EscapeQuotes): Minor fix to return empty string if input is null (gonzalo) * src/Banshee.Base/Utilities.cs (ThreadAssist.Spawn): Threads spawned here should be background threads (gonzalo) 2006-01-18 Aaron Bockover * banshee: Branched for NLD10/stable Banshee '1.0' release (BANSHEE_NLD10) 2006-01-23 Aaron Bockover * banshee.mdp: Updated MonoDevelop project * data/Tables.sql: Removed; Tables are now defined in code * data/banshe.desktop.in.in: Added more standard desktop categories * src/Makefile.am: * src/Banshee.Base/Makefile.am: Removed resource data/Tracks.sql * src/Main.cs: Disabled process-based instance detection for now; it is causing problems for some and needs investigating * src/Banshee.Base/Database.cs: Rewritten database layer; class now extends new QueuedSqliteDatabase class and all table detection and creation SQL is now embedded in code * src/Banshee.Base/QueuedSqliteDatabase.cs: New database layer that queues queries to execute sequentially on a single thread; fixes many various sqlite-related database issues including database/thread synchronization and database locking * src/Banshee.Base/Globals.cs: * src/Banshee.Base/Library.cs: * src/Banshee.Base/LibraryTrackInfo.cs: * src/Banshee.Base/Sources/PlaylistSource.cs: Updated to reflect minor API changes in database layer * src/Banshee.Base/SqlGenerator.cs (Statement.EscapeQuotes): Minor fix to return empty string if input is null (gonzalo) * src/Banshee.Base/Utilities.cs (ThreadAssist.Spawn): Threads spawned here should be background threads (gonzalo) 2006-01-18 Aaron Bockover * banshee: Branched for NLD10/stable Banshee '1.0' release (BANSHEE_NLD10) 2006-01-17 Aaron Bockover * banshee.mdp: * src/SignalUtils.cs: * src/Makefile.am: Removed SignalUtils.cs; it has not been used in many months and is not necessary 2006-01-17 Aaron Bockover * configure.ac: Bumped version to 0.10.4 * NEWS: Updated with the 0.10.4 release notes * docs/*: Updated Monodoc API documentation * src/Banshee.Base/PlayerEngineCore.cs: Removed some debug Console.WriteLine calls 2006-01-17 Aaron Bockover * src/PlayerInterface.cs: Uncommented and fixed adding to playlists through song context menu to work with the new PlaylistSource * src/PlaylistView.cs: Removed unused code that has been commented out for months * src/Banshee.Base/Sources/PlaylistSource.cs: Added two static properties to keep track of and access a collection of PlaylistSource instances * docs/Makefile.am: Minor cleanup/fix 2006-01-16 James Willcox * src/Banshee.Plugins/Daap/DaapConfigPage.cs: only change the service name on focus out, instead of on each individual change. * src/Banshee.Plugins/Daap/DaapCore.cs: don't show the service that banshee itself exposes, and do a lame job at attempting to handle service name collisions. 2006-01-16 James Willcox * src/Banshee.Base/SourceManager.cs: proxy add/remove events to the main thread. * src/Banshee.Plugins/Daap/DaapCore.cs: hash on the service name instead of the whole service object. * src/Banshee.Plugins/Daap/daap-sharp/*: synced 2006-01-16 Aaron Bockover * data/Makefile.am: Install D-Bus service file in $(datadir)/dbus-1/services (BGO #327046) * src/Banshee.Plugins/Audioscrobbler/Engine.cs (TransmitQueue): Guard against a potential nullref (BGO #326863) 2006-01-16 Aaron Bockover * src/PlayerInterface.cs: Add the global actions accelerator group to the main window (BGO #326923) * src/Banshee.Base/Plugins/PluginDialog.cs: Wrapped missing string for translation (Øivind Hoel) 2006-01-16 Stephane Raimbault reviewed by: Aaron Bockover * src/Banshee.Plugins/Audioscrobbler/AudioscrobblerConfigDialog.cs: Marked a string to translate * src/Banshee.Plugins/FileSystemMonitor/Makefile.am: Deleted some bad tabs * src/Banshee.Plugins/MetadataSearch/MetadataSearchConfigDialog.cs: Fixed a typo s/MusizBrainz/MusicBrainz/ 2006-01-14 Aaron Bockover * engagged-sharp/Ogg/Util/OggInfoReader.cs: bitrate calculation fix * src/PlayerInterface.cs: Added tooltips back to shuffle/repeat/edit buttons at bottom of window (BGO #326045); pressing enter in search entry focuses playlust (BGO #326568); fixed minor cosmetic bug regarding icon sizes of action buttons; moved gettext catalog init to Globals so catalog is initialized before the ActionManager is populated (BGO #325705) * src/TrackProperties.c: Minor bitrate calculation fix * src/Banshee.Base/ActionManager.cs: Use more stock items when acceptable * src/Banshee.Base/Globals.cs: Initialize the gettext catalog (BGO #325705) * src/Banshee.Widgets/ActionButton.cs: Add support for a default icon size in the constructor * src/Banshee.Base/AmazonCoverFetcher.cs: Set timeout to 10 seconds * src/Banshee.Plugins/MetadataSearch/MetadataSearchPlugin.cs: Do not use ThreadAssist for the processing thread so operations on the thread can be performed later (Aborting if necessary); also make the thread a background thread 2006-01-14 Aaron Bockover * configure.ac: Bump to 0.10.3; note to non-Novell distributors: I do not advise packaging this release... it was made to meet an internal package submission deadline. 0.10.4 will be released early next week with a number of fixes to known issues * data/banshee.glade: Add a _ prefix/accelerator to search label * src/banshee.in: Fixed wrapper script to properly run an uninstalled copy * src/Makefile.am: Fixed up run to invoke sh ./banshee * src/PlayerInterface.cs: Pressing 's' or 'S' will focus the search entry (along with 'j', 'J', or F3); enabled searching on all sources (playlists, DAAP) except for audio CDs * src/TrackProperties.cs: Only sniff mime type for local tracks * src/Banshee.Base/ActionManager.cs: Use stock for about menu item * src/Banshee.Plugins/Daap/Makefile.am: Added daap-sharp/content-codes to EXTRA_DIST 2006-01-14 Aaron Bockover * banshee.mdp: Updated MonoDevelop project * src/SourceView.cs: Guard against a possible nullref * src/Banshee.Base/SourceManager.cs: Do not allow registering of null sources... that's not so good * src/Banshee.Base/Plugins/Plugin.cs: Make ConfigurationKeys public * src/Banshee.Plugins/Daap/daap.schemas.in: Added schemas for two new keys * src/Banshee.Plugins/Daap/DaapConfigPage.cs: Configuration page for notebook in plugins dialog * src/Banshee.Plugins/Daap/DaapCore.cs: Add DAAP server support * src/Banshee.Plugins/Daap/DaapPlugin.cs: register two configuration keys * src/Banshee.Plugins/Daap/Makefile.am: Add DaapConfigPage.cs * src/Banshee.Plugins/Daap/daap-sharp/*: Updated daap-sharp sync * src/Banshee.Plugins/MetadataSearch/MetadataSearchConfigDialog.cs: Added a header label to config page 2006-01-14 Aaron Bockover * src/Banshee.Base/Plugins/Plugin.cs: Removed virtual ShowConfigurationDialog method; replaced with GetConfigurationWidget * src/Banshee.Base/Plugins/PluginDialog.cs: Remove configuration button; added a notebook for showing description/overview and configuration pages; If a plugin implements GetConfigurationWidget, show it in a configuration tab in the notebook * src/Banshee.Plugins/Audioscrobbler/AudioscrobblerConfigDialog.cs: Changed from a Dialog subclass to a VBox subclass; ability to show/hide the Audioscrobbler logo; logo widget exposed as an internal property * src/Banshee.Plugins/Audioscrobbler/AudioscrobblerPlugin.cs: Added dialog to show the configuration widget in case configuration is invoked through the plugin menu; implement GetConfigurationWidget * src/Banshee.Plugins/MetadataSearch/MetadataSearchConfigDialog.cs: Changed from Dialog subclass to a VBox subclass; removed label and frame as they look goofy in the notebook and are unnecessary; fixed a minor display bug regarding the warning widget on the last option * src/Banshee.Plugins/MetadataSearch/MetadataSearchPlugin.cs: Implement GetConfigurationWidget; fixed a minor database update bug 2006-01-13 Aaron Bockover * src/PlayerInterface.cs: Request engine change before playing a song based on file extension; this will be used for falling back on GStreamer for some formats when using Helix as the primary engine * src/Preferences.cs: A restart is no longer needed to change the primary playback engine * src/Banshee.Base/IPlayerEngine.cs: Added SupportedExtensions property * src/Banshee.Base/PlayerEngineCore.cs: Allow switching engines from anything other than the primary based on file extension * src/Banshee.MediaEngine/Gstreamer/GstPlayerEngine.cs: claim to support WMA in SupportedExtensions as Helix/RP can't (better chance of it working in GStreamer than in Helix) * src/Banshee.MediaEngine/Vlc/VlcPlayerEngine.cs: * src/Banshee.MediaEngine/Helix/HelixPlayer.cs: Implement SupportedExtensions, but return null 2006-01-12 Aaron Bockover * src/Banshee.Plugins/Audioscrobbler/AudioscrobblerPlugin.cs: * src/Banshee.Plugins/Audioscrobbler/AudioscrobblerMenu.xml: Added a visit group action to the menu and changed menu items to sentence case 2006-01-12 Aaron Bockover * src/Banshee.Plugins/Audioscrobbler/AudioscrobblerPlugin.cs: Added an enabled action item that allows easy toggling of reporting, with a key binding and menu item; fixed a few very minor bugs and a nullref * src/Banshee.Plugins/Audioscrobbler/Engine.cs (MD5Encode): Guard against a nullref and return String.Empty on failure * src/Banshee.Plugins/Audioscrobbler/AudioscrobblerConfigDialog.cs: Added a button to pimp the Banshee last.fm Group * src/Banshee.Plugins/Audioscrobbler/AudioscrobblerMenu.xml: Added a reporting enabled action item 2006-01-11 Aaron Bockover * src/Banshee.Plugins/Daap/Makefile.am: Added missing if DAAP_ENABLED check; makes --disable-daap actually work 2006-01-11 Aaron Bockover * src/Banshee.Base/Plugins/Plugin.cs: Do not enforce namespace naming; instead require an abstract ConfigurationName property to be set by the plugin (tberman was yelling) * src/Banshee.Plugins/Audioscrobbler/AudioscrobblerPlugin.cs: * src/Banshee.Plugins/Daap/DaapPlugin.cs: * src/Banshee.Plugins/FileSystemMonitor/Watcher.cs: * src/Banshee.Plugins/MetadataSearch/MetadataSearchPlugin.cs: Implement new abstract ConfigurationName 2006-01-10 Aaron Bockover * banshee.mdp: Updated MonoDevelop project * src/Banshee.Plugins/Daap/DaapProxyWebServer.cs: A new 'proxy' server that handles streaming of DAAP songs from a DAAP server over a normal HTTP stream; this makes DAAP streaming audio available from any normal HTTP client; listening to DAAP streams is now possible (GStreamer 0.8, GStreamer 0.10, Helix/RealPlayer, VLC); also provides a simple web-based browser to connected databases and allows downloading songs through this interface (http://localhost:8089) * src/Banshee.Plugins/Daap/DaapCore.cs: Added a property to access the new DaapProxyWebServer; start/stop the server when applicable; corrected namespace * src/Banshee.Plugins/Daap/DaapTrackInfo.cs: Set the uri property to the proper HTTP URI for requesting DAAP streaming of the audio through the proxy server; corrected namespace * src/Banshee.Plugins/Daap/DaapSource.cs: register/unregister database with the proxy server; corrected namespace * src/Banshee.Plugins/Daap/DaapLoginDialog.cs: * src/Banshee.Plugins/Daap/DatabaseProxy.cs: * src/Banshee.Plugins/Daap/DaapPlugin.cs: corrected namespace * src/Banshee.Plugins/Daap/Makefile.am: Added DaapProxyWebServer.cs * src/Banshee.Plugins/Daap/daap-sharp/*.cs: Updated daap-sharp checkout 2006-01-09 Aaron Bockover * src/Banshee.Plugins/Makefile.am: Added Daap to SUBDIRS * src/Banshee.Plugins/Daap/daap-sharp/*: Added daap-sharp sources; these sources are maintained in the 'daap-sharp' Mono SVN module and are synced into the Banshee tree using the 'sync-tree.sh' script * src/Banshee.Plugins/Daap/DaapPlugin.cs: Plugin to initialize/dispose the DaapCore * src/Banshee.Plugins/Daap/DaapCore.cs: DAAP core that listens for service updates from daap-sharp/avahi and creates sources out of new services; central point for DAAP client support * src/Banshee.Plugins/Daap/DaapSource.cs: Banshee.Sources.Source implementation for DAAP client support * src/Banshee.Plugins/Daap/DatabaseProxy.cs: A custom IEnumerable collection that proxies DAAP.Song objects to TrackInfo objects on the fly * src/Banshee.Plugins/Daap/DaapTrackInfo.cs: TrackInfo implementation for DAAP songs * src/Banshee.Plugins/Daap/DaapLoginDialog.cs: A login dialog that is presented when a DAAP server requires authentication 2006-01-09 Aaron Bockover * banshee.mdp: Updated MonoDevelop project * configure.ac: Removed daap-sharp references as daap-sharp sources are synced directly into the tree; check for avahi-sharp * src/Main.cs: Handle a potential DBus exception * src/Makefile.am: Removed daap-sharp unstable assembly installation rules * src/PlayerInterface.cs: Skeleton for handling Source.TrackAdded and Source.TrackRemoved events; if Source.Updated is fired and the track count in the model is 0 and the source is not, reload the model from the source; the DBusRemote is now instance-accessible through a Globals proxy; handle Source.Tracks change from ICollection to IEnumerable * src/PlaylistModel.cs: Added a placeholder RemoveTrack(TrackInfo) method * src/RemotePlayer.cs (FindInstance): use a dynamic cast to RemotePlayer type instead of a static * src/SourceView.cs: Do not draw count in source row if Source.Count < 0 * src/Banshee.Base/DBusRemote.cs: make DBusRemote a instantiable class * src/Banshee.Base/Globals.cs: Add a DBusRemote proxy property * src/Banshee.Base/LibraryTrackInfo.cs: LastPlayedStamp and DateAddedStamp values are now read from the database a little differently to work with updated Mono.Data.SqliteClient from HEAD, should also be a little faster * src/Banshee.Base/Makefile.am: Removed DAAPSHARP_LIBS reference * src/Banshee.Base/Source.cs: Make Count virtual; Tracks is now IEnumerable; Added TrackAdded and TrackRemoved events; added OnTrackAdded and OnTrackRemoved virtual methods for raising those events; added InvalidSourceException exception class * src/Banshee.Base/SourceManager.cs: Added SourceTrackAdded and SourceTrackRemove 'proxy' events for propagating TrackAdded/TrackRemoved events from sources * src/Banshee.Base/AudioCdSource.cs: * src/Banshee.Base/DapSource.cs: * src/Banshee.Base/LibrarySource.cs: * src/Banshee.Base/LocalQueueSource.cs: * src/Banshee.Base/PlaylistSource.cs: Reflect change from Source.Tracks as an ICollection to an IEnumerable 2006-01-06 Chris Toshok * src/Banshee.Plugins/Audioscrobbler/Engine.cs: if we've previously logged failures uploading tracks, log the first successful one. * src/Banshee.Plugins/Audioscrobbler/Queue.cs: make sure to clear the queue before loading, so we don't append multiple copies when/if the user disables/re-enables the plugin. 2006-01-06 Chris Toshok * src/Banshee.Plugins/Audioscrobbler/Makefile.am (ASSEMBLY_SOURCES): add Queue.cs * src/Banshee.Plugins/Audioscrobbler/Queue.cs: new home for all the queue internals. * src/Banshee.Plugins/Audioscrobbler/Engine.cs: move all the queue internals (including the new saving/loading code) out to a separate class; Use LogCore to report problems with uploading/handshaking, and try to avoid spamming the log by only logging upload failures once every 5 minutes; lastly, increase the places where we save queue data. We now save just before transmitting, and again after getting the OK back from the server, after we remove the tracks that were transmitted. 2006-01-06 Chris Toshok * src/Banshee.Plugins/Audioscrobbler/Engine.cs: Another patch from Ruben Vermeersch, to add rudimentary seek detection. Slightly modified from the patch on the list, to check for reverse seeking. 2006-01-06 Chris Toshok * src/Banshee.Plugins/Audioscrobbler/Engine.cs: apply Ruben Vermeersch excellent queue saving/loading patch. 2006-01-06 Aaron Bockover * banshee.mdp: Updated MonoDevelop project * src/Banshee.Plugins/MetadataSearch/Makefile.am: Added MetadataSearchConfigDialog.cs * src/Banshee.Plugins/MetadataSearch/MetadataSearchConfigDialog.cs: Configuration dialog for setting the cover art/metadata fetch method * src/Banshee.Plugins/MetadataSearch/MetadataSearchPlugin.cs: Support three different fetch methods for cover art and metadata: covers only will only fetch cover art and uses a SQL query to set the ASIN on all tracks on an album after one track from the album has been looked up through MusicBrainz (fast method); fill blank will fetch cover art on a per-track basis and will fill in any missing metadata for the track (slow but safe); overwrite will fetch cover art on a per-track basis and will overwrite all metadata fields on a track that were returned from MusicBrainz (potentially destructive and slow, but most of the time yields pleasant results); the default option is covers only * data/Tables.sql: for some reason AlbumTitle was declared as an INTEGER; it's now TEXT... nice 2006-01-05 Brad Taylor * src/PlaylistModel.cs: Implement a more intelligent Shuffle that has a 60% chance of hovering inside the current genre, making the transitions between songs slightly more fluid. Of course, this value should be tweaked for better results. 2006-01-05 Aaron Bockover * src/AboutBox.cs: Added Lukas Novotny to Translator Credits (Czech) * src/Banshee.Base/Library.cs: Allow single, collection, and queued removal of tracks based on URI as well as LibraryTrackInfo object reference * src/Banshee.Plugins/FileSystemMonitor/Watcher.cs: Implement removal and importing of files using a threaded queue processor instead of looping in an always-running thread to 'listen' for changes on two ArrayLists; removal and importing updated to use new mechanisims in Banshee.Base for interacting with the Library * src/Banshee.Plugins/FileSystemMonitor/Watch.cs: Simplified many aspects of the base Watch class; use events for notification instead of collections on which a thread 'listens' * src/Banshee.Plugins/FileSystemMonitor/InotifyWatch.cs: * src/Banshee.Plugins/FileSystemMonitor/FileSystemWatcherWatch.cs: Updated to implement changes in updated and simplified base class 2006-01-05 Aaron Bockover * docs/*: Updated Monodoc API documentation * banshee.mdp: Updated MonoDevelop project * data/banshee.glade: removed the header cycle button * src/Core.cs: Removed TransactionManager * src/Makefile.am: Removed LibraryTransaction*.cs, DapPropertiesDialog.cs, and Sources.cs; added skeleton for daap-sharp linking and installation * src/PlayerInterface.cs: Updated to use SourceManager to handle switching and manipulating of sources * src/PlaylistModel.cs: Updated to use SourceManager; added a GetIterIndex method to allow reordering to propagate to sources; removed old unused code * src/PlaylistView.cs: AddSelectedToPlaylist disabled for the moment * src/SourceView.cs: Updated to adapt to act strictly as a view for SourceManager; sources are now handled centrally in SourceManager * src/Banshee.Base/Database.cs: Added overload Execute method to return the last insert row ID * src/Banshee.Base/Library.cs: All track removal is handled centrally through Banshee.Base.Library * src/Banshee.Base/Makefile.am: Added new Source files * src/Banshee.Base/SourceManager.cs: New centralized source manager; handles proper ordering and activation/notification, and acts as a proxy for source update events * src/Banshee.Base/TrackInfo.cs: Moved HaveTrackInfoArgs and HaveTrackInfoHandler from old LibraryTransactions.cs * src/Banshee.Base/Utilities.cs: ReflectionUtil.IsVirtualMethodImplemented now works for non-public instance members * src/Banshee.Base/AudioCd/AudioCdCore.cs: Support creating and removing AudioCdSource from SourceManager * src/Banshee.Base/AudioCd/AudioCdDisk.cs: If ASIN is empty after a successful CD info lookup through MusicBrainz, attempt to find an ASIN using a FileLookup based on data for the first track on the CD * src/Banshee.Base/Dap/Dap.cs: Handle creating/adding/removing a DapSource * src/Banshee.Base/Dap/DapPropertiesDialog.cs: Moved from src/ * src/Banshee.Base/Sources/LibrarySource.cs: New implementation of the base Source class for the Library * src/Banshee.Base/Sources/PlaylistSource.cs: New Playlist source and completely rewritten playlist support; much faster and supports proper reordering * src/Banshee.Base/Sources/AudioCdSource.cs: Refactored source for Audio CDs * src/Banshee.Base/Sources/DapSource.cs: Refactored source for DAPs * src/Banshee.Base/Source/LocalQueueSource.cs: Refactored source for local files (The Frobnicator) * src/Banshee.Dap/Njb/NjbDap.cs (Dispose): call base.Dispose() * src/Banshee.Plugins/FileSystemMonitor/Watcher.cs: Disabled some parts of this plugin until it can be sorted out to work with new API 2006-01-03 Aaron Bockover * configure.ac: Added DAAP configure support; check for sqlite3 >= 3.2 to guard against no ALTER TABLE ... ADD support (BGO #325697) 2006-01-02 Stanislav Brabec * configure.ac: Added cs to ALL_LINGUAS. 2006-01-02 Aaron Bockover * src/MusicBrainz/Client.cs: Null checks on GetID * src/MusicBrainz/SimpleQuery.cs: Added support for both AlbumTrackResult and AlbumResult types for better matching against limited input * src/MusicBrainz/SimpleLookupTest.cs: Added a -tracknum option to test program for SimpleQuery 2006-01-01 Aaron Bockover * src/Banshee.Plugins/MetadataSearch/*: New plugin to search for well-formed/supplementary metadata and cover art for songs already in the library (and songs that are newly added during the same instance); this effectively adds 'full' cover art support to Banshee - Happy New Year! * docs/*: Updated Monodoc Documentation * banshee.mdp: Updated MonoDevelop project * configure.ac: Generate files for the MetadataSearch plugin * data/Tables.sql: Add RemoteLookupStatus column to Tracks SQL table * src/Banshee.Base/Database.cs: Add support to ALTER old tables without the RemoteLookupStatus column * src/Banshee.Base/Library.cs: Added a TrackAdded event and an IsLoaded property to the Library * src/Banshee.Base/LibraryTrackInfo.cs: Support preserving the RemoteLookupStatus property when constructing from an AudioCdTrackInfo and support reading/writing this property to/from the database * src/Banshee.Base/TrackInfo.cs: Added a RemoteLookupStatus property and enum (NoAttempt, Success, Failure) * src/Banshee.Base/AudioCd/AudioCdDisk.cs: Set RemoteLookupStatus to Success when metadata is found through MusicBrainz * src/Banshee.Base/Plugins/Plugin.cs: Added a DisposeRequested property for plugins to check during extensive operations * src/Banshee.Plugins/Makefile.am: Added MetadataSearch to SUBDIRS * src/MusicBrainz/Client.cs: Minor fix to GetID * src/MusicBrainz/Makefile.am: Added SimpleQuery.cs * src/MusicBrainz/SimpleQuery.cs: Static class to perform basic arbitrary query operations (FileLookup) * src/MusicBrainz/SimpleLookupTest.cs: Test case to SimpleQuery * src/MusicBrainz/SimpleTrack.cs: Added new properties so object is suitable for SimpleQuery.FileLookup to return 2005-12-31 Aaron Bockover * docs/MonodocNodeConfig.cs: Small utility program to add nodes to monodoc.xml under 'various' to better organize documentation * docs/Makefile.am: Build MonodocNodeConfig.cs, run to insert/remove classlib-banshee node from various in monodoc.xml * docs/banhsee-docs.source: Set path to classlib-banshee * src/Banshee.Plugins/FileSystemMonitor/Makefile.am: Remove MENU_RESOURCE 2005-12-31 Aaron Bockover * src/Banshee.Base/Database.cs: * src/Banshee.Base/FileTrackInfo.cs: * src/Banshee.Base/LibraryTrackInfo.cs: Changed namespace to Banshee.Base * banshee.pc.in: Added two missing assemblies to Libs * docs/*: Updated Monodoc Documentation 2005-12-30 Aaron Bockover * banshee.pc.in: Updated so plugins can actually use it (-pkg:banshee for mcs) * src/Banshee.Base/Library.cs: Added a GetTrack method 2005-12-30 Aaron Bockover * banshee.mdp: Updated MonoDevelop project * data/UIManagerLayout.xml: Added a plugin menu item * src/BansheeDbusClient.cs: Updated to reflect path/interface renaming * src/DapPropertiesDialog.cs: Fixed name in source header * src/PlayerInterface.cs: Show the plugins dialog on the plugin action * src/Banshee.Base/ActionManager.cs: Added a plugin action for showing the plugins dialog * src/Banshee.Base/Makefile.am: Added Plugins/PluginDialog.cs * src/Banshee.Base/Plugins/Plugin.cs: Plugins can now be loaded and unloaded during execution as well as at startup; the 'Enabled' key belongs to the plugin manager, plugins can show a configuration dialog; added abstract metadata properties; plugin entry/exit methods renamed * src/Banshee.Base/Plugins/PluginCore.cs: Better plugin handling; plugins can be disabled if they fail, but still remain visible; plugins can be loaded/unloaded during execution * src/Banshee.Base/Plugins/PluginDialog.cs: Dialog to allow management of plugins (loading/unloading/configuring) * src/Banshee.Plugins/Audioscrobbler/AudioscrobblerConfigDialog.cs: Use the plugin description from AudioscrobblerPlugin * src/Banshee.Plugins/Audioscrobbler/AudioscrobblerPlugin.cs: Renamed the old 'Enabled' key as the base plugin class uses that key now; properly unload the menu UI on Dispose; updated to reflect changes in base class; implement ShowConfigurationDialog * src/Banshee.Plugins/Audioscrobbler/audioscrobbler.schemas.in: Added the EngineEnabled key as the plugin may be enabled (Enabled key used by base class now) but user may want to turn off submissions * src/Banshee.Plugins/FileSystemMonitor/Makefile.am: Added Mono.Posix ref * src/Banshee.Plugins/FileSystemMonitor/Watcher.cs: updated to reflect changes in base class; throw exception to disable this plugin for now as it is incomplete and broken 2005-12-30 Aaron Bockover * src/TrackProperties.cs: * src/Banshee.Base/ActionManager.cs: * data/banshee.glade: Updated wording for the track properties editor to read 'Edit Song Metadata/Editing Song x of y' and so forth * src/TrackProperties.cs: Do all track saving in the main thread, it is not expensive, and users probably aren't going to have thousands of tracks in the editor at a time; update the main UI if the current playing track is one that was edited (fixes BGO #325078) * src/LibraryTransactions.cs: Removed TrackInfoSaveTransaction * src/NotificationAreaIcon.cs: Pull track duration from TrackInfo object loaded in PlayerEngineCore.ActivePlayer and not from the playing stream directly (read metadata instead of stream length) - fixes BGO #325079 * src/PlayerInterface.cs: Only sensitize the source properties action when a source has property dialog support (Fixes BGO #325076); Expose UpdateMetaDisplay as public; Call LoadSettings() after registering handlers for all actions, which will allow the proper action handler to be called at startup (Fixes BGO #325139) * src/Sources.cs: Name of library source is now just 'Music Library', Fixes BGO #324652; Source now provides a ShowPropertiesDialog member sources can implement; moved property dialog for the DAP source from PlayerInterface.cs to DapSource.ShowPropertiesDialog 2005-12-29 Aaron Bockover * banshee.mdp: Updated MonoDevelop project * configure.ac: Output src/Banshee.Plugins/FileSystemMonitor files * data/banshee.schemas.in: Removed key for FileSystemMonitor; the plugin installs its own schemas now * src/Core.cs: Moved almost everything to Banshee.Base.Globals; renamed to PlayerCore, and is now a static class * src/Dialogs.cs: Removed specific playlist dialog * src/BurnCore.cs: * src/LibraryTransactionManager.cs: * src/LibraryTransactionStatus.cs: * src/LibraryTransactions.cs: * src/PlaylistColumns.cs: * src/PlaylistModel.cs: * src/Preferences.cs: * src/RipTransaction.cs: * src/SourceView.cs: * src/Main.cs: Updated to reflect moves from Banshee.Core to Banshee.Base.Globals and renaming of Banshee.Core to Banshee.PlayerCore * src/PlayerInterface.cs: Same as above changes; handle Banshee.Base.Library.Reloaded in a much better manner * src/Banshee.Base/FileNamePattern.cs: Cleaned up, reformatted; reference proper library path * src/Makefile.am: Added new files; removed old files * src/StockIcons.cs: Added a null test for the icon_set * src/Banshee.Base/Globals.cs: Added initialization code from old Banshee.Core; effectively places Library/Database access in Banshee.Base, for plugin access * src/Banshee.Base/Makefile.am: Added new files * src/Banshee.Base/Library.cs: * src/Banshee.Base/SqlGenerator.cs: * src/Banshee.Base/LibraryTrackInfo.cs: * src/Banshee.Base/FileTrackInfo.cs: * src/Banshee.Base/Database.cs: Library/Database support is now in Banshee.Base and can be consumed by plugins * src/Banshee.Base/Plugins/Plugin.cs: * src/Banshee.Base/Plugins/PluginCore.cs: Plugins must now provide an override for new Initialize method; may not use constructors for initialization; proper namespace naming is now enforced; added configuration keys support for GConf * src/Banshee.Plugins/Makefile.am: Added FileSystemMonitor to SUBDIRS * src/Banshee.Plugins/Audioscrobbler/AudioscrobblerPlugin.cs: Adapt to changes in base Plugin class and new GConf support in base class * src/Banshee.Plugins/Audioscrobbler/Engine.cs: Source.Remove changed to GLib.Source.Remove to avoid namespace conflicts * src/Banshee.Plugins/FileSystemMonitor/*.cs: Moved from src/ * src/Banshee.Plugins/FileSystemMonitor/Watcher.cs: Refactored to implement as a Banshee Plugin * src/Banshee.Plugins/FileSystemMonitor/FileSystemMonitor.dll.config.in: DLL map for assembly * src/Banshee.Plugins/FileSystemMonitor/filesystemmonitor.schemas.in: GConf schemas for plugin 2005-12-29 Takeshi AIHANA * configure.ac: Added 'ja' (Japanese) to ALL_LINGUAS again, since was lost current version. 2005-12-28 Aaron Bockover * banshee.mdp: Updated MonoDevelop project * src/NotificationAreaIcon.cs: Better positioning * src/Banshee.Base/TrackInfoHeader.cs: Hide cover if default cover is null * src/Banshee.Base/TrackInfoPopup.cs: Remove the radial progress widget, replaced by a subtle linear one to the right of the time label. Much less intrusive and distracting, and reduces size of widget * src/Banshee.Widgets/RadialProgress.cs: Some minor fixes, and #ifed out for now * src/Banshee.Widgets/LinearProgress.cs: Simple GDK progress bar that draws a line and a bar, very very simple and subtle drawing * src/Banshee.Widgets/Makefile.am: added LinearProgress.cs 2005-12-25 Aaron Bockover * src/NotificationAreaIcon.cs: Handle the default timeout a little better 2005-12-25 Aaron Bockover * banshee.mdp: Updated MonoDevelop project * src/Makefile.am: Removed TrackInfoHeader.cs * src/NotificationAreaIcon.cs: Show the new TrackInfoPopup widget when user hovers over the icon or the track changes * src/PlayerInterface.cs: Send the NotificationAreaIconContainer an entire track instead of just a string for a tooltip * src/Banshee.Base/TrackInfoHeader.cs: Moved from src/ so TrackInfoPopup can embed the widget * src/Banshee.Base/TrackInfoPopup.cs: A little Christmas candy to display a very nice track info/progress summary in a 'tooltip,' using the same header widget in the main interface, and if Cairo/GTK+-2.8 is available, show track progress using the new RadialProgress widget * src/Banshee.Base/Makefile.am: Added TrackInfoHeader.cs, TrackInfoPopup.cs * src/Banshee.Widgets/Makefile.am: Added RadialProgress.cs * src/Banshee.Widgets/RadialProgress.cs: New progress widget that shows a 'pie' or radial progress; can optionally draw 'clock' ticks; requires Mono.Cairo and GTK+-2.8 2005-12-22 Aaron Bockover * src/MusicBrainz/sync-tree.sh: Added script to keep Banshee checkout of musicbrainz-sharp in sync with the working development repository; the development of this code has been moved outside of Banshee: svn://abock.org/svn/trunk/musicbrainz-sharp * src/MusicBrainz/Makefile.am: Updated to cleaner, synced version 2005-12-23 Chris Toshok * src/Banshee.Plugins/Audioscrobbler/Makefile.am (PKG_REFERENCES): add -r:System.Web.dll. * src/Banshee.Plugins/Audioscrobbler/Engine.cs: drop the hacky UrlEncode in favor of HttpUtility.UrlEncode; add a check for Globals.Network.Connected in EngineTick, so we delay any network traffic until we're connected. 2005-12-22 Aaron Bockover * src/Banshee.Widgets/CoverArtThumbnail.cs (CoverArtView.OnExposeEvent): Fixed really stupid drawing bug 2005-12-22 Aaron Bockover * src/Banshee.Plugins/Audioscrobbler/AudioscrobblerConfigDialog.cs: Added a cute little Audioscrobbler 'powered by' graphic * src/Banshee.Plugins/Audioscrobbler/audioscrobbler-logo.png: AS logo * src/Banshee.Plugins/Audioscrobbler/Makefile.am: embed * src/Banshee.Plugins/Audioscrobbler/Engine.cs: Removed old_state to silence the cautionary screams of mcs 2005-12-22 Chris Toshok * src/Banshee.Plugins/Audioscrobbler/AudioscrobblerPlugin.cs: remove the SetPlayer method and calls. Instead just call protocol_engine.Start. * src/Banshee.Plugins/Audioscrobbler/Engine.cs: use a GLib.Timeout instead of relying on the Player's tick event; Don't keep a reference to a player around, just fetch it in the EngineTick method; fix up the state assignment around the async calls and deal with exceptions in current_web_req.End*; reformat things to be more in keeping with the style guidelines. 2005-12-22 Aaron Bockover * src/Banshee.Plugins/Audioscrobbler/AudioscrobblerPlugin.cs: Changed wording of 'Home page' to 'Profile page' 2005-12-22 Aaron Bockover * banshee.mdp: Updated MonoDevelop project * data/UIManagerLayout.xml: Added a placeholder for plugins to insert menu items in the music toplevel menu * src/DapPropertiesDialog.cs: Moved the PropertyTable class to Banshee.Widgets * src/Banshee.Plugins/Audioscrobbler/Engine.cs: Fixed a bug regarding track queueing; fixes a few submission bugs noted on the mailing list * src/Banshee.Plugins/Audioscrobbler/AudioscrobblerPlugin.cs: Added UI integration into main menu; added properties to get/set username, password, and enable status; added path to launch the config dialog * src/Banshee.Plugins/Audioscrobbler/AudioscrobblerConfigDialog.cs: Configuration dialog for setting username/password and enabling AS support * src/Banshee.Plugins/Audioscrobbler/AudioscrobblerMenu.xml: UIManager menu layout for AS plugin * src/Banshee.Plugins/Audioscrobbler/Makefile.am: Link against Banshee.Widgets.dll and embed AudioscrobblerMenu.xml as a resource; added AudioscrobblerConfigDialog.cs * src/Banshee.Widgets/Makefile.am: Added PropertyTable.cs * src/Banshee.Widgets/PropertyTable.cs: Moved property table class from src/DapPropertiesDialog.cs 2005-12-22 Miguel de Icaza * src/Banshee.Widgets/NotificationAreaIcon.cs: More fixing of miss-uses. 2005-12-19 Miguel de Icaza * src/Banshee.Widgets/NotificationAreaIcon.cs: Fix the miss-use of unions and string marshalling. This should now run with Mono 1.1.11 2005-12-22 Aaron Bockover * src/Banshee.Plugins/Makefile.am: Remove Banshee.Plugins dir on uninstall * configure.ac: Do not generate src/ipod-sharp.dll.config * en/*: Updated docs * configure.ac: Version 0.10.2 * NEWS: Updated with 0.10.2 release notes 2005-12-21 Aaron Bockover * src/Banshee.Plugins/Audioscrobbler/AudioscrobblerPlugin.cs: Plugin class for Chris Toshok's Audioscrobbler support * src/Banshee.Plugins/Audioscrobbler/Engine.cs: toshok's Audioscrobbler protocol implementation/engine class * src/Banshee.Plugins/Audioscrobbler/audioscrobbler.schemas.in: GConf schemas for the Audioscrobbler plugin * src/Banshee.Plugins/Audioscrobbler/Audioscrobbler.dll.config.in: DLL maps for the Audioscrobbler.dll plugin * src/Banshee.Plugins/Makefile.am: Added Audioscrobbler to SUBDIRS * src/Banshee.Base/Plugins/Plugin.cs: Simple generic plugin base class * src/Banshee.Base/Plugins/PluginCore.cs: Core to load/unload plugins at runtime from types in assemblies that implement Banshee.Plugins.Plugin * banshee.mdp: Updated MonoDevelop project * configure.ac: Generate necessary files for Audioscrobbler plugin * src/AboutBox.cs: Added Chris Toshok and Jeff Tickle * src/Makefile.am: Added Banshee.Plugins to SUBDIRS * src/Banshee.Base/Globals.cs: Initialize/Dispose PluginCore * src/Banshee.Base/Paths.cs: Added SystemPluginDirectory and UserPluginDirectory paths 2005-12-21 Jeff Tickle * src/PlayerInterface.cs: Resurrected the Repeat Toggle Button down in the bottom-left; it now works properly with Gtk.ToggleAction * src/Banshee.Widgets/MultiStateToggleButton.cs: * src/Banshee.Widgets/ToggleState.cs: Removed all the menu action crap and replaced it with Gtk.ToggleAction support 2005-12-21 Aaron Bockover * src/Core.cs: Remove all IPlayerEngine code as it is now in Banshee.Base * src/DBusIPC.cs: * src/PlayerInterface.cs: * src/PlaylistModel.cs: * src/Preferences.cs: Fix references from Core.Instance.Player to Banshee.Base.PlayerEngineCore.ActivePlayer * src/Banshee.Base/Makefile.am: Added PlayerEngineCore.cs * src/Banshee.Base/PlayerEngineCore.cs: Moved all IPlayerEngine code to new static class accessible to plugins 2005-12-21 Aaron Bockover * banshee.mdp: Updated MonoDevelop project * data/banshee.desktop.in.in: Updated Exec pattern * src/Library.cs: Added new source for the "Frobinator", LocalQueueSource * src/Main.cs: Support --enqueue * src/Makefile.am: Added FileTrackInfo.cs * src/FileTrackInfo.cs: New TrackInfo class that works only with local files; does not touch the Library * src/PlayerInterface.cs: Select the Frobinator if it is filled as the default source; Support the Frobinator when changing sources * src/PlaylistModel.cs (LoadFromLocalQueue): Support loading from the the Frobinator * src/SourceView.cs: Support adding the Frobinator as a source * src/Banshee.Base/ArgumentQueue.cs: Added "File" support with the --enqueue option... it is very special * src/Banshee.Base/Dap/Dap.cs: Fixed minor bug with GetIcon 2005-12-21 Aaron Bockover * src/Main.cs: Refactored, organized, and cleaned up the entry code, command line parsing, and instance detection; added three new command line arguments: --set-position, --hide-field, and --dap * src/DBusIPC.cs: Added a SelectDap method akin to SelectAudioCd, works with --dap %h (for Gnome Volume Manager); for any D-Bus methods that return string, ensure null is not returned to avoid dbus-sharp bug (return String.Empty instead) 2005-12-21 Aaron Bockover * src/Main.cs: if D-Bus support is disabled, fall back on process checking to do instance detection * src/Banshee.Base/NetworkDetect.cs: Do not try to Dispose a null NetworkManager.Manager object * src/DBusIPC.cs: Do not die when D-Bus can't be found; log a warning and continue to load the player, but some features will probably be disabled: IPC commands and queries / instance detection (Session Bus) HAL (System Bus) - Audio CD detection - DAP detection NetworkManager (System Bus) 2005-12-20 Aaron Bockover * banshee.mdp: Updated MonoDevelop project * src/PlayerInterface.cs: Added UI support for Audio CD status reporting using the HighlightMessageArea widget * src/Banshee.Base/ImportManager.cs: Fall back on the Stock.Find icon * src/Banshee.Base/NetworkDetect.cs: Expose NetworkManager.Manager * src/Banshee.Base/Dap/DapCore.cs: Play nice when the Banshee.Dap directory does not exist, fixes BGO # * src/Banshee.Widgets/Makefile.am: Renamed HighlightStatusBar.cs to HighlightMessageArea.cs * src/Banshee.Widgets/HighlightMessageArea.cs: Renamed file from HighlightStatusBar.cs; finished initial working version of the widget with proper drawing and actions 2005-12-19 Aaron Bockover * src/Banshee.Widgets/NotificationAreaIcon.cs: Cleaned up code, and Miguel committed his string marshalling fix regarding 77026 in Ximian Bugzilla; removed Banshee.Widgets namespace to keep maintainence easier for other apps. * src/NotificationAreaIcon.cs: class renamed to NotificationAreaIconContainer; adjust instantiation of NotificationAreaIcon to reflect removal of Banshee.Widgets namespace * data/banshee.glade: renamed the main/view container 'Main Container' * banshee.mdp: Updated MonoDevelop project * src/Banshee.Widgets/HighlightStatusBar.cs: skeleton for new widget to show 'important' status messages * src/Banshee.Widgets/Makefile.am: added HighlightStatusBar.cs * src/Banshee.Dap/Ipod/IpodDap.cs: removed manual path lookup for icon fallback; rely only on base.GetIcon if icon is not in the theme * src/Banshee.Base/NetworkDetect.cs: Added Dispose method to chain into manager.Dispose * src/Banshee.Base/NetworkManager/Manager.cs: Added a Dispose method to suppress the GC finalizing the D-Bus proxy object to work around the bad IL in finalizer bug * src/Banshee.Base/Globals.cs: Call Dispose on NetworkDetect * src/Banshee.Base/IconThemeUtils.cs: Added a new LoadIcon overload to accept a params array of icon names for fallbacks: LoadIcon("multimedia-player-ipod", "multimedia-player", "gnome-dev-ipod") * src/Main.cs: Suppress finalizing the dbusCore D-Bus proxy object * src/PlayerInterface.cs: Do not show the rating/playcount/last played columns in the audio CD view; remove references to the SyncColumn; don't steal space when source view is in edit mode; show the song title in the title bar; unregister the dbus server object when we shut down banshee; NotificationAreaIcon->NotificationAreaIconContainer; add skeleton support for the new HighlightStatusBar for Audio CD status messages * src/PlaylistView.cs: expose the rating/playcount/last played columns so the main UI can show/hide as needed for different views; remove the sync column; show DRM/protected status in the play indicator column * src/RatingRenderer.cs: minor fixes * src/SourceView.cs: pull in the audio cd source icon from the theme; add an EditingRow property to tell the UI that the source view is in edit mode 2005-12-18 Aaron Bockover * banshee.mdp: Updated MonoDevelop project * src/Library.cs: Updated to allow proper device renaming * src/DapPropertiesDialog.cs: Dialog box to show properties of a DAP; allows changing of the Name and Owner properties * src/Makefile.am: Added DapPropertiesDialog.cs * src/PlayerInterface.cs: Enable showing of the properties dialog for DAPs; properly update DAP devices when name/owner is changed * src/Banshee.Base/Utilities.cs: Added a ReflectionUtil class - contains IsVirtualMethodImplemented which determines if a subclass implements a virtual method in its base class; used by Banshee.Dap.DapDevice to see if a DAP supports setting the name and/or owner on the device * src/Banshee.Base/Dap/Dap.cs: Allow detecting whether or not the DAP supports setting name/owner; move setting to SetName/SetOwner as a virtual method for DAP implementations to override * src/Banshee.Dap/Ipod/IpodDap.cs: Implement SetName/SetOwner * src/Banshee.Dap/Njb/NjbDap.cs: Implement SetOwner 2005-12-18 Gabriel Burt * data/banshee.desktop.in.in: Change Comment to 'Play and organize your music', following suggestions of the HIG. * data/banshee.glade: Change CheckButton labels to sentence case. * src/PlayerInterface.cs: Change tooltips to sentence case. * src/Banshee.Base/PipelineProfile.cs: Add comment for translators. 2005-12-18 Aaron Bockover * src/PlayerInterface.cs: Show a warning dialog when trying to play an "unplayable" track; set the window icon and title for log dialogs * src/Banshee.Dap/Njb/Makefile.am: Added NjbDapTrackInfo.cs * src/Banshee.Dap/Njb/NjbDapTrackInfo.cs: DapTrackInfo implementation for NJB devices * src/Banshee.Dap/Njb/NjbDap.cs: Added support to list tracks; install device properties from the device * src/Banshee.Base/Dap/Dap.cs: Added UID support through the public Uid property * src/Banshee.Base/Dap/DapTrackInfo.cs: All implementations now have CanSaveToDatabase = false * src/Banshee.Base/IPlayerEngine.cs: * src/Banshee.MediaEngine/Gstreamer/GstPlayerEngine.cs: * src/Banshee.MediaEngine/Helix/HelixPlayer.cs: * src/Banshee.MediaEngine/Vlc/VlcPlayerEngine.cs: Changed Open method to accept a System.Uri as a second parameter - use it instead of TrackInfo.Uri 2005-12-18 Aaron Bockover * src/PlayerInterface.cs: Updated DAP synchronize dialog to have wording generic for all DAPs (was very iPod specific), use HighlightedSource instead of SelectedSource for getting the DapSource * src/Banshee.Dap/Njb/NjbDap.cs: Added a GenericName override, added SupportedCodec attributes 2005-12-18 Aaron Bockover * vacuum.sh: Removed * Makefile.am: Added MAINTAINERCLEANFILES 2005-12-18 Aaron Bockover * configure.ac: Do not copy the provided njb-sharp.dll.config from njb-sharp; we provide our own for the sake of libnjbglue. * src/Banshee.Dap/Njb/njb-sharp.dll.config.in: Added njb-sharp.dll DLL map for libnjb/libusb/libnjbglue * src/Banshee.Dap/Njb/Makefile.am: Install njb-sharp.dll.config * src/Banshee.Dap/Njb/NjbDap.cs: Initialize the NJB Discoverer inside the NjbDap type constructor and catch any exceptions it may throw; rely on Njb.DeviceId table to pre-verify a USB device as an NJB device using usb.vendor_id and usb.product_id properties from HAL (removes requirement of updated FDI files in HAL to expose a portable_audio_player.type=njb property; Have the discoverer rescan for NJB devices after a new USB device passes the vendor_id/product_id test * src/Banshee.Dap/Njb/NjbDap.cs: * src/Banshee.Dap/Ipod/IpodDap.cs: Do not try to fall back on loading custom icon from a path. Only try custom icon from the theme and fall back on base.GetIcon() * src/Banshee.Base/Dap/DapCore.cs: Added a timeout+re-probe to handle a device throwing WaitForTimeoutException during probe initialization * src/Banshee.Base/Dap/DapMisc.cs: Added WaitForTimeoutException that is similar to WaitForPropertyChangeException only the re-probe mechanism is a timeout instead of a property change signal from HAL; not actually in use, but could be useful for other DAP detection in the future * src/Core.cs: Removed UserRealName/UserFirstName fields; * src/Library.cs: Removed old IpodSource; show the user's name for the name of the library (i.e. Aaron's Music Library) * src/PlayerInterface.cs: All custom source name setting is done in the proper source (LibrarySource was changed for this); minor syntax cleaning 2005-12-17 Aaron Bockover * configure.ac: * data/images/Makefile.am: * data/images/ipod/*: Removed ipod/DAP images as they will be a part of an extended version of the Tango icon theme (http://tango-project.org). A separate package for installing these icons into Tango is available for the time being: http://banshee-project.org/files/misc/tango-extra-devices-0.6.2.tar.gz 2005-12-14 Aaron Bockover * configure.ac: Version 0.10.1 release; only check for spider GStreamer element against GStreamer 0.8 * src/PlayerInterface.cs: Re-enable tooltips, perform source actions on the highlighted source instead of selected source * docs/en/*: Updated monodoc documentation 2005-12-14 Aaron Bockover * configure.ac: Version 0.10.1 * banshee.mdp: Updated MonoDevelop project * data/Makefile.am: Added banshee.glade and UIManagerLayout.xml * data/banshee.glade: Consolidated multiple glade files from data/glade/* * data/UIManagerLayout.xml: XML defining menus for new UIManager/Action layout; actions defined in src/Banshee.Base/ActionManager.cs * data/glade/*: Removed; glade is now in data/banshee.glade * data/images/ipod/Makefile.am: Install icons to devices/ instead of extras/devices * src/BurnCore.cs: * src/RipTransaction.cs: * src/Banshee.Base/FileEncodeAction.cs: Set the Header property on ActiveUserEvent to show more detail when performing actions * src/TrackProperties.cs: Load UI from banshee.glade, do not show advanced properties option if tracks are on an audio CD * src/Preferences.cs: Load UI from banshee.glade * src/DBusIPC.cs: Added more functionality to D-Bus API thanks in part to Thijs Vermeir: set volume/set position * src/BansheeDbusClient.cs: Added abstract signatures to BansheeCore remote D-Bus class * src/Library.cs: Moved BytesToString to Banshee.Dap.Utilities; replaced local calls with Utilities.BytesToString * src/LibraryTrackInfo.cs: Read ASIN from the database to enable cover art from local tracks where this is set (by the banshee ripper) * src/Makefile.am: Removed data/glade/* references; replaced with references to data/banshee.glade * src/VersionInformationDialog.cs: Increased default width of dialog * src/SourceView.cs: Moved ColorBlend to Banshee.Base.Utilities; added a ResetHighlight method to highlight the selected/active source (this is used by the source popup menu in PlayerInterface.cs) * src/Banshee.Widgets/CoverArtThumbnail.cs: Added a new cover art widget class: CoverArtView that simply draws a cover and scales with the correct ratio; used to display cover art underneath the source view in the main interface * src/StockIcons.cs: Load all theme icons that Banshee will need as stock icons, fall back on resource icons if not available as stock or in the theme * src/TrackInfoHeader.cs: Redesigned header for displaying track information * src/NotificationAreaIcon.cs: Use Globals.ActionManager to load the tray icon menu * src/PlayerInterface.cs: Moved all menu and major buttons to the new UIManager/Action setup; cleaned up, refactored, and reorganized a lot of code; added some methods to allow the D-Bus object to set the volume and perform seek operations; Added/fixed --audio-cd, --dap, and --play command line option support; lots of general UI clean up and polish * src/Banshee.Widgets/Makefile.am: Added ActionButton.cs * src/Banshee.Widgets/ActionButton.cs: Two classes that work with Gtk.Action objects: ActionButton and ActionToggleButton * src/Banshee.Base/ActionManager.cs: Define all actions and some helper methods for dealing with Gtk.Action and widgets * src/Banshee.Base/Dap/Dap.cs: GetIcon falls back first on the generic multimedia-player icon from the icon theme and then on gnome-dev-ipod; provide GenericName and HalUdi properties * src/Banshee.Dap/Ipod/IpodDap.cs: Load ipod icon from the theme and fall back on loading from a file; implement GenericName, return as "iPod" * src/Banshee.Base/ArgumentQueue.cs: Dequeue returns the object just removed from the queue * src/Banshee.Base/IconThemeUtils.cs: Added HasIcon() method to determine if an icon is available in the defaul theme * src/Banshee.Base/Utilities.cs: Fixed BytesToString implementation to properly round and display fractional GB sizes; added ColorBlend method * src/Banshee.Base/Makefile.am: Added UIManagerLayout.xml as a resource * src/Banshee.Base/Globals.cs: Added ActionManager property to return global ActionManager instance * src/Banshee.Base/GConfKeys.cs: Added ShowCoverArt key 2005-12-13 Aaron Bockover * src/BansheeDbusClient.cs: Sample program using the the Banshee D-Bus API to do basic playback control and display the current song * src/BansheeDbusClient.Makefile: A simple Makefile to build the Banshee Dbus Client sample program * src/Makefile.am: Added BansheeDbusClient.{Makefile,cs} to EXTRA_DIST; added a 'dbus-client-sample' rule to build the sample client 2005-12-08 Aaron Bockover * src/Banshee.Base/Utilities.cs: Added UnmountVolume and ExecProcess utility methods * src/Banshee.Base/AudioCd/AudioCdDisk.cs: Call Utilities.UnmountVolume if audio CD happens to be mounted (multi-session disk) before calling the eject ioctl * src/Banshee.Base/HalCore.cs: Added license header to file 2005-12-08 Aaron Bockover * src/Bashee.Base/AudioCd/AudioCdCore.cs: Fixed minor detection bug; multi-session discs were only being detected - regular audio CDs were not 2005-12-08 Aaron Bockover * src/Banshee.Base/NetworkDetect.cs: whoops, missing closing parenthesis 2005-12-08 Aaron Bockover * src/Banshee.Base/NetworkDetect.cs: Only fire StateChanged event if the state change is State.Connected or State.Disconnected * src/Banshee.Base/NetworkManager/Manager.cs: Changed header to show proper file name 2005-12-08 Aaron Bockover * banshee.mdp: Updated MonoDevelop project * src/Banshee.Base/NetworkManager/*.c: C# implementation of the NetworkManager DBus API using dbus-sharp * src/Banshee.Base/NetworkDetect.cs: front-end class to basic network detection and notification through NetworkManager; if NetworkManager is not available, NetworkDetect always assumes a connection is available * src/Banshee.Base/AudioCdDisk.cs: Become 'Network Aware': will not attempt to fetch track information from MusicBrainz if there is not a network connection; will fetch information once a connection becomes available * src/Banshee.Base/Makefile.am: Added NetworkManager C# sources * src/Banshee.Base/Globals.cs: Added a Network property and placeholder Dispose method * src/Core.cs (Shutdown): Call Globals.Dispose() 2005-12-06 Aaron Bockover * src/PlaylistModel.cs: Minor fix 2005-12-06 Aaron Bockover * configure.ac: Fixed weird VERSION/ASM_VERSION definitions; Version 0.10 * NEWS: Updated 2005-12-06 Aaron Bockover * configure.ac: Require ipod-sharp 0.5.12 * docs/*: Updated API Documentation * banshee.mdp: updated MonoDevelop project * src/Banshee.Widgets/ActiveUserEvent.cs: Fixed bug regarding multiple timeouts * src/Banshee.Dap/Njb/Makefile.am: Link against Banshee.Widgets.dll * src/Banshee.Dap/Njb/NjbDap.cs: Placeholder implementation of Synchronize method * src/Banshee.Dap/Ipod/Makefile.am: link against Banshee.Widgets.dll and Mono.Posix * src/Banshee.Dap/Ipod/IpodDapTrackInfo.cs: Updated with minor fixes * src/Banshee.Dap/Ipod/IpodDap.cs: Full syncing implementation of new syncing support in generic DAP base class * src/Banshee.Base/Dap/DapMisc.cs: Misc/Utility generic DAP supporting types * src/Banshee.Base/Dap/Dap.cs: Now supports manual and automatic generic syncing and transcoding * src/Banshee.Base/Utilities.cs: Disabled Event class, added PathUtil.MakeFileNameKey * src/Banshee.Base/Makefile.am: add PipelineProfile.cs, FileEncoder.cs, GstFileEncoder.cs, FileEncodeAction.cs, DapMisc.cs * src/Banshee.Base/IconThemeUtils.cs: Use Entry Assembly instead of Calling Assembly as all the resources are in the Entry Assembly * src/Banshee.Base/HalCore.cs: Don't use Event.Invoke for now, it has some issues * src/Banshee.Base/GstMisc.cs: Add filter to mime-type fetching in case mime type is returned with attributes (gvfs) * src/SourceView.cs: Re-enabled DAP updating through DnD * src/PlaylistView.cs: Safe-guard against potential nullrefs in the renderer data functions * src/PlayerInterface.cs: Connected DAP GUI elements back to DAP syncing events, simplified DAP syncing entry point, re-enabled DAP syncing; show ripped tracks in library view when they become available and if they match any active search (fixes BGO #316132) * src/Makefile.am: Moved FileEncoder.cs, GstFileEncoder.cs, FileEncodeTransaction.cs, and PipelineProfile.cs to Banshee.Base * src/Library.cs: Connected DapSource.IsSyncing to DAP device; moved Library.MakeFileNameKey to Banshee.Base.PathUtils 2005-12-05 Aaron Bockover * src/Banshee.MediaEngine/Gstreamer/Makefile.am: Define whether the C engine is 0.8 or 0.10 * src/Banshee.MediaEngine/Gstreamer/GstPlayerEngine.cs: Added an IPlayerEngine implementation for the 0.10 backend * libbanshee/gst-playback-0.10.c: Merged the GStreamer 0.10 playback backend * libbanshee/gst-misc-0.10.c: Disabled typefind again, as 0.10 seems to report everything as application/x-id3 * entagged-sharp/*: Updated entagged-sharp checkout 2005-12-05 Mike Kestner * src/Banshee.Dap/*/Makefile.am: only make the _SCRIPTS optional. 2005-12-05 Aaron Bockover * libbanshee/gst-misc-0.10.c: gstreamer_initialize and gstreamer_detect_mimetype ported to GStreamer 0.10 * src/PlayerInterface.cs: disabled specialkeys for now, there are problems * src/Banshee.Widgets/ActiveUserEvent.cs: Added a Header property to show a bold header on top of the regular text message * src/Banshee.Base/ImportManager.cs: Set user_event.Header to the count progress and user_event.Message to the returned message (filename) * banshee.mdp: Updated MonoDevelop project * configure.ac: renamed --with-gstreamer-dev to --with-gstreamer-0-10, fixed some minor GStreamer 0.10 detection issues * data/glade/player.glade: Hide the 'new playlist' button, will probably be removed in the future * src/ToggleStates.cs: Updated state strings to 'Shuffle' and 'Continuous' * src/Banshee.Widgets/ActiveUserEvent.cs: minor thread fix * src/Banshee.Widgets/MultiStateToggleButton.cs: minor display fix * libbanshee/Makefile.am: Reorganized the way the GStreamer sources are handled so the -0.8 ones are used if GStreamer 0.8 is enabled and the 0.10 ones if --with-gstreamer-0-10 was passed to configure * libbanshee/: Renamed gstreamer to have a gst- prefix and a version number suffix (-0.8 or -0.10). 0.10 versions have the API skeletons so they will build against GStreamer 0.10 and can be ported one at a time; tabs->spaces on everything too 2005-12-04 Aaron Bockover * src/AboutBox.cs: Added Stephane Raimbault to translators * src/Makefile.am: Make distcheck happy * src/PlayerInterface.cs: Report when a song cannot be imported * src/Banshee.Base/ImportManager.cs: Increase progress reporting resolution 2005-12-04 Aaron Bockover * configure.ac: Bump to 0.10, added fr translation to ALL_LINGUAS * banshee.mdp: Updated MonoDevelop project * docs/*: Updated API docs * entagged-sharp/Tag.cs: minor fix * libbanshee/gst-misc.c: Added gstreamer_initialize from gst-init.c; added new gstreamer_detect_mimetype function * libbanshee/gst-misc.h: Added gstreamer_initialize, gstreamer_detect_mimetype * libbanshee/Makefile.am: Removed gst-init.c/gst-init.h * libbanshee/gst-init.[ch]: Removed, gstreamer_initialize moved to gst-misc.c * libbanshee/gst-player-engine.c: * libbanshee/gst-encode.c: * libbanshee/cd-rip.c: Include gst-misc.h instead of gst-init.h * src/Makefile.am: update icon resources; build Banshee.Widgets before Banshee.Base; removed ThemeIcons.cs, GstMisc.cs (now in Banshee.Base), use $(top_builddir) instead of $(srcdir)../ for resources * src/PlaylistModel.cs: removed ImportCanUpdate; now handled by PlayerUI; removed LibraryLoadTransaction/FileLoadTransaction * src/PlayerInterface.cs: Removed old FileLoadTransaction method of importing to library; using new ImportManager - fixed BGO #314965, #318330; only show newly imported songs in the view if in library view; only add newly imported songs to library view if no search is active or the new song matches the current search; minor fixes to OnSimpleSearch; moved search matching to separate method: DoesTrackMatchSearch - fixed BGO #316102; use new IconThemeUtils for loading icons from the icon theme where applicable; fixed BGO #323202 * src/LibraryTrackInfo.cs: Use Gstreamer.DetectMimeType to parse mime-type; set the mimetype field to Entagged.AudioFile.MimeType property; mime-type is now saved to the database * src/StockIcons.cs: Renamed applicable icons to the proper icon theme name * src/Core.cs (Shutdown): Call Banshee.Dap.DapCore.Dispose() * src/AboutBox.cs: * src/BurnCore.cs: * src/Dialogs.cs: * src/LogCoreViewer.cs: * src/Preferences.cs: * src/VersionInformationDialog.cs: Use IconThemeUtils to set window icon and any applicable icon theme icons * src/NotificationAreaIcon.cs: * src/ToggleStates.cs: Use IconThemeUtils * src/TrackProperties.cs: IconThemUtils to set window icon, use Gstreamer.DetectMimeType to load mime type * src/Banshee.Widgets/ActiveUserEvent.cs: Fixed up CancelRequest event invokation; added a get accessor for Fraction property * src/Banshee.Widgets/SearchEntry.cs: cleaned up a bit; added IsQueryAvailable property; return a Trim()med string for Query property * src/Banshee.Widgets/VolumeButton.cs: Use proper icon theme icon names * src/Banshee.Dap/Ipod/IpodDap.cs (Eject): Call base.Eject() after iPod specific eject finishes * src/Banshee.Dap/Ipod/Makefile.am: Cleand up a bit; * src/Banshee.Dap/Njb/Makefile.am: cleaned up a bit; install all NJB assemblies and shared libraries to Njb banshee DAP directory * src/Banshee.Dap/Njb/NjbDap.cs: More skeleton work on NJB support; devices now will show up, so detection is working; add/remove HAL events are a little out of sync, need to fix that * src/Banshee.Base/ImportManager.cs: New import backend for managing import requests and proxying final URIs to be imported; uses new ActiveUserEvent progress reporting interface * src/Banshee.Base/UriList.cs: Class for properly dealing with many forms of path/URI input (string, string with \r\n delimiters, SelectionData, and string []) * src/Banshee.Base/GstMisc.cs: moved from src/; added a DetectMimeType method to find the mime type of a file: uses GStreamer typefind element, falls back on Gnome.Vfs.MimeType, falls back on entagged/ * src/Banshee.Base/IconThemeUtils.cs: utility class for loading pixbufs from the icon theme and falling back on pixbuf resources in the calling assembly * src/Banshee.Base/Dap/DapCore.cs: Add