├── .gitignore ├── Fastmate.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── Debugger.xcscheme │ └── Fastmate.xcscheme ├── Fastmate ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── fastmate-1024.png │ │ ├── fastmate-256.png │ │ ├── fastmate-512.png │ │ └── fastmate-513.png │ ├── Contents.json │ ├── status-bar-unread.imageset │ │ ├── Contents.json │ │ └── status-bar-unread.png │ └── status-bar.imageset │ │ ├── Contents.json │ │ └── status-bar.png ├── Base.lproj │ └── Main.storyboard ├── Credits.rtf ├── Fastmate-Bridging-Header.h ├── Fastmate.entitlements ├── Fastmate.js ├── Fastmate.sdef ├── FileDownloadManager.h ├── FileDownloadManager.m ├── FileDownloadTask.h ├── FileDownloadTask.m ├── FileDownloadUtil.h ├── FileDownloadUtil.m ├── Info.plist ├── JavaScriptCommand.swift ├── MainWindowController.swift ├── Notifications.swift ├── PrintManager.h ├── PrintManager.m ├── SettingsViewController.h ├── SettingsViewController.m ├── URLRouter.swift ├── UnreadCount.swift ├── UserDefaults.swift ├── UserDefaultsKeys.h ├── VersionChecker.h ├── VersionChecker.m ├── WebViewController.h ├── WebViewController.m ├── WebViewDelegate.swift └── main.m ├── LICENSE ├── README.md └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/.gitignore -------------------------------------------------------------------------------- /Fastmate.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Fastmate.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Fastmate.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Fastmate.xcodeproj/xcshareddata/xcschemes/Debugger.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate.xcodeproj/xcshareddata/xcschemes/Debugger.xcscheme -------------------------------------------------------------------------------- /Fastmate.xcodeproj/xcshareddata/xcschemes/Fastmate.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate.xcodeproj/xcshareddata/xcschemes/Fastmate.xcscheme -------------------------------------------------------------------------------- /Fastmate/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/AppDelegate.swift -------------------------------------------------------------------------------- /Fastmate/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Fastmate/Assets.xcassets/AppIcon.appiconset/fastmate-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/Assets.xcassets/AppIcon.appiconset/fastmate-1024.png -------------------------------------------------------------------------------- /Fastmate/Assets.xcassets/AppIcon.appiconset/fastmate-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/Assets.xcassets/AppIcon.appiconset/fastmate-256.png -------------------------------------------------------------------------------- /Fastmate/Assets.xcassets/AppIcon.appiconset/fastmate-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/Assets.xcassets/AppIcon.appiconset/fastmate-512.png -------------------------------------------------------------------------------- /Fastmate/Assets.xcassets/AppIcon.appiconset/fastmate-513.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/Assets.xcassets/AppIcon.appiconset/fastmate-513.png -------------------------------------------------------------------------------- /Fastmate/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Fastmate/Assets.xcassets/status-bar-unread.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/Assets.xcassets/status-bar-unread.imageset/Contents.json -------------------------------------------------------------------------------- /Fastmate/Assets.xcassets/status-bar-unread.imageset/status-bar-unread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/Assets.xcassets/status-bar-unread.imageset/status-bar-unread.png -------------------------------------------------------------------------------- /Fastmate/Assets.xcassets/status-bar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/Assets.xcassets/status-bar.imageset/Contents.json -------------------------------------------------------------------------------- /Fastmate/Assets.xcassets/status-bar.imageset/status-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/Assets.xcassets/status-bar.imageset/status-bar.png -------------------------------------------------------------------------------- /Fastmate/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Fastmate/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/Credits.rtf -------------------------------------------------------------------------------- /Fastmate/Fastmate-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/Fastmate-Bridging-Header.h -------------------------------------------------------------------------------- /Fastmate/Fastmate.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/Fastmate.entitlements -------------------------------------------------------------------------------- /Fastmate/Fastmate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/Fastmate.js -------------------------------------------------------------------------------- /Fastmate/Fastmate.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/Fastmate.sdef -------------------------------------------------------------------------------- /Fastmate/FileDownloadManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/FileDownloadManager.h -------------------------------------------------------------------------------- /Fastmate/FileDownloadManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/FileDownloadManager.m -------------------------------------------------------------------------------- /Fastmate/FileDownloadTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/FileDownloadTask.h -------------------------------------------------------------------------------- /Fastmate/FileDownloadTask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/FileDownloadTask.m -------------------------------------------------------------------------------- /Fastmate/FileDownloadUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/FileDownloadUtil.h -------------------------------------------------------------------------------- /Fastmate/FileDownloadUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/FileDownloadUtil.m -------------------------------------------------------------------------------- /Fastmate/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/Info.plist -------------------------------------------------------------------------------- /Fastmate/JavaScriptCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/JavaScriptCommand.swift -------------------------------------------------------------------------------- /Fastmate/MainWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/MainWindowController.swift -------------------------------------------------------------------------------- /Fastmate/Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/Notifications.swift -------------------------------------------------------------------------------- /Fastmate/PrintManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/PrintManager.h -------------------------------------------------------------------------------- /Fastmate/PrintManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/PrintManager.m -------------------------------------------------------------------------------- /Fastmate/SettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/SettingsViewController.h -------------------------------------------------------------------------------- /Fastmate/SettingsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/SettingsViewController.m -------------------------------------------------------------------------------- /Fastmate/URLRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/URLRouter.swift -------------------------------------------------------------------------------- /Fastmate/UnreadCount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/UnreadCount.swift -------------------------------------------------------------------------------- /Fastmate/UserDefaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/UserDefaults.swift -------------------------------------------------------------------------------- /Fastmate/UserDefaultsKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/UserDefaultsKeys.h -------------------------------------------------------------------------------- /Fastmate/VersionChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/VersionChecker.h -------------------------------------------------------------------------------- /Fastmate/VersionChecker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/VersionChecker.m -------------------------------------------------------------------------------- /Fastmate/WebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/WebViewController.h -------------------------------------------------------------------------------- /Fastmate/WebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/WebViewController.m -------------------------------------------------------------------------------- /Fastmate/WebViewDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/WebViewDelegate.swift -------------------------------------------------------------------------------- /Fastmate/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/Fastmate/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/README.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelekstrom/fastmate/HEAD/screenshot.png --------------------------------------------------------------------------------