~ubuntu-branches/ubuntu/oneiric/banshee/oneiric-proposed

« back to all changes in this revision

Viewing changes to src/Extensions/Banshee.Lastfm/Banshee.Lastfm.Audioscrobbler/AudioscrobblerService.cs

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2011-08-25 20:48:45 UTC
  • mfrom: (1.15.2 upstream) (6.3.16 experimental)
  • Revision ID: james.westby@ubuntu.com-20110825204845-1rdbhdoitkv3n5u8
Tags: 2.1.3-1ubuntu1
* [e356872] Merge from Debian Experimental, remaining changes:
  + Enable SoundMenu and Disable NotificationArea by default
  + Disable boo and karma extensions
  + Enable and recommnd u1ms and soundmenu extensions
  + Move desktop file for Meego UI to /usr/share/une/applications
  + Change the url for the Amazon store redirector
  + Create the U1MS widget earlier and bump libu1 requirement
  + [9d7c600] Drop upstreamed u1ms-initialize-earlier patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
        private Account account;
65
65
 
66
66
        private bool queued; /* if current_track has been queued */
67
 
        private bool now_playing_sent = false; /* self explanitory :) */
 
67
        private bool now_playing_sent = false; /* self-explanatory :) */
68
68
        private int iterate_countdown = 4 * 4; /* number of times to wait for iterate event before sending now playing */
69
69
 
70
70
        private DateTime song_start_time;
132
132
 
133
133
            actions.Add (new ToggleActionEntry [] {
134
134
                new ToggleActionEntry ("AudioscrobblerEnableAction", null,
135
 
                    Catalog.GetString ("_Enable Song Reporting"), "<control>U",
 
135
                    Catalog.GetString ("_Enable Song Reporting"), null,
136
136
                    Catalog.GetString ("Enable song reporting"), OnToggleEnabled, Enabled)
137
137
            });
138
138