Merge pull request #2081 from Wevah/master
Add "Open Application Support Folder" Debug menu item
This commit is contained in:
commit
1dbbd3bd32
@ -604,26 +604,6 @@ class AppDelegate: NSObject, NSApplicationDelegate, NSUserInterfaceValidations,
|
|||||||
Browser.open("https://ranchero.com/netnewswire/privacypolicy", inBackground: false)
|
Browser.open("https://ranchero.com/netnewswire/privacypolicy", inBackground: false)
|
||||||
}
|
}
|
||||||
|
|
||||||
@IBAction func debugDropConditionalGetInfo(_ sender: Any?) {
|
|
||||||
#if DEBUG
|
|
||||||
AccountManager.shared.activeAccounts.forEach{ $0.debugDropConditionalGetInfo() }
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
@IBAction func debugTestCrashReporterWindow(_ sender: Any?) {
|
|
||||||
#if DEBUG
|
|
||||||
crashReportWindowController = CrashReportWindowController(crashLogText: "This is a test crash log.")
|
|
||||||
crashReportWindowController!.testing = true
|
|
||||||
crashReportWindowController!.showWindow(self)
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
@IBAction func debugTestCrashReportSending(_ sender: Any?) {
|
|
||||||
#if DEBUG
|
|
||||||
CrashReporter.sendCrashLogText("This is a test. Hi, Brent.")
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
@IBAction func gotoToday(_ sender: Any?) {
|
@IBAction func gotoToday(_ sender: Any?) {
|
||||||
|
|
||||||
createAndShowMainWindowIfNecessary()
|
createAndShowMainWindowIfNecessary()
|
||||||
@ -671,6 +651,33 @@ extension AppDelegate {
|
|||||||
AccountManager.shared.defaultAccount.debugRunSearch()
|
AccountManager.shared.defaultAccount.debugRunSearch()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@IBAction func debugDropConditionalGetInfo(_ sender: Any?) {
|
||||||
|
#if DEBUG
|
||||||
|
AccountManager.shared.activeAccounts.forEach{ $0.debugDropConditionalGetInfo() }
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
@IBAction func debugTestCrashReporterWindow(_ sender: Any?) {
|
||||||
|
#if DEBUG
|
||||||
|
crashReportWindowController = CrashReportWindowController(crashLogText: "This is a test crash log.")
|
||||||
|
crashReportWindowController!.testing = true
|
||||||
|
crashReportWindowController!.showWindow(self)
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
@IBAction func debugTestCrashReportSending(_ sender: Any?) {
|
||||||
|
#if DEBUG
|
||||||
|
CrashReporter.sendCrashLogText("This is a test. Hi, Brent.")
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
@IBAction func openApplicationSupportFolder(_ sender: Any?) {
|
||||||
|
#if DEBUG
|
||||||
|
guard let appSupport = Platform.dataSubfolder(forApplication: nil, folderName: "") else { return }
|
||||||
|
NSWorkspace.shared.open(URL(fileURLWithPath: appSupport))
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
@IBAction func toggleWebInspectorEnabled(_ sender: Any?) {
|
@IBAction func toggleWebInspectorEnabled(_ sender: Any?) {
|
||||||
#if !MAC_APP_STORE
|
#if !MAC_APP_STORE
|
||||||
let newValue = !AppDefaults.webInspectorEnabled
|
let newValue = !AppDefaults.webInspectorEnabled
|
||||||
@ -683,6 +690,7 @@ extension AppDelegate {
|
|||||||
NotificationCenter.default.post(name: .WebInspectorEnabledDidChange, object: newValue)
|
NotificationCenter.default.post(name: .WebInspectorEnabledDidChange, object: newValue)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private extension AppDelegate {
|
private extension AppDelegate {
|
||||||
|
@ -534,6 +534,12 @@
|
|||||||
<action selector="toggleWebInspectorEnabled:" target="Voe-Tx-rLC" id="SNL-zh-XIE"/>
|
<action selector="toggleWebInspectorEnabled:" target="Voe-Tx-rLC" id="SNL-zh-XIE"/>
|
||||||
</connections>
|
</connections>
|
||||||
</menuItem>
|
</menuItem>
|
||||||
|
<menuItem title="Open Application Support Folder" id="rg6-L6-JUr">
|
||||||
|
<modifierMask key="keyEquivalentModifierMask"/>
|
||||||
|
<connections>
|
||||||
|
<action selector="openApplicationSupportFolder:" target="Ady-hI-5gd" id="gT9-ry-evV"/>
|
||||||
|
</connections>
|
||||||
|
</menuItem>
|
||||||
</items>
|
</items>
|
||||||
</menu>
|
</menu>
|
||||||
</menuItem>
|
</menuItem>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user