From 36afea6993bab5f603461c64831fc8ffe8dff228 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Sat, 9 Sep 2017 15:39:26 +0100 Subject: [PATCH] mac: Lion is the minumum supported by Xamarin.Mac --- SparkleShare/Mac/Info.plist | 2 +- Sparkles/InstallationInfo.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/SparkleShare/Mac/Info.plist b/SparkleShare/Mac/Info.plist index fdbc3d2c..35ddb428 100755 --- a/SparkleShare/Mac/Info.plist +++ b/SparkleShare/Mac/Info.plist @@ -15,7 +15,7 @@ LSApplicationCategoryType public.app-category.productivity LSMinimumSystemVersion - 10.6 + 10.7 LSUIElement 1 NSMainNibFile diff --git a/Sparkles/InstallationInfo.cs b/Sparkles/InstallationInfo.cs index ff34ffe5..274eddcd 100644 --- a/Sparkles/InstallationInfo.cs +++ b/Sparkles/InstallationInfo.cs @@ -77,8 +77,8 @@ namespace Sparkles { 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;