Require High Sierra.
This commit is contained in:
parent
6a1c39d8a3
commit
fa0d355ab0
|
@ -1381,7 +1381,7 @@
|
||||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||||
MACOSX_DEPLOYMENT_TARGET = 10.12;
|
MACOSX_DEPLOYMENT_TARGET = 10.13;
|
||||||
MTL_ENABLE_DEBUG_INFO = YES;
|
MTL_ENABLE_DEBUG_INFO = YES;
|
||||||
ONLY_ACTIVE_ARCH = YES;
|
ONLY_ACTIVE_ARCH = YES;
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
|
@ -1426,7 +1426,7 @@
|
||||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||||
MACOSX_DEPLOYMENT_TARGET = 10.12;
|
MACOSX_DEPLOYMENT_TARGET = 10.13;
|
||||||
MTL_ENABLE_DEBUG_INFO = NO;
|
MTL_ENABLE_DEBUG_INFO = NO;
|
||||||
SDKROOT = macosx;
|
SDKROOT = macosx;
|
||||||
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
|
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
|
||||||
|
|
|
@ -232,7 +232,7 @@ class AppDelegate: NSObject, NSApplicationDelegate, NSUserInterfaceValidations {
|
||||||
panel.nameFieldStringValue = "MySubscriptions.opml"
|
panel.nameFieldStringValue = "MySubscriptions.opml"
|
||||||
|
|
||||||
let result = panel.runModal()
|
let result = panel.runModal()
|
||||||
if result.rawValue == NSFileHandlingPanelOKButton, let url = panel.url {
|
if result == NSApplication.ModalResponse.OK, let url = panel.url {
|
||||||
DispatchQueue.main.async {
|
DispatchQueue.main.async {
|
||||||
let opmlString = AccountManager.shared.localAccount.OPMLString(indentLevel: 0)
|
let opmlString = AccountManager.shared.localAccount.OPMLString(indentLevel: 0)
|
||||||
do {
|
do {
|
||||||
|
|
12
ToDo.opml
12
ToDo.opml
|
@ -6,17 +6,15 @@
|
||||||
</editor> -->
|
</editor> -->
|
||||||
<title>ToDo</title>
|
<title>ToDo</title>
|
||||||
<dateCreated>Tue, 12 Sep 2017 20:15:17 GMT</dateCreated>
|
<dateCreated>Tue, 12 Sep 2017 20:15:17 GMT</dateCreated>
|
||||||
<expansionState>23,26,30,35,43,44,46,61,66</expansionState>
|
<expansionState>0,21,24,28,33,41,42,44,59,64</expansionState>
|
||||||
<vertScrollState>0</vertScrollState>
|
<vertScrollState>0</vertScrollState>
|
||||||
<windowTop>2634</windowTop>
|
<windowTop>3254</windowTop>
|
||||||
<windowLeft>558</windowLeft>
|
<windowLeft>551</windowLeft>
|
||||||
<windowRight>1290</windowRight>
|
<windowRight>1283</windowRight>
|
||||||
<windowBottom>3393</windowBottom>
|
<windowBottom>4013</windowBottom>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<outline text="App">
|
<outline text="App">
|
||||||
<outline text="Get it building again"/>
|
|
||||||
<outline text="Require High Sierra"/>
|
|
||||||
<outline text="Use new app icon"/>
|
<outline text="Use new app icon"/>
|
||||||
<outline text="Set -NSApplicationCrashOnExceptions YES"/>
|
<outline text="Set -NSApplicationCrashOnExceptions YES"/>
|
||||||
<outline text="Store colors in accent catalog"/>
|
<outline text="Store colors in accent catalog"/>
|
||||||
|
|
Loading…
Reference in New Issue