From bbf1939d695e46a37c6a66abe89aa14a48cf78a6 Mon Sep 17 00:00:00 2001 From: kurikinton Date: Tue, 15 Dec 2020 13:41:42 +0900 Subject: [PATCH] For macOS Big Sur 11.1 --- Info.plist | 35 ++--------------------------------- LFApp.h | 2 +- LFApp.m | 9 +-------- 3 files changed, 4 insertions(+), 42 deletions(-) diff --git a/Info.plist b/Info.plist index 7947687..7c8d2d3 100644 --- a/Info.plist +++ b/Info.plist @@ -24,40 +24,9 @@ 1 NSPrincipalClass LetterFix - SupportedPluginCompatibilityUUIDs + Supported11.1PluginCompatibilityUUIDs - 0941BB9F-231F-452D-A26F-47A43863C991 - FBE5B158-5602-4A6D-9CC5-8461B9B7054E - 1CD40D64-945D-4D50-B12D-9CD865533506 - 88ED2D4C-D384-4BF5-8E94-B533455E6AAF - F4C26776-22B3-4A0A-96E1-EA8E4482E0B5 - D1EFE124-86FF-4751-BF00-80B2C0D6F2E4 - 800E5C92-87D3-429B-8740-5C6183CD13EA - 7C051997-F45A-4523-B053-2D262F94C775 - 60D52D22-7491-4CA7-95BA-88215BD88F8E - AB695A2B-4605-4A74-A99F-AF9F9C92C41B - DAF41AB7-F9AD-4273-9934-C81C74705B69 - 1550C683-EA48-4036-B7CE-FB6F5D13EE02 - 71562B89-0D90-4588-8E94-A75B701D6443 - - Supported10.12PluginCompatibilityUUIDs - - 36CCB8BB-2207-455E-89BC-B9D6E47ABB5B - 9054AFD9-2607-489E-8E63-8B09A749BC61 - 1CD3B36A-0E3B-4A26-8F7E-5BDF96AAC97E - 21560BD9-A3CC-482E-9B99-95B7BF61EDC1 - - Supported10.13PluginCompatibilityUUIDs - - C86CD990-4660-4E36-8CDA-7454DEB2E199 - - Supported10.14PluginCompatibilityUUIDs - - A4343FAF-AE18-40D0-8A16-DFAE481AF9C1 - - Supported10.15PluginCompatibilityUUIDs - - 6EEA38FB-1A0B-469B-BB35-4C2E0EEA9053 + D985F0E4-3BBC-4B95-BBA1-12056AC4A531 Supported11.0PluginCompatibilityUUIDs diff --git a/LFApp.h b/LFApp.h index f86b74b..2dbe62f 100644 --- a/LFApp.h +++ b/LFApp.h @@ -10,7 +10,7 @@ #import //#import "LFMenu.h" -#define LETTERFIX_VERSION "3.0.0" +#define LETTERFIX_VERSION "3.0.1" enum LFversion { LF_Unknown = -1, diff --git a/LFApp.m b/LFApp.m index 9f3115e..69562dd 100644 --- a/LFApp.m +++ b/LFApp.m @@ -65,14 +65,7 @@ break; } } else if (systemVersionMajor == 11) { - switch (systemVersionMinor) { - case 0: - version = LF_BigSur; - break; - default: - version = LF_Unknown; - break; - } + version = LF_BigSur; // 11.x.y } else { version = LF_Unknown; } -- 2.11.0