├── .gitignore ├── LICENSE.md ├── NewTerm.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── NewTermMarzipan ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── External │ ├── CompactConstraint │ │ ├── CompactConstraint.h │ │ ├── LICENSE │ │ ├── NSLayoutConstraint+CompactConstraint.h │ │ ├── NSLayoutConstraint+CompactConstraint.m │ │ ├── UIView+CompactConstraint.h │ │ └── UIView+CompactConstraint.m │ ├── UIColor+HBAdditions.h │ ├── UIColor+HBAdditions.m │ └── ncurses │ │ ├── ncurses.h │ │ ├── ncurses_dll.h │ │ └── term.h ├── FontMetrics.h ├── FontMetrics.m ├── Fonts.plist ├── HBNTAppDelegate.h ├── HBNTAppDelegate.m ├── HBNTHUDView.h ├── HBNTHUDView.m ├── HBNTKeyboardButton.h ├── HBNTKeyboardButton.m ├── HBNTKeyboardToolbar.h ├── HBNTKeyboardToolbar.m ├── HBNTPTY.h ├── HBNTPTY.m ├── HBNTPreferences.h ├── HBNTPreferences.m ├── HBNTPreferencesRootController.h ├── HBNTPreferencesRootController.m ├── HBNTRootViewController.h ├── HBNTRootViewController.m ├── HBNTSubProcess.h ├── HBNTSubProcess.m ├── HBNTTabCollectionViewCell.h ├── HBNTTabCollectionViewCell.m ├── HBNTTabToolbar.h ├── HBNTTabToolbar.m ├── HBNTTerminalController.h ├── HBNTTerminalController.m ├── HBNTTerminalKeyInput.h ├── HBNTTerminalKeyInput.m ├── HBNTTerminalSessionViewController.h ├── HBNTTerminalSessionViewController.m ├── HBNTTerminalTextView.h ├── HBNTTerminalTextView.m ├── HBNTTextInputBase.h ├── HBNTTextInputBase.m ├── Info.plist ├── Main.storyboard ├── Main.storyboardc │ ├── Info.plist │ ├── U5R-jr-i31-view-bFg-2Y-cSI.nib │ └── UINavigationController-a88-9D-dcr.nib ├── NSCharacterSet+iTerm.h ├── NSCharacterSet+iTerm.m ├── NSStringITerm.h ├── NSStringITerm.m ├── NewTermMarzipan.entitlements ├── ScreenChar.h ├── ScreenChar.m ├── Themes.plist ├── VT100.h ├── VT100.m ├── VT100ColorMap.h ├── VT100ColorMap.m ├── VT100Screen.h ├── VT100Screen.m ├── VT100StringSupplier.h ├── VT100StringSupplier.m ├── VT100Terminal.h ├── VT100Terminal.m ├── VT100Token.h ├── VT100Token.m ├── VT100Types.h ├── bell-hud.png ├── bell-hud@2x.png ├── bell-hud@3x.png ├── charmaps.h ├── colortest.txt ├── en.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── iTermParser.h ├── main.m ├── settings.png ├── settings@2x.png └── settings@3x.png ├── README.md └── UIKit └── PUT_PATCHED_HEADERS_HERE /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NewTerm.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTerm.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NewTerm.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTerm.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /NewTerm.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTerm.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /NewTermMarzipan/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /NewTermMarzipan/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /NewTermMarzipan/External/CompactConstraint/CompactConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/External/CompactConstraint/CompactConstraint.h -------------------------------------------------------------------------------- /NewTermMarzipan/External/CompactConstraint/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/External/CompactConstraint/LICENSE -------------------------------------------------------------------------------- /NewTermMarzipan/External/CompactConstraint/NSLayoutConstraint+CompactConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/External/CompactConstraint/NSLayoutConstraint+CompactConstraint.h -------------------------------------------------------------------------------- /NewTermMarzipan/External/CompactConstraint/NSLayoutConstraint+CompactConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/External/CompactConstraint/NSLayoutConstraint+CompactConstraint.m -------------------------------------------------------------------------------- /NewTermMarzipan/External/CompactConstraint/UIView+CompactConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/External/CompactConstraint/UIView+CompactConstraint.h -------------------------------------------------------------------------------- /NewTermMarzipan/External/CompactConstraint/UIView+CompactConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/External/CompactConstraint/UIView+CompactConstraint.m -------------------------------------------------------------------------------- /NewTermMarzipan/External/UIColor+HBAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/External/UIColor+HBAdditions.h -------------------------------------------------------------------------------- /NewTermMarzipan/External/UIColor+HBAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/External/UIColor+HBAdditions.m -------------------------------------------------------------------------------- /NewTermMarzipan/External/ncurses/ncurses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/External/ncurses/ncurses.h -------------------------------------------------------------------------------- /NewTermMarzipan/External/ncurses/ncurses_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/External/ncurses/ncurses_dll.h -------------------------------------------------------------------------------- /NewTermMarzipan/External/ncurses/term.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/External/ncurses/term.h -------------------------------------------------------------------------------- /NewTermMarzipan/FontMetrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/FontMetrics.h -------------------------------------------------------------------------------- /NewTermMarzipan/FontMetrics.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/FontMetrics.m -------------------------------------------------------------------------------- /NewTermMarzipan/Fonts.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/Fonts.plist -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTAppDelegate.h -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTAppDelegate.m -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTHUDView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTHUDView.h -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTHUDView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTHUDView.m -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTKeyboardButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTKeyboardButton.h -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTKeyboardButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTKeyboardButton.m -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTKeyboardToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTKeyboardToolbar.h -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTKeyboardToolbar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTKeyboardToolbar.m -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTPTY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTPTY.h -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTPTY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTPTY.m -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTPreferences.h -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTPreferences.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTPreferences.m -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTPreferencesRootController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTPreferencesRootController.h -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTPreferencesRootController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTPreferencesRootController.m -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTRootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTRootViewController.h -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTRootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTRootViewController.m -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTSubProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTSubProcess.h -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTSubProcess.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTSubProcess.m -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTTabCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTTabCollectionViewCell.h -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTTabCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTTabCollectionViewCell.m -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTTabToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTTabToolbar.h -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTTabToolbar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTTabToolbar.m -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTTerminalController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTTerminalController.h -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTTerminalController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTTerminalController.m -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTTerminalKeyInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTTerminalKeyInput.h -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTTerminalKeyInput.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTTerminalKeyInput.m -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTTerminalSessionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTTerminalSessionViewController.h -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTTerminalSessionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTTerminalSessionViewController.m -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTTerminalTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTTerminalTextView.h -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTTerminalTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTTerminalTextView.m -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTTextInputBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTTextInputBase.h -------------------------------------------------------------------------------- /NewTermMarzipan/HBNTTextInputBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/HBNTTextInputBase.m -------------------------------------------------------------------------------- /NewTermMarzipan/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/Info.plist -------------------------------------------------------------------------------- /NewTermMarzipan/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/Main.storyboard -------------------------------------------------------------------------------- /NewTermMarzipan/Main.storyboardc/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/Main.storyboardc/Info.plist -------------------------------------------------------------------------------- /NewTermMarzipan/Main.storyboardc/U5R-jr-i31-view-bFg-2Y-cSI.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/Main.storyboardc/U5R-jr-i31-view-bFg-2Y-cSI.nib -------------------------------------------------------------------------------- /NewTermMarzipan/Main.storyboardc/UINavigationController-a88-9D-dcr.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/Main.storyboardc/UINavigationController-a88-9D-dcr.nib -------------------------------------------------------------------------------- /NewTermMarzipan/NSCharacterSet+iTerm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/NSCharacterSet+iTerm.h -------------------------------------------------------------------------------- /NewTermMarzipan/NSCharacterSet+iTerm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/NSCharacterSet+iTerm.m -------------------------------------------------------------------------------- /NewTermMarzipan/NSStringITerm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/NSStringITerm.h -------------------------------------------------------------------------------- /NewTermMarzipan/NSStringITerm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/NSStringITerm.m -------------------------------------------------------------------------------- /NewTermMarzipan/NewTermMarzipan.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/NewTermMarzipan.entitlements -------------------------------------------------------------------------------- /NewTermMarzipan/ScreenChar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/ScreenChar.h -------------------------------------------------------------------------------- /NewTermMarzipan/ScreenChar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/ScreenChar.m -------------------------------------------------------------------------------- /NewTermMarzipan/Themes.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/Themes.plist -------------------------------------------------------------------------------- /NewTermMarzipan/VT100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/VT100.h -------------------------------------------------------------------------------- /NewTermMarzipan/VT100.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/VT100.m -------------------------------------------------------------------------------- /NewTermMarzipan/VT100ColorMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/VT100ColorMap.h -------------------------------------------------------------------------------- /NewTermMarzipan/VT100ColorMap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/VT100ColorMap.m -------------------------------------------------------------------------------- /NewTermMarzipan/VT100Screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/VT100Screen.h -------------------------------------------------------------------------------- /NewTermMarzipan/VT100Screen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/VT100Screen.m -------------------------------------------------------------------------------- /NewTermMarzipan/VT100StringSupplier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/VT100StringSupplier.h -------------------------------------------------------------------------------- /NewTermMarzipan/VT100StringSupplier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/VT100StringSupplier.m -------------------------------------------------------------------------------- /NewTermMarzipan/VT100Terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/VT100Terminal.h -------------------------------------------------------------------------------- /NewTermMarzipan/VT100Terminal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/VT100Terminal.m -------------------------------------------------------------------------------- /NewTermMarzipan/VT100Token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/VT100Token.h -------------------------------------------------------------------------------- /NewTermMarzipan/VT100Token.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/VT100Token.m -------------------------------------------------------------------------------- /NewTermMarzipan/VT100Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/VT100Types.h -------------------------------------------------------------------------------- /NewTermMarzipan/bell-hud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/bell-hud.png -------------------------------------------------------------------------------- /NewTermMarzipan/bell-hud@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/bell-hud@2x.png -------------------------------------------------------------------------------- /NewTermMarzipan/bell-hud@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/bell-hud@3x.png -------------------------------------------------------------------------------- /NewTermMarzipan/charmaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/charmaps.h -------------------------------------------------------------------------------- /NewTermMarzipan/colortest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/colortest.txt -------------------------------------------------------------------------------- /NewTermMarzipan/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /NewTermMarzipan/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /NewTermMarzipan/iTermParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/iTermParser.h -------------------------------------------------------------------------------- /NewTermMarzipan/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/main.m -------------------------------------------------------------------------------- /NewTermMarzipan/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/settings.png -------------------------------------------------------------------------------- /NewTermMarzipan/settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/settings@2x.png -------------------------------------------------------------------------------- /NewTermMarzipan/settings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/NewTermMarzipan/settings@3x.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirb/iOSMac-Demo/HEAD/README.md -------------------------------------------------------------------------------- /UIKit/PUT_PATCHED_HEADERS_HERE: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------