Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRolf Bjarne Kvinge <RKvinge@novell.com>2010-02-24 04:10:20 +0300
committerRolf Bjarne Kvinge <RKvinge@novell.com>2010-02-24 04:10:20 +0300
commitc4dd69c9ed030b26accb7f591dc23f381ad8cd91 (patch)
treeb92af6df56016af6577083bb504f2c01a5ffe22b /gui-compare
parent3b53d90252059ae4ddd382e1d40bddbab81ccfca (diff)
2010-02-24 Rolf Bjarne Kvinge <RKvinge@novell.com>
* InfoManager.cs: Add support for SL4 beta. svn path=/trunk/mono-tools/; revision=152317
Diffstat (limited to 'gui-compare')
-rw-r--r--gui-compare/ChangeLog4
-rw-r--r--gui-compare/InfoManager.cs4
2 files changed, 8 insertions, 0 deletions
diff --git a/gui-compare/ChangeLog b/gui-compare/ChangeLog
index 91b28053..d2693bfb 100644
--- a/gui-compare/ChangeLog
+++ b/gui-compare/ChangeLog
@@ -1,3 +1,7 @@
+2010-02-24 Rolf Bjarne Kvinge <RKvinge@novell.com>
+
+ * InfoManager.cs: Add support for SL4 beta.
+
2010-02-12 Marek Habersack <mhabersack@novell.com>
* Comparison.cs: added ExtraInfo field and a new constructor which
diff --git a/gui-compare/InfoManager.cs b/gui-compare/InfoManager.cs
index 5d4c1541..34fb916f 100644
--- a/gui-compare/InfoManager.cs
+++ b/gui-compare/InfoManager.cs
@@ -388,6 +388,9 @@ namespace GuiCompare
u = GetMasterInfoUri ("masterinfos-SL3.tar.gz");
break;
+ case "SL4Beta":
+ u = GetMasterInfoUri ("masterinfos-SL4beta.tar.gz");
+ break;
default:
main.Status = "Profile is unknown";
return;
@@ -686,6 +689,7 @@ namespace GuiCompare
Populate (sub, "API 4.0 beta 2", GetVersionPath ("4.0", "net_4_0"), "4.0", api_4_0);
Populate (sub, "Silverlight 2.0", GetVersionPath ("2.1", "net_2_1"), "SL2", api_sl2);
Populate (sub, "Silverlight 3.0", GetVersionPath ("2.1", "net_2_1"), "SL3", api_sl2);
+ Populate (sub, "Silverlight 4.0 (Beta)", GetVersionPath ("2.1", "net_2_1"), "SL4Beta", api_sl2);
}
static string GetVersionPath (string version, string profile)