[banshee] LastfmStreaming: Remove the Loved station and add the Mix station
- From: Bertrand Lorentz <blorentz src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [banshee] LastfmStreaming: Remove the Loved station and add the Mix station
- Date: Wed, 29 Dec 2010 16:54:17 +0000 (UTC)
commit de70647418e5888eab1a0eccfb48daaa37961975
Author: Bertrand Lorentz <bertrand lorentz gmail com>
Date: Wed Dec 29 17:50:39 2010 +0100
LastfmStreaming: Remove the Loved station and add the Mix station
The "Loved" radio station is not available anymore, see :
http://www.last.fm/stationchanges2010
The "Mix" radio station is now available, and provides a mix of music
known to the user and some new recommendations :
http://blog.last.fm/2010/10/29/mix-radio-a-new-radio-station
.../Banshee.LastfmStreaming/StationSource.cs | 2 +-
.../Banshee.LastfmStreaming/StationType.cs | 12 ++++++------
2 files changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/src/Extensions/Banshee.LastfmStreaming/Banshee.LastfmStreaming/StationSource.cs b/src/Extensions/Banshee.LastfmStreaming/Banshee.LastfmStreaming/StationSource.cs
index bdec5d4..05c867c 100644
--- a/src/Extensions/Banshee.LastfmStreaming/Banshee.LastfmStreaming/StationSource.cs
+++ b/src/Extensions/Banshee.LastfmStreaming/Banshee.LastfmStreaming/StationSource.cs
@@ -582,7 +582,7 @@ namespace Banshee.LastfmStreaming.Radio
if (stations.Count == 0) {
stations.Add (new StationSource (lastfm, Catalog.GetString ("Recommended"), "Recommended", creator));
stations.Add (new StationSource (lastfm, Catalog.GetString ("Personal"), "Personal", creator));
- stations.Add (new StationSource (lastfm, Catalog.GetString ("Loved"), "Loved", creator));
+ stations.Add (new StationSource (lastfm, Catalog.GetString ("Mix"), "Mix", creator));
stations.Add (new StationSource (lastfm, Catalog.GetString ("Banshee Group"), "Group", "Banshee"));
stations.Add (new StationSource (lastfm, Catalog.GetString ("Neighbors"), "Neighbor", creator));
stations.Add (new StationSource (lastfm, Catalog.GetString ("Creative Commons"), "Tag", "creative commons"));
diff --git a/src/Extensions/Banshee.LastfmStreaming/Banshee.LastfmStreaming/StationType.cs b/src/Extensions/Banshee.LastfmStreaming/Banshee.LastfmStreaming/StationType.cs
index 5d05b54..fb4dbc6 100644
--- a/src/Extensions/Banshee.LastfmStreaming/Banshee.LastfmStreaming/StationType.cs
+++ b/src/Extensions/Banshee.LastfmStreaming/Banshee.LastfmStreaming/StationType.cs
@@ -97,11 +97,11 @@ namespace Banshee.LastfmStreaming.Radio
false
);
- public static StationType Loved = new StationType (
- "Loved",
- Catalog.GetString ("Loved"),
- Catalog.GetString ("By User:"),
- "user/{0}/loved",
+ public static StationType Mix = new StationType (
+ "Mix",
+ Catalog.GetString ("Mix"),
+ Catalog.GetString ("For User:"),
+ "user/{0}/mix",
"emblem-favorite",
true
);
@@ -161,7 +161,7 @@ namespace Banshee.LastfmStreaming.Radio
);
public static StationType [] Types = new StationType [] {
- Recommended, Personal, Loved, Neighbor, Group, Tag, Fan, Similar, LastfmUrl
+ Recommended, Personal, Mix, Neighbor, Group, Tag, Fan, Similar, LastfmUrl
};
}
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]