Skip to content

Commit

Permalink
macOS release updates (#1053)
Browse files Browse the repository at this point in the history
  • Loading branch information
alalamav committed Jul 1, 2021
1 parent 5d2ac2e commit cf24eba
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion apple/xcode/osx/Outline.xcodeproj/project.pbxproj
Expand Up @@ -301,9 +301,9 @@
children = (
FCB2DED41F3E3CAD000C6A44 /* VpnExtension.entitlements */,
FC5FF9121F3E1D1B0032A745 /* Outline.entitlements */,
70BD682D18FFB02D00A1EFCF /* Supporting Files */,
707060AE18FFC05700755D46 /* MainViewController.xib */,
70BD683E18FFB02D00A1EFCF /* Images.xcassets */,
70BD682D18FFB02D00A1EFCF /* Supporting Files */,
);
path = Outline;
sourceTree = "<group>";
Expand Down Expand Up @@ -688,6 +688,7 @@
COPY_PHASE_STRIP = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
EXCLUDED_ARCHS = arm64; /* Remove once framework dependencies support Apple Silicon */
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
Expand Down Expand Up @@ -747,6 +748,7 @@
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
EXCLUDED_ARCHS = arm64; /* Remove once framework dependencies support Apple Silicon */
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
GCC_NO_COMMON_BLOCKS = YES;
Expand Down
2 changes: 1 addition & 1 deletion apple/xcode/osx/Outline/Outline-Info.plist
Expand Up @@ -5,7 +5,7 @@
<key>CFBundleShortVersionString</key>
<string>1.5.0</string>
<key>CFBundleVersion</key>
<string>25</string>
<string>26</string>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
Expand Down
2 changes: 1 addition & 1 deletion apple/xcode/osx/Outline/VpnExtension-Info.plist
Expand Up @@ -19,7 +19,7 @@
<key>CFBundleShortVersionString</key>
<string>1.5.0</string>
<key>CFBundleVersion</key>
<string>25</string>
<string>26</string>
<key>LSMinimumSystemVersion</key>
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
<key>NSExtension</key>
Expand Down
2 changes: 1 addition & 1 deletion src/www/ui_components/app-root.js
Expand Up @@ -694,7 +694,7 @@ export class AppRoot extends mixinBehaviors
}

_computeShouldShowQuitButton(platform) {
return platform === 'Mac OS X' || platform === 'Electron';
return platform === 'macOS' || platform === 'Electron';
}

_computeIsLastVisibleMenuItem(shouldShowQuitButton) {
Expand Down

0 comments on commit cf24eba

Please sign in to comment.