├── .gitignore ├── .gitmodules ├── NSObject+test.h ├── NSObject+test.m ├── Note+CoreDataProperties.swift ├── Note.swift ├── Podfile ├── Pods ├── Headers │ └── Public │ │ └── Sparkle │ │ └── Sparkle │ │ ├── SUAppcast.h │ │ ├── SUAppcastItem.h │ │ ├── SUErrors.h │ │ ├── SUExport.h │ │ ├── SUStandardVersionComparator.h │ │ ├── SUUpdater.h │ │ ├── SUVersionComparisonProtocol.h │ │ ├── SUVersionDisplayProtocol.h │ │ └── Sparkle.h ├── MASShortcut │ ├── Framework │ │ ├── MASDictionaryTransformer.h │ │ ├── MASDictionaryTransformer.m │ │ ├── MASHotKey.h │ │ ├── MASHotKey.m │ │ ├── MASKeyCodes.h │ │ ├── MASLocalization.h │ │ ├── MASLocalization.m │ │ ├── MASShortcut.h │ │ ├── MASShortcut.m │ │ ├── MASShortcut.modulemap │ │ ├── MASShortcutBinder.h │ │ ├── MASShortcutBinder.m │ │ ├── MASShortcutMonitor.h │ │ ├── MASShortcutMonitor.m │ │ ├── MASShortcutValidator.h │ │ ├── MASShortcutValidator.m │ │ ├── MASShortcutView+Bindings.h │ │ ├── MASShortcutView+Bindings.m │ │ ├── MASShortcutView.h │ │ ├── MASShortcutView.m │ │ └── Shortcut.h │ ├── LICENSE │ ├── README.md │ ├── cs.lproj │ │ └── Localizable.strings │ ├── de.lproj │ │ └── Localizable.strings │ ├── en.lproj │ │ └── Localizable.strings │ ├── es.lproj │ │ └── Localizable.strings │ ├── fr.lproj │ │ └── Localizable.strings │ ├── it.lproj │ │ └── Localizable.strings │ └── ja.lproj │ │ └── Localizable.strings ├── Pods.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── RFOverlayScrollView │ ├── Demo │ │ ├── RFOverlayScrollView Demo.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ └── RFOverlayScrollView Demo │ │ │ ├── RFAppDelegate.h │ │ │ ├── RFAppDelegate.m │ │ │ ├── RFOverlayScrollView Demo-Info.plist │ │ │ ├── RFOverlayScrollView Demo-Prefix.pch │ │ │ ├── en.lproj │ │ │ ├── Credits.rtf │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ │ └── main.m │ ├── LICENSE │ ├── README.md │ └── RFOverlayScrollView │ │ ├── RFOverlayScrollView.h │ │ ├── RFOverlayScrollView.m │ │ ├── RFOverlayScroller.h │ │ └── RFOverlayScroller.m ├── Sparkle │ ├── LICENSE │ ├── Sparkle.framework.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── Sparkle │ └── Sparkle.framework │ │ ├── Headers │ │ ├── Modules │ │ ├── PrivateHeaders │ │ ├── Resources │ │ ├── Sparkle │ │ └── Versions │ │ ├── A │ │ ├── Headers │ │ │ ├── SUAppcast.h │ │ │ ├── SUAppcastItem.h │ │ │ ├── SUErrors.h │ │ │ ├── SUExport.h │ │ │ ├── SUStandardVersionComparator.h │ │ │ ├── SUUpdater.h │ │ │ ├── SUVersionComparisonProtocol.h │ │ │ ├── SUVersionDisplayProtocol.h │ │ │ └── Sparkle.h │ │ ├── Modules │ │ │ └── module.modulemap │ │ ├── PrivateHeaders │ │ │ └── SUUnarchiver.h │ │ ├── Resources │ │ │ ├── Autoupdate.app │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MacOS │ │ │ │ │ └── Autoupdate │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ └── Sparkle.strings │ │ │ ├── fr.lproj │ │ │ │ ├── SUAutomaticUpdateAlert.nib │ │ │ │ ├── SUUpdateAlert.nib │ │ │ │ ├── SUUpdatePermissionPrompt.nib │ │ │ │ └── Sparkle.strings │ │ │ ├── fr_CA.lproj │ │ │ ├── he.lproj │ │ │ │ └── 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 ├── SwiftyUserDefaults │ ├── LICENSE │ ├── README.md │ └── SwiftyUserDefaults │ │ └── SwiftyUserDefaults.swift └── Target Support Files │ ├── MASShortcut │ ├── Info.plist │ ├── MASShortcut-dummy.m │ ├── MASShortcut-prefix.pch │ ├── MASShortcut-umbrella.h │ ├── MASShortcut.modulemap │ ├── MASShortcut.xcconfig │ └── ResourceBundle-MASShortcut-Info.plist │ ├── Pods-SmartNote │ ├── Info.plist │ ├── Pods-SmartNote-acknowledgements.markdown │ ├── Pods-SmartNote-acknowledgements.plist │ ├── Pods-SmartNote-dummy.m │ ├── Pods-SmartNote-frameworks.sh │ ├── Pods-SmartNote-resources.sh │ ├── Pods-SmartNote-umbrella.h │ ├── Pods-SmartNote.debug.xcconfig │ ├── Pods-SmartNote.modulemap │ └── Pods-SmartNote.release.xcconfig │ ├── Pods-SmartNoteTests │ ├── Info.plist │ ├── Pods-SmartNoteTests-acknowledgements.markdown │ ├── Pods-SmartNoteTests-acknowledgements.plist │ ├── Pods-SmartNoteTests-dummy.m │ ├── Pods-SmartNoteTests-frameworks.sh │ ├── Pods-SmartNoteTests-resources.sh │ ├── Pods-SmartNoteTests-umbrella.h │ ├── Pods-SmartNoteTests.debug.xcconfig │ ├── Pods-SmartNoteTests.modulemap │ └── Pods-SmartNoteTests.release.xcconfig │ ├── Pods-SmartNoteUITests │ ├── Info.plist │ ├── Pods-SmartNoteUITests-acknowledgements.markdown │ ├── Pods-SmartNoteUITests-acknowledgements.plist │ ├── Pods-SmartNoteUITests-dummy.m │ ├── Pods-SmartNoteUITests-frameworks.sh │ ├── Pods-SmartNoteUITests-resources.sh │ ├── Pods-SmartNoteUITests-umbrella.h │ ├── Pods-SmartNoteUITests.debug.xcconfig │ ├── Pods-SmartNoteUITests.modulemap │ └── Pods-SmartNoteUITests.release.xcconfig │ ├── RFOverlayScrollView │ ├── Info.plist │ ├── RFOverlayScrollView-dummy.m │ ├── RFOverlayScrollView-prefix.pch │ ├── RFOverlayScrollView-umbrella.h │ ├── RFOverlayScrollView.modulemap │ └── RFOverlayScrollView.xcconfig │ └── SwiftyUserDefaults │ ├── Info.plist │ ├── SwiftyUserDefaults-dummy.m │ ├── SwiftyUserDefaults-prefix.pch │ ├── SwiftyUserDefaults-umbrella.h │ ├── SwiftyUserDefaults.modulemap │ └── SwiftyUserDefaults.xcconfig ├── Preview.gif ├── README.md ├── SmartNote-Bridging-Header.h ├── SmartNote.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── SmartNote.xcworkspace └── contents.xcworkspacedata ├── SmartNote ├── AXHelper.swift ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── checkmark_menuitem.imageset │ │ ├── Contents.json │ │ ├── checkmark_menuitem.png │ │ ├── checkmark_menuitem@2x.png │ │ └── checkmark_menuitem@3x.png │ ├── checkmarkoff.imageset │ │ ├── Contents.json │ │ ├── checkmarkoff.png │ │ ├── checkmarkoff@2x.png │ │ └── checkmarkoff@3x.png │ ├── checkmarkon.imageset │ │ ├── Contents.json │ │ ├── checkmarkon.png │ │ ├── checkmarkon@2x.png │ │ └── checkmarkon@3x.png │ ├── icon.imageset │ │ ├── Contents.json │ │ └── icon@2x.png │ └── pattern.imageset │ │ ├── Contents.json │ │ └── pattern.png ├── AutomaticLists.swift ├── Base.lproj │ └── MainMenu.xib ├── FinderScripting │ ├── Finder.h │ ├── Finder.sdef │ ├── Finder.swift │ ├── FinderEnums.h │ ├── FinderScripting.h │ └── FinderScripting.swift ├── HotKey.swift ├── IconToDataTransformer.swift ├── IconView.swift ├── Info.plist ├── MainWindow.swift ├── MainWindowViewController.swift ├── Note+CoreDataProperties.swift ├── Note.swift ├── NoteTextView.swift ├── NoteTextViewDelegate.swift ├── PopoverViewController.swift ├── SmartNote.xcdatamodeld │ ├── .xccurrentversion │ ├── SmartNote 2.xcdatamodel │ │ └── contents │ └── SmartNote.xcdatamodel │ │ └── contents ├── SplitViewAnimation.swift ├── StylesPopover.swift ├── SupportedAttachments.swift ├── TextStyles.swift ├── WindowEvent.swift ├── icon@2x.png └── pattern.png ├── SmartNoteTests ├── Info.plist └── SmartNoteTests.swift └── SmartNoteUITests ├── Info.plist └── SmartNoteUITests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/.gitmodules -------------------------------------------------------------------------------- /NSObject+test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/NSObject+test.h -------------------------------------------------------------------------------- /NSObject+test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/NSObject+test.m -------------------------------------------------------------------------------- /Note+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Note+CoreDataProperties.swift -------------------------------------------------------------------------------- /Note.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Note.swift -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Podfile -------------------------------------------------------------------------------- /Pods/Headers/Public/Sparkle/Sparkle/SUAppcast.h: -------------------------------------------------------------------------------- 1 | ../../../../Sparkle/Sparkle.framework/Versions/A/Headers/SUAppcast.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sparkle/Sparkle/SUAppcastItem.h: -------------------------------------------------------------------------------- 1 | ../../../../Sparkle/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sparkle/Sparkle/SUErrors.h: -------------------------------------------------------------------------------- 1 | ../../../../Sparkle/Sparkle.framework/Versions/A/Headers/SUErrors.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sparkle/Sparkle/SUExport.h: -------------------------------------------------------------------------------- 1 | ../../../../Sparkle/Sparkle.framework/Versions/A/Headers/SUExport.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sparkle/Sparkle/SUStandardVersionComparator.h: -------------------------------------------------------------------------------- 1 | ../../../../Sparkle/Sparkle.framework/Versions/A/Headers/SUStandardVersionComparator.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sparkle/Sparkle/SUUpdater.h: -------------------------------------------------------------------------------- 1 | ../../../../Sparkle/Sparkle.framework/Versions/A/Headers/SUUpdater.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sparkle/Sparkle/SUVersionComparisonProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../../Sparkle/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sparkle/Sparkle/SUVersionDisplayProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../../Sparkle/Sparkle.framework/Versions/A/Headers/SUVersionDisplayProtocol.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Sparkle/Sparkle/Sparkle.h: -------------------------------------------------------------------------------- 1 | ../../../../Sparkle/Sparkle.framework/Versions/A/Headers/Sparkle.h -------------------------------------------------------------------------------- /Pods/MASShortcut/Framework/MASDictionaryTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/MASShortcut/Framework/MASDictionaryTransformer.h -------------------------------------------------------------------------------- /Pods/MASShortcut/Framework/MASDictionaryTransformer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/MASShortcut/Framework/MASDictionaryTransformer.m -------------------------------------------------------------------------------- /Pods/MASShortcut/Framework/MASHotKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/MASShortcut/Framework/MASHotKey.h -------------------------------------------------------------------------------- /Pods/MASShortcut/Framework/MASHotKey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/MASShortcut/Framework/MASHotKey.m -------------------------------------------------------------------------------- /Pods/MASShortcut/Framework/MASKeyCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/MASShortcut/Framework/MASKeyCodes.h -------------------------------------------------------------------------------- /Pods/MASShortcut/Framework/MASLocalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/MASShortcut/Framework/MASLocalization.h -------------------------------------------------------------------------------- /Pods/MASShortcut/Framework/MASLocalization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/MASShortcut/Framework/MASLocalization.m -------------------------------------------------------------------------------- /Pods/MASShortcut/Framework/MASShortcut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/MASShortcut/Framework/MASShortcut.h -------------------------------------------------------------------------------- /Pods/MASShortcut/Framework/MASShortcut.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/MASShortcut/Framework/MASShortcut.m -------------------------------------------------------------------------------- /Pods/MASShortcut/Framework/MASShortcut.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/MASShortcut/Framework/MASShortcut.modulemap -------------------------------------------------------------------------------- /Pods/MASShortcut/Framework/MASShortcutBinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/MASShortcut/Framework/MASShortcutBinder.h -------------------------------------------------------------------------------- /Pods/MASShortcut/Framework/MASShortcutBinder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/MASShortcut/Framework/MASShortcutBinder.m -------------------------------------------------------------------------------- /Pods/MASShortcut/Framework/MASShortcutMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/MASShortcut/Framework/MASShortcutMonitor.h -------------------------------------------------------------------------------- /Pods/MASShortcut/Framework/MASShortcutMonitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/MASShortcut/Framework/MASShortcutMonitor.m -------------------------------------------------------------------------------- /Pods/MASShortcut/Framework/MASShortcutValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/MASShortcut/Framework/MASShortcutValidator.h -------------------------------------------------------------------------------- /Pods/MASShortcut/Framework/MASShortcutValidator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/MASShortcut/Framework/MASShortcutValidator.m -------------------------------------------------------------------------------- /Pods/MASShortcut/Framework/MASShortcutView+Bindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/MASShortcut/Framework/MASShortcutView+Bindings.h -------------------------------------------------------------------------------- /Pods/MASShortcut/Framework/MASShortcutView+Bindings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/MASShortcut/Framework/MASShortcutView+Bindings.m -------------------------------------------------------------------------------- /Pods/MASShortcut/Framework/MASShortcutView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/MASShortcut/Framework/MASShortcutView.h -------------------------------------------------------------------------------- /Pods/MASShortcut/Framework/MASShortcutView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/MASShortcut/Framework/MASShortcutView.m -------------------------------------------------------------------------------- /Pods/MASShortcut/Framework/Shortcut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/MASShortcut/Framework/Shortcut.h -------------------------------------------------------------------------------- /Pods/MASShortcut/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/MASShortcut/LICENSE -------------------------------------------------------------------------------- /Pods/MASShortcut/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/MASShortcut/README.md -------------------------------------------------------------------------------- /Pods/MASShortcut/cs.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/MASShortcut/cs.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/MASShortcut/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/MASShortcut/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/MASShortcut/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/MASShortcut/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/MASShortcut/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/MASShortcut/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/MASShortcut/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/MASShortcut/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/MASShortcut/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/MASShortcut/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/MASShortcut/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/MASShortcut/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Pods/RFOverlayScrollView/Demo/RFOverlayScrollView Demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/RFOverlayScrollView/Demo/RFOverlayScrollView Demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/RFOverlayScrollView/Demo/RFOverlayScrollView Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/RFOverlayScrollView/Demo/RFOverlayScrollView Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Pods/RFOverlayScrollView/Demo/RFOverlayScrollView Demo/RFAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/RFOverlayScrollView/Demo/RFOverlayScrollView Demo/RFAppDelegate.h -------------------------------------------------------------------------------- /Pods/RFOverlayScrollView/Demo/RFOverlayScrollView Demo/RFAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/RFOverlayScrollView/Demo/RFOverlayScrollView Demo/RFAppDelegate.m -------------------------------------------------------------------------------- /Pods/RFOverlayScrollView/Demo/RFOverlayScrollView Demo/RFOverlayScrollView Demo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/RFOverlayScrollView/Demo/RFOverlayScrollView Demo/RFOverlayScrollView Demo-Info.plist -------------------------------------------------------------------------------- /Pods/RFOverlayScrollView/Demo/RFOverlayScrollView Demo/RFOverlayScrollView Demo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/RFOverlayScrollView/Demo/RFOverlayScrollView Demo/RFOverlayScrollView Demo-Prefix.pch -------------------------------------------------------------------------------- /Pods/RFOverlayScrollView/Demo/RFOverlayScrollView Demo/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/RFOverlayScrollView/Demo/RFOverlayScrollView Demo/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /Pods/RFOverlayScrollView/Demo/RFOverlayScrollView Demo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Pods/RFOverlayScrollView/Demo/RFOverlayScrollView Demo/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/RFOverlayScrollView/Demo/RFOverlayScrollView Demo/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Pods/RFOverlayScrollView/Demo/RFOverlayScrollView Demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/RFOverlayScrollView/Demo/RFOverlayScrollView Demo/main.m -------------------------------------------------------------------------------- /Pods/RFOverlayScrollView/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/RFOverlayScrollView/LICENSE -------------------------------------------------------------------------------- /Pods/RFOverlayScrollView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/RFOverlayScrollView/README.md -------------------------------------------------------------------------------- /Pods/RFOverlayScrollView/RFOverlayScrollView/RFOverlayScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/RFOverlayScrollView/RFOverlayScrollView/RFOverlayScrollView.h -------------------------------------------------------------------------------- /Pods/RFOverlayScrollView/RFOverlayScrollView/RFOverlayScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/RFOverlayScrollView/RFOverlayScrollView/RFOverlayScrollView.m -------------------------------------------------------------------------------- /Pods/RFOverlayScrollView/RFOverlayScrollView/RFOverlayScroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/RFOverlayScrollView/RFOverlayScrollView/RFOverlayScroller.h -------------------------------------------------------------------------------- /Pods/RFOverlayScrollView/RFOverlayScrollView/RFOverlayScroller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/RFOverlayScrollView/RFOverlayScrollView/RFOverlayScroller.m -------------------------------------------------------------------------------- /Pods/Sparkle/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Sparkle/LICENSE -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Sparkle/Sparkle.framework.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework.dSYM/Contents/Resources/DWARF/Sparkle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/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/SUAppcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUAppcast.h -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUErrors.h -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUExport.h -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUStandardVersionComparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUStandardVersionComparator.h -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUUpdater.h -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUVersionComparisonProtocol.h -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUVersionDisplayProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Headers/SUVersionDisplayProtocol.h -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Headers/Sparkle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Headers/Sparkle.h -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Modules/module.modulemap -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/PrivateHeaders/SUUnarchiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/MacOS/Autoupdate -------------------------------------------------------------------------------- /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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/is.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Autoupdate.app/Contents/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/SUModelTranslation.plist -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/SUStatus.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/es.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/fi.lproj/Sparkle.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/he.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Resources/is.lproj/SUAutomaticUpdateAlert.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/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/JanX2/SmartNote/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Resources/zh_TW.lproj/Sparkle.strings -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/A/Sparkle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Sparkle/Sparkle.framework/Versions/A/Sparkle -------------------------------------------------------------------------------- /Pods/Sparkle/Sparkle.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Pods/SwiftyUserDefaults/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/SwiftyUserDefaults/LICENSE -------------------------------------------------------------------------------- /Pods/SwiftyUserDefaults/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/SwiftyUserDefaults/README.md -------------------------------------------------------------------------------- /Pods/SwiftyUserDefaults/SwiftyUserDefaults/SwiftyUserDefaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/SwiftyUserDefaults/SwiftyUserDefaults/SwiftyUserDefaults.swift -------------------------------------------------------------------------------- /Pods/Target Support Files/MASShortcut/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/MASShortcut/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/MASShortcut/MASShortcut-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/MASShortcut/MASShortcut-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/MASShortcut/MASShortcut-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/MASShortcut/MASShortcut-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/MASShortcut/MASShortcut-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/MASShortcut/MASShortcut-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/MASShortcut/MASShortcut.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/MASShortcut/MASShortcut.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/MASShortcut/MASShortcut.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/MASShortcut/MASShortcut.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/MASShortcut/ResourceBundle-MASShortcut-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/MASShortcut/ResourceBundle-MASShortcut-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SmartNote/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/Pods-SmartNote/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SmartNote/Pods-SmartNote-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/Pods-SmartNote/Pods-SmartNote-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SmartNote/Pods-SmartNote-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/Pods-SmartNote/Pods-SmartNote-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SmartNote/Pods-SmartNote-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/Pods-SmartNote/Pods-SmartNote-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SmartNote/Pods-SmartNote-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/Pods-SmartNote/Pods-SmartNote-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SmartNote/Pods-SmartNote-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/Pods-SmartNote/Pods-SmartNote-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SmartNote/Pods-SmartNote-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/Pods-SmartNote/Pods-SmartNote-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SmartNote/Pods-SmartNote.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/Pods-SmartNote/Pods-SmartNote.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SmartNote/Pods-SmartNote.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/Pods-SmartNote/Pods-SmartNote.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SmartNote/Pods-SmartNote.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/Pods-SmartNote/Pods-SmartNote.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SmartNoteTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/Pods-SmartNoteTests/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SmartNoteTests/Pods-SmartNoteTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/Pods-SmartNoteTests/Pods-SmartNoteTests-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SmartNoteTests/Pods-SmartNoteTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/Pods-SmartNoteTests/Pods-SmartNoteTests-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SmartNoteTests/Pods-SmartNoteTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/Pods-SmartNoteTests/Pods-SmartNoteTests-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SmartNoteTests/Pods-SmartNoteTests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/Pods-SmartNoteTests/Pods-SmartNoteTests-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SmartNoteTests/Pods-SmartNoteTests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/Pods-SmartNoteTests/Pods-SmartNoteTests-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SmartNoteTests/Pods-SmartNoteTests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/Pods-SmartNoteTests/Pods-SmartNoteTests-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SmartNoteTests/Pods-SmartNoteTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/Pods-SmartNoteTests/Pods-SmartNoteTests.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SmartNoteTests/Pods-SmartNoteTests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/Pods-SmartNoteTests/Pods-SmartNoteTests.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SmartNoteTests/Pods-SmartNoteTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/Pods-SmartNoteTests/Pods-SmartNoteTests.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SmartNoteUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/Pods-SmartNoteUITests/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SmartNoteUITests/Pods-SmartNoteUITests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/Pods-SmartNoteUITests/Pods-SmartNoteUITests-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SmartNoteUITests/Pods-SmartNoteUITests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/Pods-SmartNoteUITests/Pods-SmartNoteUITests-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SmartNoteUITests/Pods-SmartNoteUITests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/Pods-SmartNoteUITests/Pods-SmartNoteUITests-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SmartNoteUITests/Pods-SmartNoteUITests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/Pods-SmartNoteUITests/Pods-SmartNoteUITests-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SmartNoteUITests/Pods-SmartNoteUITests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/Pods-SmartNoteUITests/Pods-SmartNoteUITests-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SmartNoteUITests/Pods-SmartNoteUITests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/Pods-SmartNoteUITests/Pods-SmartNoteUITests-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SmartNoteUITests/Pods-SmartNoteUITests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/Pods-SmartNoteUITests/Pods-SmartNoteUITests.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SmartNoteUITests/Pods-SmartNoteUITests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/Pods-SmartNoteUITests/Pods-SmartNoteUITests.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SmartNoteUITests/Pods-SmartNoteUITests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/Pods-SmartNoteUITests/Pods-SmartNoteUITests.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/RFOverlayScrollView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/RFOverlayScrollView/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/RFOverlayScrollView/RFOverlayScrollView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/RFOverlayScrollView/RFOverlayScrollView-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/RFOverlayScrollView/RFOverlayScrollView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/RFOverlayScrollView/RFOverlayScrollView-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/RFOverlayScrollView/RFOverlayScrollView-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/RFOverlayScrollView/RFOverlayScrollView-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/RFOverlayScrollView/RFOverlayScrollView.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/RFOverlayScrollView/RFOverlayScrollView.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/RFOverlayScrollView/RFOverlayScrollView.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/RFOverlayScrollView/RFOverlayScrollView.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyUserDefaults/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/SwiftyUserDefaults/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyUserDefaults/SwiftyUserDefaults-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/SwiftyUserDefaults/SwiftyUserDefaults-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyUserDefaults/SwiftyUserDefaults-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/SwiftyUserDefaults/SwiftyUserDefaults-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyUserDefaults/SwiftyUserDefaults-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/SwiftyUserDefaults/SwiftyUserDefaults-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyUserDefaults/SwiftyUserDefaults.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/SwiftyUserDefaults/SwiftyUserDefaults.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyUserDefaults/SwiftyUserDefaults.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Pods/Target Support Files/SwiftyUserDefaults/SwiftyUserDefaults.xcconfig -------------------------------------------------------------------------------- /Preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/Preview.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/README.md -------------------------------------------------------------------------------- /SmartNote-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote-Bridging-Header.h -------------------------------------------------------------------------------- /SmartNote.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SmartNote.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SmartNote.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SmartNote/AXHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/AXHelper.swift -------------------------------------------------------------------------------- /SmartNote/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/AppDelegate.swift -------------------------------------------------------------------------------- /SmartNote/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SmartNote/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SmartNote/Assets.xcassets/checkmark_menuitem.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/Assets.xcassets/checkmark_menuitem.imageset/Contents.json -------------------------------------------------------------------------------- /SmartNote/Assets.xcassets/checkmark_menuitem.imageset/checkmark_menuitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/Assets.xcassets/checkmark_menuitem.imageset/checkmark_menuitem.png -------------------------------------------------------------------------------- /SmartNote/Assets.xcassets/checkmark_menuitem.imageset/checkmark_menuitem@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/Assets.xcassets/checkmark_menuitem.imageset/checkmark_menuitem@2x.png -------------------------------------------------------------------------------- /SmartNote/Assets.xcassets/checkmark_menuitem.imageset/checkmark_menuitem@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/Assets.xcassets/checkmark_menuitem.imageset/checkmark_menuitem@3x.png -------------------------------------------------------------------------------- /SmartNote/Assets.xcassets/checkmarkoff.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/Assets.xcassets/checkmarkoff.imageset/Contents.json -------------------------------------------------------------------------------- /SmartNote/Assets.xcassets/checkmarkoff.imageset/checkmarkoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/Assets.xcassets/checkmarkoff.imageset/checkmarkoff.png -------------------------------------------------------------------------------- /SmartNote/Assets.xcassets/checkmarkoff.imageset/checkmarkoff@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/Assets.xcassets/checkmarkoff.imageset/checkmarkoff@2x.png -------------------------------------------------------------------------------- /SmartNote/Assets.xcassets/checkmarkoff.imageset/checkmarkoff@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/Assets.xcassets/checkmarkoff.imageset/checkmarkoff@3x.png -------------------------------------------------------------------------------- /SmartNote/Assets.xcassets/checkmarkon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/Assets.xcassets/checkmarkon.imageset/Contents.json -------------------------------------------------------------------------------- /SmartNote/Assets.xcassets/checkmarkon.imageset/checkmarkon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/Assets.xcassets/checkmarkon.imageset/checkmarkon.png -------------------------------------------------------------------------------- /SmartNote/Assets.xcassets/checkmarkon.imageset/checkmarkon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/Assets.xcassets/checkmarkon.imageset/checkmarkon@2x.png -------------------------------------------------------------------------------- /SmartNote/Assets.xcassets/checkmarkon.imageset/checkmarkon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/Assets.xcassets/checkmarkon.imageset/checkmarkon@3x.png -------------------------------------------------------------------------------- /SmartNote/Assets.xcassets/icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/Assets.xcassets/icon.imageset/Contents.json -------------------------------------------------------------------------------- /SmartNote/Assets.xcassets/icon.imageset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/Assets.xcassets/icon.imageset/icon@2x.png -------------------------------------------------------------------------------- /SmartNote/Assets.xcassets/pattern.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/Assets.xcassets/pattern.imageset/Contents.json -------------------------------------------------------------------------------- /SmartNote/Assets.xcassets/pattern.imageset/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/Assets.xcassets/pattern.imageset/pattern.png -------------------------------------------------------------------------------- /SmartNote/AutomaticLists.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/AutomaticLists.swift -------------------------------------------------------------------------------- /SmartNote/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /SmartNote/FinderScripting/Finder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/FinderScripting/Finder.h -------------------------------------------------------------------------------- /SmartNote/FinderScripting/Finder.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/FinderScripting/Finder.sdef -------------------------------------------------------------------------------- /SmartNote/FinderScripting/Finder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/FinderScripting/Finder.swift -------------------------------------------------------------------------------- /SmartNote/FinderScripting/FinderEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/FinderScripting/FinderEnums.h -------------------------------------------------------------------------------- /SmartNote/FinderScripting/FinderScripting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/FinderScripting/FinderScripting.h -------------------------------------------------------------------------------- /SmartNote/FinderScripting/FinderScripting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/FinderScripting/FinderScripting.swift -------------------------------------------------------------------------------- /SmartNote/HotKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/HotKey.swift -------------------------------------------------------------------------------- /SmartNote/IconToDataTransformer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/IconToDataTransformer.swift -------------------------------------------------------------------------------- /SmartNote/IconView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/IconView.swift -------------------------------------------------------------------------------- /SmartNote/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/Info.plist -------------------------------------------------------------------------------- /SmartNote/MainWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/MainWindow.swift -------------------------------------------------------------------------------- /SmartNote/MainWindowViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/MainWindowViewController.swift -------------------------------------------------------------------------------- /SmartNote/Note+CoreDataProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/Note+CoreDataProperties.swift -------------------------------------------------------------------------------- /SmartNote/Note.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/Note.swift -------------------------------------------------------------------------------- /SmartNote/NoteTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/NoteTextView.swift -------------------------------------------------------------------------------- /SmartNote/NoteTextViewDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/NoteTextViewDelegate.swift -------------------------------------------------------------------------------- /SmartNote/PopoverViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/PopoverViewController.swift -------------------------------------------------------------------------------- /SmartNote/SmartNote.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/SmartNote.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /SmartNote/SmartNote.xcdatamodeld/SmartNote 2.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/SmartNote.xcdatamodeld/SmartNote 2.xcdatamodel/contents -------------------------------------------------------------------------------- /SmartNote/SmartNote.xcdatamodeld/SmartNote.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/SmartNote.xcdatamodeld/SmartNote.xcdatamodel/contents -------------------------------------------------------------------------------- /SmartNote/SplitViewAnimation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/SplitViewAnimation.swift -------------------------------------------------------------------------------- /SmartNote/StylesPopover.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/StylesPopover.swift -------------------------------------------------------------------------------- /SmartNote/SupportedAttachments.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/SupportedAttachments.swift -------------------------------------------------------------------------------- /SmartNote/TextStyles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/TextStyles.swift -------------------------------------------------------------------------------- /SmartNote/WindowEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/WindowEvent.swift -------------------------------------------------------------------------------- /SmartNote/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/icon@2x.png -------------------------------------------------------------------------------- /SmartNote/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNote/pattern.png -------------------------------------------------------------------------------- /SmartNoteTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNoteTests/Info.plist -------------------------------------------------------------------------------- /SmartNoteTests/SmartNoteTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNoteTests/SmartNoteTests.swift -------------------------------------------------------------------------------- /SmartNoteUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNoteUITests/Info.plist -------------------------------------------------------------------------------- /SmartNoteUITests/SmartNoteUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JanX2/SmartNote/HEAD/SmartNoteUITests/SmartNoteUITests.swift --------------------------------------------------------------------------------