├── .gitignore ├── .gitmodules ├── .travis.yml ├── Assets ├── Console.ai └── MainWindow.png ├── Console.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── Console.xcscheme ├── Console ├── Classes │ ├── ASL │ │ ├── ASL.swift │ │ ├── ASLMessage.swift │ │ └── ASLSender.swift │ ├── AboutWindowController.swift │ ├── ApplicationDelegate.swift │ ├── Extensions │ │ └── NSArrayController.swift │ ├── MainWindowController.swift │ ├── Preferences.swift │ ├── PreferencesWindowController.swift │ └── Transformers │ │ ├── ArrayIsEmptyValueTransformer.swift │ │ ├── ArrayIsNotEmptyValueTransformer.swift │ │ └── NumberToStringValueTransformer.swift ├── Defaults.plist ├── Info.plist └── UI │ ├── Base.lproj │ ├── Console.AboutWindowController.xib │ ├── Console.MainWindowController.xib │ ├── Console.PreferencesWindowController.xib │ └── MainMenu.xib │ └── Images │ └── Console.icns ├── README.md └── Scripts ├── ccache-config.sh └── ccache.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Console/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Console/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Console/HEAD/.travis.yml -------------------------------------------------------------------------------- /Assets/Console.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Console/HEAD/Assets/Console.ai -------------------------------------------------------------------------------- /Assets/MainWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Console/HEAD/Assets/MainWindow.png -------------------------------------------------------------------------------- /Console.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Console/HEAD/Console.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Console.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Console/HEAD/Console.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Console.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Console/HEAD/Console.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Console.xcodeproj/xcshareddata/xcschemes/Console.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Console/HEAD/Console.xcodeproj/xcshareddata/xcschemes/Console.xcscheme -------------------------------------------------------------------------------- /Console/Classes/ASL/ASL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Console/HEAD/Console/Classes/ASL/ASL.swift -------------------------------------------------------------------------------- /Console/Classes/ASL/ASLMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Console/HEAD/Console/Classes/ASL/ASLMessage.swift -------------------------------------------------------------------------------- /Console/Classes/ASL/ASLSender.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Console/HEAD/Console/Classes/ASL/ASLSender.swift -------------------------------------------------------------------------------- /Console/Classes/AboutWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Console/HEAD/Console/Classes/AboutWindowController.swift -------------------------------------------------------------------------------- /Console/Classes/ApplicationDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Console/HEAD/Console/Classes/ApplicationDelegate.swift -------------------------------------------------------------------------------- /Console/Classes/Extensions/NSArrayController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Console/HEAD/Console/Classes/Extensions/NSArrayController.swift -------------------------------------------------------------------------------- /Console/Classes/MainWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Console/HEAD/Console/Classes/MainWindowController.swift -------------------------------------------------------------------------------- /Console/Classes/Preferences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Console/HEAD/Console/Classes/Preferences.swift -------------------------------------------------------------------------------- /Console/Classes/PreferencesWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Console/HEAD/Console/Classes/PreferencesWindowController.swift -------------------------------------------------------------------------------- /Console/Classes/Transformers/ArrayIsEmptyValueTransformer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Console/HEAD/Console/Classes/Transformers/ArrayIsEmptyValueTransformer.swift -------------------------------------------------------------------------------- /Console/Classes/Transformers/ArrayIsNotEmptyValueTransformer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Console/HEAD/Console/Classes/Transformers/ArrayIsNotEmptyValueTransformer.swift -------------------------------------------------------------------------------- /Console/Classes/Transformers/NumberToStringValueTransformer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Console/HEAD/Console/Classes/Transformers/NumberToStringValueTransformer.swift -------------------------------------------------------------------------------- /Console/Defaults.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Console/HEAD/Console/Defaults.plist -------------------------------------------------------------------------------- /Console/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Console/HEAD/Console/Info.plist -------------------------------------------------------------------------------- /Console/UI/Base.lproj/Console.AboutWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Console/HEAD/Console/UI/Base.lproj/Console.AboutWindowController.xib -------------------------------------------------------------------------------- /Console/UI/Base.lproj/Console.MainWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Console/HEAD/Console/UI/Base.lproj/Console.MainWindowController.xib -------------------------------------------------------------------------------- /Console/UI/Base.lproj/Console.PreferencesWindowController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Console/HEAD/Console/UI/Base.lproj/Console.PreferencesWindowController.xib -------------------------------------------------------------------------------- /Console/UI/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Console/HEAD/Console/UI/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Console/UI/Images/Console.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Console/HEAD/Console/UI/Images/Console.icns -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Console/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/ccache-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Console/HEAD/Scripts/ccache-config.sh -------------------------------------------------------------------------------- /Scripts/ccache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macmade/Console/HEAD/Scripts/ccache.sh --------------------------------------------------------------------------------