├── .gitignore ├── .gitmodules ├── CNAME ├── CONTRIBUTING.md ├── LICENSE ├── Pisth API ├── Guides │ └── Getting Started.md ├── Pisth API.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── Pisth API.xcscheme ├── Pisth API │ ├── Info.plist │ ├── Pisth.swift │ ├── PisthAPT.swift │ └── PisthFile.swift ├── README.md └── build-documentation.sh ├── Pisth APT ├── Pisth APT.xcodeproj │ ├── project.pbxproj │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── Pisth APT.xcscheme │ └── xcuserdata │ │ └── adrian.xcuserdatad │ │ └── xcschemes │ │ └── Pisth APT.xcscheme ├── Pisth APT.xcworkspace │ └── contents.xcworkspacedata ├── Pisth APT │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-57x57@1x.png │ │ │ ├── Icon-App-57x57@2x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-72x72@1x.png │ │ │ ├── Icon-App-72x72@2x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ ├── Icon-Small-50x50@1x.png │ │ │ ├── Icon-Small-50x50@2x.png │ │ │ └── ItunesArtwork@2x.png │ │ ├── Contents.json │ │ ├── Icon.imageset │ │ │ ├── Contents.json │ │ │ └── ItunesArtwork@2x.png │ │ ├── gear.imageset │ │ │ ├── Contents.json │ │ │ └── gear.png │ │ ├── install.imageset │ │ │ ├── Contents.json │ │ │ └── install.png │ │ ├── package.imageset │ │ │ ├── Contents.json │ │ │ └── package.png │ │ └── update.imageset │ │ │ ├── Contents.json │ │ │ └── update.png │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── GoogleService-Info.plist │ ├── Helpers │ │ ├── Extensions │ │ │ └── UIWindow+topViewController.swift │ │ └── OpenReason.swift │ ├── Info.plist │ ├── Pisth.xcdatamodeld │ │ └── Pisth.xcdatamodel │ │ │ └── contents │ ├── ViewControllers │ │ ├── Classes │ │ │ ├── ConnectingViewController.swift │ │ │ ├── ConnectionsTableViewController.swift │ │ │ ├── ErrorViewController.swift │ │ │ ├── InstalledTableViewController.swift │ │ │ ├── InstallerViewController.swift │ │ │ ├── PackagesTableViewController.swift │ │ │ ├── SettingsTableViewController.swift │ │ │ ├── TabBarController.swift │ │ │ ├── TerminalViewController.swift │ │ │ └── UpdatesTableViewController.swift │ │ └── Interface Builder │ │ │ ├── Base.lproj │ │ │ └── Main.storyboard │ │ │ ├── Connecting.xib │ │ │ ├── Connection Info.storyboard │ │ │ ├── Installer.storyboard │ │ │ ├── Terminal.xib │ │ │ └── Web.xib │ └── Views │ │ ├── PackagePropertyTableViewCell.swift │ │ └── TerminalWebView.swift ├── Podfile ├── Podfile.lock └── README.md ├── Pisth Shared ├── Bonjour.swift ├── KeychainSwiftDistrib.swift ├── Pisth Shared.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── Pisth Shared.xcscheme ├── Pisth Shared │ ├── Assets.xcassets │ │ ├── Contents.json │ │ ├── back.imageset │ │ │ ├── Contents.json │ │ │ ├── back@1x.png │ │ │ ├── back@2x.png │ │ │ └── back@3x.png │ │ └── forward.imageset │ │ │ ├── Contents.json │ │ │ ├── forward@1x.png │ │ │ ├── forward@2x.png │ │ │ └── forward@3x.png │ ├── DataManager.swift │ ├── Extensions │ │ ├── Color.swift │ │ ├── String.swift │ │ └── URL+queryParameters.swift │ ├── Info.plist │ ├── Keys.swift │ ├── RemoteConnection.swift │ ├── TerminalInfo.swift │ ├── Themes │ │ ├── Basic.swift │ │ ├── Default.swift │ │ ├── Grass.swift │ │ ├── Homebrew.swift │ │ ├── ManPage.swift │ │ ├── Novel.swift │ │ ├── Ocean.swift │ │ ├── Pisth.swift │ │ ├── PisthDark.swift │ │ ├── Pro.swift │ │ ├── RedSands.swift │ │ ├── SilverAerogel.swift │ │ ├── TerminalTheme.swift │ │ └── Ubuntu.swift │ ├── View controllers │ │ ├── ActivityViewController.swift │ │ ├── ConnectionInfoTableViewController.swift │ │ └── WebViewController.swift │ ├── en.lproj │ │ └── Localizable.strings │ ├── es.lproj │ │ └── Localizable.strings │ └── fr.lproj │ │ └── Localizable.strings ├── README.md └── SwiftKeychainWrapper │ ├── KeychainItemAccessibility.swift │ ├── KeychainWrapper.swift │ └── SwiftKeychainWrapper.h ├── Pisth Terminal ├── Pisth Terminal.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── Pisth Terminal.xcscheme └── Pisth Terminal │ ├── .gitignore │ ├── Bundle+terminal.swift │ ├── Info.plist │ └── terminal.html ├── Pisth Viewer ├── Pisth Viewer.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── Pisth Viewer.xcscheme ├── Pisth Viewer │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon_128x128.png │ │ │ ├── Icon_128x128@2x.png │ │ │ ├── Icon_16x16.png │ │ │ ├── Icon_16x16@2x.png │ │ │ ├── Icon_256x256.png │ │ │ ├── Icon_256x256@2x.png │ │ │ ├── Icon_32x32@2x.png │ │ │ ├── Icon_512x512.png │ │ │ └── Icon_512x512@2x.png │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── Info.plist │ └── Pisth_Viewer.entitlements └── README.md ├── Pisth.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── Pisth Beta.xcscheme │ ├── Pisth Shell.xcscheme │ └── Pisth.xcscheme ├── Pisth.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── .gitignore ├── Pisth ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-57x57@1x.png │ │ ├── Icon-App-57x57@2x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-72x72@1x.png │ │ ├── Icon-App-72x72@2x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ ├── Icon-App-83.5x83.5@2x.png │ │ ├── Icon-Small-50x50@1x.png │ │ ├── Icon-Small-50x50@2x.png │ │ └── ItunesArtwork@2x.png │ ├── Contents.json │ ├── File icons │ │ ├── Contents.json │ │ ├── file.imageset │ │ │ ├── Contents.json │ │ │ └── file_iOS.png │ │ └── folder.imageset │ │ │ ├── Contents.json │ │ │ └── Folder-Light-128_Normal.png │ ├── Icon.imageset │ │ ├── Contents.json │ │ └── Icon.png │ ├── ListIcon_Normal.imageset │ │ ├── Contents.json │ │ ├── ListIcon_Normal@2x.png │ │ └── ListIcon_Normal@3x.png │ ├── NewFolder_Normal.imageset │ │ ├── Contents.json │ │ ├── NewFolder_Normal@2x.png │ │ └── NewFolder_Normal@3x.png │ ├── OnMyiPad_Normal.imageset │ │ ├── Contents.json │ │ └── OnMyiPad_Normal@3x.png │ ├── OnMyiPhone_Normal.imageset │ │ ├── Contents.json │ │ └── OnMyiPhone_Normal@3x.png │ ├── Orange.colorset │ │ └── Contents.json │ ├── PisthViewer.imageset │ │ ├── Contents.json │ │ ├── Icon_512x512.png │ │ └── Icon_512x512@2x.png │ ├── Purple.colorset │ │ └── Contents.json │ ├── Red.colorset │ │ └── Contents.json │ ├── back.imageset │ │ ├── Contents.json │ │ ├── back@1x.png │ │ ├── back@2x.png │ │ └── back@3x.png │ ├── clipboard.imageset │ │ ├── Contents.json │ │ ├── clipboard@1.png │ │ ├── clipboard@2.png │ │ └── clipboard@3.png │ ├── cloud-upload.imageset │ │ ├── Contents.json │ │ ├── cloud-upload@1x.png │ │ ├── cloud-upload@2x.png │ │ └── cloud-upload@3x.png │ ├── forward.imageset │ │ ├── Contents.json │ │ ├── forward@1x.png │ │ ├── forward@2x.png │ │ └── forward@3x.png │ ├── gear.imageset │ │ ├── Contents.json │ │ ├── gear@1x.png │ │ ├── gear@2x.png │ │ └── gear@3x.png │ ├── hide-keyboard.imageset │ │ ├── Contents.json │ │ ├── hide-keyboard@1x.png │ │ ├── hide-keyboard@2x.png │ │ └── hide-keyboard@3x.png │ ├── history.imageset │ │ ├── Contents.json │ │ ├── history@1x.png │ │ ├── history@2x.png │ │ └── history@3x.png │ ├── home.imageset │ │ ├── Contents.json │ │ ├── home@1x.png │ │ ├── home@2x.png │ │ └── home@3x.png │ ├── locked.imageset │ │ ├── Contents.json │ │ └── locked.png │ ├── package.imageset │ │ ├── Contents.json │ │ └── package.png │ ├── password.imageset │ │ ├── Contents.json │ │ ├── password@1x.png │ │ ├── password@2x.png │ │ └── password@3x.png │ ├── save.imageset │ │ ├── Contents.json │ │ ├── save.png │ │ ├── save@2x.png │ │ └── save@3x.png │ ├── share.imageset │ │ ├── Contents.json │ │ ├── share.png │ │ ├── share@2x.png │ │ └── share@3x.png │ ├── shell.imageset │ │ ├── Contents.json │ │ └── shell.png │ ├── show-keyboard.imageset │ │ ├── Contents.json │ │ ├── show-keyboard@1x.png │ │ ├── show-keyboard@2x.png │ │ └── show-keyboard@3x.png │ ├── terminal.imageset │ │ ├── Contents.json │ │ ├── terminal@1x.png │ │ ├── terminal@2x.png │ │ └── terminal@3x.png │ └── touch.imageset │ │ ├── Contents.json │ │ ├── touch@1x.png │ │ ├── touch@2x.png │ │ └── touch@3x.png ├── Base.lproj │ └── LaunchScreen.storyboard ├── Extensions │ ├── FIleManager.swift │ ├── String+cValue.swift │ ├── UIButton.swift │ ├── UIDevice+modelName.swift │ ├── UIDragItem+sourceViewController.swift │ ├── UIGestureRecognizer.swift │ ├── UIImage.swift │ ├── UINavigationController.swift │ ├── UIView+ignoresInvertColors.swift │ ├── UIView.swift │ └── WebViewController+Xib.swift ├── Global │ ├── fileIcon.swift │ └── isFilePDF.swift ├── GoogleService-Info.plist ├── Info.plist ├── Models │ ├── AppAction.swift │ ├── ConnectionResult.swift │ ├── DirectoryAction.swift │ ├── Localizable.swift │ ├── Reachability.swift │ ├── ReviewHelper.swift │ ├── SaveFile.swift │ ├── Snippet.swift │ ├── Static.swift │ ├── TestingConnection.swift │ └── UserKeys.swift ├── OS │ ├── amzn.png │ ├── arch.png │ ├── centos.png │ ├── darwin.png │ ├── debian.png │ ├── fedora.png │ ├── linux.png │ ├── opensuse.png │ ├── raspbian.png │ ├── rhel.png │ ├── slackware.png │ ├── sles.png │ └── ubuntu.png ├── Pisth.xcdatamodeld │ ├── .xccurrentversion │ └── Pisth.xcdatamodel │ │ └── contents ├── Protocols │ ├── BookmarksTableViewControllerDelegate.swift │ ├── DirectoryCollectionViewControllerDelegate.swift │ ├── LocalDirectoryCollectionViewControllerDelegate.swift │ ├── LocalDirectoryCollectionViewControllerStaticDelegate.swift │ ├── Storyboard.swift │ ├── ViewControllerFactory.swift │ └── Xib.swift ├── README.md ├── Singletons │ ├── AppDelegate.swift │ ├── ConnectionManager.swift │ └── Pasteboard.swift ├── ViewControllers │ ├── Classes │ │ ├── ArrowsViewController.swift │ │ ├── BlackNavigationController.swift │ │ ├── BookmarksTableViewController.swift │ │ ├── CommandsTableViewController.swift │ │ ├── CompactBookmarksTableViewController.swift │ │ ├── ContentViewController.swift │ │ ├── DirectoryCollectionViewController.swift │ │ ├── EditTextViewController.swift │ │ ├── FileInfoViewController.swift │ │ ├── GitBranchesTableViewController.swift │ │ ├── GitRemotesTableViewController.swift │ │ ├── ImageViewController.swift │ │ ├── LocalDirectoryCollectionViewController.swift │ │ ├── PisthConnectionInformationViewTableViewController.swift │ │ ├── PluginsLocalDirectoryTableViewController.swift │ │ ├── SSHKeyTableViewController.swift │ │ ├── SettingsTableViewController.swift │ │ ├── SnippetsViewController.swift │ │ ├── SourceControlTableViewController.swift │ │ ├── SplitViewController.swift │ │ ├── TerminalSplitViewController.swift │ │ └── TerminalViewController.swift │ └── Interface Builder │ │ ├── Base.lproj │ │ ├── Code Editor.xib │ │ ├── Connection Info.storyboard │ │ ├── Contribute.xib │ │ ├── File Info.xib │ │ ├── Git.storyboard │ │ ├── Image.xib │ │ ├── SSHKey.storyboard │ │ ├── Settings.storyboard │ │ └── Snippets.storyboard │ │ ├── Content.storyboard │ │ ├── Web.xib │ │ ├── en.lproj │ │ ├── Code Editor.strings │ │ ├── Connection Info.strings │ │ ├── Contribute.strings │ │ ├── File Info.strings │ │ ├── Git.strings │ │ ├── Image.strings │ │ ├── SSHKey.strings │ │ ├── Settings.strings │ │ └── Snippets.strings │ │ ├── es.lproj │ │ ├── Code Editor.strings │ │ ├── Connection Info.strings │ │ ├── Contribute.strings │ │ ├── File Info.strings │ │ ├── Git.strings │ │ ├── Image.strings │ │ ├── SSHKey.strings │ │ ├── Settings.strings │ │ └── Snippets.strings │ │ └── fr.lproj │ │ ├── Code Editor.strings │ │ ├── Connection Info.strings │ │ ├── Contribute.strings │ │ ├── File Info.strings │ │ ├── Git.strings │ │ ├── Image.strings │ │ ├── SSHKey.strings │ │ ├── Settings.strings │ │ └── Snippets.strings ├── Views │ ├── Classes │ │ ├── FileCollectionViewCell.swift │ │ ├── HeaderToolbar.swift │ │ └── TerminalWebView.swift │ └── Interface Builder │ │ ├── Base.lproj │ │ ├── Disconnected.xib │ │ └── No Connections.xib │ │ ├── FileCollectionViewCell.xib │ │ ├── Grid File Cell.xib │ │ ├── Header.xib │ │ ├── List File Cell.xib │ │ ├── No Snippets.xib │ │ ├── en.lproj │ │ ├── Disconnected.strings │ │ └── No Connections.strings │ │ ├── es.lproj │ │ ├── Disconnected.strings │ │ └── No Connections.strings │ │ └── fr.lproj │ │ ├── Disconnected.strings │ │ └── No Connections.strings ├── WhatsNew.xcassets │ ├── Bonjour.imageset │ │ ├── Contents.json │ │ └── bonjour.png │ ├── Contents.json │ ├── Globe.imageset │ │ ├── 2000px-Globe_icon.svg.png │ │ └── Contents.json │ ├── Keychain.imageset │ │ ├── Contents.json │ │ └── keychain.png │ └── Redesign.imageset │ │ ├── Contents.json │ │ └── Redesign.jpg ├── commandDictionary.plist ├── empty ├── en.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── es.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── extraCommandsDictionary.plist ├── fr.lproj │ ├── InfoPlist.strings │ └── Localizable.strings └── langs.plist ├── PisthTests ├── Info.plist └── PisthTests.swift ├── Podfile ├── Podfile.lock ├── README.md ├── _config.yml ├── _includes ├── appstoreimages.html ├── features.html ├── footer.html ├── head.html ├── header.html └── screencontent.html ├── _layouts └── default.html ├── _sass ├── base.scss └── layout.scss ├── assets ├── appstore.png ├── black.png ├── blue.png ├── coral.png ├── headerimage.png ├── playstore.png ├── screenshot │ └── Screenshot.png ├── squircle.svg ├── squircle120.svg ├── videos │ └── Place-video-files-here.txt ├── white.png └── yellow.png ├── automatic-app-landing-page_LICENSE ├── docs ├── Classes.html ├── Classes │ ├── Pisth.html │ ├── PisthAPT.html │ └── PisthFile.html ├── Guides.html ├── badge.svg ├── css │ ├── highlight.css │ └── jazzy.css ├── docsets │ ├── Pisth.xml │ ├── Pisth_API.docset │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ ├── Documents │ │ │ ├── Classes.html │ │ │ ├── Classes │ │ │ │ ├── Pisth.html │ │ │ │ ├── PisthAPT.html │ │ │ │ └── PisthFile.html │ │ │ ├── Guides.html │ │ │ ├── badge.svg │ │ │ ├── css │ │ │ │ ├── highlight.css │ │ │ │ └── jazzy.css │ │ │ ├── example.html │ │ │ ├── getting-started.html │ │ │ ├── img │ │ │ │ ├── carat.png │ │ │ │ ├── dash.png │ │ │ │ └── gh.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── jazzy.js │ │ │ │ └── jquery.min.js │ │ │ ├── search.json │ │ │ └── undocumented.json │ │ │ └── docSet.dsidx │ └── Pisth_API.tgz ├── example.html ├── getting-started.html ├── img │ ├── carat.png │ ├── dash.png │ └── gh.png ├── index.html ├── js │ ├── jazzy.js │ └── jquery.min.js ├── search.json └── undocumented.json ├── index.html ├── main.scss └── setup.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/.gitmodules -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | pisth.app -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/LICENSE -------------------------------------------------------------------------------- /Pisth API/Guides/Getting Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth API/Guides/Getting Started.md -------------------------------------------------------------------------------- /Pisth API/Pisth API.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth API/Pisth API.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pisth API/Pisth API.xcodeproj/xcshareddata/xcschemes/Pisth API.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth API/Pisth API.xcodeproj/xcshareddata/xcschemes/Pisth API.xcscheme -------------------------------------------------------------------------------- /Pisth API/Pisth API/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth API/Pisth API/Info.plist -------------------------------------------------------------------------------- /Pisth API/Pisth API/Pisth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth API/Pisth API/Pisth.swift -------------------------------------------------------------------------------- /Pisth API/Pisth API/PisthAPT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth API/Pisth API/PisthAPT.swift -------------------------------------------------------------------------------- /Pisth API/Pisth API/PisthFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth API/Pisth API/PisthFile.swift -------------------------------------------------------------------------------- /Pisth API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth API/README.md -------------------------------------------------------------------------------- /Pisth API/build-documentation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth API/build-documentation.sh -------------------------------------------------------------------------------- /Pisth APT/Pisth APT.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pisth APT/Pisth APT.xcodeproj/xcshareddata/xcschemes/Pisth APT.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT.xcodeproj/xcshareddata/xcschemes/Pisth APT.xcscheme -------------------------------------------------------------------------------- /Pisth APT/Pisth APT.xcodeproj/xcuserdata/adrian.xcuserdatad/xcschemes/Pisth APT.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT.xcodeproj/xcuserdata/adrian.xcuserdatad/xcschemes/Pisth APT.xcscheme -------------------------------------------------------------------------------- /Pisth APT/Pisth APT.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/AppDelegate.swift -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@1x.png -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@2x.png -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/Icon.imageset/ItunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/Icon.imageset/ItunesArtwork@2x.png -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/gear.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/gear.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/gear.imageset/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/gear.imageset/gear.png -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/install.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/install.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/install.imageset/install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/install.imageset/install.png -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/package.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/package.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/package.imageset/package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/package.imageset/package.png -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/update.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/update.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Assets.xcassets/update.imageset/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Assets.xcassets/update.imageset/update.png -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/GoogleService-Info.plist -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Helpers/Extensions/UIWindow+topViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Helpers/Extensions/UIWindow+topViewController.swift -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Helpers/OpenReason.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Helpers/OpenReason.swift -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Info.plist -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Pisth.xcdatamodeld/Pisth.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Pisth.xcdatamodeld/Pisth.xcdatamodel/contents -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/ViewControllers/Classes/ConnectingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/ViewControllers/Classes/ConnectingViewController.swift -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/ViewControllers/Classes/ConnectionsTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/ViewControllers/Classes/ConnectionsTableViewController.swift -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/ViewControllers/Classes/ErrorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/ViewControllers/Classes/ErrorViewController.swift -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/ViewControllers/Classes/InstalledTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/ViewControllers/Classes/InstalledTableViewController.swift -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/ViewControllers/Classes/InstallerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/ViewControllers/Classes/InstallerViewController.swift -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/ViewControllers/Classes/PackagesTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/ViewControllers/Classes/PackagesTableViewController.swift -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/ViewControllers/Classes/SettingsTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/ViewControllers/Classes/SettingsTableViewController.swift -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/ViewControllers/Classes/TabBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/ViewControllers/Classes/TabBarController.swift -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/ViewControllers/Classes/TerminalViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/ViewControllers/Classes/TerminalViewController.swift -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/ViewControllers/Classes/UpdatesTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/ViewControllers/Classes/UpdatesTableViewController.swift -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/ViewControllers/Interface Builder/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/ViewControllers/Interface Builder/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/ViewControllers/Interface Builder/Connecting.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/ViewControllers/Interface Builder/Connecting.xib -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/ViewControllers/Interface Builder/Connection Info.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/ViewControllers/Interface Builder/Connection Info.storyboard -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/ViewControllers/Interface Builder/Installer.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/ViewControllers/Interface Builder/Installer.storyboard -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/ViewControllers/Interface Builder/Terminal.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/ViewControllers/Interface Builder/Terminal.xib -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/ViewControllers/Interface Builder/Web.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/ViewControllers/Interface Builder/Web.xib -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Views/PackagePropertyTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Views/PackagePropertyTableViewCell.swift -------------------------------------------------------------------------------- /Pisth APT/Pisth APT/Views/TerminalWebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Pisth APT/Views/TerminalWebView.swift -------------------------------------------------------------------------------- /Pisth APT/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Podfile -------------------------------------------------------------------------------- /Pisth APT/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/Podfile.lock -------------------------------------------------------------------------------- /Pisth APT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth APT/README.md -------------------------------------------------------------------------------- /Pisth Shared/Bonjour.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Bonjour.swift -------------------------------------------------------------------------------- /Pisth Shared/KeychainSwiftDistrib.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/KeychainSwiftDistrib.swift -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared.xcodeproj/xcshareddata/xcschemes/Pisth Shared.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared.xcodeproj/xcshareddata/xcschemes/Pisth Shared.xcscheme -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/Assets.xcassets/back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/Assets.xcassets/back.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/Assets.xcassets/back.imageset/back@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/Assets.xcassets/back.imageset/back@1x.png -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/Assets.xcassets/back.imageset/back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/Assets.xcassets/back.imageset/back@2x.png -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/Assets.xcassets/back.imageset/back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/Assets.xcassets/back.imageset/back@3x.png -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/Assets.xcassets/forward.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/Assets.xcassets/forward.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/Assets.xcassets/forward.imageset/forward@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/Assets.xcassets/forward.imageset/forward@1x.png -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/Assets.xcassets/forward.imageset/forward@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/Assets.xcassets/forward.imageset/forward@2x.png -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/Assets.xcassets/forward.imageset/forward@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/Assets.xcassets/forward.imageset/forward@3x.png -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/DataManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/DataManager.swift -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/Extensions/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/Extensions/Color.swift -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/Extensions/String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/Extensions/String.swift -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/Extensions/URL+queryParameters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/Extensions/URL+queryParameters.swift -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/Info.plist -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/Keys.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/Keys.swift -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/RemoteConnection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/RemoteConnection.swift -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/TerminalInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/TerminalInfo.swift -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/Themes/Basic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/Themes/Basic.swift -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/Themes/Default.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/Themes/Default.swift -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/Themes/Grass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/Themes/Grass.swift -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/Themes/Homebrew.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/Themes/Homebrew.swift -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/Themes/ManPage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/Themes/ManPage.swift -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/Themes/Novel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/Themes/Novel.swift -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/Themes/Ocean.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/Themes/Ocean.swift -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/Themes/Pisth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/Themes/Pisth.swift -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/Themes/PisthDark.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/Themes/PisthDark.swift -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/Themes/Pro.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/Themes/Pro.swift -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/Themes/RedSands.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/Themes/RedSands.swift -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/Themes/SilverAerogel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/Themes/SilverAerogel.swift -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/Themes/TerminalTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/Themes/TerminalTheme.swift -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/Themes/Ubuntu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/Themes/Ubuntu.swift -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/View controllers/ActivityViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/View controllers/ActivityViewController.swift -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/View controllers/ConnectionInfoTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/View controllers/ConnectionInfoTableViewController.swift -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/View controllers/WebViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/View controllers/WebViewController.swift -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pisth Shared/Pisth Shared/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/Pisth Shared/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pisth Shared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/README.md -------------------------------------------------------------------------------- /Pisth Shared/SwiftKeychainWrapper/KeychainItemAccessibility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/SwiftKeychainWrapper/KeychainItemAccessibility.swift -------------------------------------------------------------------------------- /Pisth Shared/SwiftKeychainWrapper/KeychainWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/SwiftKeychainWrapper/KeychainWrapper.swift -------------------------------------------------------------------------------- /Pisth Shared/SwiftKeychainWrapper/SwiftKeychainWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Shared/SwiftKeychainWrapper/SwiftKeychainWrapper.h -------------------------------------------------------------------------------- /Pisth Terminal/Pisth Terminal.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Terminal/Pisth Terminal.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pisth Terminal/Pisth Terminal.xcodeproj/xcshareddata/xcschemes/Pisth Terminal.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Terminal/Pisth Terminal.xcodeproj/xcshareddata/xcschemes/Pisth Terminal.xcscheme -------------------------------------------------------------------------------- /Pisth Terminal/Pisth Terminal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Terminal/Pisth Terminal/.gitignore -------------------------------------------------------------------------------- /Pisth Terminal/Pisth Terminal/Bundle+terminal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Terminal/Pisth Terminal/Bundle+terminal.swift -------------------------------------------------------------------------------- /Pisth Terminal/Pisth Terminal/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Terminal/Pisth Terminal/Info.plist -------------------------------------------------------------------------------- /Pisth Terminal/Pisth Terminal/terminal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Terminal/Pisth Terminal/terminal.html -------------------------------------------------------------------------------- /Pisth Viewer/Pisth Viewer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Viewer/Pisth Viewer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pisth Viewer/Pisth Viewer.xcodeproj/xcshareddata/xcschemes/Pisth Viewer.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Viewer/Pisth Viewer.xcodeproj/xcshareddata/xcschemes/Pisth Viewer.xcscheme -------------------------------------------------------------------------------- /Pisth Viewer/Pisth Viewer/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Viewer/Pisth Viewer/AppDelegate.swift -------------------------------------------------------------------------------- /Pisth Viewer/Pisth Viewer/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Viewer/Pisth Viewer/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Pisth Viewer/Pisth Viewer/Assets.xcassets/AppIcon.appiconset/Icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Viewer/Pisth Viewer/Assets.xcassets/AppIcon.appiconset/Icon_128x128.png -------------------------------------------------------------------------------- /Pisth Viewer/Pisth Viewer/Assets.xcassets/AppIcon.appiconset/Icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Viewer/Pisth Viewer/Assets.xcassets/AppIcon.appiconset/Icon_128x128@2x.png -------------------------------------------------------------------------------- /Pisth Viewer/Pisth Viewer/Assets.xcassets/AppIcon.appiconset/Icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Viewer/Pisth Viewer/Assets.xcassets/AppIcon.appiconset/Icon_16x16.png -------------------------------------------------------------------------------- /Pisth Viewer/Pisth Viewer/Assets.xcassets/AppIcon.appiconset/Icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Viewer/Pisth Viewer/Assets.xcassets/AppIcon.appiconset/Icon_16x16@2x.png -------------------------------------------------------------------------------- /Pisth Viewer/Pisth Viewer/Assets.xcassets/AppIcon.appiconset/Icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Viewer/Pisth Viewer/Assets.xcassets/AppIcon.appiconset/Icon_256x256.png -------------------------------------------------------------------------------- /Pisth Viewer/Pisth Viewer/Assets.xcassets/AppIcon.appiconset/Icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Viewer/Pisth Viewer/Assets.xcassets/AppIcon.appiconset/Icon_256x256@2x.png -------------------------------------------------------------------------------- /Pisth Viewer/Pisth Viewer/Assets.xcassets/AppIcon.appiconset/Icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Viewer/Pisth Viewer/Assets.xcassets/AppIcon.appiconset/Icon_32x32@2x.png -------------------------------------------------------------------------------- /Pisth Viewer/Pisth Viewer/Assets.xcassets/AppIcon.appiconset/Icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Viewer/Pisth Viewer/Assets.xcassets/AppIcon.appiconset/Icon_512x512.png -------------------------------------------------------------------------------- /Pisth Viewer/Pisth Viewer/Assets.xcassets/AppIcon.appiconset/Icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Viewer/Pisth Viewer/Assets.xcassets/AppIcon.appiconset/Icon_512x512@2x.png -------------------------------------------------------------------------------- /Pisth Viewer/Pisth Viewer/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Viewer/Pisth Viewer/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Pisth Viewer/Pisth Viewer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Viewer/Pisth Viewer/Info.plist -------------------------------------------------------------------------------- /Pisth Viewer/Pisth Viewer/Pisth_Viewer.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Viewer/Pisth Viewer/Pisth_Viewer.entitlements -------------------------------------------------------------------------------- /Pisth Viewer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth Viewer/README.md -------------------------------------------------------------------------------- /Pisth.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pisth.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Pisth.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Pisth.xcodeproj/xcshareddata/xcschemes/Pisth Beta.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth.xcodeproj/xcshareddata/xcschemes/Pisth Beta.xcscheme -------------------------------------------------------------------------------- /Pisth.xcodeproj/xcshareddata/xcschemes/Pisth Shell.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth.xcodeproj/xcshareddata/xcschemes/Pisth Shell.xcscheme -------------------------------------------------------------------------------- /Pisth.xcodeproj/xcshareddata/xcschemes/Pisth.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth.xcodeproj/xcshareddata/xcschemes/Pisth.xcscheme -------------------------------------------------------------------------------- /Pisth.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Pisth.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Pisth.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Pisth.xcworkspace/xcuserdata/.gitignore: -------------------------------------------------------------------------------- 1 | *.xcuserdatad 2 | -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@1x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@2x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/File icons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/File icons/Contents.json -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/File icons/file.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/File icons/file.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/File icons/file.imageset/file_iOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/File icons/file.imageset/file_iOS.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/File icons/folder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/File icons/folder.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/File icons/folder.imageset/Folder-Light-128_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/File icons/folder.imageset/Folder-Light-128_Normal.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/Icon.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/Icon.imageset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/Icon.imageset/Icon.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/ListIcon_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/ListIcon_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/ListIcon_Normal.imageset/ListIcon_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/ListIcon_Normal.imageset/ListIcon_Normal@2x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/ListIcon_Normal.imageset/ListIcon_Normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/ListIcon_Normal.imageset/ListIcon_Normal@3x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/NewFolder_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/NewFolder_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/NewFolder_Normal.imageset/NewFolder_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/NewFolder_Normal.imageset/NewFolder_Normal@2x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/NewFolder_Normal.imageset/NewFolder_Normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/NewFolder_Normal.imageset/NewFolder_Normal@3x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/OnMyiPad_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/OnMyiPad_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/OnMyiPad_Normal.imageset/OnMyiPad_Normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/OnMyiPad_Normal.imageset/OnMyiPad_Normal@3x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/OnMyiPhone_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/OnMyiPhone_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/OnMyiPhone_Normal.imageset/OnMyiPhone_Normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/OnMyiPhone_Normal.imageset/OnMyiPhone_Normal@3x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/Orange.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/Orange.colorset/Contents.json -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/PisthViewer.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/PisthViewer.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/PisthViewer.imageset/Icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/PisthViewer.imageset/Icon_512x512.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/PisthViewer.imageset/Icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/PisthViewer.imageset/Icon_512x512@2x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/Purple.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/Purple.colorset/Contents.json -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/Red.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/Red.colorset/Contents.json -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/back.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/back.imageset/back@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/back.imageset/back@1x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/back.imageset/back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/back.imageset/back@2x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/back.imageset/back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/back.imageset/back@3x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/clipboard.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/clipboard.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/clipboard.imageset/clipboard@1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/clipboard.imageset/clipboard@1.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/clipboard.imageset/clipboard@2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/clipboard.imageset/clipboard@2.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/clipboard.imageset/clipboard@3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/clipboard.imageset/clipboard@3.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/cloud-upload.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/cloud-upload.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/cloud-upload.imageset/cloud-upload@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/cloud-upload.imageset/cloud-upload@1x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/cloud-upload.imageset/cloud-upload@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/cloud-upload.imageset/cloud-upload@2x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/cloud-upload.imageset/cloud-upload@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/cloud-upload.imageset/cloud-upload@3x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/forward.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/forward.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/forward.imageset/forward@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/forward.imageset/forward@1x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/forward.imageset/forward@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/forward.imageset/forward@2x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/forward.imageset/forward@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/forward.imageset/forward@3x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/gear.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/gear.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/gear.imageset/gear@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/gear.imageset/gear@1x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/gear.imageset/gear@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/gear.imageset/gear@2x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/gear.imageset/gear@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/gear.imageset/gear@3x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/hide-keyboard.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/hide-keyboard.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/hide-keyboard.imageset/hide-keyboard@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/hide-keyboard.imageset/hide-keyboard@1x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/hide-keyboard.imageset/hide-keyboard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/hide-keyboard.imageset/hide-keyboard@2x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/hide-keyboard.imageset/hide-keyboard@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/hide-keyboard.imageset/hide-keyboard@3x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/history.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/history.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/history.imageset/history@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/history.imageset/history@1x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/history.imageset/history@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/history.imageset/history@2x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/history.imageset/history@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/history.imageset/history@3x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/home.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/home.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/home.imageset/home@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/home.imageset/home@1x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/home.imageset/home@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/home.imageset/home@2x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/home.imageset/home@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/home.imageset/home@3x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/locked.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/locked.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/locked.imageset/locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/locked.imageset/locked.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/package.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/package.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/package.imageset/package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/package.imageset/package.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/password.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/password.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/password.imageset/password@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/password.imageset/password@1x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/password.imageset/password@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/password.imageset/password@2x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/password.imageset/password@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/password.imageset/password@3x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/save.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/save.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/save.imageset/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/save.imageset/save.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/save.imageset/save@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/save.imageset/save@2x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/save.imageset/save@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/save.imageset/save@3x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/share.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/share.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/share.imageset/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/share.imageset/share.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/share.imageset/share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/share.imageset/share@2x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/share.imageset/share@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/share.imageset/share@3x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/shell.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/shell.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/shell.imageset/shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/shell.imageset/shell.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/show-keyboard.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/show-keyboard.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/show-keyboard.imageset/show-keyboard@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/show-keyboard.imageset/show-keyboard@1x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/show-keyboard.imageset/show-keyboard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/show-keyboard.imageset/show-keyboard@2x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/show-keyboard.imageset/show-keyboard@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/show-keyboard.imageset/show-keyboard@3x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/terminal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/terminal.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/terminal.imageset/terminal@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/terminal.imageset/terminal@1x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/terminal.imageset/terminal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/terminal.imageset/terminal@2x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/terminal.imageset/terminal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/terminal.imageset/terminal@3x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/touch.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/touch.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/touch.imageset/touch@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/touch.imageset/touch@1x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/touch.imageset/touch@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/touch.imageset/touch@2x.png -------------------------------------------------------------------------------- /Pisth/Assets.xcassets/touch.imageset/touch@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Assets.xcassets/touch.imageset/touch@3x.png -------------------------------------------------------------------------------- /Pisth/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Pisth/Extensions/FIleManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Extensions/FIleManager.swift -------------------------------------------------------------------------------- /Pisth/Extensions/String+cValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Extensions/String+cValue.swift -------------------------------------------------------------------------------- /Pisth/Extensions/UIButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Extensions/UIButton.swift -------------------------------------------------------------------------------- /Pisth/Extensions/UIDevice+modelName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Extensions/UIDevice+modelName.swift -------------------------------------------------------------------------------- /Pisth/Extensions/UIDragItem+sourceViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Extensions/UIDragItem+sourceViewController.swift -------------------------------------------------------------------------------- /Pisth/Extensions/UIGestureRecognizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Extensions/UIGestureRecognizer.swift -------------------------------------------------------------------------------- /Pisth/Extensions/UIImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Extensions/UIImage.swift -------------------------------------------------------------------------------- /Pisth/Extensions/UINavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Extensions/UINavigationController.swift -------------------------------------------------------------------------------- /Pisth/Extensions/UIView+ignoresInvertColors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Extensions/UIView+ignoresInvertColors.swift -------------------------------------------------------------------------------- /Pisth/Extensions/UIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Extensions/UIView.swift -------------------------------------------------------------------------------- /Pisth/Extensions/WebViewController+Xib.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Extensions/WebViewController+Xib.swift -------------------------------------------------------------------------------- /Pisth/Global/fileIcon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Global/fileIcon.swift -------------------------------------------------------------------------------- /Pisth/Global/isFilePDF.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Global/isFilePDF.swift -------------------------------------------------------------------------------- /Pisth/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/GoogleService-Info.plist -------------------------------------------------------------------------------- /Pisth/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Info.plist -------------------------------------------------------------------------------- /Pisth/Models/AppAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Models/AppAction.swift -------------------------------------------------------------------------------- /Pisth/Models/ConnectionResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Models/ConnectionResult.swift -------------------------------------------------------------------------------- /Pisth/Models/DirectoryAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Models/DirectoryAction.swift -------------------------------------------------------------------------------- /Pisth/Models/Localizable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Models/Localizable.swift -------------------------------------------------------------------------------- /Pisth/Models/Reachability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Models/Reachability.swift -------------------------------------------------------------------------------- /Pisth/Models/ReviewHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Models/ReviewHelper.swift -------------------------------------------------------------------------------- /Pisth/Models/SaveFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Models/SaveFile.swift -------------------------------------------------------------------------------- /Pisth/Models/Snippet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Models/Snippet.swift -------------------------------------------------------------------------------- /Pisth/Models/Static.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Models/Static.swift -------------------------------------------------------------------------------- /Pisth/Models/TestingConnection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Models/TestingConnection.swift -------------------------------------------------------------------------------- /Pisth/Models/UserKeys.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Models/UserKeys.swift -------------------------------------------------------------------------------- /Pisth/OS/amzn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/OS/amzn.png -------------------------------------------------------------------------------- /Pisth/OS/arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/OS/arch.png -------------------------------------------------------------------------------- /Pisth/OS/centos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/OS/centos.png -------------------------------------------------------------------------------- /Pisth/OS/darwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/OS/darwin.png -------------------------------------------------------------------------------- /Pisth/OS/debian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/OS/debian.png -------------------------------------------------------------------------------- /Pisth/OS/fedora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/OS/fedora.png -------------------------------------------------------------------------------- /Pisth/OS/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/OS/linux.png -------------------------------------------------------------------------------- /Pisth/OS/opensuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/OS/opensuse.png -------------------------------------------------------------------------------- /Pisth/OS/raspbian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/OS/raspbian.png -------------------------------------------------------------------------------- /Pisth/OS/rhel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/OS/rhel.png -------------------------------------------------------------------------------- /Pisth/OS/slackware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/OS/slackware.png -------------------------------------------------------------------------------- /Pisth/OS/sles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/OS/sles.png -------------------------------------------------------------------------------- /Pisth/OS/ubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/OS/ubuntu.png -------------------------------------------------------------------------------- /Pisth/Pisth.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Pisth.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /Pisth/Pisth.xcdatamodeld/Pisth.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Pisth.xcdatamodeld/Pisth.xcdatamodel/contents -------------------------------------------------------------------------------- /Pisth/Protocols/BookmarksTableViewControllerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Protocols/BookmarksTableViewControllerDelegate.swift -------------------------------------------------------------------------------- /Pisth/Protocols/DirectoryCollectionViewControllerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Protocols/DirectoryCollectionViewControllerDelegate.swift -------------------------------------------------------------------------------- /Pisth/Protocols/LocalDirectoryCollectionViewControllerDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Protocols/LocalDirectoryCollectionViewControllerDelegate.swift -------------------------------------------------------------------------------- /Pisth/Protocols/LocalDirectoryCollectionViewControllerStaticDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Protocols/LocalDirectoryCollectionViewControllerStaticDelegate.swift -------------------------------------------------------------------------------- /Pisth/Protocols/Storyboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Protocols/Storyboard.swift -------------------------------------------------------------------------------- /Pisth/Protocols/ViewControllerFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Protocols/ViewControllerFactory.swift -------------------------------------------------------------------------------- /Pisth/Protocols/Xib.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Protocols/Xib.swift -------------------------------------------------------------------------------- /Pisth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/README.md -------------------------------------------------------------------------------- /Pisth/Singletons/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Singletons/AppDelegate.swift -------------------------------------------------------------------------------- /Pisth/Singletons/ConnectionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Singletons/ConnectionManager.swift -------------------------------------------------------------------------------- /Pisth/Singletons/Pasteboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Singletons/Pasteboard.swift -------------------------------------------------------------------------------- /Pisth/ViewControllers/Classes/ArrowsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Classes/ArrowsViewController.swift -------------------------------------------------------------------------------- /Pisth/ViewControllers/Classes/BlackNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Classes/BlackNavigationController.swift -------------------------------------------------------------------------------- /Pisth/ViewControllers/Classes/BookmarksTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Classes/BookmarksTableViewController.swift -------------------------------------------------------------------------------- /Pisth/ViewControllers/Classes/CommandsTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Classes/CommandsTableViewController.swift -------------------------------------------------------------------------------- /Pisth/ViewControllers/Classes/CompactBookmarksTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Classes/CompactBookmarksTableViewController.swift -------------------------------------------------------------------------------- /Pisth/ViewControllers/Classes/ContentViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Classes/ContentViewController.swift -------------------------------------------------------------------------------- /Pisth/ViewControllers/Classes/DirectoryCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Classes/DirectoryCollectionViewController.swift -------------------------------------------------------------------------------- /Pisth/ViewControllers/Classes/EditTextViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Classes/EditTextViewController.swift -------------------------------------------------------------------------------- /Pisth/ViewControllers/Classes/FileInfoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Classes/FileInfoViewController.swift -------------------------------------------------------------------------------- /Pisth/ViewControllers/Classes/GitBranchesTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Classes/GitBranchesTableViewController.swift -------------------------------------------------------------------------------- /Pisth/ViewControllers/Classes/GitRemotesTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Classes/GitRemotesTableViewController.swift -------------------------------------------------------------------------------- /Pisth/ViewControllers/Classes/ImageViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Classes/ImageViewController.swift -------------------------------------------------------------------------------- /Pisth/ViewControllers/Classes/LocalDirectoryCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Classes/LocalDirectoryCollectionViewController.swift -------------------------------------------------------------------------------- /Pisth/ViewControllers/Classes/PisthConnectionInformationViewTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Classes/PisthConnectionInformationViewTableViewController.swift -------------------------------------------------------------------------------- /Pisth/ViewControllers/Classes/PluginsLocalDirectoryTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Classes/PluginsLocalDirectoryTableViewController.swift -------------------------------------------------------------------------------- /Pisth/ViewControllers/Classes/SSHKeyTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Classes/SSHKeyTableViewController.swift -------------------------------------------------------------------------------- /Pisth/ViewControllers/Classes/SettingsTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Classes/SettingsTableViewController.swift -------------------------------------------------------------------------------- /Pisth/ViewControllers/Classes/SnippetsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Classes/SnippetsViewController.swift -------------------------------------------------------------------------------- /Pisth/ViewControllers/Classes/SourceControlTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Classes/SourceControlTableViewController.swift -------------------------------------------------------------------------------- /Pisth/ViewControllers/Classes/SplitViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Classes/SplitViewController.swift -------------------------------------------------------------------------------- /Pisth/ViewControllers/Classes/TerminalSplitViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Classes/TerminalSplitViewController.swift -------------------------------------------------------------------------------- /Pisth/ViewControllers/Classes/TerminalViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Classes/TerminalViewController.swift -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/Base.lproj/Code Editor.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/Base.lproj/Code Editor.xib -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/Base.lproj/Connection Info.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/Base.lproj/Connection Info.storyboard -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/Base.lproj/Contribute.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/Base.lproj/Contribute.xib -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/Base.lproj/File Info.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/Base.lproj/File Info.xib -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/Base.lproj/Git.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/Base.lproj/Git.storyboard -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/Base.lproj/Image.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/Base.lproj/Image.xib -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/Base.lproj/SSHKey.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/Base.lproj/SSHKey.storyboard -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/Base.lproj/Settings.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/Base.lproj/Settings.storyboard -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/Base.lproj/Snippets.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/Base.lproj/Snippets.storyboard -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/Content.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/Content.storyboard -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/Web.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/Web.xib -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/en.lproj/Code Editor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/en.lproj/Code Editor.strings -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/en.lproj/Connection Info.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/en.lproj/Connection Info.strings -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/en.lproj/Contribute.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/en.lproj/Contribute.strings -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/en.lproj/File Info.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/en.lproj/File Info.strings -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/en.lproj/Git.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/en.lproj/Git.strings -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/en.lproj/Image.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/en.lproj/SSHKey.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/en.lproj/SSHKey.strings -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/en.lproj/Settings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/en.lproj/Settings.strings -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/en.lproj/Snippets.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/en.lproj/Snippets.strings -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/es.lproj/Code Editor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/es.lproj/Code Editor.strings -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/es.lproj/Connection Info.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/es.lproj/Connection Info.strings -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/es.lproj/Contribute.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/es.lproj/Contribute.strings -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/es.lproj/File Info.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/es.lproj/File Info.strings -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/es.lproj/Git.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/es.lproj/Git.strings -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/es.lproj/Image.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/es.lproj/SSHKey.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/es.lproj/SSHKey.strings -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/es.lproj/Settings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/es.lproj/Settings.strings -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/es.lproj/Snippets.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/es.lproj/Snippets.strings -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/fr.lproj/Code Editor.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/fr.lproj/Code Editor.strings -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/fr.lproj/Connection Info.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/fr.lproj/Connection Info.strings -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/fr.lproj/Contribute.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/fr.lproj/Contribute.strings -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/fr.lproj/File Info.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/fr.lproj/File Info.strings -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/fr.lproj/Git.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/fr.lproj/Git.strings -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/fr.lproj/Image.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/fr.lproj/SSHKey.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/fr.lproj/SSHKey.strings -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/fr.lproj/Settings.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/fr.lproj/Settings.strings -------------------------------------------------------------------------------- /Pisth/ViewControllers/Interface Builder/fr.lproj/Snippets.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/ViewControllers/Interface Builder/fr.lproj/Snippets.strings -------------------------------------------------------------------------------- /Pisth/Views/Classes/FileCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Views/Classes/FileCollectionViewCell.swift -------------------------------------------------------------------------------- /Pisth/Views/Classes/HeaderToolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Views/Classes/HeaderToolbar.swift -------------------------------------------------------------------------------- /Pisth/Views/Classes/TerminalWebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Views/Classes/TerminalWebView.swift -------------------------------------------------------------------------------- /Pisth/Views/Interface Builder/Base.lproj/Disconnected.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Views/Interface Builder/Base.lproj/Disconnected.xib -------------------------------------------------------------------------------- /Pisth/Views/Interface Builder/Base.lproj/No Connections.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Views/Interface Builder/Base.lproj/No Connections.xib -------------------------------------------------------------------------------- /Pisth/Views/Interface Builder/FileCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Views/Interface Builder/FileCollectionViewCell.xib -------------------------------------------------------------------------------- /Pisth/Views/Interface Builder/Grid File Cell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Views/Interface Builder/Grid File Cell.xib -------------------------------------------------------------------------------- /Pisth/Views/Interface Builder/Header.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Views/Interface Builder/Header.xib -------------------------------------------------------------------------------- /Pisth/Views/Interface Builder/List File Cell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Views/Interface Builder/List File Cell.xib -------------------------------------------------------------------------------- /Pisth/Views/Interface Builder/No Snippets.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Views/Interface Builder/No Snippets.xib -------------------------------------------------------------------------------- /Pisth/Views/Interface Builder/en.lproj/Disconnected.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Views/Interface Builder/en.lproj/Disconnected.strings -------------------------------------------------------------------------------- /Pisth/Views/Interface Builder/en.lproj/No Connections.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Views/Interface Builder/en.lproj/No Connections.strings -------------------------------------------------------------------------------- /Pisth/Views/Interface Builder/es.lproj/Disconnected.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Views/Interface Builder/es.lproj/Disconnected.strings -------------------------------------------------------------------------------- /Pisth/Views/Interface Builder/es.lproj/No Connections.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Views/Interface Builder/es.lproj/No Connections.strings -------------------------------------------------------------------------------- /Pisth/Views/Interface Builder/fr.lproj/Disconnected.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Views/Interface Builder/fr.lproj/Disconnected.strings -------------------------------------------------------------------------------- /Pisth/Views/Interface Builder/fr.lproj/No Connections.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/Views/Interface Builder/fr.lproj/No Connections.strings -------------------------------------------------------------------------------- /Pisth/WhatsNew.xcassets/Bonjour.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/WhatsNew.xcassets/Bonjour.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth/WhatsNew.xcassets/Bonjour.imageset/bonjour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/WhatsNew.xcassets/Bonjour.imageset/bonjour.png -------------------------------------------------------------------------------- /Pisth/WhatsNew.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/WhatsNew.xcassets/Contents.json -------------------------------------------------------------------------------- /Pisth/WhatsNew.xcassets/Globe.imageset/2000px-Globe_icon.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/WhatsNew.xcassets/Globe.imageset/2000px-Globe_icon.svg.png -------------------------------------------------------------------------------- /Pisth/WhatsNew.xcassets/Globe.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/WhatsNew.xcassets/Globe.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth/WhatsNew.xcassets/Keychain.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/WhatsNew.xcassets/Keychain.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth/WhatsNew.xcassets/Keychain.imageset/keychain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/WhatsNew.xcassets/Keychain.imageset/keychain.png -------------------------------------------------------------------------------- /Pisth/WhatsNew.xcassets/Redesign.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/WhatsNew.xcassets/Redesign.imageset/Contents.json -------------------------------------------------------------------------------- /Pisth/WhatsNew.xcassets/Redesign.imageset/Redesign.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/WhatsNew.xcassets/Redesign.imageset/Redesign.jpg -------------------------------------------------------------------------------- /Pisth/commandDictionary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/commandDictionary.plist -------------------------------------------------------------------------------- /Pisth/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pisth/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Pisth/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pisth/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/es.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Pisth/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pisth/extraCommandsDictionary.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/extraCommandsDictionary.plist -------------------------------------------------------------------------------- /Pisth/fr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/fr.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Pisth/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pisth/langs.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Pisth/langs.plist -------------------------------------------------------------------------------- /PisthTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/PisthTests/Info.plist -------------------------------------------------------------------------------- /PisthTests/PisthTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/PisthTests/PisthTests.swift -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/appstoreimages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/_includes/appstoreimages.html -------------------------------------------------------------------------------- /_includes/features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/_includes/features.html -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/_includes/header.html -------------------------------------------------------------------------------- /_includes/screencontent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/_includes/screencontent.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_sass/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/_sass/base.scss -------------------------------------------------------------------------------- /_sass/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/_sass/layout.scss -------------------------------------------------------------------------------- /assets/appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/assets/appstore.png -------------------------------------------------------------------------------- /assets/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/assets/black.png -------------------------------------------------------------------------------- /assets/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/assets/blue.png -------------------------------------------------------------------------------- /assets/coral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/assets/coral.png -------------------------------------------------------------------------------- /assets/headerimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/assets/headerimage.png -------------------------------------------------------------------------------- /assets/playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/assets/playstore.png -------------------------------------------------------------------------------- /assets/screenshot/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/assets/screenshot/Screenshot.png -------------------------------------------------------------------------------- /assets/squircle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/assets/squircle.svg -------------------------------------------------------------------------------- /assets/squircle120.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/assets/squircle120.svg -------------------------------------------------------------------------------- /assets/videos/Place-video-files-here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/assets/videos/Place-video-files-here.txt -------------------------------------------------------------------------------- /assets/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/assets/white.png -------------------------------------------------------------------------------- /assets/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/assets/yellow.png -------------------------------------------------------------------------------- /automatic-app-landing-page_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/automatic-app-landing-page_LICENSE -------------------------------------------------------------------------------- /docs/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/Classes.html -------------------------------------------------------------------------------- /docs/Classes/Pisth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/Classes/Pisth.html -------------------------------------------------------------------------------- /docs/Classes/PisthAPT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/Classes/PisthAPT.html -------------------------------------------------------------------------------- /docs/Classes/PisthFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/Classes/PisthFile.html -------------------------------------------------------------------------------- /docs/Guides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/Guides.html -------------------------------------------------------------------------------- /docs/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/badge.svg -------------------------------------------------------------------------------- /docs/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/css/highlight.css -------------------------------------------------------------------------------- /docs/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/Pisth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/docsets/Pisth.xml -------------------------------------------------------------------------------- /docs/docsets/Pisth_API.docset/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/docsets/Pisth_API.docset/Contents/Info.plist -------------------------------------------------------------------------------- /docs/docsets/Pisth_API.docset/Contents/Resources/Documents/Classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/docsets/Pisth_API.docset/Contents/Resources/Documents/Classes.html -------------------------------------------------------------------------------- /docs/docsets/Pisth_API.docset/Contents/Resources/Documents/Classes/Pisth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/docsets/Pisth_API.docset/Contents/Resources/Documents/Classes/Pisth.html -------------------------------------------------------------------------------- /docs/docsets/Pisth_API.docset/Contents/Resources/Documents/Classes/PisthAPT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/docsets/Pisth_API.docset/Contents/Resources/Documents/Classes/PisthAPT.html -------------------------------------------------------------------------------- /docs/docsets/Pisth_API.docset/Contents/Resources/Documents/Classes/PisthFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/docsets/Pisth_API.docset/Contents/Resources/Documents/Classes/PisthFile.html -------------------------------------------------------------------------------- /docs/docsets/Pisth_API.docset/Contents/Resources/Documents/Guides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/docsets/Pisth_API.docset/Contents/Resources/Documents/Guides.html -------------------------------------------------------------------------------- /docs/docsets/Pisth_API.docset/Contents/Resources/Documents/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/docsets/Pisth_API.docset/Contents/Resources/Documents/badge.svg -------------------------------------------------------------------------------- /docs/docsets/Pisth_API.docset/Contents/Resources/Documents/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/docsets/Pisth_API.docset/Contents/Resources/Documents/css/highlight.css -------------------------------------------------------------------------------- /docs/docsets/Pisth_API.docset/Contents/Resources/Documents/css/jazzy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/docsets/Pisth_API.docset/Contents/Resources/Documents/css/jazzy.css -------------------------------------------------------------------------------- /docs/docsets/Pisth_API.docset/Contents/Resources/Documents/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/docsets/Pisth_API.docset/Contents/Resources/Documents/example.html -------------------------------------------------------------------------------- /docs/docsets/Pisth_API.docset/Contents/Resources/Documents/getting-started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/docsets/Pisth_API.docset/Contents/Resources/Documents/getting-started.html -------------------------------------------------------------------------------- /docs/docsets/Pisth_API.docset/Contents/Resources/Documents/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/docsets/Pisth_API.docset/Contents/Resources/Documents/img/carat.png -------------------------------------------------------------------------------- /docs/docsets/Pisth_API.docset/Contents/Resources/Documents/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/docsets/Pisth_API.docset/Contents/Resources/Documents/img/dash.png -------------------------------------------------------------------------------- /docs/docsets/Pisth_API.docset/Contents/Resources/Documents/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/docsets/Pisth_API.docset/Contents/Resources/Documents/img/gh.png -------------------------------------------------------------------------------- /docs/docsets/Pisth_API.docset/Contents/Resources/Documents/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/docsets/Pisth_API.docset/Contents/Resources/Documents/index.html -------------------------------------------------------------------------------- /docs/docsets/Pisth_API.docset/Contents/Resources/Documents/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/docsets/Pisth_API.docset/Contents/Resources/Documents/js/jazzy.js -------------------------------------------------------------------------------- /docs/docsets/Pisth_API.docset/Contents/Resources/Documents/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/docsets/Pisth_API.docset/Contents/Resources/Documents/js/jquery.min.js -------------------------------------------------------------------------------- /docs/docsets/Pisth_API.docset/Contents/Resources/Documents/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/docsets/Pisth_API.docset/Contents/Resources/Documents/search.json -------------------------------------------------------------------------------- /docs/docsets/Pisth_API.docset/Contents/Resources/Documents/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/docsets/Pisth_API.docset/Contents/Resources/Documents/undocumented.json -------------------------------------------------------------------------------- /docs/docsets/Pisth_API.docset/Contents/Resources/docSet.dsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/docsets/Pisth_API.docset/Contents/Resources/docSet.dsidx -------------------------------------------------------------------------------- /docs/docsets/Pisth_API.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/docsets/Pisth_API.tgz -------------------------------------------------------------------------------- /docs/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/example.html -------------------------------------------------------------------------------- /docs/getting-started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/getting-started.html -------------------------------------------------------------------------------- /docs/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/img/carat.png -------------------------------------------------------------------------------- /docs/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/img/dash.png -------------------------------------------------------------------------------- /docs/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/img/gh.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/jazzy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/js/jazzy.js -------------------------------------------------------------------------------- /docs/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/js/jquery.min.js -------------------------------------------------------------------------------- /docs/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/search.json -------------------------------------------------------------------------------- /docs/undocumented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/docs/undocumented.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- -------------------------------------------------------------------------------- /main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/main.scss -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdGrub1384/Pisth/HEAD/setup.sh --------------------------------------------------------------------------------