Skip to content

Commit

Permalink
mac: Lion is the minumum supported by Xamarin.Mac
Browse files Browse the repository at this point in the history
  • Loading branch information
hbons committed Sep 9, 2017
1 parent 012631f commit 7745508
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion SparkleShare/Mac/Info.plist
Expand Up @@ -15,7 +15,7 @@
<key>LSApplicationCategoryType</key>
<string>public.app-category.productivity</string>
<key>LSMinimumSystemVersion</key>
<string>10.6</string>
<string>10.7</string>
<key>LSUIElement</key>
<string>1</string>
<key>NSMainNibFile</key>
Expand Down
4 changes: 2 additions & 2 deletions Sparkles/InstallationInfo.cs
Expand Up @@ -77,8 +77,8 @@ public static string MacOSVersion ()

switch (int.Parse (output)) {
case 7: release = "Lion"; break;
case 8: release = "Mountain Lion"; break;
case 9: release = "Mavericks"; break;
case 8: release = "Mountain Lion"; break;
case 9: release = "Mavericks"; break;
case 10: release = "Yosemite"; break;
case 11: release = "El Capitan"; break;
case 12: release = "Sierra"; break;
Expand Down

0 comments on commit 7745508

Please sign in to comment.