├── .gitignore ├── LICENSE ├── Noto.xcodeproj └── project.pbxproj ├── Noto.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── Noto ├── Application │ ├── AppDelegate.swift │ ├── EditorTheme.swift │ └── Preferences.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon_128.png │ │ ├── icon_16.png │ │ ├── icon_256.png │ │ ├── icon_32.png │ │ ├── icon_32@2x.png │ │ ├── icon_512.png │ │ └── icon_512@2x.png │ ├── Contents.json │ ├── eyeTemplate.imageset │ │ ├── Contents.json │ │ ├── eye-open_Template.png │ │ └── eye-open_Template@2x.png │ ├── garbage.imageset │ │ ├── Contents.json │ │ └── garbage.pdf │ ├── indentDecreaseTemplate.imageset │ │ ├── Contents.json │ │ ├── indentDecreaseTemplate.png │ │ └── indentDecreaseTemplate@2x.png │ ├── indentIncreaseTemplate.imageset │ │ ├── Contents.json │ │ ├── indentIncreaseTemplate.png │ │ └── indentIncreaseTemplate@2x.png │ ├── jumpToLineTemplate.imageset │ │ ├── Contents.json │ │ ├── jumpToLineTemplate.png │ │ └── jumpToLineTemplate@2x.png │ ├── pencil.imageset │ │ ├── Contents.json │ │ └── pencil.pdf │ ├── printTemplate.imageset │ │ ├── Contents.json │ │ ├── printTemplate.png │ │ └── printTemplate@2x.png │ └── share.imageset │ │ ├── Contents.json │ │ └── share.pdf ├── Base.lproj │ ├── Document.xib │ └── MainMenu.xib ├── Document │ ├── Document.swift │ └── DocumentWindow.swift ├── Extensions │ ├── Bool+Additions.swift │ ├── NSColor+Additions.swift │ ├── NSLayoutConstraint+Additions.swift │ ├── NSMenuItem+EditorTheme.swift │ ├── NSTextStorage+Indentation.swift │ ├── NSTextView+Additions.swift │ └── String+Additions.swift ├── Misc │ ├── AssignIf.swift │ ├── ConcreteTextStorage.h │ ├── ConcreteTextStorage.m │ ├── EditorLayoutManager.h │ ├── EditorLayoutManager.m │ ├── EncodingTool.swift │ ├── FileWatcher.swift │ ├── ManagedToolbar.swift │ ├── MetricsTextStorage.swift │ └── Temporizer.swift ├── Supporting Files │ ├── BumpBuild.sh │ ├── Info-AppStore.plist │ ├── Info.plist │ ├── Noto-AppStore.entitlements │ ├── Noto-Bridging-Header.h │ ├── Noto.entitlements │ ├── Noto.help │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── Resources │ │ │ ├── SharedGlobalArt │ │ │ │ ├── AppIconDefault_Noto.png │ │ │ │ ├── AppLanding_Noto.png │ │ │ │ ├── editor-preferences@2x.png │ │ │ │ ├── encoding-example@2x.png │ │ │ │ ├── find_and_replace@2x.png │ │ │ │ ├── general-preferences@2x.png │ │ │ │ ├── infobar-modes.png │ │ │ │ ├── noto_screenshot_1@2x.png │ │ │ │ ├── spelling@2x.png │ │ │ │ ├── start-a-document@2x.png │ │ │ │ ├── themes-preferences-2@2x.png │ │ │ │ ├── themes-preferences@2x.png │ │ │ │ ├── tool-garbage.png │ │ │ │ ├── tool-pencil.png │ │ │ │ └── tool-share.png │ │ │ ├── en.lproj │ │ │ │ ├── change-document-encoding-anchor.html │ │ │ │ ├── change-document-encoding.html │ │ │ │ ├── custom-themes-anchor.html │ │ │ │ ├── custom-themes.html │ │ │ │ ├── editor-prefs-anchor.html │ │ │ │ ├── editor-prefs.html │ │ │ │ ├── find-and-replace-anchor.html │ │ │ │ ├── find-and-replace.html │ │ │ │ ├── general-prefs-anchor.html │ │ │ │ ├── general-prefs.html │ │ │ │ ├── hear-document-aloud-anchor.html │ │ │ │ ├── hear-document-aloud.html │ │ │ │ ├── infobar-prefs-anchor.html │ │ │ │ ├── infobar-prefs.html │ │ │ │ ├── landing.html │ │ │ │ ├── locale-info.json │ │ │ │ ├── navigation.json │ │ │ │ ├── open-a-document-anchor.html │ │ │ │ ├── open-a-document.html │ │ │ │ ├── overview-anchor.html │ │ │ │ ├── overview.html │ │ │ │ ├── redirect.html │ │ │ │ ├── save-a-document-anchor.html │ │ │ │ ├── save-a-document.html │ │ │ │ ├── search.helpindex │ │ │ │ ├── special-chars.html │ │ │ │ ├── spelling-and-grammar-anchor.html │ │ │ │ ├── spelling-and-grammar.html │ │ │ │ ├── start-a-document-anchor.html │ │ │ │ ├── start-a-document.html │ │ │ │ ├── themes-anchor.html │ │ │ │ └── themes.html │ │ │ └── index.html │ │ │ └── version.plist │ └── dsa_pub.pem ├── View Controllers │ ├── Info Bar │ │ ├── HUDInfoBarController.swift │ │ ├── HUDInfoBarController.xib │ │ ├── InfoBar.swift │ │ ├── StatusInfoBarController.swift │ │ └── StatusInfoBarController.xib │ ├── Preferences │ │ ├── EditorPreferencesViewController.swift │ │ ├── EditorPreferencesViewController.xib │ │ ├── GeneralPreferencesController.swift │ │ ├── GeneralPreferencesController.xib │ │ ├── PreferencesController.swift │ │ ├── ThemePreferencesController.swift │ │ └── ThemePreferencesController.xib │ └── Printing │ │ ├── PrintAccessoryViewController.swift │ │ ├── PrintAccessoryViewController.xib │ │ └── PrintingView.swift └── Views │ ├── BackgroundView.swift │ ├── EditorView.swift │ ├── LineNumbersRulerView.swift │ └── WindowDragHandleView.swift ├── Podfile ├── Podfile.lock ├── Pods ├── CCNPreferencesWindowController │ ├── CCNPreferencesWindowController │ │ ├── CCNPreferencesWindowController.h │ │ ├── CCNPreferencesWindowController.m │ │ └── CCNPreferencesWindowControllerProtocol.h │ ├── LICENSE.txt │ └── ReadMe.md ├── Local Podspecs │ └── CCNPreferencesWindowController.podspec.json ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ ├── .xcuserdatad │ │ └── xcschemes │ │ │ ├── CCNPreferencesWindowController.xcscheme │ │ │ ├── Pods-TipTyper.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── Bruno.xcuserdatad │ │ └── xcschemes │ │ ├── CCNPreferencesWindowController.xcscheme │ │ ├── Pods-Noto (AppStore).xcscheme │ │ ├── Pods-Noto.xcscheme │ │ ├── TRexAboutWindowController.xcscheme │ │ └── xcschememanagement.plist ├── Sparkle │ ├── LICENSE │ ├── Sparkle.framework.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── Sparkle │ ├── Sparkle.framework │ │ ├── Headers │ │ ├── Modules │ │ ├── PrivateHeaders │ │ ├── Resources │ │ ├── Sparkle │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── SPUDownloadData.h │ │ │ │ ├── SPUDownloader.h │ │ │ │ ├── SPUDownloaderDelegate.h │ │ │ │ ├── SPUDownloaderDeprecated.h │ │ │ │ ├── SPUDownloaderProtocol.h │ │ │ │ ├── SPUDownloaderSession.h │ │ │ │ ├── SPUURLRequest.h │ │ │ │ ├── SUAppcast.h │ │ │ │ ├── SUAppcastItem.h │ │ │ │ ├── SUCodeSigningVerifier.h │ │ │ │ ├── SUErrors.h │ │ │ │ ├── SUExport.h │ │ │ │ ├── SUStandardVersionComparator.h │ │ │ │ ├── SUUpdater.h │ │ │ │ ├── SUUpdaterDelegate.h │ │ │ │ ├── SUVersionComparisonProtocol.h │ │ │ │ ├── SUVersionDisplayProtocol.h │ │ │ │ └── Sparkle.h │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ ├── PrivateHeaders │ │ │ │ └── SUUnarchiver.h │ │ │ ├── Resources │ │ │ │ ├── Autoupdate.app │ │ │ │ │ └── Contents │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── MacOS │ │ │ │ │ │ ├── Autoupdate │ │ │ │ │ │ └── fileop │ │ │ │ │ │ ├── PkgInfo │ │ │ │ │ │ └── Resources │ │ │ │ │ │ ├── AppIcon.icns │ │ │ │ │ │ ├── SUStatus.nib │ │ │ │ │ │ ├── ar.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── ca.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── cs.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── da.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── de.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── el.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── es.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── fi.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── fr.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── he.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── hr.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── hu.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── is.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── it.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── ja.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── ko.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── nb.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── nl.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── pl.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── pt_BR.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── pt_PT.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── ro.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── ru.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── sk.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── sl.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── sv.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── th.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── tr.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── uk.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ ├── zh_CN.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ │ │ └── zh_TW.lproj │ │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── DarkAqua.css │ │ │ │ ├── Info.plist │ │ │ │ ├── SUModelTranslation.plist │ │ │ │ ├── SUStatus.nib │ │ │ │ ├── ar.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ca.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── cs.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── da.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── de.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── el.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── en.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── es.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── fi.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── fr.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── fr_CA.lproj │ │ │ │ ├── he.lproj │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── hr.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── hu.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── is.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── it.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ja.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ko.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── nb.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── nl.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── pl.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── pt.lproj │ │ │ │ ├── pt_BR.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── pt_PT.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ro.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── ru.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── sk.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── sl.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── sv.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── th.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── tr.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── uk.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ ├── zh_CN.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ │ └── zh_TW.lproj │ │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ │ └── Sparkle.strings │ │ │ └── Sparkle │ │ │ └── Current │ └── bin │ │ ├── BinaryDelta │ │ ├── BinaryDelta.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── BinaryDelta │ │ ├── generate_appcast │ │ ├── generate_appcast.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── generate_appcast │ │ ├── generate_keys │ │ ├── generate_keys.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── generate_keys │ │ ├── old_dsa_scripts │ │ ├── generate_dsa_keys_macos_10.12_only │ │ └── sign_update │ │ ├── sign_update │ │ └── sign_update.dSYM │ │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ └── DWARF │ │ └── sign_update ├── TRexAboutWindowController │ ├── LICENSE │ ├── README.md │ └── TRexAboutWindowController │ │ ├── PFAboutWindow.xib │ │ └── TRexAboutWindowController.swift └── Target Support Files │ ├── CCNPreferencesWindowController │ ├── CCNPreferencesWindowController-dummy.m │ ├── CCNPreferencesWindowController-prefix.pch │ ├── CCNPreferencesWindowController-umbrella.h │ ├── CCNPreferencesWindowController.modulemap │ ├── CCNPreferencesWindowController.xcconfig │ └── Info.plist │ ├── Pods-Noto (AppStore) │ ├── Info.plist │ ├── Pods-Noto (AppStore)-acknowledgements.markdown │ ├── Pods-Noto (AppStore)-acknowledgements.plist │ ├── Pods-Noto (AppStore)-dummy.m │ ├── Pods-Noto (AppStore)-frameworks.sh │ ├── Pods-Noto (AppStore)-resources.sh │ ├── Pods-Noto (AppStore)-umbrella.h │ ├── Pods-Noto (AppStore).debug.xcconfig │ ├── Pods-Noto (AppStore).modulemap │ └── Pods-Noto (AppStore).release.xcconfig │ ├── Pods-Noto │ ├── Info.plist │ ├── Pods-Noto-acknowledgements.markdown │ ├── Pods-Noto-acknowledgements.plist │ ├── Pods-Noto-dummy.m │ ├── Pods-Noto-frameworks.sh │ ├── Pods-Noto-resources.sh │ ├── Pods-Noto-umbrella.h │ ├── Pods-Noto.debug.xcconfig │ ├── Pods-Noto.modulemap │ └── Pods-Noto.release.xcconfig │ └── TRexAboutWindowController │ ├── Info.plist │ ├── TRexAboutWindowController-dummy.m │ ├── TRexAboutWindowController-prefix.pch │ ├── TRexAboutWindowController-umbrella.h │ ├── TRexAboutWindowController.modulemap │ └── TRexAboutWindowController.xcconfig ├── README.md └── Unit Tests ├── Info.plist ├── ModifiableIndentationTest.swift └── Unit_Tests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/LICENSE -------------------------------------------------------------------------------- /Noto.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Noto.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Noto.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Noto/Application/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Application/AppDelegate.swift -------------------------------------------------------------------------------- /Noto/Application/EditorTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Application/EditorTheme.swift -------------------------------------------------------------------------------- /Noto/Application/Preferences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Application/Preferences.swift -------------------------------------------------------------------------------- /Noto/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Noto/Assets.xcassets/AppIcon.appiconset/icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Assets.xcassets/AppIcon.appiconset/icon_128.png -------------------------------------------------------------------------------- /Noto/Assets.xcassets/AppIcon.appiconset/icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Assets.xcassets/AppIcon.appiconset/icon_16.png -------------------------------------------------------------------------------- /Noto/Assets.xcassets/AppIcon.appiconset/icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Assets.xcassets/AppIcon.appiconset/icon_256.png -------------------------------------------------------------------------------- /Noto/Assets.xcassets/AppIcon.appiconset/icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Assets.xcassets/AppIcon.appiconset/icon_32.png -------------------------------------------------------------------------------- /Noto/Assets.xcassets/AppIcon.appiconset/icon_32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Assets.xcassets/AppIcon.appiconset/icon_32@2x.png -------------------------------------------------------------------------------- /Noto/Assets.xcassets/AppIcon.appiconset/icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Assets.xcassets/AppIcon.appiconset/icon_512.png -------------------------------------------------------------------------------- /Noto/Assets.xcassets/AppIcon.appiconset/icon_512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Assets.xcassets/AppIcon.appiconset/icon_512@2x.png -------------------------------------------------------------------------------- /Noto/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Noto/Assets.xcassets/eyeTemplate.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Assets.xcassets/eyeTemplate.imageset/Contents.json -------------------------------------------------------------------------------- /Noto/Assets.xcassets/eyeTemplate.imageset/eye-open_Template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Assets.xcassets/eyeTemplate.imageset/eye-open_Template.png -------------------------------------------------------------------------------- /Noto/Assets.xcassets/eyeTemplate.imageset/eye-open_Template@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Assets.xcassets/eyeTemplate.imageset/eye-open_Template@2x.png -------------------------------------------------------------------------------- /Noto/Assets.xcassets/garbage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Assets.xcassets/garbage.imageset/Contents.json -------------------------------------------------------------------------------- /Noto/Assets.xcassets/garbage.imageset/garbage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Assets.xcassets/garbage.imageset/garbage.pdf -------------------------------------------------------------------------------- /Noto/Assets.xcassets/indentDecreaseTemplate.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Assets.xcassets/indentDecreaseTemplate.imageset/Contents.json -------------------------------------------------------------------------------- /Noto/Assets.xcassets/indentDecreaseTemplate.imageset/indentDecreaseTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Assets.xcassets/indentDecreaseTemplate.imageset/indentDecreaseTemplate.png -------------------------------------------------------------------------------- /Noto/Assets.xcassets/indentDecreaseTemplate.imageset/indentDecreaseTemplate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Assets.xcassets/indentDecreaseTemplate.imageset/indentDecreaseTemplate@2x.png -------------------------------------------------------------------------------- /Noto/Assets.xcassets/indentIncreaseTemplate.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Assets.xcassets/indentIncreaseTemplate.imageset/Contents.json -------------------------------------------------------------------------------- /Noto/Assets.xcassets/indentIncreaseTemplate.imageset/indentIncreaseTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Assets.xcassets/indentIncreaseTemplate.imageset/indentIncreaseTemplate.png -------------------------------------------------------------------------------- /Noto/Assets.xcassets/indentIncreaseTemplate.imageset/indentIncreaseTemplate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Assets.xcassets/indentIncreaseTemplate.imageset/indentIncreaseTemplate@2x.png -------------------------------------------------------------------------------- /Noto/Assets.xcassets/jumpToLineTemplate.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Assets.xcassets/jumpToLineTemplate.imageset/Contents.json -------------------------------------------------------------------------------- /Noto/Assets.xcassets/jumpToLineTemplate.imageset/jumpToLineTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Assets.xcassets/jumpToLineTemplate.imageset/jumpToLineTemplate.png -------------------------------------------------------------------------------- /Noto/Assets.xcassets/jumpToLineTemplate.imageset/jumpToLineTemplate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Assets.xcassets/jumpToLineTemplate.imageset/jumpToLineTemplate@2x.png -------------------------------------------------------------------------------- /Noto/Assets.xcassets/pencil.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Assets.xcassets/pencil.imageset/Contents.json -------------------------------------------------------------------------------- /Noto/Assets.xcassets/pencil.imageset/pencil.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Assets.xcassets/pencil.imageset/pencil.pdf -------------------------------------------------------------------------------- /Noto/Assets.xcassets/printTemplate.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Assets.xcassets/printTemplate.imageset/Contents.json -------------------------------------------------------------------------------- /Noto/Assets.xcassets/printTemplate.imageset/printTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Assets.xcassets/printTemplate.imageset/printTemplate.png -------------------------------------------------------------------------------- /Noto/Assets.xcassets/printTemplate.imageset/printTemplate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Assets.xcassets/printTemplate.imageset/printTemplate@2x.png -------------------------------------------------------------------------------- /Noto/Assets.xcassets/share.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Assets.xcassets/share.imageset/Contents.json -------------------------------------------------------------------------------- /Noto/Assets.xcassets/share.imageset/share.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Assets.xcassets/share.imageset/share.pdf -------------------------------------------------------------------------------- /Noto/Base.lproj/Document.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Base.lproj/Document.xib -------------------------------------------------------------------------------- /Noto/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Noto/Document/Document.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Document/Document.swift -------------------------------------------------------------------------------- /Noto/Document/DocumentWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Document/DocumentWindow.swift -------------------------------------------------------------------------------- /Noto/Extensions/Bool+Additions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Extensions/Bool+Additions.swift -------------------------------------------------------------------------------- /Noto/Extensions/NSColor+Additions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Extensions/NSColor+Additions.swift -------------------------------------------------------------------------------- /Noto/Extensions/NSLayoutConstraint+Additions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Extensions/NSLayoutConstraint+Additions.swift -------------------------------------------------------------------------------- /Noto/Extensions/NSMenuItem+EditorTheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Extensions/NSMenuItem+EditorTheme.swift -------------------------------------------------------------------------------- /Noto/Extensions/NSTextStorage+Indentation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Extensions/NSTextStorage+Indentation.swift -------------------------------------------------------------------------------- /Noto/Extensions/NSTextView+Additions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Extensions/NSTextView+Additions.swift -------------------------------------------------------------------------------- /Noto/Extensions/String+Additions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Extensions/String+Additions.swift -------------------------------------------------------------------------------- /Noto/Misc/AssignIf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Misc/AssignIf.swift -------------------------------------------------------------------------------- /Noto/Misc/ConcreteTextStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Misc/ConcreteTextStorage.h -------------------------------------------------------------------------------- /Noto/Misc/ConcreteTextStorage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Misc/ConcreteTextStorage.m -------------------------------------------------------------------------------- /Noto/Misc/EditorLayoutManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Misc/EditorLayoutManager.h -------------------------------------------------------------------------------- /Noto/Misc/EditorLayoutManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Misc/EditorLayoutManager.m -------------------------------------------------------------------------------- /Noto/Misc/EncodingTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Misc/EncodingTool.swift -------------------------------------------------------------------------------- /Noto/Misc/FileWatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Misc/FileWatcher.swift -------------------------------------------------------------------------------- /Noto/Misc/ManagedToolbar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Misc/ManagedToolbar.swift -------------------------------------------------------------------------------- /Noto/Misc/MetricsTextStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Misc/MetricsTextStorage.swift -------------------------------------------------------------------------------- /Noto/Misc/Temporizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Misc/Temporizer.swift -------------------------------------------------------------------------------- /Noto/Supporting Files/BumpBuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/BumpBuild.sh -------------------------------------------------------------------------------- /Noto/Supporting Files/Info-AppStore.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Info-AppStore.plist -------------------------------------------------------------------------------- /Noto/Supporting Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Info.plist -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto-AppStore.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto-AppStore.entitlements -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto-Bridging-Header.h -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.entitlements -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Info.plist -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/SharedGlobalArt/AppIconDefault_Noto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/SharedGlobalArt/AppIconDefault_Noto.png -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/SharedGlobalArt/AppLanding_Noto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/SharedGlobalArt/AppLanding_Noto.png -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/SharedGlobalArt/editor-preferences@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/SharedGlobalArt/editor-preferences@2x.png -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/SharedGlobalArt/encoding-example@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/SharedGlobalArt/encoding-example@2x.png -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/SharedGlobalArt/find_and_replace@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/SharedGlobalArt/find_and_replace@2x.png -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/SharedGlobalArt/general-preferences@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/SharedGlobalArt/general-preferences@2x.png -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/SharedGlobalArt/infobar-modes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/SharedGlobalArt/infobar-modes.png -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/SharedGlobalArt/noto_screenshot_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/SharedGlobalArt/noto_screenshot_1@2x.png -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/SharedGlobalArt/spelling@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/SharedGlobalArt/spelling@2x.png -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/SharedGlobalArt/start-a-document@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/SharedGlobalArt/start-a-document@2x.png -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/SharedGlobalArt/themes-preferences-2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/SharedGlobalArt/themes-preferences-2@2x.png -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/SharedGlobalArt/themes-preferences@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/SharedGlobalArt/themes-preferences@2x.png -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/SharedGlobalArt/tool-garbage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/SharedGlobalArt/tool-garbage.png -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/SharedGlobalArt/tool-pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/SharedGlobalArt/tool-pencil.png -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/SharedGlobalArt/tool-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/SharedGlobalArt/tool-share.png -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/change-document-encoding-anchor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/change-document-encoding-anchor.html -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/change-document-encoding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/change-document-encoding.html -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/custom-themes-anchor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/custom-themes-anchor.html -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/custom-themes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/custom-themes.html -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/editor-prefs-anchor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/editor-prefs-anchor.html -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/editor-prefs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/editor-prefs.html -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/find-and-replace-anchor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/find-and-replace-anchor.html -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/find-and-replace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/find-and-replace.html -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/general-prefs-anchor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/general-prefs-anchor.html -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/general-prefs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/general-prefs.html -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/hear-document-aloud-anchor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/hear-document-aloud-anchor.html -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/hear-document-aloud.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/hear-document-aloud.html -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/infobar-prefs-anchor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/infobar-prefs-anchor.html -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/infobar-prefs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/infobar-prefs.html -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/landing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/landing.html -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/locale-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/locale-info.json -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/navigation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/navigation.json -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/open-a-document-anchor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/open-a-document-anchor.html -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/open-a-document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/open-a-document.html -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/overview-anchor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/overview-anchor.html -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/overview.html -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/redirect.html -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/save-a-document-anchor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/save-a-document-anchor.html -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/save-a-document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/save-a-document.html -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/search.helpindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/search.helpindex -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/special-chars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/special-chars.html -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/spelling-and-grammar-anchor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/spelling-and-grammar-anchor.html -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/spelling-and-grammar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/spelling-and-grammar.html -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/start-a-document-anchor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/start-a-document-anchor.html -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/start-a-document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/start-a-document.html -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/themes-anchor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/themes-anchor.html -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/themes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/en.lproj/themes.html -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/Resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/Resources/index.html -------------------------------------------------------------------------------- /Noto/Supporting Files/Noto.help/Contents/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/Noto.help/Contents/version.plist -------------------------------------------------------------------------------- /Noto/Supporting Files/dsa_pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Supporting Files/dsa_pub.pem -------------------------------------------------------------------------------- /Noto/View Controllers/Info Bar/HUDInfoBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/View Controllers/Info Bar/HUDInfoBarController.swift -------------------------------------------------------------------------------- /Noto/View Controllers/Info Bar/HUDInfoBarController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/View Controllers/Info Bar/HUDInfoBarController.xib -------------------------------------------------------------------------------- /Noto/View Controllers/Info Bar/InfoBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/View Controllers/Info Bar/InfoBar.swift -------------------------------------------------------------------------------- /Noto/View Controllers/Info Bar/StatusInfoBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/View Controllers/Info Bar/StatusInfoBarController.swift -------------------------------------------------------------------------------- /Noto/View Controllers/Info Bar/StatusInfoBarController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/View Controllers/Info Bar/StatusInfoBarController.xib -------------------------------------------------------------------------------- /Noto/View Controllers/Preferences/EditorPreferencesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/View Controllers/Preferences/EditorPreferencesViewController.swift -------------------------------------------------------------------------------- /Noto/View Controllers/Preferences/EditorPreferencesViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/View Controllers/Preferences/EditorPreferencesViewController.xib -------------------------------------------------------------------------------- /Noto/View Controllers/Preferences/GeneralPreferencesController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/View Controllers/Preferences/GeneralPreferencesController.swift -------------------------------------------------------------------------------- /Noto/View Controllers/Preferences/GeneralPreferencesController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/View Controllers/Preferences/GeneralPreferencesController.xib -------------------------------------------------------------------------------- /Noto/View Controllers/Preferences/PreferencesController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/View Controllers/Preferences/PreferencesController.swift -------------------------------------------------------------------------------- /Noto/View Controllers/Preferences/ThemePreferencesController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/View Controllers/Preferences/ThemePreferencesController.swift -------------------------------------------------------------------------------- /Noto/View Controllers/Preferences/ThemePreferencesController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/View Controllers/Preferences/ThemePreferencesController.xib -------------------------------------------------------------------------------- /Noto/View Controllers/Printing/PrintAccessoryViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/View Controllers/Printing/PrintAccessoryViewController.swift -------------------------------------------------------------------------------- /Noto/View Controllers/Printing/PrintAccessoryViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/View Controllers/Printing/PrintAccessoryViewController.xib -------------------------------------------------------------------------------- /Noto/View Controllers/Printing/PrintingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/View Controllers/Printing/PrintingView.swift -------------------------------------------------------------------------------- /Noto/Views/BackgroundView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Views/BackgroundView.swift -------------------------------------------------------------------------------- /Noto/Views/EditorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Views/EditorView.swift -------------------------------------------------------------------------------- /Noto/Views/LineNumbersRulerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Views/LineNumbersRulerView.swift -------------------------------------------------------------------------------- /Noto/Views/WindowDragHandleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Noto/Views/WindowDragHandleView.swift -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/CCNPreferencesWindowController/CCNPreferencesWindowController/CCNPreferencesWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/CCNPreferencesWindowController/CCNPreferencesWindowController/CCNPreferencesWindowController.h -------------------------------------------------------------------------------- /Pods/CCNPreferencesWindowController/CCNPreferencesWindowController/CCNPreferencesWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/CCNPreferencesWindowController/CCNPreferencesWindowController/CCNPreferencesWindowController.m -------------------------------------------------------------------------------- /Pods/CCNPreferencesWindowController/CCNPreferencesWindowController/CCNPreferencesWindowControllerProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/CCNPreferencesWindowController/CCNPreferencesWindowController/CCNPreferencesWindowControllerProtocol.h -------------------------------------------------------------------------------- /Pods/CCNPreferencesWindowController/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/CCNPreferencesWindowController/LICENSE.txt -------------------------------------------------------------------------------- /Pods/CCNPreferencesWindowController/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/CCNPreferencesWindowController/ReadMe.md -------------------------------------------------------------------------------- /Pods/Local Podspecs/CCNPreferencesWindowController.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Local Podspecs/CCNPreferencesWindowController.podspec.json -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/.xcuserdatad/xcschemes/CCNPreferencesWindowController.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Pods.xcodeproj/xcuserdata/.xcuserdatad/xcschemes/CCNPreferencesWindowController.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/.xcuserdatad/xcschemes/Pods-TipTyper.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Pods.xcodeproj/xcuserdata/.xcuserdatad/xcschemes/Pods-TipTyper.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Pods.xcodeproj/xcuserdata/.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Bruno.xcuserdatad/xcschemes/CCNPreferencesWindowController.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Pods.xcodeproj/xcuserdata/Bruno.xcuserdatad/xcschemes/CCNPreferencesWindowController.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Bruno.xcuserdatad/xcschemes/Pods-Noto (AppStore).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Pods.xcodeproj/xcuserdata/Bruno.xcuserdatad/xcschemes/Pods-Noto (AppStore).xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Bruno.xcuserdatad/xcschemes/Pods-Noto.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Pods.xcodeproj/xcuserdata/Bruno.xcuserdatad/xcschemes/Pods-Noto.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Bruno.xcuserdatad/xcschemes/TRexAboutWindowController.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Pods.xcodeproj/xcuserdata/Bruno.xcuserdatad/xcschemes/TRexAboutWindowController.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Bruno.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Pods.xcodeproj/xcuserdata/Bruno.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/Sparkle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/LICENSE -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework.dSYM/Contents/Resources/DWARF/Sparkle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework.dSYM/Contents/Resources/DWARF/Sparkle -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/PrivateHeaders: -------------------------------------------------------------------------------- 1 | Versions/Current/PrivateHeaders -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Sparkle: -------------------------------------------------------------------------------- 1 | Versions/Current/Sparkle -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SPUDownloadData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SPUDownloadData.h -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SPUDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SPUDownloader.h -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SPUDownloaderDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SPUDownloaderDelegate.h -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SPUDownloaderDeprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SPUDownloaderDeprecated.h -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SPUDownloaderProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SPUDownloaderProtocol.h -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SPUDownloaderSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SPUDownloaderSession.h -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SPUURLRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SPUURLRequest.h -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUAppcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUAppcast.h -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUCodeSigningVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUCodeSigningVerifier.h -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUErrors.h -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUExport.h -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUStandardVersionComparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUStandardVersionComparator.h -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUUpdater.h -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUUpdaterDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUUpdaterDelegate.h -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUVersionDisplayProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUVersionDisplayProtocol.h -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Headers/Sparkle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Headers/Sparkle.h -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Modules/module.modulemap -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/PrivateHeaders/SUUnarchiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/PrivateHeaders/SUUnarchiver.h -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Info.plist -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/Autoupdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/Autoupdate -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/fileop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/fileop -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/AppIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/AppIcon.icns -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/SUStatus.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ar.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ar.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ca.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ca.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/cs.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/cs.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/da.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/da.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/el.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/el.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fi.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fi.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/he.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/he.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/hr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/hr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/hu.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/hu.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/is.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ja.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ja.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ko.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ko.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nb.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nb.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_BR.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_BR.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_PT.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/pt_PT.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ro.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ro.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/th.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/th.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/tr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/tr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/uk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/uk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/DarkAqua.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/DarkAqua.css -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/SUStatus.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ar.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ar.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ar.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ar.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ar.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ca.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ca.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/cs.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/cs.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/cs.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/cs.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/da.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/da.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/da.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/da.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/de.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/de.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/de.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/el.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/el.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/el.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/el.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/el.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/en.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/en.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/en.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/es.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/es.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/fi.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/fi.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/fi.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/fi.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/fi.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/fr.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/fr.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/fr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/fr_CA.lproj: -------------------------------------------------------------------------------- 1 | fr.lproj -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/he.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/he.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/hr.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/hr.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/hr.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/hr.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/hr.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/hr.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/hr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/hr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/hu.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/hu.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/hu.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/hu.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/hu.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/is.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/is.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/is.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/is.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/it.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/it.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/it.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ja.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ja.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ja.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ja.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ko.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ko.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ko.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ko.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ko.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/nb.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/nb.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/nb.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/nb.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/nb.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/nl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/nl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/nl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/pl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/pl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/pl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/pl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/pt.lproj: -------------------------------------------------------------------------------- 1 | pt_BR.lproj -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/pt_BR.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/pt_PT.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ro.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ro.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ro.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ro.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ro.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ru.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ru.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/ru.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/sk.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/sk.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/sk.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/sk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/sk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/sl.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/sl.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/sl.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/sl.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/sl.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/sv.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/sv.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/sv.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/th.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/th.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/th.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/th.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/th.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/tr.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/tr.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/tr.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/tr.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/tr.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/uk.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/uk.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/uk.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/uk.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/uk.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/zh_CN.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUAutomaticUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdateAlert.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/SUUpdatePermissionPrompt.nib -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Sparkle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Sparkle -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Pods/Sparkle/bin/BinaryDelta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/bin/BinaryDelta -------------------------------------------------------------------------------- /Pods/Sparkle/bin/BinaryDelta.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/bin/BinaryDelta.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /Pods/Sparkle/bin/BinaryDelta.dSYM/Contents/Resources/DWARF/BinaryDelta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/bin/BinaryDelta.dSYM/Contents/Resources/DWARF/BinaryDelta -------------------------------------------------------------------------------- /Pods/Sparkle/bin/generate_appcast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/bin/generate_appcast -------------------------------------------------------------------------------- /Pods/Sparkle/bin/generate_appcast.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/bin/generate_appcast.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /Pods/Sparkle/bin/generate_appcast.dSYM/Contents/Resources/DWARF/generate_appcast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/bin/generate_appcast.dSYM/Contents/Resources/DWARF/generate_appcast -------------------------------------------------------------------------------- /Pods/Sparkle/bin/generate_keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/bin/generate_keys -------------------------------------------------------------------------------- /Pods/Sparkle/bin/generate_keys.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/bin/generate_keys.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /Pods/Sparkle/bin/generate_keys.dSYM/Contents/Resources/DWARF/generate_keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/bin/generate_keys.dSYM/Contents/Resources/DWARF/generate_keys -------------------------------------------------------------------------------- /Pods/Sparkle/bin/old_dsa_scripts/generate_dsa_keys_macos_10.12_only: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/bin/old_dsa_scripts/generate_dsa_keys_macos_10.12_only -------------------------------------------------------------------------------- /Pods/Sparkle/bin/old_dsa_scripts/sign_update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/bin/old_dsa_scripts/sign_update -------------------------------------------------------------------------------- /Pods/Sparkle/bin/sign_update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/bin/sign_update -------------------------------------------------------------------------------- /Pods/Sparkle/bin/sign_update.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/bin/sign_update.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /Pods/Sparkle/bin/sign_update.dSYM/Contents/Resources/DWARF/sign_update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Sparkle/bin/sign_update.dSYM/Contents/Resources/DWARF/sign_update -------------------------------------------------------------------------------- /Pods/TRexAboutWindowController/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/TRexAboutWindowController/LICENSE -------------------------------------------------------------------------------- /Pods/TRexAboutWindowController/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/TRexAboutWindowController/README.md -------------------------------------------------------------------------------- /Pods/TRexAboutWindowController/TRexAboutWindowController/PFAboutWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/TRexAboutWindowController/TRexAboutWindowController/PFAboutWindow.xib -------------------------------------------------------------------------------- /Pods/TRexAboutWindowController/TRexAboutWindowController/TRexAboutWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/TRexAboutWindowController/TRexAboutWindowController/TRexAboutWindowController.swift -------------------------------------------------------------------------------- /Pods/Target Support Files/CCNPreferencesWindowController/CCNPreferencesWindowController-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/CCNPreferencesWindowController/CCNPreferencesWindowController-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/CCNPreferencesWindowController/CCNPreferencesWindowController-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/CCNPreferencesWindowController/CCNPreferencesWindowController-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/CCNPreferencesWindowController/CCNPreferencesWindowController-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/CCNPreferencesWindowController/CCNPreferencesWindowController-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/CCNPreferencesWindowController/CCNPreferencesWindowController.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/CCNPreferencesWindowController/CCNPreferencesWindowController.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/CCNPreferencesWindowController/CCNPreferencesWindowController.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/CCNPreferencesWindowController/CCNPreferencesWindowController.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/CCNPreferencesWindowController/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/CCNPreferencesWindowController/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Noto (AppStore)/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/Pods-Noto (AppStore)/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Noto (AppStore)/Pods-Noto (AppStore)-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/Pods-Noto (AppStore)/Pods-Noto (AppStore)-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Noto (AppStore)/Pods-Noto (AppStore)-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/Pods-Noto (AppStore)/Pods-Noto (AppStore)-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Noto (AppStore)/Pods-Noto (AppStore)-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/Pods-Noto (AppStore)/Pods-Noto (AppStore)-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Noto (AppStore)/Pods-Noto (AppStore)-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/Pods-Noto (AppStore)/Pods-Noto (AppStore)-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Noto (AppStore)/Pods-Noto (AppStore)-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/Pods-Noto (AppStore)/Pods-Noto (AppStore)-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Noto (AppStore)/Pods-Noto (AppStore)-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/Pods-Noto (AppStore)/Pods-Noto (AppStore)-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Noto (AppStore)/Pods-Noto (AppStore).debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/Pods-Noto (AppStore)/Pods-Noto (AppStore).debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Noto (AppStore)/Pods-Noto (AppStore).modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/Pods-Noto (AppStore)/Pods-Noto (AppStore).modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Noto (AppStore)/Pods-Noto (AppStore).release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/Pods-Noto (AppStore)/Pods-Noto (AppStore).release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Noto/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/Pods-Noto/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Noto/Pods-Noto-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/Pods-Noto/Pods-Noto-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Noto/Pods-Noto-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/Pods-Noto/Pods-Noto-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Noto/Pods-Noto-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/Pods-Noto/Pods-Noto-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Noto/Pods-Noto-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/Pods-Noto/Pods-Noto-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Noto/Pods-Noto-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/Pods-Noto/Pods-Noto-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Noto/Pods-Noto-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/Pods-Noto/Pods-Noto-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Noto/Pods-Noto.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/Pods-Noto/Pods-Noto.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Noto/Pods-Noto.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/Pods-Noto/Pods-Noto.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Noto/Pods-Noto.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/Pods-Noto/Pods-Noto.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/TRexAboutWindowController/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/TRexAboutWindowController/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/TRexAboutWindowController/TRexAboutWindowController-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/TRexAboutWindowController/TRexAboutWindowController-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/TRexAboutWindowController/TRexAboutWindowController-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/TRexAboutWindowController/TRexAboutWindowController-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/TRexAboutWindowController/TRexAboutWindowController-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/TRexAboutWindowController/TRexAboutWindowController-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/TRexAboutWindowController/TRexAboutWindowController.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/TRexAboutWindowController/TRexAboutWindowController.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/TRexAboutWindowController/TRexAboutWindowController.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Pods/Target Support Files/TRexAboutWindowController/TRexAboutWindowController.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/README.md -------------------------------------------------------------------------------- /Unit Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Unit Tests/Info.plist -------------------------------------------------------------------------------- /Unit Tests/ModifiableIndentationTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Unit Tests/ModifiableIndentationTest.swift -------------------------------------------------------------------------------- /Unit Tests/Unit_Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunophilipe/Noto/HEAD/Unit Tests/Unit_Tests.swift --------------------------------------------------------------------------------