From 1f614c3c6a344033d33555aa0f499c832a202129 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Thu, 14 Dec 2017 22:19:55 -0800 Subject: [PATCH] =?UTF-8?q?Remove=20Dinosaurs=20feature=20for=20now,=20sin?= =?UTF-8?q?ce=20it=E2=80=99s=20scheduled=20for=202.0.=20Fix=20#255.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Evergreen.xcodeproj/project.pbxproj | 4 ---- Evergreen/AppDelegate.swift | 9 --------- 2 files changed, 13 deletions(-) diff --git a/Evergreen.xcodeproj/project.pbxproj b/Evergreen.xcodeproj/project.pbxproj index 5406b55ff..fb42cbdbc 100644 --- a/Evergreen.xcodeproj/project.pbxproj +++ b/Evergreen.xcodeproj/project.pbxproj @@ -77,8 +77,6 @@ 849C64681ED37A5D003D8FC0 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 849C64671ED37A5D003D8FC0 /* Assets.xcassets */; }; 849C646B1ED37A5D003D8FC0 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 849C64691ED37A5D003D8FC0 /* Main.storyboard */; }; 849C64761ED37A5D003D8FC0 /* EvergreenTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 849C64751ED37A5D003D8FC0 /* EvergreenTests.swift */; }; - 84A6B6941FB8D43C006754AC /* DinosaursWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = 84A6B6931FB8D43C006754AC /* DinosaursWindow.xib */; }; - 84A6B6961FB8DBD2006754AC /* DinosaursWindowController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84A6B6951FB8DBD2006754AC /* DinosaursWindowController.swift */; }; 84AFBB3C1FBE76D800BA41CF /* PanicButtonWindowController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84AFBB3B1FBE76D800BA41CF /* PanicButtonWindowController.swift */; }; 84AFBB3E1FBE770200BA41CF /* PanicButtonWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = 84AFBB3D1FBE770200BA41CF /* PanicButtonWindow.xib */; }; 84B06FAE1ED37DBD00F0B54B /* RSCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 84B06FA91ED37DAD00F0B54B /* RSCore.framework */; }; @@ -1330,7 +1328,6 @@ 849C646B1ED37A5D003D8FC0 /* Main.storyboard in Resources */, 849A97B21ED9FA69007D329B /* MainWindow.storyboard in Resources */, 849A979C1ED9EFEB007D329B /* styleSheet.css in Resources */, - 84A6B6941FB8D43C006754AC /* DinosaursWindow.xib in Resources */, 849A97A61ED9F94D007D329B /* Preferences.storyboard in Resources */, ); runOnlyForDeploymentPostprocessing = 0; @@ -1373,7 +1370,6 @@ 84AFBB3C1FBE76D800BA41CF /* PanicButtonWindowController.swift in Sources */, 8426118A1FCB67AA0086A189 /* FeedIconDownloader.swift in Sources */, 84E95D241FB1087500552D99 /* ArticlePasteboardWriter.swift in Sources */, - 84A6B6961FB8DBD2006754AC /* DinosaursWindowController.swift in Sources */, 849A975B1ED9EB0D007D329B /* ArticleUtilities.swift in Sources */, 84DAEE301F86CAFE0058304B /* OPMLImporter.swift in Sources */, 849A975C1ED9EB0D007D329B /* DefaultFeedsImporter.swift in Sources */, diff --git a/Evergreen/AppDelegate.swift b/Evergreen/AppDelegate.swift index efb9b6c80..0d554eefa 100644 --- a/Evergreen/AppDelegate.swift +++ b/Evergreen/AppDelegate.swift @@ -42,7 +42,6 @@ class AppDelegate: NSObject, NSApplicationDelegate, NSUserInterfaceValidations, private var mainWindowController: NSWindowController? private var readerWindows = [NSWindowController]() private var feedListWindowController: NSWindowController? - private var dinosaursWindowController: DinosaursWindowController? private var addFeedController: AddFeedController? private var addFolderWindowController: AddFolderWindowController? private var keyboardShortcutsWindowController: WebViewWindowController? @@ -308,14 +307,6 @@ class AppDelegate: NSObject, NSApplicationDelegate, NSUserInterfaceValidations, feedListWindowController!.showWindow(self) } - @IBAction func showDinosaursWindow(_ sender: Any?) { - - if dinosaursWindowController == nil { - dinosaursWindowController = DinosaursWindowController() - } - dinosaursWindowController!.showWindow(self) - } - @IBAction func showKeyboardShortcutsWindow(_ sender: Any?) { if keyboardShortcutsWindowController == nil {