├── .gitattributes ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.md ├── .gitignore ├── .swiftlint.yml ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── FSNotes Info (Notarized).plist ├── FSNotes iOS Share ├── .bartycrouch.toml ├── FSNotes iOS Share.entitlements ├── Info.plist ├── Localizable.xcstrings ├── MainInterface.storyboard ├── ShareViewController.swift ├── es.lproj │ └── Localizable.strings ├── pt.lproj │ └── InfoPlist.strings ├── ru.lproj │ ├── InfoPlist.strings │ ├── Localizable.strings │ └── MainInterface.strings ├── uk.lproj │ ├── InfoPlist.strings │ └── MainInterface.strings ├── zh-Hans-CN.lproj │ ├── InfoPlist.strings │ └── Localizable.strings └── zh-Hans.lproj │ └── MainInterface.strings ├── FSNotes iOS ├── .bartycrouch.toml ├── AppDelegate.swift ├── Business │ ├── Buttons.swift │ ├── Colors.swift │ ├── FolderPopoverActions.swift │ ├── NightMode.swift │ ├── ShortcutIdentifier.swift │ ├── Sidebar.swift │ └── Toolbar.swift ├── CloudDriveManager.swift ├── DatePickerViewController.swift ├── EditorViewController+QuickLook.swift ├── EditorViewController.swift ├── Extensions │ ├── ImageAttachment+.swift │ ├── NSMutableAttributedString+Checkboxes.swift │ ├── NSMutableAttributedString+Font.swift │ ├── NSTextStorage+.swift │ ├── UIApplication+.swift │ ├── UIColor+.swift │ ├── UIFont+.swift │ ├── UIImage+.swift │ ├── UITextView+.swift │ ├── UIView+.swift │ └── UserDefaultsManagement+.swift ├── FSNotes iOS.entitlements ├── FSNotes_iOS.xcdatamodeld │ ├── .xccurrentversion │ └── FSNotes_iOS.xcdatamodel │ │ └── contents ├── Icons.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── app-icon-dylanseeger-fin.png │ │ ├── dark.png │ │ └── icon-1024-1024.png │ ├── Contents.json │ ├── Editor │ │ ├── Contents.json │ │ ├── checkbox.imageset │ │ │ ├── Contents.json │ │ │ ├── checkbox.png │ │ │ ├── checkbox@2x.png │ │ │ ├── checkbox@3x.png │ │ │ ├── checkbox_white.png │ │ │ ├── checkbox_white@2x.png │ │ │ └── checkbox_white@3x.png │ │ └── checkbox_empty.imageset │ │ │ ├── Contents.json │ │ │ ├── checkbox_empty.png │ │ │ ├── checkbox_empty@2x.png │ │ │ ├── checkbox_empty@3x.png │ │ │ ├── checkbox_empty_white 1.png │ │ │ ├── checkbox_empty_white@2x.png │ │ │ └── checkbox_empty_white@3x.png │ ├── LaunchScreenImage.imageset │ │ ├── Contents.json │ │ ├── app-icon-dylanseegerDarkFull 1.png │ │ ├── app-icon-dylanseegerDarkFull 2.png │ │ ├── app-icon-dylanseegerDarkFull.png │ │ ├── icon-1024-1024-tint 1.png │ │ ├── icon-1024-1024-tint 2.png │ │ └── icon-1024-1024-tint.png │ ├── Sidebar Actions │ │ ├── Contents.json │ │ └── gitSettings.imageset │ │ │ ├── Contents.json │ │ │ ├── git-20 1.png │ │ │ ├── git-20.png │ │ │ ├── git-20@2x 1.png │ │ │ ├── git-20@2x.png │ │ │ ├── git-20@3x 1.png │ │ │ └── git-20@3x.png │ ├── Sidebar │ │ ├── Contents.json │ │ ├── sidebar_archive.imageset │ │ │ ├── Archive-76.png │ │ │ ├── Archive-76@2x.png │ │ │ ├── Archive-83.5@2x.png │ │ │ └── Contents.json │ │ ├── sidebar_inbox.imageset │ │ │ ├── 1172241_inbox_letter_mail_mailbox_icon-76.png │ │ │ ├── 1172241_inbox_letter_mail_mailbox_icon-76@2x.png │ │ │ ├── 1172241_inbox_letter_mail_mailbox_icon-83.5@2x.png │ │ │ └── Contents.json │ │ ├── sidebar_notes.imageset │ │ │ ├── Contents.json │ │ │ ├── Notes-76.png │ │ │ ├── Notes-76@2x.png │ │ │ └── Notes-83.5@2x.png │ │ ├── sidebar_project.imageset │ │ │ ├── Contents.json │ │ │ ├── folder-76@2x-1 1.png │ │ │ ├── folder-76@2x-1.png │ │ │ └── folder-77.png │ │ ├── sidebar_project_encrypted_locked.imageset │ │ │ ├── Contents.json │ │ │ ├── locked@148.png │ │ │ ├── locked@222.png │ │ │ └── locked@74.png │ │ ├── sidebar_project_encrypted_unlocked.imageset │ │ │ ├── Contents.json │ │ │ ├── unlocked@148.png │ │ │ ├── unlocked@222.png │ │ │ └── unlocked@74.png │ │ ├── sidebar_tag.imageset │ │ │ ├── Contents.json │ │ │ ├── tag-76.png │ │ │ ├── tag-76@2x 1.png │ │ │ └── tag-76@2x.png │ │ ├── sidebar_todo.imageset │ │ │ ├── Contents.json │ │ │ ├── t2-76.png │ │ │ ├── t2-76@2x.png │ │ │ └── t2-83.5@2x.png │ │ ├── sidebar_trash.imageset │ │ │ ├── Contents.json │ │ │ ├── Trash-76.png │ │ │ ├── Trash-76@2x.png │ │ │ └── Trash-83.5@2x.png │ │ └── sidebar_untagged.imageset │ │ │ ├── 1172268_tag_tags_icon-76.png │ │ │ ├── 1172268_tag_tags_icon-76@2x.png │ │ │ ├── 1172268_tag_tags_icon-83.5@2x.png │ │ │ └── Contents.json │ └── Toolbar │ │ ├── Contents.json │ │ ├── codeBlockAsset.imageset │ │ ├── Contents.json │ │ ├── codeblock-1.png │ │ ├── codeblock-2.png │ │ └── codeblock.png │ │ ├── pictureAsset.imageset │ │ ├── Contents.json │ │ ├── picture@1x-white.png │ │ ├── picture@1x.png │ │ ├── picture@2x-white.png │ │ ├── picture@2x.png │ │ ├── picture@3x-white.png │ │ └── picture@3x.png │ │ ├── toolbarBold.imageset │ │ ├── Contents.json │ │ ├── icons8-bold-52-20.png │ │ ├── icons8-bold-52-20@2x.png │ │ └── icons8-bold-52-20@3x.png │ │ ├── toolbarHeader.imageset │ │ ├── Contents.json │ │ ├── type-h1-icon_1-20.png │ │ ├── type-h1-icon_1-20@2x.png │ │ └── type-h1-icon_1-20@3x.png │ │ ├── toolbarImage.imageset │ │ ├── Contents.json │ │ ├── icons8-image-96-20.png │ │ ├── icons8-image-96-20@2x.png │ │ └── icons8-image-96-20@3x.png │ │ ├── toolbarIndentLeft.imageset │ │ ├── Contents.json │ │ ├── right-indent-20.png │ │ ├── right-indent-20@2x.png │ │ └── right-indent-20@3x.png │ │ ├── toolbarIndentRight.imageset │ │ ├── Contents.json │ │ ├── left-indent-20.png │ │ ├── left-indent-20@2x.png │ │ └── left-indent-20@3x.png │ │ ├── toolbarItalic.imageset │ │ ├── Contents.json │ │ ├── italic-text-option-interface-symbol-20.png │ │ ├── italic-text-option-interface-symbol-20@2x.png │ │ └── italic-text-option-interface-symbol-20@3x.png │ │ ├── toolbarTag.imageset │ │ ├── Contents.json │ │ ├── iconfinder_20-blue_fee-label-price-tag_4488787-20.png │ │ ├── iconfinder_20-blue_fee-label-price-tag_4488787-20@2x.png │ │ └── iconfinder_20-blue_fee-label-price-tag_4488787-20@3x.png │ │ ├── toolbarTodo.imageset │ │ ├── Contents.json │ │ ├── icons8-todo-list-96-20.png │ │ ├── icons8-todo-list-96-20@2x.png │ │ └── icons8-todo-list-96-20@3x.png │ │ └── toolbarWiki.imageset │ │ ├── Contents.json │ │ ├── icons8-documents-96-20.png │ │ ├── icons8-documents-96-20@2x.png │ │ └── icons8-documents-96-20@3x.png ├── ImagePreviewViewController.swift ├── ImageScrollView.swift ├── Info.plist ├── InfoPlist.xcstrings ├── Launch Screen.storyboard ├── LaunchImage.launchimage │ ├── Contents.json │ ├── Default1024x768.png │ ├── Default1125x2436.png │ ├── Default1242x2208.png │ ├── Default1536x2048.png │ ├── Default1920x1080.png │ ├── Default2048x1536.png │ ├── Default2208x1242.png │ ├── Default2436x1125.png │ ├── Default320x480.png │ ├── Default3840x2160.png │ ├── Default640x1136.png │ ├── Default640x960.png │ ├── Default750x1334.png │ └── Default768x1024.png ├── Localizable.xcstrings ├── Main.storyboard ├── MainNavigationController.swift ├── MoveViewController.swift ├── RevisionsViewController.swift ├── SandboxBookmark.swift ├── Settings │ ├── AppIconViewController.swift │ ├── CodeFontViewController.swift │ ├── CodeThemeViewController.swift │ ├── DefaultExtensionControllerView.swift │ ├── ExternalViewController.swift │ ├── FontViewController.swift │ ├── GitTableViewCell.swift │ ├── GitViewController.swift │ ├── LanguageViewController.swift │ ├── ProViewController.swift │ ├── ProjectSettingsViewController.swift │ ├── ProjectsViewController.swift │ ├── SecurityViewController.swift │ ├── SettingsEditorViewController.swift │ ├── SettingsTableViewCell.swift │ ├── SettingsViewController.swift │ ├── SidebarViewController.swift │ ├── SortByViewController.swift │ └── ThanksViewController.swift ├── SingleImageTouchDownGestureRecognizer.swift ├── SingleTouchDownGestureRecognizer.swift ├── SmallButton.swift ├── UITableViewController+.swift ├── View │ ├── EditTextView.swift │ ├── EditorSelectionRect.swift │ ├── NoteCellView.swift │ ├── NotesTableView.swift │ ├── SidebarTableCellView.swift │ └── SidebarTableView.swift ├── ViewController+More.swift ├── ViewController.swift ├── fr.lproj │ └── Main.storyboard ├── nl-NL.lproj │ └── Main.storyboard ├── pt-PT.lproj │ └── Main.storyboard ├── ru.lproj │ ├── InfoPlist.strings │ ├── LaunchScreen.strings │ ├── Localizable.strings │ └── Main.storyboard └── uk.lproj │ └── Main.storyboard ├── FSNotes.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── xcshareddata │ └── xcschemes │ ├── FSNotes (iCloud).xcscheme │ ├── FSNotes iOS Share Extension.xcscheme │ ├── FSNotes iOS.xcscheme │ └── FSNotes.xcscheme ├── FSNotes.xcworkspace └── contents.xcworkspacedata ├── FSNotes ├── .bartycrouch.toml ├── AboutViewController.swift ├── AboutWindowController.swift ├── AppDelegate+URLRoutes.swift ├── AppDelegate.swift ├── Base.lproj │ └── Main.storyboard ├── Business │ ├── AppearanceType.swift │ ├── CodeBlock.swift │ ├── LanguageType.swift │ ├── Markdown.swift │ ├── Note.swift │ ├── NoteAttribute.swift │ ├── NoteType.swift │ ├── Project.swift │ ├── ProjectSettings.swift │ ├── SearchQuery.swift │ ├── Sidebar.swift │ ├── SidebarItem.swift │ ├── SidebarItemType.swift │ ├── Storage.swift │ ├── TagList.swift │ └── UndoData.swift ├── EditorViewController+Sharing.swift ├── EditorViewController.swift ├── Extensions │ ├── ImageAttachment+.swift │ ├── NSAppearance+.swift │ ├── NSFont+.swift │ └── UIFont+.swift ├── FSNotes (CloudKit).entitlements ├── FSNotes.entitlements ├── Git │ ├── authentication │ │ ├── Authentication.swift │ │ ├── KeyAuthentication.swift │ │ └── PasswordAuthentication.swift │ ├── branch │ │ ├── Branch.swift │ │ ├── Branches.swift │ │ └── BranchesIterator.swift │ ├── commit │ │ └── Commit.swift │ ├── commons │ │ ├── Blob.swift │ │ ├── ConfigManager.swift │ │ ├── Error.swift │ │ ├── Errors.swift │ │ ├── OID.swift │ │ ├── Object.swift │ │ ├── Progress.swift │ │ ├── Signature.swift │ │ ├── StaticSshKeyDelegate.swift │ │ ├── Strings.swift │ │ └── Wrapper.swift │ ├── diff │ │ ├── Diff.swift │ │ └── DiffEntry.swift │ ├── head │ │ ├── Head+Checkout.swift │ │ ├── Head+Merge.swift │ │ └── Head.swift │ ├── index │ │ ├── Index+Commit.swift │ │ ├── Index+Files.swift │ │ └── Index.swift │ ├── reference │ │ ├── Reference+Target.swift │ │ └── Reference.swift │ ├── remote │ │ ├── Remote.swift │ │ └── Remotes.swift │ ├── repository │ │ ├── Repository+Commit.swift │ │ ├── Repository+Lookup.swift │ │ ├── Repository+Open.swift │ │ ├── Repository.swift │ │ └── RepositoryManager.swift │ ├── revision │ │ ├── FileHistoryIterator.swift │ │ └── RevisionIterator.swift │ ├── status │ │ ├── Status.swift │ │ ├── StatusIterator.swift │ │ └── Statuses.swift │ ├── tag │ │ ├── Tag.swift │ │ ├── TagIterator.swift │ │ └── Tags.swift │ └── tree │ │ ├── Tree.swift │ │ └── TreeEntry.swift ├── Helpers │ ├── FileSystemEventManager.swift │ ├── FileWatcher.swift │ ├── FileWatcherEvent.swift │ ├── ImagesProcessor.swift │ ├── NotesTextProcessor.swift │ ├── Printer.swift │ ├── PrinterLegacy.swift │ ├── SandboxBookmark.swift │ ├── TextFormatter.swift │ └── UserDefaultsManagement.swift ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon_128x128.png │ │ ├── icon_128x128@2x.png │ │ ├── icon_16x16.png │ │ ├── icon_16x16@2x.png │ │ ├── icon_256x256.png │ │ ├── icon_256x256@2x.png │ │ ├── icon_32x32.png │ │ ├── icon_32x32@2x.png │ │ ├── icon_512x512.png │ │ └── icon_512x512@2x.png │ ├── Contents.json │ ├── checkbox_empty.imageset │ │ ├── Contents.json │ │ ├── checkbox_empty.png │ │ ├── checkbox_empty@2x.png │ │ ├── checkbox_empty@3x.png │ │ ├── checkbox_empty_white.png │ │ └── checkbox_empty_white@2x.png │ ├── checkbox_flipped.imageset │ │ ├── Contents.json │ │ ├── checkbox_flipped.png │ │ ├── checkbox_flipped@2x.png │ │ ├── checkbox_flipped@3x.png │ │ ├── checkbox_flipped_white.png │ │ └── checkbox_flipped_white@2x.png │ ├── checkbox_new.imageset │ │ ├── Contents.json │ │ ├── checkbox.png │ │ ├── checkbox@2x.png │ │ ├── checkbox@3x.png │ │ ├── checkbox_white.png │ │ ├── checkbox_white@2x.png │ │ └── checkbox_white@3x.png │ ├── code.colorset │ │ └── Contents.json │ ├── colors_background │ │ ├── Contents.json │ │ ├── background_tag.colorset │ │ │ └── Contents.json │ │ └── background_win.colorset │ │ │ └── Contents.json │ ├── copy.png.imageset │ │ ├── Contents.json │ │ ├── copy-1.png │ │ ├── copy-2.png │ │ ├── copy.png │ │ ├── copy_white-1.png │ │ └── copy_white.png │ ├── divider.colorset │ │ └── Contents.json │ ├── dockIcon2.imageset │ │ ├── Contents.json │ │ ├── image@1x.png │ │ ├── image@2x.png │ │ └── image@3x.png │ ├── dockIcon4.imageset │ │ ├── Contents.json │ │ ├── icon-128.png │ │ ├── icon-256.png │ │ └── icon-64.png │ ├── friend.imageset │ │ ├── Contents.json │ │ ├── friend 1.png │ │ └── friend.png │ ├── highlight.colorset │ │ └── Contents.json │ ├── link.colorset │ │ └── Contents.json │ ├── locked.imageset │ │ ├── Contents.json │ │ ├── locked-1.png │ │ ├── locked-2.png │ │ └── locked.png │ ├── mainBackground.colorset │ │ └── Contents.json │ ├── mainText.colorset │ │ └── Contents.json │ ├── menuBar.imageset │ │ ├── Contents.json │ │ ├── icon-simple-bw-b-9-512x512@2x-1.png │ │ ├── icon-simple-bw-b-9-512x512@2x-2.png │ │ ├── icon-simple-bw-b-9-512x512@2x.png │ │ ├── icon-simple-bw-w-9-512x512@2x-1.png │ │ ├── icon-simple-bw-w-9-512x512@2x-2.png │ │ └── icon-simple-bw-w-9-512x512@2x.png │ ├── new_note_button.imageset │ │ ├── Contents.json │ │ ├── new_note-76.png │ │ ├── new_note-76@2x-1.png │ │ ├── new_note-76@2x.png │ │ └── new_note-77.png │ ├── pin.imageset │ │ ├── Contents.json │ │ ├── pin-1.png │ │ ├── pin-2.png │ │ ├── pin.png │ │ ├── pin_white-1.png │ │ └── pin_white.png │ ├── prefsAdvanced.imageset │ │ ├── Contents.json │ │ ├── image@1x.png │ │ ├── image@2x.png │ │ └── image@3x.png │ ├── prefsEditor.imageset │ │ ├── Contents.json │ │ ├── editor.png │ │ ├── editor@2x.png │ │ └── editor@3x.png │ ├── prefsGeneral.imageset │ │ ├── Contents.json │ │ ├── image@1x.png │ │ ├── image@2x.png │ │ └── image@3x.png │ ├── prefsGit.imageset │ │ ├── Contents.json │ │ ├── git.png │ │ ├── git@2x.png │ │ └── git@3x.png │ ├── prefsLayout.imageset │ │ ├── Contents.json │ │ ├── layout.png │ │ ├── layout@2x.png │ │ └── layout@3x.png │ ├── prefsWeb.imageset │ │ ├── Contents.json │ │ ├── prefsWeb-128.png │ │ └── prefsWeb-64.png │ ├── privacy.imageset │ │ ├── Contents.json │ │ ├── privacy.png │ │ ├── privacy@2x.png │ │ └── privacy@3x.png │ ├── quoteColor.colorset │ │ └── Contents.json │ ├── reverseBackground.colorset │ │ └── Contents.json │ ├── sidebar_archive.imageset │ │ ├── Archive-76.png │ │ ├── Archive-76@2x-1.png │ │ ├── Archive-76@2x.png │ │ ├── Archive-77.png │ │ └── Contents.json │ ├── sidebar_external.imageset │ │ ├── 185097_database_icon-128.png │ │ ├── 185097_database_icon-32.png │ │ ├── 185097_database_icon-64.png │ │ └── Contents.json │ ├── sidebar_icloud_drive.imageset │ │ ├── 1820466_brand_icloud_logo_network_social_icon-128.png │ │ ├── 1820466_brand_icloud_logo_network_social_icon-32.png │ │ ├── 1820466_brand_icloud_logo_network_social_icon-64.png │ │ └── Contents.json │ ├── sidebar_inbox.imageset │ │ ├── 1172241_inbox_letter_mail_mailbox_icon-76.png │ │ ├── 1172241_inbox_letter_mail_mailbox_icon-76@2x-1.png │ │ ├── 1172241_inbox_letter_mail_mailbox_icon-76@2x.png │ │ ├── 1172241_inbox_letter_mail_mailbox_icon-77.png │ │ ├── 1172241_inbox_letter_mail_mailbox_icon-83.5@2x-1.png │ │ ├── 1172241_inbox_letter_mail_mailbox_icon-83.5@2x.png │ │ └── Contents.json │ ├── sidebar_notes.imageset │ │ ├── Contents.json │ │ ├── Notes-76.png │ │ ├── Notes-76@2x-1.png │ │ ├── Notes-76@2x.png │ │ └── Notes-77.png │ ├── sidebar_project.imageset │ │ ├── Contents.json │ │ ├── folder-76.png │ │ ├── folder-76@2x-1.png │ │ ├── folder-76@2x.png │ │ └── folder-77.png │ ├── sidebar_project_encrypted_locked.imageset │ │ ├── Contents.json │ │ ├── Folder3lock4 3-1.png │ │ ├── Folder3lock4 3-2.png │ │ ├── Folder3lock4 3-3.png │ │ └── Folder3lock4 3.png │ ├── sidebar_project_encrypted_unlocked.imageset │ │ ├── Contents.json │ │ ├── Folder_unlock_1-1.png │ │ ├── Folder_unlock_1-2.png │ │ ├── Folder_unlock_1-3.png │ │ └── Folder_unlock_1.png │ ├── sidebar_tag.imageset │ │ ├── Contents.json │ │ ├── tag-76.png │ │ ├── tag-76@2x-1.png │ │ ├── tag-76@2x.png │ │ └── tag-77.png │ ├── sidebar_todo.imageset │ │ ├── Contents.json │ │ ├── t2-76.png │ │ ├── t2-76@2x-1.png │ │ ├── t2-76@2x.png │ │ ├── t2-77.png │ │ ├── t2-83.5@2x-1.png │ │ └── t2-83.5@2x.png │ ├── sidebar_trash.imageset │ │ ├── Contents.json │ │ ├── Trash-76.png │ │ ├── Trash-76@2x-1.png │ │ ├── Trash-76@2x.png │ │ ├── Trash-77.png │ │ ├── Trash-83.5@2x-1.png │ │ └── Trash-83.5@2x.png │ ├── sidebar_untagged.imageset │ │ ├── Contents.json │ │ ├── Untagged-76.png │ │ ├── Untagged-76@2x-1.png │ │ ├── Untagged-76@2x.png │ │ └── Untagged-77.png │ ├── underlineColor.colorset │ │ └── Contents.json │ └── web.imageset │ │ ├── Contents.json │ │ ├── web 1.png │ │ ├── web 2.png │ │ ├── web 3.png │ │ └── web.png ├── Info.plist ├── Localizable.xcstrings ├── MainWindow.swift ├── MainWindowController.swift ├── Model │ ├── StorageEntity+CoreDataClass.swift │ └── StorageEntity+CoreDataProperties.swift ├── NSWindowController+.swift ├── NoteViewController.swift ├── Preferences │ ├── MasterPasswordViewController.swift │ ├── PreferencesAdvancedViewController.swift │ ├── PreferencesEditorViewController.swift │ ├── PreferencesGeneralViewController.swift │ ├── PreferencesGitViewController.swift │ ├── PreferencesSecurityViewController.swift │ ├── PreferencesUserInterfaceViewController.swift │ ├── PreferencesWebViewController.swift │ └── SettingsViewController.swift ├── PrefsViewController.swift ├── PrefsWindowController.swift ├── ProjectSettingsViewController.swift ├── SidebarScrollView.swift ├── SourceCodePro-Regular.ttf ├── View │ ├── AboutImageView.swift │ ├── ClickableTextField.swift │ ├── EditTextView.swift │ ├── EditorScrollView.swift │ ├── EditorSplitView.swift │ ├── EditorView.swift │ ├── HyperlinkTextField.swift │ ├── MPreviewView.swift │ ├── NameTextField.swift │ ├── NoteCellView.swift │ ├── NoteRowView.swift │ ├── NotesTableView.swift │ ├── OutlineHeaderView.swift │ ├── PreviewTextField.swift │ ├── SearchTextField.swift │ ├── SidebarCellView.swift │ ├── SidebarHeaderCellView.swift │ ├── SidebarNotesView.swift │ ├── SidebarOutlineView.swift │ ├── SidebarSplitView.swift │ ├── SidebarTableRowView.swift │ ├── TitleBarView.swift │ ├── TitleTextField.swift │ └── VerticallyAlignedTextFieldCell.swift ├── ViewController+Git.swift ├── ViewController+Print.swift ├── ViewController+Web.swift ├── ViewController.swift ├── bin │ └── git └── mul.lproj │ └── Main.xcstrings ├── FSNotesCore ├── Core macOS │ ├── Colors.swift │ ├── Extensions │ │ ├── NSColor+.swift │ │ ├── NSFont+.swift │ │ ├── NSImage+.swift │ │ ├── NSTextStorage+.swift │ │ ├── NSWindow+.swift │ │ └── UserDefaultsManagement+.swift │ ├── FSNotesCore_macOS.h │ ├── Helpers │ │ └── UserDataService.swift │ ├── Info.plist │ ├── Note+.swift │ └── zh-Hans-CN.lproj │ │ └── InfoPlist.strings └── Shared │ ├── Business │ ├── ApiResponse.swift │ ├── AttributedBox.swift │ ├── FSTag.swift │ ├── HighlighterTheme.swift │ ├── ImageFormat.swift │ ├── NoteAttachment.swift │ ├── NoteContainer.swift │ ├── PreviewState.swift │ ├── ProgressState.swift │ ├── RuntimeError.swift │ ├── SettingsFilesNaming.swift │ ├── SortBy.swift │ ├── SortDirection.swift │ ├── StorageType.swift │ └── TextBundleInfo.swift │ ├── CodeTextProcessor.swift │ ├── Extensions │ ├── Data+.swift │ ├── Date+.swift │ ├── DateFormatter+.swift │ ├── FileManager+.swift │ ├── NSAttributedString+.swift │ ├── NSAttributedStringKey+.swift │ ├── NSMutableAttributedString+.swift │ ├── NSMutableAttributedString+Attachments.swift │ ├── NSPasteboard+.swift │ ├── Project+Git.swift │ ├── Storage+Git.swift │ ├── String+.swift │ ├── String+Punycode.swift │ ├── URL+.swift │ └── UTI.swift │ ├── FSNTextAttahcmentCell.swift │ ├── FSParser.swift │ ├── KeychainConfiguration.swift │ ├── KeychainPasswordItem.swift │ ├── NSTextAttachment+.swift │ ├── NSTextStorage++.swift │ ├── NameHelper.swift │ ├── Note+History.swift │ ├── NoteCellView+.swift │ ├── NoteMeta.swift │ ├── RepositoryAction.swift │ ├── TextStorageProcessor.swift │ └── ViewController+WebApi.swift ├── FSNotesCoreTests ├── SharedTests │ └── Extensions │ │ ├── DateFormatter+Tests.swift │ │ └── String+Tests.swift ├── iOSTests │ ├── FSNotesCore_iOSTests.swift │ └── Info.plist └── macOSTests │ ├── Helpers │ └── UserDataServiceTests.swift │ └── Info.plist ├── LICENSE ├── Logo ├── License ├── application logo.png ├── logomark.png └── logotype.png ├── Podfile ├── README.md ├── README_zh_CN.md ├── README_zh_TW.md ├── Resources ├── Fonts │ └── AvenirNext │ │ ├── AvenirNext-Bold.ttf │ │ ├── AvenirNext-BoldItalic.ttf │ │ ├── AvenirNext-Demi.ttf │ │ ├── AvenirNext-DemiItalic.ttf │ │ ├── AvenirNext-Heavy.ttf │ │ ├── AvenirNext-HeavyItalic.ttf │ │ ├── AvenirNext-Italic.ttf │ │ ├── AvenirNext-Light.ttf │ │ ├── AvenirNext-LightItalic.ttf │ │ ├── AvenirNext-Medium.ttf │ │ ├── AvenirNext-MediumItalic.ttf │ │ ├── AvenirNext-Regular.ttf │ │ ├── AvenirNext-Thin.ttf │ │ ├── AvenirNext-ThinItalic.ttf │ │ ├── AvenirNext-UltraLight.ttf │ │ └── AvenirNext-UltraLightIt.ttf ├── Icons │ ├── EncryptedTextPack.icns │ ├── Markdown.icns │ ├── RTF.icns │ ├── Text.icns │ └── TextBundle.icns ├── Initial │ ├── FSNotes - Readme.md │ ├── FSNotes 4.0 Change Log.textbundle │ │ ├── assets │ │ │ └── 128.png │ │ ├── info.json │ │ └── text.markdown │ ├── FSNotes 4.0 for iOS.textbundle │ │ ├── assets │ │ │ └── 128.png │ │ ├── info.json │ │ └── text.markdown │ ├── FSNotes 5.0 Change Log.textbundle │ │ ├── assets │ │ │ ├── 04989e53-613f-463b-8f9e-9a734520f965.jpg │ │ │ ├── 8822c62e-16ef-4f4c-b397-55d2d79e86fb.jpg │ │ │ ├── 9ebef6e8-741f-4fd7-b6fb-0fef6d471c44.jpg │ │ │ ├── a4bdc32a-ae63-4d39-a4ef-458639b1d3f1.jpg │ │ │ ├── add6cab8-34d1-49f6-b3f3-316b0b3c5ebc.jpg │ │ │ └── ce09661c-bebf-4463-b4fd-47b005aeffbd.jpg │ │ ├── info.json │ │ └── text.md │ └── Meet FSNotes 6.textbundle │ │ ├── assets │ │ ├── 2023-04-08 Unmasked Icon, Light - FSNotes.png │ │ ├── IMG_1882.jpeg │ │ ├── black-icon.jpeg │ │ ├── encrypt-menu.jpeg │ │ └── web-sharing.png │ │ ├── info.json │ │ └── text.markdown ├── MPreview.bundle │ ├── fonts │ │ ├── SourceCodePro-Bold.ttf │ │ └── SourceCodePro-Regular.ttf │ ├── index.html │ ├── js │ │ ├── highlight.min.js │ │ ├── load-image.all.min.js │ │ ├── load-image.all.min.js.map │ │ ├── mermaid.min.js │ │ ├── output │ │ │ └── chtml │ │ │ │ └── fonts │ │ │ │ └── woff-v2 │ │ │ │ ├── MathJax_AMS-Regular.woff │ │ │ │ ├── MathJax_Calligraphic-Bold.woff │ │ │ │ ├── MathJax_Calligraphic-Regular.woff │ │ │ │ ├── MathJax_Fraktur-Bold.woff │ │ │ │ ├── MathJax_Fraktur-Regular.woff │ │ │ │ ├── MathJax_Main-Bold.woff │ │ │ │ ├── MathJax_Main-Italic.woff │ │ │ │ ├── MathJax_Main-Regular.woff │ │ │ │ ├── MathJax_Math-BoldItalic.woff │ │ │ │ ├── MathJax_Math-Italic.woff │ │ │ │ ├── MathJax_Math-Regular.woff │ │ │ │ ├── MathJax_SansSerif-Bold.woff │ │ │ │ ├── MathJax_SansSerif-Italic.woff │ │ │ │ ├── MathJax_SansSerif-Regular.woff │ │ │ │ ├── MathJax_Script-Regular.woff │ │ │ │ ├── MathJax_Size1-Regular.woff │ │ │ │ ├── MathJax_Size2-Regular.woff │ │ │ │ ├── MathJax_Size3-Regular.woff │ │ │ │ ├── MathJax_Size4-Regular.woff │ │ │ │ ├── MathJax_Typewriter-Regular.woff │ │ │ │ ├── MathJax_Vector-Bold.woff │ │ │ │ ├── MathJax_Vector-Regular.woff │ │ │ │ └── MathJax_Zero.woff │ │ └── tex-mml-chtml.js │ └── main.css ├── Screens │ ├── fsnotes-ios.jpg │ └── fsnotes-macos.png ├── SourceCodePro-Black.ttf ├── SourceCodePro-Bold.ttf ├── SourceCodePro-BoldIt.ttf ├── SourceCodePro-It.ttf ├── SourceCodePro-Regular.ttf ├── Toolbar │ ├── bold.png │ ├── bold@2x.png │ ├── bold@3x.png │ ├── codeblock.png │ ├── header.png │ ├── header@2x.png │ ├── header@3x.png │ ├── image.png │ ├── image@2x.png │ ├── image@3x.png │ ├── indent.png │ ├── indent@2x.png │ ├── indent@3x.png │ ├── italic.png │ ├── italic@2x.png │ ├── italic@3x.png │ ├── quote.png │ ├── redo.png │ ├── redo@2x.png │ ├── redo@3x.png │ ├── strike.png │ ├── strike@2x.png │ ├── strike@3x.png │ ├── tag2.png │ ├── tag2@2x.png │ ├── tag2@3x.png │ ├── tb_link.png │ ├── todo.png │ ├── todo@2x.png │ ├── todo@3x.png │ ├── underline.png │ ├── underline@2x.png │ ├── underline@3x.png │ ├── undo.png │ ├── undo@2x.png │ ├── undo@3x.png │ ├── unindent.png │ ├── unindent@2x.png │ └── unindent@3x.png ├── Welcome.bundle │ ├── 1 Introduction.textbundle │ │ ├── info.json │ │ └── text.markdown │ ├── 2 Links.textbundle │ │ ├── info.json │ │ └── text.markdown │ ├── 3 Shortcuts.textbundle │ │ ├── info.json │ │ └── text.markdown │ ├── 4 Sidebar.textbundle │ │ ├── assets │ │ │ ├── 027dc83a-11b9-490a-b9d7-0e0701abfc9a.jpg │ │ │ └── f349160a-e8f6-488f-a35f-0a7883d3d07a.jpg │ │ ├── info.json │ │ └── text.markdown │ ├── 5 Tags and subtags.textbundle │ │ ├── assets │ │ │ ├── 520e395f-7924-4499-9587-6006a182c685.jpg │ │ │ └── 586c35e6-ed29-47c5-a795-e4cae5c3a0bc.jpg │ │ ├── info.json │ │ └── text.markdown │ ├── 6 Mermaid and MathJax.textbundle │ │ ├── info.json │ │ └── text.markdown │ ├── 7 Git powered versioning.textbundle │ │ ├── assets │ │ │ ├── 3d1952d0-88bb-472f-9ba2-ca57fafec9c9.jpg │ │ │ ├── 634eb755-960d-4d9f-be8b-bdaad5aa4f6c.jpg │ │ │ ├── e8a5ef3d-6a9a-44d6-b9ed-1fdc7d35117a.jpg │ │ │ └── eedc77b8-dc1b-4924-856d-37c9247b4093.jpg │ │ ├── info.json │ │ └── text.markdown │ ├── 8 Containers.textbundle │ │ ├── info.json │ │ └── text.markdown │ └── 9 GFM Markdown.textbundle │ │ ├── assets │ │ └── 128.png │ │ ├── info.json │ │ └── text.markdown ├── add.png ├── archive.png ├── archive_white.png ├── back.png ├── checkbox1012.png ├── checkbox_empty1012.png ├── copy.png ├── copy_white.png ├── done.png ├── done_white.png ├── friend.png ├── iOS │ ├── app-icons │ │ ├── app-icon-dylanseeger.png │ │ ├── app-icon-dylanseegerDark.png │ │ ├── app-icon-dylanseegerDarkFull.png │ │ ├── app-icon-kmstrr.png │ │ ├── dylanseeger@2x.png │ │ ├── dylanseeger@2x~ipad.png │ │ ├── dylanseeger@3x.png │ │ ├── dylanseeger@3x~ipad.png │ │ ├── dylanseegerDark@2x.png │ │ ├── dylanseegerDark@2x~ipad.png │ │ ├── dylanseegerDark@3x.png │ │ ├── dylanseegerDark@3x~ipad.png │ │ ├── dylanseegerDarkFull@2x.png │ │ ├── dylanseegerDarkFull@2x~ipad.png │ │ ├── dylanseegerDarkFull@3x.png │ │ ├── dylanseegerDarkFull@3x~ipad.png │ │ ├── kmstrr@2x.png │ │ ├── kmstrr@2x~ipad.png │ │ ├── kmstrr@3x.png │ │ └── kmstrr@3x~ipad.png │ ├── attach.png │ ├── basket.png │ ├── checkbox.png │ ├── checkbox@2x.png │ ├── checkbox@3x.png │ ├── checkbox_empty.png │ ├── checkbox_empty@2x.png │ ├── checkbox_empty@3x.png │ ├── checkbox_empty_white.png │ ├── checkbox_empty_white@2x.png │ ├── checkbox_empty_white@3x.png │ ├── checkbox_flipped.png │ ├── checkbox_flipped@2x.png │ ├── checkbox_flipped@3x.png │ ├── checkbox_flipped_white.png │ ├── checkbox_flipped_white@2x.png │ ├── checkbox_flipped_white@3x.png │ ├── checkbox_white.png │ ├── checkbox_white@2x.png │ ├── checkbox_white@3x.png │ ├── close-window.png │ ├── close.png │ ├── edit_preview_controller.png │ ├── icon-ios-512x512@2x.png │ ├── inbox.png │ ├── inbox_white.png │ ├── launchscreen.png │ ├── more_row_action.png │ ├── numbered_list.png │ ├── ordered_list.png │ ├── padlock-locked-ios.png │ ├── padlock-unlocked-ios.png │ ├── pin_row_action.png │ ├── preview_editor_controller.png │ └── wikilink.png ├── icon.png ├── icon_alt.png ├── launch.png ├── lock-closed.png ├── lock-open.png ├── locked.png ├── makeNote.png ├── makeNote_white.png ├── more.png ├── more_white.png ├── new-note.png ├── new_note_ui.png ├── pin.png ├── pin_white.png ├── preview.png ├── search.png ├── search_white.png ├── settings.png ├── settings@2x.png ├── settings@3x.png ├── settings_white.png ├── settings_white@2x.png ├── settings_white@3x.png ├── share.png ├── todo.png ├── todo_sidebar.png ├── todo_sidebar_white.png ├── trash.png ├── trash_white.png ├── uncheckedbox.png └── uncheckedbox@2x.png └── code.png /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj merge=union 2 | 3 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: hlushchenko 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature Request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: 'request' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | 12 | **Describe your feature request** 13 | A clear and concise description of what you want to happen. 14 | 15 | **Additional context** 16 | Add any other related information here. macOS or iOS? 17 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Pods 2 | *.xcuserstate 3 | xcuserdata 4 | Podfile.lock 5 | FSNotes.xcworkspace/xcshareddata/* 6 | FSNotes.xcworkspace/xcuserdata/* 7 | FSNotes.xcodeproj/xcuserdata/* 8 | -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- 1 | included: # paths to include during linting. `--path` is ignored if present. 2 | - FSNotesCore 3 | excluded: # paths to ignore during linting. Takes precedence over `included`. 4 | - Pods 5 | 6 | line_length: 7 | warning: 220 8 | 9 | disabled_rules: 10 | - implicit_getter 11 | - identifier_name 12 | 13 | cyclomatic_complexity: 20 14 | function_body_length: 100 15 | file_length: 1000 16 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: swift 2 | os: osx 3 | osx_image: xcode11.5 4 | xcode_workspace: FSNotes.xcworkspace 5 | 6 | before_install: 7 | - pod install --repo-update 8 | 9 | env: 10 | - SCHEME=FSNotes SDK=macosx 11 | - SCHEME="FSNotes iOS" SDK=iphonesimulator 12 | 13 | script: xcodebuild -workspace FSNotes.xcworkspace -scheme "$SCHEME" build -sdk $SDK ONLY_ACTIVE_ARCH=NO -UseModernBuildSystem=NO -quiet 14 | 15 | branches: 16 | only: [master] 17 | -------------------------------------------------------------------------------- /FSNotes iOS Share/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | /* No comment provided by engineer. */ 2 | "Append to" = ""; 3 | 4 | /* No comment provided by engineer. */ 5 | "Choose for append" = ""; 6 | 7 | /* No comment provided by engineer. */ 8 | "New note" = ""; 9 | 10 | /* No comment provided by engineer. */ 11 | "Project" = ""; 12 | -------------------------------------------------------------------------------- /FSNotes iOS Share/pt.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Bundle display name */ 2 | "CFBundleDisplayName" = "FSNotes"; 3 | 4 | /* Bundle name */ 5 | "CFBundleName" = "مشاركة"; 6 | 7 | -------------------------------------------------------------------------------- /FSNotes iOS Share/ru.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS Share/ru.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /FSNotes iOS Share/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | /* No comment provided by engineer. */ 2 | "Append to" = "Добавить к заметке"; 3 | 4 | /* No comment provided by engineer. */ 5 | "Choose for append" = "Выбрать заметку для добавления"; 6 | 7 | /* No comment provided by engineer. */ 8 | "New note" = "Сохранить"; 9 | 10 | /* No comment provided by engineer. */ 11 | "Project" = "Добавить в проект"; 12 | -------------------------------------------------------------------------------- /FSNotes iOS Share/ru.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /FSNotes iOS Share/uk.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS Share/uk.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /FSNotes iOS Share/uk.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /FSNotes iOS Share/zh-Hans-CN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Bundle display name */ 2 | "CFBundleDisplayName" = "FSNotes"; 3 | 4 | /* Bundle name */ 5 | "CFBundleName" = "FSNotes iOS分享扩展"; 6 | 7 | -------------------------------------------------------------------------------- /FSNotes iOS Share/zh-Hans-CN.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | /* No comment provided by engineer. */ 2 | "Append to" = "附加到"; 3 | 4 | /* No comment provided by engineer. */ 5 | "Choose for append" = "选择追加"; 6 | 7 | /* No comment provided by engineer. */ 8 | "New note" = "新笔记"; 9 | 10 | /* No comment provided by engineer. */ 11 | "Project" = "项目"; 12 | -------------------------------------------------------------------------------- /FSNotes iOS Share/zh-Hans.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /FSNotes iOS/Business/Colors.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Colors.swift 3 | // FSNotes iOS 4 | // 5 | // Created by Oleksandr Glushchenko on 9/15/18. 6 | // Copyright © 2018 Oleksandr Glushchenko. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class Colors { 12 | public static var underlineColor: UIColor { 13 | return UIColor.black 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /FSNotes iOS/Business/NightMode.swift: -------------------------------------------------------------------------------- 1 | // 2 | // NightMode.swift 3 | // FSNotes iOS 4 | // 5 | // Created by Oleksandr Glushchenko on 3/31/18. 6 | // Copyright © 2018 Oleksandr Glushchenko. All rights reserved. 7 | // 8 | 9 | enum NightMode: Int { 10 | case disabled = 0x00 11 | case enabled = 0x01 12 | case system = 0x02 13 | case brightness = 0x03 14 | } 15 | -------------------------------------------------------------------------------- /FSNotes iOS/Business/Toolbar.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Toolbar.swift 3 | // FSNotes iOS 4 | // 5 | // Created by Oleksandr Glushchenko on 9/3/18. 6 | // Copyright © 2018 Oleksandr Glushchenko. All rights reserved. 7 | // 8 | 9 | enum Toolbar: Int { 10 | case markdown = 0x00 11 | case rich = 0x01 12 | case plain = 0x02 13 | case none = 0x04 14 | } 15 | -------------------------------------------------------------------------------- /FSNotes iOS/FSNotes_iOS.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /FSNotes iOS/FSNotes_iOS.xcdatamodeld/FSNotes_iOS.xcdatamodel/contents: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/AppIcon.appiconset/app-icon-dylanseeger-fin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/AppIcon.appiconset/app-icon-dylanseeger-fin.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/AppIcon.appiconset/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/AppIcon.appiconset/dark.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/AppIcon.appiconset/icon-1024-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/AppIcon.appiconset/icon-1024-1024.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Editor/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Editor/checkbox.imageset/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Editor/checkbox.imageset/checkbox.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Editor/checkbox.imageset/checkbox@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Editor/checkbox.imageset/checkbox@2x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Editor/checkbox.imageset/checkbox@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Editor/checkbox.imageset/checkbox@3x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Editor/checkbox.imageset/checkbox_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Editor/checkbox.imageset/checkbox_white.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Editor/checkbox.imageset/checkbox_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Editor/checkbox.imageset/checkbox_white@2x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Editor/checkbox.imageset/checkbox_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Editor/checkbox.imageset/checkbox_white@3x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Editor/checkbox_empty.imageset/checkbox_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Editor/checkbox_empty.imageset/checkbox_empty.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Editor/checkbox_empty.imageset/checkbox_empty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Editor/checkbox_empty.imageset/checkbox_empty@2x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Editor/checkbox_empty.imageset/checkbox_empty@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Editor/checkbox_empty.imageset/checkbox_empty@3x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Editor/checkbox_empty.imageset/checkbox_empty_white 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Editor/checkbox_empty.imageset/checkbox_empty_white 1.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Editor/checkbox_empty.imageset/checkbox_empty_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Editor/checkbox_empty.imageset/checkbox_empty_white@2x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Editor/checkbox_empty.imageset/checkbox_empty_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Editor/checkbox_empty.imageset/checkbox_empty_white@3x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/LaunchScreenImage.imageset/app-icon-dylanseegerDarkFull 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/LaunchScreenImage.imageset/app-icon-dylanseegerDarkFull 1.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/LaunchScreenImage.imageset/app-icon-dylanseegerDarkFull 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/LaunchScreenImage.imageset/app-icon-dylanseegerDarkFull 2.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/LaunchScreenImage.imageset/app-icon-dylanseegerDarkFull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/LaunchScreenImage.imageset/app-icon-dylanseegerDarkFull.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/LaunchScreenImage.imageset/icon-1024-1024-tint 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/LaunchScreenImage.imageset/icon-1024-1024-tint 1.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/LaunchScreenImage.imageset/icon-1024-1024-tint 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/LaunchScreenImage.imageset/icon-1024-1024-tint 2.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/LaunchScreenImage.imageset/icon-1024-1024-tint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/LaunchScreenImage.imageset/icon-1024-1024-tint.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar Actions/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar Actions/gitSettings.imageset/git-20 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar Actions/gitSettings.imageset/git-20 1.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar Actions/gitSettings.imageset/git-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar Actions/gitSettings.imageset/git-20.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar Actions/gitSettings.imageset/git-20@2x 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar Actions/gitSettings.imageset/git-20@2x 1.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar Actions/gitSettings.imageset/git-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar Actions/gitSettings.imageset/git-20@2x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar Actions/gitSettings.imageset/git-20@3x 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar Actions/gitSettings.imageset/git-20@3x 1.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar Actions/gitSettings.imageset/git-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar Actions/gitSettings.imageset/git-20@3x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_archive.imageset/Archive-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar/sidebar_archive.imageset/Archive-76.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_archive.imageset/Archive-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar/sidebar_archive.imageset/Archive-76@2x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_archive.imageset/Archive-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar/sidebar_archive.imageset/Archive-83.5@2x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_archive.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Archive-76.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Archive-76@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Archive-83.5@2x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_inbox.imageset/1172241_inbox_letter_mail_mailbox_icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar/sidebar_inbox.imageset/1172241_inbox_letter_mail_mailbox_icon-76.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_inbox.imageset/1172241_inbox_letter_mail_mailbox_icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar/sidebar_inbox.imageset/1172241_inbox_letter_mail_mailbox_icon-76@2x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_inbox.imageset/1172241_inbox_letter_mail_mailbox_icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar/sidebar_inbox.imageset/1172241_inbox_letter_mail_mailbox_icon-83.5@2x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_inbox.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "1172241_inbox_letter_mail_mailbox_icon-76.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "1172241_inbox_letter_mail_mailbox_icon-76@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "1172241_inbox_letter_mail_mailbox_icon-83.5@2x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_notes.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Notes-76.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Notes-76@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Notes-83.5@2x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_notes.imageset/Notes-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar/sidebar_notes.imageset/Notes-76.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_notes.imageset/Notes-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar/sidebar_notes.imageset/Notes-76@2x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_notes.imageset/Notes-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar/sidebar_notes.imageset/Notes-83.5@2x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_project.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "folder-77.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "folder-76@2x-1.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "folder-76@2x-1 1.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_project.imageset/folder-76@2x-1 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar/sidebar_project.imageset/folder-76@2x-1 1.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_project.imageset/folder-76@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar/sidebar_project.imageset/folder-76@2x-1.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_project.imageset/folder-77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar/sidebar_project.imageset/folder-77.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_project_encrypted_locked.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "locked@74.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "locked@148.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "locked@222.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_project_encrypted_locked.imageset/locked@148.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar/sidebar_project_encrypted_locked.imageset/locked@148.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_project_encrypted_locked.imageset/locked@222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar/sidebar_project_encrypted_locked.imageset/locked@222.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_project_encrypted_locked.imageset/locked@74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar/sidebar_project_encrypted_locked.imageset/locked@74.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_project_encrypted_unlocked.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "unlocked@74.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "unlocked@148.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "unlocked@222.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_project_encrypted_unlocked.imageset/unlocked@148.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar/sidebar_project_encrypted_unlocked.imageset/unlocked@148.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_project_encrypted_unlocked.imageset/unlocked@222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar/sidebar_project_encrypted_unlocked.imageset/unlocked@222.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_project_encrypted_unlocked.imageset/unlocked@74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar/sidebar_project_encrypted_unlocked.imageset/unlocked@74.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_tag.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "tag-76.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "tag-76@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "tag-76@2x 1.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_tag.imageset/tag-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar/sidebar_tag.imageset/tag-76.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_tag.imageset/tag-76@2x 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar/sidebar_tag.imageset/tag-76@2x 1.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_tag.imageset/tag-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar/sidebar_tag.imageset/tag-76@2x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_todo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "t2-76.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "t2-76@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "t2-83.5@2x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_todo.imageset/t2-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar/sidebar_todo.imageset/t2-76.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_todo.imageset/t2-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar/sidebar_todo.imageset/t2-76@2x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_todo.imageset/t2-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar/sidebar_todo.imageset/t2-83.5@2x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_trash.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Trash-76.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Trash-76@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Trash-83.5@2x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_trash.imageset/Trash-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar/sidebar_trash.imageset/Trash-76.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_trash.imageset/Trash-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar/sidebar_trash.imageset/Trash-76@2x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_trash.imageset/Trash-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar/sidebar_trash.imageset/Trash-83.5@2x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_untagged.imageset/1172268_tag_tags_icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar/sidebar_untagged.imageset/1172268_tag_tags_icon-76.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_untagged.imageset/1172268_tag_tags_icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar/sidebar_untagged.imageset/1172268_tag_tags_icon-76@2x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_untagged.imageset/1172268_tag_tags_icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Sidebar/sidebar_untagged.imageset/1172268_tag_tags_icon-83.5@2x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Sidebar/sidebar_untagged.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "1172268_tag_tags_icon-76.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "1172268_tag_tags_icon-76@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "1172268_tag_tags_icon-83.5@2x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/codeBlockAsset.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "codeblock.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "codeblock-1.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "codeblock-2.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/codeBlockAsset.imageset/codeblock-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/codeBlockAsset.imageset/codeblock-1.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/codeBlockAsset.imageset/codeblock-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/codeBlockAsset.imageset/codeblock-2.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/codeBlockAsset.imageset/codeblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/codeBlockAsset.imageset/codeblock.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/pictureAsset.imageset/picture@1x-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/pictureAsset.imageset/picture@1x-white.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/pictureAsset.imageset/picture@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/pictureAsset.imageset/picture@1x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/pictureAsset.imageset/picture@2x-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/pictureAsset.imageset/picture@2x-white.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/pictureAsset.imageset/picture@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/pictureAsset.imageset/picture@2x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/pictureAsset.imageset/picture@3x-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/pictureAsset.imageset/picture@3x-white.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/pictureAsset.imageset/picture@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/pictureAsset.imageset/picture@3x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarBold.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "icons8-bold-52-20.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "icons8-bold-52-20@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "icons8-bold-52-20@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarBold.imageset/icons8-bold-52-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/toolbarBold.imageset/icons8-bold-52-20.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarBold.imageset/icons8-bold-52-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/toolbarBold.imageset/icons8-bold-52-20@2x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarBold.imageset/icons8-bold-52-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/toolbarBold.imageset/icons8-bold-52-20@3x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarHeader.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "type-h1-icon_1-20.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "type-h1-icon_1-20@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "type-h1-icon_1-20@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarHeader.imageset/type-h1-icon_1-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/toolbarHeader.imageset/type-h1-icon_1-20.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarHeader.imageset/type-h1-icon_1-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/toolbarHeader.imageset/type-h1-icon_1-20@2x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarHeader.imageset/type-h1-icon_1-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/toolbarHeader.imageset/type-h1-icon_1-20@3x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "icons8-image-96-20.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "icons8-image-96-20@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "icons8-image-96-20@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarImage.imageset/icons8-image-96-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/toolbarImage.imageset/icons8-image-96-20.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarImage.imageset/icons8-image-96-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/toolbarImage.imageset/icons8-image-96-20@2x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarImage.imageset/icons8-image-96-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/toolbarImage.imageset/icons8-image-96-20@3x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarIndentLeft.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "right-indent-20.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "right-indent-20@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "right-indent-20@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarIndentLeft.imageset/right-indent-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/toolbarIndentLeft.imageset/right-indent-20.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarIndentLeft.imageset/right-indent-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/toolbarIndentLeft.imageset/right-indent-20@2x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarIndentLeft.imageset/right-indent-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/toolbarIndentLeft.imageset/right-indent-20@3x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarIndentRight.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "left-indent-20.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "left-indent-20@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "left-indent-20@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarIndentRight.imageset/left-indent-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/toolbarIndentRight.imageset/left-indent-20.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarIndentRight.imageset/left-indent-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/toolbarIndentRight.imageset/left-indent-20@2x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarIndentRight.imageset/left-indent-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/toolbarIndentRight.imageset/left-indent-20@3x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarItalic.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "italic-text-option-interface-symbol-20.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "italic-text-option-interface-symbol-20@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "italic-text-option-interface-symbol-20@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarItalic.imageset/italic-text-option-interface-symbol-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/toolbarItalic.imageset/italic-text-option-interface-symbol-20.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarItalic.imageset/italic-text-option-interface-symbol-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/toolbarItalic.imageset/italic-text-option-interface-symbol-20@2x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarItalic.imageset/italic-text-option-interface-symbol-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/toolbarItalic.imageset/italic-text-option-interface-symbol-20@3x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarTag.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "iconfinder_20-blue_fee-label-price-tag_4488787-20.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "iconfinder_20-blue_fee-label-price-tag_4488787-20@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "iconfinder_20-blue_fee-label-price-tag_4488787-20@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarTag.imageset/iconfinder_20-blue_fee-label-price-tag_4488787-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/toolbarTag.imageset/iconfinder_20-blue_fee-label-price-tag_4488787-20.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarTag.imageset/iconfinder_20-blue_fee-label-price-tag_4488787-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/toolbarTag.imageset/iconfinder_20-blue_fee-label-price-tag_4488787-20@2x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarTag.imageset/iconfinder_20-blue_fee-label-price-tag_4488787-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/toolbarTag.imageset/iconfinder_20-blue_fee-label-price-tag_4488787-20@3x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarTodo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "icons8-todo-list-96-20.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "icons8-todo-list-96-20@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "icons8-todo-list-96-20@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarTodo.imageset/icons8-todo-list-96-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/toolbarTodo.imageset/icons8-todo-list-96-20.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarTodo.imageset/icons8-todo-list-96-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/toolbarTodo.imageset/icons8-todo-list-96-20@2x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarTodo.imageset/icons8-todo-list-96-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/toolbarTodo.imageset/icons8-todo-list-96-20@3x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarWiki.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "icons8-documents-96-20.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "icons8-documents-96-20@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "icons8-documents-96-20@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarWiki.imageset/icons8-documents-96-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/toolbarWiki.imageset/icons8-documents-96-20.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarWiki.imageset/icons8-documents-96-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/toolbarWiki.imageset/icons8-documents-96-20@2x.png -------------------------------------------------------------------------------- /FSNotes iOS/Icons.xcassets/Toolbar/toolbarWiki.imageset/icons8-documents-96-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/Icons.xcassets/Toolbar/toolbarWiki.imageset/icons8-documents-96-20@3x.png -------------------------------------------------------------------------------- /FSNotes iOS/LaunchImage.launchimage/Default1024x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/LaunchImage.launchimage/Default1024x768.png -------------------------------------------------------------------------------- /FSNotes iOS/LaunchImage.launchimage/Default1125x2436.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/LaunchImage.launchimage/Default1125x2436.png -------------------------------------------------------------------------------- /FSNotes iOS/LaunchImage.launchimage/Default1242x2208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/LaunchImage.launchimage/Default1242x2208.png -------------------------------------------------------------------------------- /FSNotes iOS/LaunchImage.launchimage/Default1536x2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/LaunchImage.launchimage/Default1536x2048.png -------------------------------------------------------------------------------- /FSNotes iOS/LaunchImage.launchimage/Default1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/LaunchImage.launchimage/Default1920x1080.png -------------------------------------------------------------------------------- /FSNotes iOS/LaunchImage.launchimage/Default2048x1536.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/LaunchImage.launchimage/Default2048x1536.png -------------------------------------------------------------------------------- /FSNotes iOS/LaunchImage.launchimage/Default2208x1242.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/LaunchImage.launchimage/Default2208x1242.png -------------------------------------------------------------------------------- /FSNotes iOS/LaunchImage.launchimage/Default2436x1125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/LaunchImage.launchimage/Default2436x1125.png -------------------------------------------------------------------------------- /FSNotes iOS/LaunchImage.launchimage/Default320x480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/LaunchImage.launchimage/Default320x480.png -------------------------------------------------------------------------------- /FSNotes iOS/LaunchImage.launchimage/Default3840x2160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/LaunchImage.launchimage/Default3840x2160.png -------------------------------------------------------------------------------- /FSNotes iOS/LaunchImage.launchimage/Default640x1136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/LaunchImage.launchimage/Default640x1136.png -------------------------------------------------------------------------------- /FSNotes iOS/LaunchImage.launchimage/Default640x960.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/LaunchImage.launchimage/Default640x960.png -------------------------------------------------------------------------------- /FSNotes iOS/LaunchImage.launchimage/Default750x1334.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/LaunchImage.launchimage/Default750x1334.png -------------------------------------------------------------------------------- /FSNotes iOS/LaunchImage.launchimage/Default768x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes iOS/LaunchImage.launchimage/Default768x1024.png -------------------------------------------------------------------------------- /FSNotes iOS/Settings/GitTableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // GitTableCellView.swift 3 | // FSNotes iOS 4 | // 5 | // Created by Oleksandr Hlushchenko on 01.03.2023. 6 | // Copyright © 2023 Oleksandr Hlushchenko. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import UIKit 11 | 12 | class GitTableViewCell: UITableViewCell { 13 | public var project: Project? 14 | 15 | @IBOutlet weak var removeButton: UIButton! 16 | @IBOutlet weak var cloneButton: UIButton! 17 | @IBOutlet weak var activity: UIActivityIndicatorView! 18 | 19 | } 20 | -------------------------------------------------------------------------------- /FSNotes iOS/ru.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | "NSCameraUsageDescription" = "Требуется прикрепить фото к заметкам"; 2 | 3 | "NSFaceIDUsageDescription" = "Шифрование и дешифрование с помощью FaceID"; 4 | 5 | "NSLocationWhenInUseUsageDescription" = "Запрошено при прикреплении фотографии"; 6 | 7 | "NSPhotoLibraryAddUsageDescription" = "Требуется разрешение на запись изображений в приложении для фотографий"; 8 | 9 | "NSPhotoLibraryUsageDescription" = "Требуется прикрепление изображений к заметкам"; 10 | -------------------------------------------------------------------------------- /FSNotes iOS/ru.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /FSNotes.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FSNotes.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /FSNotes.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildSystemType 6 | Original 7 | 8 | 9 | -------------------------------------------------------------------------------- /FSNotes.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /FSNotes/AboutWindowController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AboutWindowController.swift 3 | // FSNotes 4 | // 5 | // Created by Олександр Глущенко on 5/10/19. 6 | // Copyright © 2019 Oleksandr Glushchenko. All rights reserved. 7 | // 8 | 9 | import Cocoa 10 | 11 | class AboutWindowController: NSWindowController, NSWindowDelegate { 12 | 13 | override func windowDidLoad() { 14 | super.windowDidLoad() 15 | self.window?.delegate = self 16 | self.window?.title = "About" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /FSNotes/Business/AppearanceType.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppearanceType.swift 3 | // FSNotes 4 | // 5 | // Created by Oleksandr Glushchenko on 10/1/18. 6 | // Copyright © 2018 Oleksandr Glushchenko. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public enum AppearanceType: Int { 12 | case System = 0x00 13 | case Light = 0x01 14 | case Dark = 0x02 15 | case Custom = 0x03 16 | } 17 | -------------------------------------------------------------------------------- /FSNotes/Business/NoteAttribute.swift: -------------------------------------------------------------------------------- 1 | // 2 | // MarkdownAttribute.swift 3 | // FSNotes 4 | // 5 | // Created by Oleksandr Glushchenko on 1/25/18. 6 | // Copyright © 2018 Oleksandr Glushchenko. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | enum NoteAttribute { 12 | static let highlight = NSAttributedString.Key(rawValue: "co.fluder.search.highlight") 13 | 14 | static let all = Set([ 15 | highlight 16 | ]) 17 | } 18 | -------------------------------------------------------------------------------- /FSNotes/Business/UndoData.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UndoData.swift 3 | // FSNotes 4 | // 5 | // Created by Oleksandr Glushchenko on 4/27/18. 6 | // Copyright © 2018 Oleksandr Glushchenko. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | class UndoData: NSObject { 12 | let string: NSAttributedString 13 | let range: NSRange 14 | 15 | init(string: NSAttributedString, range: NSRange) { 16 | self.string = string 17 | self.range = range 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /FSNotes/FSNotes.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.app-sandbox 6 | 7 | com.apple.security.files.user-selected.read-write 8 | 9 | com.apple.security.network.client 10 | 11 | com.apple.security.print 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /FSNotes/Git/commons/Object.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Object.swift 3 | // Git2Swift 4 | // 5 | // Created by Damien Giron on 01/08/2016. 6 | // 7 | // 8 | 9 | import Foundation 10 | 11 | /// Object 12 | public protocol Object { 13 | 14 | /// Oid 15 | var oid : OID { get } 16 | } 17 | -------------------------------------------------------------------------------- /FSNotes/Git/commons/Wrapper.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Wrapper.swift 3 | // Git2Swift 4 | // 5 | // Created by Damien Giron on 20/09/2016. 6 | // Copyright © 2016 Creabox. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | /// Wrap authentication to C function 12 | internal class CWrapper { 13 | 14 | /// Object 15 | let object: T 16 | 17 | /// Init wrapper 18 | /// 19 | /// - parameter object: Wrapper 20 | /// 21 | /// - returns: Wrapper 22 | init(_ object: T) { 23 | self.object = object 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /FSNotes/Git/head/Head.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Head.swift 3 | // Git2Swift 4 | // 5 | // Created by Dami on 31/07/2016. 6 | // 7 | // 8 | 9 | import Foundation 10 | 11 | /// Head repository 12 | public class Head : Reference { 13 | 14 | /// Head index 15 | /// 16 | /// - throws: GitError 17 | /// 18 | /// - returns: Git index 19 | public func index() throws -> Index { 20 | return try Index(repository: repository) 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/AppIcon.appiconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/AppIcon.appiconset/icon_128x128.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/AppIcon.appiconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/AppIcon.appiconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/AppIcon.appiconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/AppIcon.appiconset/icon_16x16.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/AppIcon.appiconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/AppIcon.appiconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/AppIcon.appiconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/AppIcon.appiconset/icon_256x256.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/AppIcon.appiconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/AppIcon.appiconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/AppIcon.appiconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/AppIcon.appiconset/icon_32x32.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/AppIcon.appiconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/AppIcon.appiconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/AppIcon.appiconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/AppIcon.appiconset/icon_512x512.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/AppIcon.appiconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/AppIcon.appiconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/checkbox_empty.imageset/checkbox_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/checkbox_empty.imageset/checkbox_empty.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/checkbox_empty.imageset/checkbox_empty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/checkbox_empty.imageset/checkbox_empty@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/checkbox_empty.imageset/checkbox_empty@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/checkbox_empty.imageset/checkbox_empty@3x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/checkbox_empty.imageset/checkbox_empty_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/checkbox_empty.imageset/checkbox_empty_white.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/checkbox_empty.imageset/checkbox_empty_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/checkbox_empty.imageset/checkbox_empty_white@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/checkbox_flipped.imageset/checkbox_flipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/checkbox_flipped.imageset/checkbox_flipped.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/checkbox_flipped.imageset/checkbox_flipped@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/checkbox_flipped.imageset/checkbox_flipped@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/checkbox_flipped.imageset/checkbox_flipped@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/checkbox_flipped.imageset/checkbox_flipped@3x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/checkbox_flipped.imageset/checkbox_flipped_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/checkbox_flipped.imageset/checkbox_flipped_white.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/checkbox_flipped.imageset/checkbox_flipped_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/checkbox_flipped.imageset/checkbox_flipped_white@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/checkbox_new.imageset/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/checkbox_new.imageset/checkbox.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/checkbox_new.imageset/checkbox@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/checkbox_new.imageset/checkbox@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/checkbox_new.imageset/checkbox@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/checkbox_new.imageset/checkbox@3x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/checkbox_new.imageset/checkbox_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/checkbox_new.imageset/checkbox_white.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/checkbox_new.imageset/checkbox_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/checkbox_new.imageset/checkbox_white@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/checkbox_new.imageset/checkbox_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/checkbox_new.imageset/checkbox_white@3x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/colors_background/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/copy.png.imageset/copy-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/copy.png.imageset/copy-1.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/copy.png.imageset/copy-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/copy.png.imageset/copy-2.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/copy.png.imageset/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/copy.png.imageset/copy.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/copy.png.imageset/copy_white-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/copy.png.imageset/copy_white-1.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/copy.png.imageset/copy_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/copy.png.imageset/copy_white.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/dockIcon2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "image@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "image@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "image@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/dockIcon2.imageset/image@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/dockIcon2.imageset/image@1x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/dockIcon2.imageset/image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/dockIcon2.imageset/image@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/dockIcon2.imageset/image@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/dockIcon2.imageset/image@3x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/dockIcon4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "icon-64.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "icon-128.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "icon-256.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/dockIcon4.imageset/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/dockIcon4.imageset/icon-128.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/dockIcon4.imageset/icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/dockIcon4.imageset/icon-256.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/dockIcon4.imageset/icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/dockIcon4.imageset/icon-64.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/friend.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "friend.png", 5 | "idiom" : "mac", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "friend 1.png", 10 | "idiom" : "mac", 11 | "scale" : "2x" 12 | } 13 | ], 14 | "info" : { 15 | "author" : "xcode", 16 | "version" : 1 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/friend.imageset/friend 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/friend.imageset/friend 1.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/friend.imageset/friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/friend.imageset/friend.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/locked.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "locked.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "locked-1.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "locked-2.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/locked.imageset/locked-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/locked.imageset/locked-1.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/locked.imageset/locked-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/locked.imageset/locked-2.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/locked.imageset/locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/locked.imageset/locked.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/menuBar.imageset/icon-simple-bw-b-9-512x512@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/menuBar.imageset/icon-simple-bw-b-9-512x512@2x-1.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/menuBar.imageset/icon-simple-bw-b-9-512x512@2x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/menuBar.imageset/icon-simple-bw-b-9-512x512@2x-2.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/menuBar.imageset/icon-simple-bw-b-9-512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/menuBar.imageset/icon-simple-bw-b-9-512x512@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/menuBar.imageset/icon-simple-bw-w-9-512x512@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/menuBar.imageset/icon-simple-bw-w-9-512x512@2x-1.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/menuBar.imageset/icon-simple-bw-w-9-512x512@2x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/menuBar.imageset/icon-simple-bw-w-9-512x512@2x-2.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/menuBar.imageset/icon-simple-bw-w-9-512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/menuBar.imageset/icon-simple-bw-w-9-512x512@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/new_note_button.imageset/new_note-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/new_note_button.imageset/new_note-76.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/new_note_button.imageset/new_note-76@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/new_note_button.imageset/new_note-76@2x-1.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/new_note_button.imageset/new_note-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/new_note_button.imageset/new_note-76@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/new_note_button.imageset/new_note-77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/new_note_button.imageset/new_note-77.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/pin.imageset/pin-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/pin.imageset/pin-1.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/pin.imageset/pin-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/pin.imageset/pin-2.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/pin.imageset/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/pin.imageset/pin.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/pin.imageset/pin_white-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/pin.imageset/pin_white-1.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/pin.imageset/pin_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/pin.imageset/pin_white.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/prefsAdvanced.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "image@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "image@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "image@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/prefsAdvanced.imageset/image@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/prefsAdvanced.imageset/image@1x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/prefsAdvanced.imageset/image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/prefsAdvanced.imageset/image@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/prefsAdvanced.imageset/image@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/prefsAdvanced.imageset/image@3x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/prefsEditor.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "editor.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "editor@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "editor@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/prefsEditor.imageset/editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/prefsEditor.imageset/editor.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/prefsEditor.imageset/editor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/prefsEditor.imageset/editor@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/prefsEditor.imageset/editor@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/prefsEditor.imageset/editor@3x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/prefsGeneral.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "image@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "image@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "image@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/prefsGeneral.imageset/image@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/prefsGeneral.imageset/image@1x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/prefsGeneral.imageset/image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/prefsGeneral.imageset/image@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/prefsGeneral.imageset/image@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/prefsGeneral.imageset/image@3x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/prefsGit.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "git.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "git@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "git@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/prefsGit.imageset/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/prefsGit.imageset/git.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/prefsGit.imageset/git@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/prefsGit.imageset/git@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/prefsGit.imageset/git@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/prefsGit.imageset/git@3x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/prefsLayout.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "layout.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "layout@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "layout@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/prefsLayout.imageset/layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/prefsLayout.imageset/layout.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/prefsLayout.imageset/layout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/prefsLayout.imageset/layout@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/prefsLayout.imageset/layout@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/prefsLayout.imageset/layout@3x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/prefsWeb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "prefsWeb-64.png", 5 | "idiom" : "mac", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "prefsWeb-128.png", 10 | "idiom" : "mac", 11 | "scale" : "2x" 12 | } 13 | ], 14 | "info" : { 15 | "author" : "xcode", 16 | "version" : 1 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/prefsWeb.imageset/prefsWeb-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/prefsWeb.imageset/prefsWeb-128.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/prefsWeb.imageset/prefsWeb-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/prefsWeb.imageset/prefsWeb-64.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/privacy.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "privacy.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "privacy@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "privacy@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/privacy.imageset/privacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/privacy.imageset/privacy.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/privacy.imageset/privacy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/privacy.imageset/privacy@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/privacy.imageset/privacy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/privacy.imageset/privacy@3x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_archive.imageset/Archive-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_archive.imageset/Archive-76.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_archive.imageset/Archive-76@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_archive.imageset/Archive-76@2x-1.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_archive.imageset/Archive-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_archive.imageset/Archive-76@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_archive.imageset/Archive-77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_archive.imageset/Archive-77.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_external.imageset/185097_database_icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_external.imageset/185097_database_icon-128.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_external.imageset/185097_database_icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_external.imageset/185097_database_icon-32.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_external.imageset/185097_database_icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_external.imageset/185097_database_icon-64.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_external.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "185097_database_icon-32.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "185097_database_icon-64.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "185097_database_icon-128.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_icloud_drive.imageset/1820466_brand_icloud_logo_network_social_icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_icloud_drive.imageset/1820466_brand_icloud_logo_network_social_icon-128.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_icloud_drive.imageset/1820466_brand_icloud_logo_network_social_icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_icloud_drive.imageset/1820466_brand_icloud_logo_network_social_icon-32.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_icloud_drive.imageset/1820466_brand_icloud_logo_network_social_icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_icloud_drive.imageset/1820466_brand_icloud_logo_network_social_icon-64.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_icloud_drive.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "1820466_brand_icloud_logo_network_social_icon-32.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "1820466_brand_icloud_logo_network_social_icon-64.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "1820466_brand_icloud_logo_network_social_icon-128.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_inbox.imageset/1172241_inbox_letter_mail_mailbox_icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_inbox.imageset/1172241_inbox_letter_mail_mailbox_icon-76.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_inbox.imageset/1172241_inbox_letter_mail_mailbox_icon-76@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_inbox.imageset/1172241_inbox_letter_mail_mailbox_icon-76@2x-1.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_inbox.imageset/1172241_inbox_letter_mail_mailbox_icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_inbox.imageset/1172241_inbox_letter_mail_mailbox_icon-76@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_inbox.imageset/1172241_inbox_letter_mail_mailbox_icon-77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_inbox.imageset/1172241_inbox_letter_mail_mailbox_icon-77.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_inbox.imageset/1172241_inbox_letter_mail_mailbox_icon-83.5@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_inbox.imageset/1172241_inbox_letter_mail_mailbox_icon-83.5@2x-1.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_inbox.imageset/1172241_inbox_letter_mail_mailbox_icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_inbox.imageset/1172241_inbox_letter_mail_mailbox_icon-83.5@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_notes.imageset/Notes-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_notes.imageset/Notes-76.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_notes.imageset/Notes-76@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_notes.imageset/Notes-76@2x-1.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_notes.imageset/Notes-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_notes.imageset/Notes-76@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_notes.imageset/Notes-77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_notes.imageset/Notes-77.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_project.imageset/folder-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_project.imageset/folder-76.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_project.imageset/folder-76@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_project.imageset/folder-76@2x-1.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_project.imageset/folder-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_project.imageset/folder-76@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_project.imageset/folder-77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_project.imageset/folder-77.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_project_encrypted_locked.imageset/Folder3lock4 3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_project_encrypted_locked.imageset/Folder3lock4 3-1.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_project_encrypted_locked.imageset/Folder3lock4 3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_project_encrypted_locked.imageset/Folder3lock4 3-2.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_project_encrypted_locked.imageset/Folder3lock4 3-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_project_encrypted_locked.imageset/Folder3lock4 3-3.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_project_encrypted_locked.imageset/Folder3lock4 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_project_encrypted_locked.imageset/Folder3lock4 3.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_project_encrypted_unlocked.imageset/Folder_unlock_1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_project_encrypted_unlocked.imageset/Folder_unlock_1-1.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_project_encrypted_unlocked.imageset/Folder_unlock_1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_project_encrypted_unlocked.imageset/Folder_unlock_1-2.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_project_encrypted_unlocked.imageset/Folder_unlock_1-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_project_encrypted_unlocked.imageset/Folder_unlock_1-3.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_project_encrypted_unlocked.imageset/Folder_unlock_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_project_encrypted_unlocked.imageset/Folder_unlock_1.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_tag.imageset/tag-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_tag.imageset/tag-76.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_tag.imageset/tag-76@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_tag.imageset/tag-76@2x-1.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_tag.imageset/tag-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_tag.imageset/tag-76@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_tag.imageset/tag-77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_tag.imageset/tag-77.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_todo.imageset/t2-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_todo.imageset/t2-76.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_todo.imageset/t2-76@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_todo.imageset/t2-76@2x-1.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_todo.imageset/t2-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_todo.imageset/t2-76@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_todo.imageset/t2-77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_todo.imageset/t2-77.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_todo.imageset/t2-83.5@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_todo.imageset/t2-83.5@2x-1.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_todo.imageset/t2-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_todo.imageset/t2-83.5@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_trash.imageset/Trash-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_trash.imageset/Trash-76.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_trash.imageset/Trash-76@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_trash.imageset/Trash-76@2x-1.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_trash.imageset/Trash-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_trash.imageset/Trash-76@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_trash.imageset/Trash-77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_trash.imageset/Trash-77.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_trash.imageset/Trash-83.5@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_trash.imageset/Trash-83.5@2x-1.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_trash.imageset/Trash-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_trash.imageset/Trash-83.5@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_untagged.imageset/Untagged-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_untagged.imageset/Untagged-76.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_untagged.imageset/Untagged-76@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_untagged.imageset/Untagged-76@2x-1.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_untagged.imageset/Untagged-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_untagged.imageset/Untagged-76@2x.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/sidebar_untagged.imageset/Untagged-77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/sidebar_untagged.imageset/Untagged-77.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/web.imageset/web 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/web.imageset/web 1.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/web.imageset/web 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/web.imageset/web 2.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/web.imageset/web 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/web.imageset/web 3.png -------------------------------------------------------------------------------- /FSNotes/Images.xcassets/web.imageset/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/Images.xcassets/web.imageset/web.png -------------------------------------------------------------------------------- /FSNotes/Model/StorageEntity+CoreDataClass.swift: -------------------------------------------------------------------------------- 1 | // 2 | // StorageEntity+CoreDataClass.swift 3 | // 4 | // 5 | // Created by Oleksandr Glushchenko on 11/14/17. 6 | // 7 | // This file was automatically generated and should not be edited. 8 | // 9 | 10 | import Foundation 11 | import CoreData 12 | 13 | @objc(StorageEntity) 14 | public class StorageEntity: NSManagedObject { 15 | 16 | } 17 | -------------------------------------------------------------------------------- /FSNotes/Model/StorageEntity+CoreDataProperties.swift: -------------------------------------------------------------------------------- 1 | // 2 | // StorageEntity+CoreDataProperties.swift 3 | // 4 | // 5 | // Created by Oleksandr Glushchenko on 11/14/17. 6 | // 7 | // This file was automatically generated and should not be edited. 8 | // 9 | 10 | import Foundation 11 | import CoreData 12 | 13 | 14 | extension StorageEntity { 15 | 16 | @nonobjc public class func fetchRequest() -> NSFetchRequest { 17 | return NSFetchRequest(entityName: "StorageEntity") 18 | } 19 | 20 | @NSManaged public var name: String? 21 | @NSManaged public var path: String? 22 | 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes/PrefsWindowController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // PrefsWindowController.swift 3 | // FSNotes 4 | // 5 | // Created by Jeff Hanbury on 13/08/17. 6 | // Copyright © 2017 Oleksandr Glushchenko. All rights reserved. 7 | // 8 | 9 | import Cocoa 10 | 11 | class PrefsWindowController: NSWindowController, NSWindowDelegate { 12 | 13 | override func windowDidLoad() { 14 | super.windowDidLoad() 15 | self.window?.delegate = self 16 | self.window?.title = NSLocalizedString("Settings", comment: "") 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /FSNotes/SidebarScrollView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SidebarScrollView.swift 3 | // FSNotes 4 | // 5 | // Created by Oleksandr Glushchenko on 4/9/18. 6 | // Copyright © 2018 Oleksandr Glushchenko. All rights reserved. 7 | // 8 | 9 | import Cocoa 10 | 11 | class SidebarNotesView: NSView { 12 | override func draw(_ dirtyRect: NSRect) { 13 | super.draw(dirtyRect) 14 | layer?.backgroundColor = NSColor.white.cgColor 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /FSNotes/SourceCodePro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/SourceCodePro-Regular.ttf -------------------------------------------------------------------------------- /FSNotes/View/ClickableTextField.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ClickableTextField.swift 3 | // FSNotes 4 | // 5 | // Created by Oleksandr Hlushchenko on 13.08.2024. 6 | // Copyright © 2024 Oleksandr Hlushchenko. All rights reserved. 7 | // 8 | 9 | import Cocoa 10 | 11 | class ClickableTextField: NSTextField { 12 | override func mouseDown(with event: NSEvent) { 13 | super.mouseDown(with: event) 14 | 15 | guard let vc = ViewController.shared(), 16 | let projects = vc.sidebarOutlineView.getSelectedProjects() else { return } 17 | 18 | vc.getMasterPassword() { password in 19 | vc.sidebarOutlineView.unlock(projects: projects, password: password, action: nil) 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /FSNotes/View/NameTextField.swift: -------------------------------------------------------------------------------- 1 | // 2 | // NameTextField.swift 3 | // FSNotes 4 | // 5 | // Created by Oleksandr Glushchenko on 10/9/18. 6 | // Copyright © 2018 Oleksandr Glushchenko. All rights reserved. 7 | // 8 | 9 | import Cocoa 10 | 11 | class NameTextField: NSTextField { 12 | override func becomeFirstResponder() -> Bool { 13 | let status = super.becomeFirstResponder() 14 | 15 | if UserDefaultsManagement.appearanceType != AppearanceType.Custom, #available(OSX 10.13, *) { 16 | self.textColor = NSColor.init(named: "mainText") 17 | } else { 18 | self.textColor = NSColor.black 19 | } 20 | 21 | return status 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotes/View/NoteRowView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // NoteRowView.swift 3 | // FSNotes 4 | // 5 | // Created by Oleksandr Glushchenko on 7/31/17. 6 | // Copyright © 2017 Oleksandr Glushchenko. All rights reserved. 7 | // 8 | 9 | import Cocoa 10 | 11 | class NoteRowView: NSTableRowView { 12 | override func draw(_ dirtyRect: NSRect) { 13 | super.draw(dirtyRect) 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /FSNotes/View/SidebarHeaderCellView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SidebarHeaderCellView.swift 3 | // FSNotes 4 | // 5 | // Created by Олександр Глущенко on 15.10.2019. 6 | // Copyright © 2019 Oleksandr Glushchenko. All rights reserved. 7 | // 8 | 9 | import Cocoa 10 | 11 | class SidebarHeaderCellView: NSTableCellView { 12 | @IBOutlet weak var label: NSTextField! 13 | @IBOutlet weak var icon: NSImageView! 14 | } 15 | -------------------------------------------------------------------------------- /FSNotes/View/SidebarNotesView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SidebarNotesView.swift 3 | // FSNotes 4 | // 5 | // Created by Oleksandr Glushchenko on 4/9/18. 6 | // Copyright © 2018 Oleksandr Glushchenko. All rights reserved. 7 | // 8 | 9 | import Cocoa 10 | 11 | class SidebarNotesView: NSView { 12 | // override func draw(_ dirtyRect: NSRect) { 13 | // super.draw(dirtyRect) 14 | // 15 | // if UserDefaultsManagement.appearanceType != AppearanceType.Custom, #available(OSX 10.13, *) { 16 | // NSColor(named: "mainBackground")!.setFill() 17 | // __NSRectFill(dirtyRect) 18 | // } else { 19 | // layer?.backgroundColor = NSColor.white.cgColor 20 | // } 21 | // } 22 | } 23 | -------------------------------------------------------------------------------- /FSNotes/View/SidebarSplitView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SidebarSplitView.swift 3 | // FSNotes 4 | // 5 | // Created by Oleksandr Glushchenko on 9/29/18. 6 | // Copyright © 2018 Oleksandr Glushchenko. All rights reserved. 7 | // 8 | 9 | import Cocoa 10 | 11 | class SidebarSplitView: NSSplitView { 12 | override var dividerColor: NSColor { 13 | if UserDefaultsManagement.appearanceType != AppearanceType.Custom, #available(OSX 10.13, *) { 14 | return NSColor.init(named: "divider")! 15 | } else { 16 | return NSColor(red:0.83, green:0.83, blue:0.83, alpha:1.0) 17 | } 18 | } 19 | } 20 | 21 | -------------------------------------------------------------------------------- /FSNotes/View/SidebarTableRowView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SidebarTableRowView.swift 3 | // FSNotes 4 | // 5 | // Created by Oleksandr Glushchenko on 4/11/18. 6 | // Copyright © 2018 Oleksandr Glushchenko. All rights reserved. 7 | // 8 | 9 | import Cocoa 10 | 11 | class SidebarTableRowView: NSTableRowView { 12 | 13 | } 14 | -------------------------------------------------------------------------------- /FSNotes/View/VerticallyAlignedTextFieldCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // VerticallyAlignedTextFieldCell.swift 3 | // FSNotes 4 | // 5 | // Created by Олександр Глущенко on 03.05.2020. 6 | // Copyright © 2020 Oleksandr Glushchenko. All rights reserved. 7 | // 8 | 9 | import Cocoa 10 | 11 | class VerticallyAlignedTextFieldCell: NSTextFieldCell { 12 | override func drawingRect(forBounds rect: NSRect) -> NSRect { 13 | let newRect = NSRect(x: 0, y: (rect.size.height - 22) / 2, width: rect.size.width, height: 22) 14 | return super.drawingRect(forBounds: newRect) 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /FSNotes/bin/git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/FSNotes/bin/git -------------------------------------------------------------------------------- /FSNotesCore/Core macOS/Colors.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Colors.swift 3 | // FSNotes 4 | // 5 | // Created by Александр on 30.01.2022. 6 | // Copyright © 2022 Oleksandr Glushchenko. All rights reserved. 7 | // 8 | 9 | import Cocoa 10 | 11 | class Colors { 12 | public static var underlineColor: NSColor { 13 | if UserDefaultsManagement.appearanceType != AppearanceType.Custom, #available(OSX 10.13, *) { 14 | return NSColor(named: "underlineColor")! 15 | } else { 16 | return NSColor.black 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /FSNotesCore/Core macOS/Extensions/NSFont+.swift: -------------------------------------------------------------------------------- 1 | // 2 | // NSFont+.swift 3 | // FSNotesCore macOS 4 | // 5 | // Created by Oleksandr Glushchenko on 10/14/18. 6 | // Copyright © 2018 Oleksandr Glushchenko. All rights reserved. 7 | // 8 | 9 | extension NSFont { 10 | public var lineHeight: CGFloat { 11 | return CGFloat(ceilf(Float(ascender + abs(descender) + leading))) 12 | } 13 | 14 | public var lineHeightCustom: CGFloat { 15 | return CGFloat(ceilf(Float(ascender + abs(descender) + leading))) 16 | } 17 | 18 | public func getAttachmentHeight() -> Double { 19 | return Double(pointSize) + 6 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /FSNotesCore/Core macOS/Extensions/NSWindow+.swift: -------------------------------------------------------------------------------- 1 | // 2 | // NSWindow+.swift 3 | // FSNotes 4 | // 5 | // Created by Oleksandr Hlushchenko on 10.07.2022. 6 | // Copyright © 2022 Oleksandr Hlushchenko. All rights reserved. 7 | // 8 | 9 | import Cocoa 10 | 11 | extension NSWindow { 12 | public func setFrameOriginToPositionWindowInCenterOfScreen() { 13 | if let screenSize = screen?.frame.size { 14 | let origin = NSPoint(x: (screenSize.width-800)/2, y: (screenSize.height-600)/2) 15 | self.setFrame(NSRect(origin: origin, size: CGSize(width: 800, height: 600)), display: true) 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /FSNotesCore/Core macOS/FSNotesCore_macOS.h: -------------------------------------------------------------------------------- 1 | // 2 | // FSNotesCore_macOS.h 3 | // FSNotesCore macOS 4 | // 5 | // Created by Christopher Reimann on 7/17/18. 6 | // Copyright © 2018 Oleksandr Glushchenko. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | //! Project version number for FSNotesCore_macOS. 12 | FOUNDATION_EXPORT double FSNotesCore_macOSVersionNumber; 13 | 14 | //! Project version string for FSNotesCore_macOS. 15 | FOUNDATION_EXPORT const unsigned char FSNotesCore_macOSVersionString[]; 16 | 17 | // In this header, you should import all the public headers of your framework using statements like #import 18 | 19 | 20 | -------------------------------------------------------------------------------- /FSNotesCore/Core macOS/zh-Hans-CN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Bundle name */ 2 | "CFBundleName" = "FSNotesCore_macOS"; 3 | 4 | /* Copyright (human-readable) */ 5 | "NSHumanReadableCopyright" = "Copyright © 2018 Oleksandr Glushchenko. Alle Rechte vorbehalten"; 6 | 7 | -------------------------------------------------------------------------------- /FSNotesCore/Shared/Business/ApiResponse.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ApiResponse.swift 3 | // FSNotes 4 | // 5 | // Created by Oleksandr Hlushchenko on 24.05.2023. 6 | // Copyright © 2023 Oleksandr Hlushchenko. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | struct APIResponse: Codable { 12 | var id: String? 13 | var error: String? 14 | } 15 | -------------------------------------------------------------------------------- /FSNotesCore/Shared/Business/PreviewState.swift: -------------------------------------------------------------------------------- 1 | // 2 | // PreviewStateswift 3 | // FSNotes 4 | // 5 | // Created by Олександр Глущенко on 20.09.2020. 6 | // Copyright © 2020 Oleksandr Glushchenko. All rights reserved. 7 | // 8 | 9 | public enum PreviewState: String { 10 | case on 11 | case off 12 | } 13 | -------------------------------------------------------------------------------- /FSNotesCore/Shared/Business/ProgressState.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ActionState.swift 3 | // FSNotes 4 | // 5 | // Created by Олександр Глущенко on 20.09.2020. 6 | // Copyright © 2020 Oleksandr Glushchenko. All rights reserved. 7 | // 8 | 9 | public enum ProgressState: String { 10 | case none 11 | case incomplete 12 | case done 13 | } 14 | -------------------------------------------------------------------------------- /FSNotesCore/Shared/Business/RuntimeError.swift: -------------------------------------------------------------------------------- 1 | // 2 | // File.swift 3 | // FSNotes 4 | // 5 | // Created by Oleksandr Glushchenko on 3/15/19. 6 | // Copyright © 2019 Oleksandr Glushchenko. All rights reserved. 7 | // 8 | 9 | struct RuntimeError: Error { 10 | let message: String 11 | 12 | init(_ message: String) { 13 | self.message = message 14 | } 15 | 16 | public var localizedDescription: String { 17 | return message 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /FSNotesCore/Shared/Business/SortBy.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SortBy.swift 3 | // FSNotes 4 | // 5 | // Created by Oleksandr Glushchenko on 1/29/18. 6 | // Copyright © 2018 Oleksandr Glushchenko. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public enum SortBy: String { 12 | case none 13 | case modificationDate 14 | case creationDate 15 | case title 16 | } 17 | -------------------------------------------------------------------------------- /FSNotesCore/Shared/Business/SortDirection.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SortDirection.swift 3 | // FSNotes 4 | // 5 | // Created by Олександр Глущенко on 8/20/19. 6 | // Copyright © 2019 Oleksandr Glushchenko. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public enum SortDirection: String { 12 | case asc 13 | case desc 14 | } 15 | -------------------------------------------------------------------------------- /FSNotesCore/Shared/Business/StorageType.swift: -------------------------------------------------------------------------------- 1 | // 2 | // StorageType.swift 3 | // FSNotes 4 | // 5 | // Created by Олександр Глущенко on 06.05.2020. 6 | // Copyright © 2020 Oleksandr Glushchenko. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public enum StorageType: Int { 12 | case none = 0x00 13 | case local = 0x01 14 | case iCloudDrive = 0x02 15 | case custom = 0x03 16 | } 17 | -------------------------------------------------------------------------------- /FSNotesCore/Shared/Business/TextBundleInfo.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TextBundleInfo.swift 3 | // FSNotes 4 | // 5 | // Created by Oleksandr Glushchenko on 3/4/19. 6 | // Copyright © 2019 Oleksandr Glushchenko. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | struct TextBundleInfo: Decodable { 12 | let version: Int 13 | let type: String 14 | let flatExtension: String? 15 | let created: Int? 16 | let modified: Int? 17 | } 18 | -------------------------------------------------------------------------------- /FSNotesCore/Shared/Extensions/Data+.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Data+.swift 3 | // FSNotes 4 | // 5 | // Created by Александр on 03.04.2022. 6 | // Copyright © 2022 Oleksandr Glushchenko. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | extension Data { 12 | var isPDF: Bool { 13 | guard self.count >= 1024 else { return false } 14 | let pdfHeader = Data(bytes: "%PDF", count: 4) 15 | return self.range(of: pdfHeader, options: [], in: Range(NSRange(location: 0, length: 1024))) != nil 16 | } 17 | 18 | mutating func append(_ string: String, using encoding: String.Encoding = .utf8) { 19 | if let data = string.data(using: encoding) { 20 | append(data) 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FSNotesCore/Shared/Extensions/FileManager+.swift: -------------------------------------------------------------------------------- 1 | // 2 | // FileManager+.swift 3 | // FSNotes 4 | // 5 | // Created by Олександр Глущенко on 07.02.2021. 6 | // Copyright © 2021 Oleksandr Glushchenko. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | extension FileManager { 12 | func directoryExists(atUrl url: URL) -> Bool { 13 | var isDirectory: ObjCBool = false 14 | let exists = self.fileExists(atPath: url.path, isDirectory: &isDirectory) 15 | return exists && isDirectory.boolValue 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /FSNotesCore/Shared/Extensions/NSAttributedString+.swift: -------------------------------------------------------------------------------- 1 | // 2 | // NSAttributedString+.swift 3 | // FSNotes 4 | // 5 | // Created by Олександр Глущенко on 03.05.2020. 6 | // Copyright © 2020 Oleksandr Glushchenko. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | extension NSAttributedString { 12 | public func hasTodoAttribute() -> Bool { 13 | var found = false 14 | enumerateAttribute(.todo, in: NSRange(0.. Bool { 17 | #if os(iOS) 18 | return false 19 | #endif 20 | 21 | #if os(OSX) 22 | return (attachmentCell?.cellSize().height == 30) 23 | #endif 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /FSNotesCore/Shared/NoteMeta.swift: -------------------------------------------------------------------------------- 1 | // 2 | // NoteMeta.swift 3 | // FSNotes 4 | // 5 | // Created by Олександр Глущенко on 17.05.2020. 6 | // Copyright © 2020 Oleksandr Glushchenko. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public struct NoteMeta: Codable { 12 | var url: URL 13 | var attachments: [URL]? 14 | var imageUrl: [URL]? 15 | var title: String 16 | var preview: String 17 | var modificationDate: Date 18 | var creationDate: Date 19 | var pinned: Bool 20 | var tags: [String] 21 | var selectedRange: NSRange? 22 | } 23 | -------------------------------------------------------------------------------- /FSNotesCore/Shared/RepositoryAction.swift: -------------------------------------------------------------------------------- 1 | // 2 | // RepositoryAction.swift 3 | // FSNotes 4 | // 5 | // Created by Oleksandr Hlushchenko on 13.03.2023. 6 | // Copyright © 2023 Oleksandr Hlushchenko. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | public enum RepositoryAction: Int, CaseIterable { 12 | case initCommit 13 | case clonePush 14 | case commit 15 | case pullPush 16 | 17 | var title: String { 18 | switch self { 19 | case .initCommit: return "Init/commit" 20 | case .clonePush: return "Clone/push" 21 | case .pullPush: return "Pull/push" 22 | case .commit: return "Add/commit" 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /Logo/application logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Logo/application logo.png -------------------------------------------------------------------------------- /Logo/logomark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Logo/logomark.png -------------------------------------------------------------------------------- /Logo/logotype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Logo/logotype.png -------------------------------------------------------------------------------- /Resources/Fonts/AvenirNext/AvenirNext-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Fonts/AvenirNext/AvenirNext-Bold.ttf -------------------------------------------------------------------------------- /Resources/Fonts/AvenirNext/AvenirNext-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Fonts/AvenirNext/AvenirNext-BoldItalic.ttf -------------------------------------------------------------------------------- /Resources/Fonts/AvenirNext/AvenirNext-Demi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Fonts/AvenirNext/AvenirNext-Demi.ttf -------------------------------------------------------------------------------- /Resources/Fonts/AvenirNext/AvenirNext-DemiItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Fonts/AvenirNext/AvenirNext-DemiItalic.ttf -------------------------------------------------------------------------------- /Resources/Fonts/AvenirNext/AvenirNext-Heavy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Fonts/AvenirNext/AvenirNext-Heavy.ttf -------------------------------------------------------------------------------- /Resources/Fonts/AvenirNext/AvenirNext-HeavyItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Fonts/AvenirNext/AvenirNext-HeavyItalic.ttf -------------------------------------------------------------------------------- /Resources/Fonts/AvenirNext/AvenirNext-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Fonts/AvenirNext/AvenirNext-Italic.ttf -------------------------------------------------------------------------------- /Resources/Fonts/AvenirNext/AvenirNext-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Fonts/AvenirNext/AvenirNext-Light.ttf -------------------------------------------------------------------------------- /Resources/Fonts/AvenirNext/AvenirNext-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Fonts/AvenirNext/AvenirNext-LightItalic.ttf -------------------------------------------------------------------------------- /Resources/Fonts/AvenirNext/AvenirNext-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Fonts/AvenirNext/AvenirNext-Medium.ttf -------------------------------------------------------------------------------- /Resources/Fonts/AvenirNext/AvenirNext-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Fonts/AvenirNext/AvenirNext-MediumItalic.ttf -------------------------------------------------------------------------------- /Resources/Fonts/AvenirNext/AvenirNext-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Fonts/AvenirNext/AvenirNext-Regular.ttf -------------------------------------------------------------------------------- /Resources/Fonts/AvenirNext/AvenirNext-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Fonts/AvenirNext/AvenirNext-Thin.ttf -------------------------------------------------------------------------------- /Resources/Fonts/AvenirNext/AvenirNext-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Fonts/AvenirNext/AvenirNext-ThinItalic.ttf -------------------------------------------------------------------------------- /Resources/Fonts/AvenirNext/AvenirNext-UltraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Fonts/AvenirNext/AvenirNext-UltraLight.ttf -------------------------------------------------------------------------------- /Resources/Fonts/AvenirNext/AvenirNext-UltraLightIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Fonts/AvenirNext/AvenirNext-UltraLightIt.ttf -------------------------------------------------------------------------------- /Resources/Icons/EncryptedTextPack.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Icons/EncryptedTextPack.icns -------------------------------------------------------------------------------- /Resources/Icons/Markdown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Icons/Markdown.icns -------------------------------------------------------------------------------- /Resources/Icons/RTF.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Icons/RTF.icns -------------------------------------------------------------------------------- /Resources/Icons/Text.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Icons/Text.icns -------------------------------------------------------------------------------- /Resources/Icons/TextBundle.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Icons/TextBundle.icns -------------------------------------------------------------------------------- /Resources/Initial/FSNotes 4.0 Change Log.textbundle/assets/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Initial/FSNotes 4.0 Change Log.textbundle/assets/128.png -------------------------------------------------------------------------------- /Resources/Initial/FSNotes 4.0 Change Log.textbundle/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "transient" : true, 3 | "type" : "net.daringfireball.markdown", 4 | "creatorIdentifier" : "co.fluder.fsnotes", 5 | "version" : 2 6 | } -------------------------------------------------------------------------------- /Resources/Initial/FSNotes 4.0 for iOS.textbundle/assets/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Initial/FSNotes 4.0 for iOS.textbundle/assets/128.png -------------------------------------------------------------------------------- /Resources/Initial/FSNotes 4.0 for iOS.textbundle/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "transient" : true, 3 | "type" : "net.daringfireball.markdown", 4 | "creatorIdentifier" : "co.fluder.fsnotes", 5 | "version" : 2 6 | } -------------------------------------------------------------------------------- /Resources/Initial/FSNotes 5.0 Change Log.textbundle/assets/04989e53-613f-463b-8f9e-9a734520f965.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Initial/FSNotes 5.0 Change Log.textbundle/assets/04989e53-613f-463b-8f9e-9a734520f965.jpg -------------------------------------------------------------------------------- /Resources/Initial/FSNotes 5.0 Change Log.textbundle/assets/8822c62e-16ef-4f4c-b397-55d2d79e86fb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Initial/FSNotes 5.0 Change Log.textbundle/assets/8822c62e-16ef-4f4c-b397-55d2d79e86fb.jpg -------------------------------------------------------------------------------- /Resources/Initial/FSNotes 5.0 Change Log.textbundle/assets/9ebef6e8-741f-4fd7-b6fb-0fef6d471c44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Initial/FSNotes 5.0 Change Log.textbundle/assets/9ebef6e8-741f-4fd7-b6fb-0fef6d471c44.jpg -------------------------------------------------------------------------------- /Resources/Initial/FSNotes 5.0 Change Log.textbundle/assets/a4bdc32a-ae63-4d39-a4ef-458639b1d3f1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Initial/FSNotes 5.0 Change Log.textbundle/assets/a4bdc32a-ae63-4d39-a4ef-458639b1d3f1.jpg -------------------------------------------------------------------------------- /Resources/Initial/FSNotes 5.0 Change Log.textbundle/assets/add6cab8-34d1-49f6-b3f3-316b0b3c5ebc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Initial/FSNotes 5.0 Change Log.textbundle/assets/add6cab8-34d1-49f6-b3f3-316b0b3c5ebc.jpg -------------------------------------------------------------------------------- /Resources/Initial/FSNotes 5.0 Change Log.textbundle/assets/ce09661c-bebf-4463-b4fd-47b005aeffbd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Initial/FSNotes 5.0 Change Log.textbundle/assets/ce09661c-bebf-4463-b4fd-47b005aeffbd.jpg -------------------------------------------------------------------------------- /Resources/Initial/FSNotes 5.0 Change Log.textbundle/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "transient" : true, 3 | "type" : "net.daringfireball.markdown", 4 | "creatorIdentifier" : "co.fluder.fsnotes", 5 | "version" : 2 6 | } -------------------------------------------------------------------------------- /Resources/Initial/Meet FSNotes 6.textbundle/assets/2023-04-08 Unmasked Icon, Light - FSNotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Initial/Meet FSNotes 6.textbundle/assets/2023-04-08 Unmasked Icon, Light - FSNotes.png -------------------------------------------------------------------------------- /Resources/Initial/Meet FSNotes 6.textbundle/assets/IMG_1882.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Initial/Meet FSNotes 6.textbundle/assets/IMG_1882.jpeg -------------------------------------------------------------------------------- /Resources/Initial/Meet FSNotes 6.textbundle/assets/black-icon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Initial/Meet FSNotes 6.textbundle/assets/black-icon.jpeg -------------------------------------------------------------------------------- /Resources/Initial/Meet FSNotes 6.textbundle/assets/encrypt-menu.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Initial/Meet FSNotes 6.textbundle/assets/encrypt-menu.jpeg -------------------------------------------------------------------------------- /Resources/Initial/Meet FSNotes 6.textbundle/assets/web-sharing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Initial/Meet FSNotes 6.textbundle/assets/web-sharing.png -------------------------------------------------------------------------------- /Resources/Initial/Meet FSNotes 6.textbundle/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "transient" : true, 3 | "type" : "net.daringfireball.markdown", 4 | "creatorIdentifier" : "co.fluder.fsnotes", 5 | "version" : 2 6 | } -------------------------------------------------------------------------------- /Resources/MPreview.bundle/fonts/SourceCodePro-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/MPreview.bundle/fonts/SourceCodePro-Bold.ttf -------------------------------------------------------------------------------- /Resources/MPreview.bundle/fonts/SourceCodePro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/MPreview.bundle/fonts/SourceCodePro-Regular.ttf -------------------------------------------------------------------------------- /Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_AMS-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_AMS-Regular.woff -------------------------------------------------------------------------------- /Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Bold.woff -------------------------------------------------------------------------------- /Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Regular.woff -------------------------------------------------------------------------------- /Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Fraktur-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Fraktur-Bold.woff -------------------------------------------------------------------------------- /Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Fraktur-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Fraktur-Regular.woff -------------------------------------------------------------------------------- /Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Main-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Main-Bold.woff -------------------------------------------------------------------------------- /Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Main-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Main-Italic.woff -------------------------------------------------------------------------------- /Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Main-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Main-Regular.woff -------------------------------------------------------------------------------- /Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Math-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Math-BoldItalic.woff -------------------------------------------------------------------------------- /Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Math-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Math-Italic.woff -------------------------------------------------------------------------------- /Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Math-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Math-Regular.woff -------------------------------------------------------------------------------- /Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_SansSerif-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_SansSerif-Bold.woff -------------------------------------------------------------------------------- /Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_SansSerif-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_SansSerif-Italic.woff -------------------------------------------------------------------------------- /Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_SansSerif-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_SansSerif-Regular.woff -------------------------------------------------------------------------------- /Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Script-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Script-Regular.woff -------------------------------------------------------------------------------- /Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Size1-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Size1-Regular.woff -------------------------------------------------------------------------------- /Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Size2-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Size2-Regular.woff -------------------------------------------------------------------------------- /Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Size3-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Size3-Regular.woff -------------------------------------------------------------------------------- /Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Size4-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Size4-Regular.woff -------------------------------------------------------------------------------- /Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Typewriter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Typewriter-Regular.woff -------------------------------------------------------------------------------- /Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Vector-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Vector-Bold.woff -------------------------------------------------------------------------------- /Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Vector-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Vector-Regular.woff -------------------------------------------------------------------------------- /Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Zero.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/MPreview.bundle/js/output/chtml/fonts/woff-v2/MathJax_Zero.woff -------------------------------------------------------------------------------- /Resources/Screens/fsnotes-ios.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Screens/fsnotes-ios.jpg -------------------------------------------------------------------------------- /Resources/Screens/fsnotes-macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Screens/fsnotes-macos.png -------------------------------------------------------------------------------- /Resources/SourceCodePro-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/SourceCodePro-Black.ttf -------------------------------------------------------------------------------- /Resources/SourceCodePro-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/SourceCodePro-Bold.ttf -------------------------------------------------------------------------------- /Resources/SourceCodePro-BoldIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/SourceCodePro-BoldIt.ttf -------------------------------------------------------------------------------- /Resources/SourceCodePro-It.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/SourceCodePro-It.ttf -------------------------------------------------------------------------------- /Resources/SourceCodePro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/SourceCodePro-Regular.ttf -------------------------------------------------------------------------------- /Resources/Toolbar/bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/bold.png -------------------------------------------------------------------------------- /Resources/Toolbar/bold@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/bold@2x.png -------------------------------------------------------------------------------- /Resources/Toolbar/bold@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/bold@3x.png -------------------------------------------------------------------------------- /Resources/Toolbar/codeblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/codeblock.png -------------------------------------------------------------------------------- /Resources/Toolbar/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/header.png -------------------------------------------------------------------------------- /Resources/Toolbar/header@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/header@2x.png -------------------------------------------------------------------------------- /Resources/Toolbar/header@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/header@3x.png -------------------------------------------------------------------------------- /Resources/Toolbar/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/image.png -------------------------------------------------------------------------------- /Resources/Toolbar/image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/image@2x.png -------------------------------------------------------------------------------- /Resources/Toolbar/image@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/image@3x.png -------------------------------------------------------------------------------- /Resources/Toolbar/indent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/indent.png -------------------------------------------------------------------------------- /Resources/Toolbar/indent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/indent@2x.png -------------------------------------------------------------------------------- /Resources/Toolbar/indent@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/indent@3x.png -------------------------------------------------------------------------------- /Resources/Toolbar/italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/italic.png -------------------------------------------------------------------------------- /Resources/Toolbar/italic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/italic@2x.png -------------------------------------------------------------------------------- /Resources/Toolbar/italic@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/italic@3x.png -------------------------------------------------------------------------------- /Resources/Toolbar/quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/quote.png -------------------------------------------------------------------------------- /Resources/Toolbar/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/redo.png -------------------------------------------------------------------------------- /Resources/Toolbar/redo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/redo@2x.png -------------------------------------------------------------------------------- /Resources/Toolbar/redo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/redo@3x.png -------------------------------------------------------------------------------- /Resources/Toolbar/strike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/strike.png -------------------------------------------------------------------------------- /Resources/Toolbar/strike@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/strike@2x.png -------------------------------------------------------------------------------- /Resources/Toolbar/strike@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/strike@3x.png -------------------------------------------------------------------------------- /Resources/Toolbar/tag2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/tag2.png -------------------------------------------------------------------------------- /Resources/Toolbar/tag2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/tag2@2x.png -------------------------------------------------------------------------------- /Resources/Toolbar/tag2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/tag2@3x.png -------------------------------------------------------------------------------- /Resources/Toolbar/tb_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/tb_link.png -------------------------------------------------------------------------------- /Resources/Toolbar/todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/todo.png -------------------------------------------------------------------------------- /Resources/Toolbar/todo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/todo@2x.png -------------------------------------------------------------------------------- /Resources/Toolbar/todo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/todo@3x.png -------------------------------------------------------------------------------- /Resources/Toolbar/underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/underline.png -------------------------------------------------------------------------------- /Resources/Toolbar/underline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/underline@2x.png -------------------------------------------------------------------------------- /Resources/Toolbar/underline@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/underline@3x.png -------------------------------------------------------------------------------- /Resources/Toolbar/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/undo.png -------------------------------------------------------------------------------- /Resources/Toolbar/undo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/undo@2x.png -------------------------------------------------------------------------------- /Resources/Toolbar/undo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/undo@3x.png -------------------------------------------------------------------------------- /Resources/Toolbar/unindent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/unindent.png -------------------------------------------------------------------------------- /Resources/Toolbar/unindent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/unindent@2x.png -------------------------------------------------------------------------------- /Resources/Toolbar/unindent@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Toolbar/unindent@3x.png -------------------------------------------------------------------------------- /Resources/Welcome.bundle/1 Introduction.textbundle/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "transient" : true, 3 | "type" : "net.daringfireball.markdown", 4 | "creatorIdentifier" : "co.fluder.fsnotes", 5 | "version" : 2 6 | } -------------------------------------------------------------------------------- /Resources/Welcome.bundle/2 Links.textbundle/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "transient" : true, 3 | "type" : "net.daringfireball.markdown", 4 | "creatorIdentifier" : "co.fluder.fsnotes", 5 | "version" : 2 6 | } -------------------------------------------------------------------------------- /Resources/Welcome.bundle/2 Links.textbundle/text.markdown: -------------------------------------------------------------------------------- 1 | # 2. Links 2 | 3 | [[1. Introduction]] 4 | [[2. Links]] 5 | [[3. Shortcuts]] 6 | [[4. Sidebar]] 7 | [[5. Tags and subtags]] 8 | [[6. Mermaid and MathJax]] 9 | [[7. Git powered versioning]] 10 | [[8. Containers]] 11 | [[9. GFM Markdown]] 12 | 13 | Official site: https://fsnot.es 14 | Issues: https://github.com/glushchenko/fsnotes/issues 15 | Wiki: https://github.com/glushchenko/fsnotes/wiki 16 | Announces: https://twitter.com/fsnotesapp -------------------------------------------------------------------------------- /Resources/Welcome.bundle/3 Shortcuts.textbundle/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "transient" : true, 3 | "type" : "net.daringfireball.markdown", 4 | "creatorIdentifier" : "co.fluder.fsnotes", 5 | "version" : 2 6 | } -------------------------------------------------------------------------------- /Resources/Welcome.bundle/4 Sidebar.textbundle/assets/027dc83a-11b9-490a-b9d7-0e0701abfc9a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Welcome.bundle/4 Sidebar.textbundle/assets/027dc83a-11b9-490a-b9d7-0e0701abfc9a.jpg -------------------------------------------------------------------------------- /Resources/Welcome.bundle/4 Sidebar.textbundle/assets/f349160a-e8f6-488f-a35f-0a7883d3d07a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Welcome.bundle/4 Sidebar.textbundle/assets/f349160a-e8f6-488f-a35f-0a7883d3d07a.jpg -------------------------------------------------------------------------------- /Resources/Welcome.bundle/4 Sidebar.textbundle/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "transient" : true, 3 | "type" : "net.daringfireball.markdown", 4 | "creatorIdentifier" : "co.fluder.fsnotes", 5 | "version" : 2 6 | } -------------------------------------------------------------------------------- /Resources/Welcome.bundle/4 Sidebar.textbundle/text.markdown: -------------------------------------------------------------------------------- 1 | # 4. Sidebar 2 | 3 | To toggle projects and tags sidebar press `control + cmd + shift + b` 4 | 5 | You can select and filter unlimited projects and tags. 6 | 7 | ### Each subfolder is a project 8 | 9 | Make unlimited folders inside your storage. Right click on root folder (`Documents`) and click "New folder" `⌥ option + ⇧ shift + n`. 10 | 11 | Each project has its own settings, right click on the project - "Show view options" `cmd + shift + ,`. 12 | 13 | ![](assets/f349160a-e8f6-488f-a35f-0a7883d3d07a.jpg) 14 | 15 | You can configure sorting, direction, visibility settings. 16 | 17 | ![](assets/027dc83a-11b9-490a-b9d7-0e0701abfc9a.jpg) 18 | -------------------------------------------------------------------------------- /Resources/Welcome.bundle/5 Tags and subtags.textbundle/assets/520e395f-7924-4499-9587-6006a182c685.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Welcome.bundle/5 Tags and subtags.textbundle/assets/520e395f-7924-4499-9587-6006a182c685.jpg -------------------------------------------------------------------------------- /Resources/Welcome.bundle/5 Tags and subtags.textbundle/assets/586c35e6-ed29-47c5-a795-e4cae5c3a0bc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Welcome.bundle/5 Tags and subtags.textbundle/assets/586c35e6-ed29-47c5-a795-e4cae5c3a0bc.jpg -------------------------------------------------------------------------------- /Resources/Welcome.bundle/5 Tags and subtags.textbundle/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "transient" : true, 3 | "type" : "net.daringfireball.markdown", 4 | "creatorIdentifier" : "co.fluder.fsnotes", 5 | "version" : 2 6 | } -------------------------------------------------------------------------------- /Resources/Welcome.bundle/6 Mermaid and MathJax.textbundle/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "transient" : true, 3 | "type" : "net.daringfireball.markdown", 4 | "creatorIdentifier" : "co.fluder.fsnotes", 5 | "version" : 2 6 | } -------------------------------------------------------------------------------- /Resources/Welcome.bundle/7 Git powered versioning.textbundle/assets/3d1952d0-88bb-472f-9ba2-ca57fafec9c9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Welcome.bundle/7 Git powered versioning.textbundle/assets/3d1952d0-88bb-472f-9ba2-ca57fafec9c9.jpg -------------------------------------------------------------------------------- /Resources/Welcome.bundle/7 Git powered versioning.textbundle/assets/634eb755-960d-4d9f-be8b-bdaad5aa4f6c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Welcome.bundle/7 Git powered versioning.textbundle/assets/634eb755-960d-4d9f-be8b-bdaad5aa4f6c.jpg -------------------------------------------------------------------------------- /Resources/Welcome.bundle/7 Git powered versioning.textbundle/assets/e8a5ef3d-6a9a-44d6-b9ed-1fdc7d35117a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Welcome.bundle/7 Git powered versioning.textbundle/assets/e8a5ef3d-6a9a-44d6-b9ed-1fdc7d35117a.jpg -------------------------------------------------------------------------------- /Resources/Welcome.bundle/7 Git powered versioning.textbundle/assets/eedc77b8-dc1b-4924-856d-37c9247b4093.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Welcome.bundle/7 Git powered versioning.textbundle/assets/eedc77b8-dc1b-4924-856d-37c9247b4093.jpg -------------------------------------------------------------------------------- /Resources/Welcome.bundle/7 Git powered versioning.textbundle/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "transient" : true, 3 | "type" : "net.daringfireball.markdown", 4 | "creatorIdentifier" : "co.fluder.fsnotes", 5 | "version" : 2 6 | } -------------------------------------------------------------------------------- /Resources/Welcome.bundle/7 Git powered versioning.textbundle/text.markdown: -------------------------------------------------------------------------------- 1 | # 7. Git powered versioning 2 | 3 | Save note revisions with `cmd + s` shortcut: 4 | 5 | ![](assets/3d1952d0-88bb-472f-9ba2-ca57fafec9c9.jpg) 6 | 7 | And restore them: 8 | 9 | ![](assets/eedc77b8-dc1b-4924-856d-37c9247b4093.jpg) 10 | 11 | 12 | 13 | ## Backup all notes automatically 14 | 15 | Configure it in preferences: 16 | 17 | ![](assets/634eb755-960d-4d9f-be8b-bdaad5aa4f6c.jpg) 18 | 19 | For example, make a backup each hour. 20 | 21 | ## You can also backup backups 🤪 22 | 23 | Well, you cannot be too safe. 24 | 25 | ![](assets/e8a5ef3d-6a9a-44d6-b9ed-1fdc7d35117a.jpg) 26 | -------------------------------------------------------------------------------- /Resources/Welcome.bundle/8 Containers.textbundle/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "transient" : true, 3 | "type" : "net.daringfireball.markdown", 4 | "creatorIdentifier" : "co.fluder.fsnotes", 5 | "version" : 2 6 | } -------------------------------------------------------------------------------- /Resources/Welcome.bundle/9 GFM Markdown.textbundle/assets/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/Welcome.bundle/9 GFM Markdown.textbundle/assets/128.png -------------------------------------------------------------------------------- /Resources/Welcome.bundle/9 GFM Markdown.textbundle/info.json: -------------------------------------------------------------------------------- 1 | { 2 | "transient" : true, 3 | "type" : "net.daringfireball.markdown", 4 | "creatorIdentifier" : "co.fluder.fsnotes", 5 | "version" : 2 6 | } -------------------------------------------------------------------------------- /Resources/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/add.png -------------------------------------------------------------------------------- /Resources/archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/archive.png -------------------------------------------------------------------------------- /Resources/archive_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/archive_white.png -------------------------------------------------------------------------------- /Resources/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/back.png -------------------------------------------------------------------------------- /Resources/checkbox1012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/checkbox1012.png -------------------------------------------------------------------------------- /Resources/checkbox_empty1012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/checkbox_empty1012.png -------------------------------------------------------------------------------- /Resources/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/copy.png -------------------------------------------------------------------------------- /Resources/copy_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/copy_white.png -------------------------------------------------------------------------------- /Resources/done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/done.png -------------------------------------------------------------------------------- /Resources/done_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/done_white.png -------------------------------------------------------------------------------- /Resources/friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/friend.png -------------------------------------------------------------------------------- /Resources/iOS/app-icons/app-icon-dylanseeger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/app-icons/app-icon-dylanseeger.png -------------------------------------------------------------------------------- /Resources/iOS/app-icons/app-icon-dylanseegerDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/app-icons/app-icon-dylanseegerDark.png -------------------------------------------------------------------------------- /Resources/iOS/app-icons/app-icon-dylanseegerDarkFull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/app-icons/app-icon-dylanseegerDarkFull.png -------------------------------------------------------------------------------- /Resources/iOS/app-icons/app-icon-kmstrr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/app-icons/app-icon-kmstrr.png -------------------------------------------------------------------------------- /Resources/iOS/app-icons/dylanseeger@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/app-icons/dylanseeger@2x.png -------------------------------------------------------------------------------- /Resources/iOS/app-icons/dylanseeger@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/app-icons/dylanseeger@2x~ipad.png -------------------------------------------------------------------------------- /Resources/iOS/app-icons/dylanseeger@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/app-icons/dylanseeger@3x.png -------------------------------------------------------------------------------- /Resources/iOS/app-icons/dylanseeger@3x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/app-icons/dylanseeger@3x~ipad.png -------------------------------------------------------------------------------- /Resources/iOS/app-icons/dylanseegerDark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/app-icons/dylanseegerDark@2x.png -------------------------------------------------------------------------------- /Resources/iOS/app-icons/dylanseegerDark@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/app-icons/dylanseegerDark@2x~ipad.png -------------------------------------------------------------------------------- /Resources/iOS/app-icons/dylanseegerDark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/app-icons/dylanseegerDark@3x.png -------------------------------------------------------------------------------- /Resources/iOS/app-icons/dylanseegerDark@3x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/app-icons/dylanseegerDark@3x~ipad.png -------------------------------------------------------------------------------- /Resources/iOS/app-icons/dylanseegerDarkFull@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/app-icons/dylanseegerDarkFull@2x.png -------------------------------------------------------------------------------- /Resources/iOS/app-icons/dylanseegerDarkFull@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/app-icons/dylanseegerDarkFull@2x~ipad.png -------------------------------------------------------------------------------- /Resources/iOS/app-icons/dylanseegerDarkFull@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/app-icons/dylanseegerDarkFull@3x.png -------------------------------------------------------------------------------- /Resources/iOS/app-icons/dylanseegerDarkFull@3x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/app-icons/dylanseegerDarkFull@3x~ipad.png -------------------------------------------------------------------------------- /Resources/iOS/app-icons/kmstrr@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/app-icons/kmstrr@2x.png -------------------------------------------------------------------------------- /Resources/iOS/app-icons/kmstrr@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/app-icons/kmstrr@2x~ipad.png -------------------------------------------------------------------------------- /Resources/iOS/app-icons/kmstrr@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/app-icons/kmstrr@3x.png -------------------------------------------------------------------------------- /Resources/iOS/app-icons/kmstrr@3x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/app-icons/kmstrr@3x~ipad.png -------------------------------------------------------------------------------- /Resources/iOS/attach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/attach.png -------------------------------------------------------------------------------- /Resources/iOS/basket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/basket.png -------------------------------------------------------------------------------- /Resources/iOS/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/checkbox.png -------------------------------------------------------------------------------- /Resources/iOS/checkbox@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/checkbox@2x.png -------------------------------------------------------------------------------- /Resources/iOS/checkbox@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/checkbox@3x.png -------------------------------------------------------------------------------- /Resources/iOS/checkbox_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/checkbox_empty.png -------------------------------------------------------------------------------- /Resources/iOS/checkbox_empty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/checkbox_empty@2x.png -------------------------------------------------------------------------------- /Resources/iOS/checkbox_empty@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/checkbox_empty@3x.png -------------------------------------------------------------------------------- /Resources/iOS/checkbox_empty_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/checkbox_empty_white.png -------------------------------------------------------------------------------- /Resources/iOS/checkbox_empty_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/checkbox_empty_white@2x.png -------------------------------------------------------------------------------- /Resources/iOS/checkbox_empty_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/checkbox_empty_white@3x.png -------------------------------------------------------------------------------- /Resources/iOS/checkbox_flipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/checkbox_flipped.png -------------------------------------------------------------------------------- /Resources/iOS/checkbox_flipped@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/checkbox_flipped@2x.png -------------------------------------------------------------------------------- /Resources/iOS/checkbox_flipped@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/checkbox_flipped@3x.png -------------------------------------------------------------------------------- /Resources/iOS/checkbox_flipped_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/checkbox_flipped_white.png -------------------------------------------------------------------------------- /Resources/iOS/checkbox_flipped_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/checkbox_flipped_white@2x.png -------------------------------------------------------------------------------- /Resources/iOS/checkbox_flipped_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/checkbox_flipped_white@3x.png -------------------------------------------------------------------------------- /Resources/iOS/checkbox_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/checkbox_white.png -------------------------------------------------------------------------------- /Resources/iOS/checkbox_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/checkbox_white@2x.png -------------------------------------------------------------------------------- /Resources/iOS/checkbox_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/checkbox_white@3x.png -------------------------------------------------------------------------------- /Resources/iOS/close-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/close-window.png -------------------------------------------------------------------------------- /Resources/iOS/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/close.png -------------------------------------------------------------------------------- /Resources/iOS/edit_preview_controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/edit_preview_controller.png -------------------------------------------------------------------------------- /Resources/iOS/icon-ios-512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/icon-ios-512x512@2x.png -------------------------------------------------------------------------------- /Resources/iOS/inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/inbox.png -------------------------------------------------------------------------------- /Resources/iOS/inbox_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/inbox_white.png -------------------------------------------------------------------------------- /Resources/iOS/launchscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/launchscreen.png -------------------------------------------------------------------------------- /Resources/iOS/more_row_action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/more_row_action.png -------------------------------------------------------------------------------- /Resources/iOS/numbered_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/numbered_list.png -------------------------------------------------------------------------------- /Resources/iOS/ordered_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/ordered_list.png -------------------------------------------------------------------------------- /Resources/iOS/padlock-locked-ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/padlock-locked-ios.png -------------------------------------------------------------------------------- /Resources/iOS/padlock-unlocked-ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/padlock-unlocked-ios.png -------------------------------------------------------------------------------- /Resources/iOS/pin_row_action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/pin_row_action.png -------------------------------------------------------------------------------- /Resources/iOS/preview_editor_controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/preview_editor_controller.png -------------------------------------------------------------------------------- /Resources/iOS/wikilink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/iOS/wikilink.png -------------------------------------------------------------------------------- /Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/icon.png -------------------------------------------------------------------------------- /Resources/icon_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/icon_alt.png -------------------------------------------------------------------------------- /Resources/launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/launch.png -------------------------------------------------------------------------------- /Resources/lock-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/lock-closed.png -------------------------------------------------------------------------------- /Resources/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/lock-open.png -------------------------------------------------------------------------------- /Resources/locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/locked.png -------------------------------------------------------------------------------- /Resources/makeNote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/makeNote.png -------------------------------------------------------------------------------- /Resources/makeNote_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/makeNote_white.png -------------------------------------------------------------------------------- /Resources/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/more.png -------------------------------------------------------------------------------- /Resources/more_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/more_white.png -------------------------------------------------------------------------------- /Resources/new-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/new-note.png -------------------------------------------------------------------------------- /Resources/new_note_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/new_note_ui.png -------------------------------------------------------------------------------- /Resources/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/pin.png -------------------------------------------------------------------------------- /Resources/pin_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/pin_white.png -------------------------------------------------------------------------------- /Resources/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/preview.png -------------------------------------------------------------------------------- /Resources/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/search.png -------------------------------------------------------------------------------- /Resources/search_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/search_white.png -------------------------------------------------------------------------------- /Resources/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/settings.png -------------------------------------------------------------------------------- /Resources/settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/settings@2x.png -------------------------------------------------------------------------------- /Resources/settings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/settings@3x.png -------------------------------------------------------------------------------- /Resources/settings_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/settings_white.png -------------------------------------------------------------------------------- /Resources/settings_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/settings_white@2x.png -------------------------------------------------------------------------------- /Resources/settings_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/settings_white@3x.png -------------------------------------------------------------------------------- /Resources/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/share.png -------------------------------------------------------------------------------- /Resources/todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/todo.png -------------------------------------------------------------------------------- /Resources/todo_sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/todo_sidebar.png -------------------------------------------------------------------------------- /Resources/todo_sidebar_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/todo_sidebar_white.png -------------------------------------------------------------------------------- /Resources/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/trash.png -------------------------------------------------------------------------------- /Resources/trash_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/trash_white.png -------------------------------------------------------------------------------- /Resources/uncheckedbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/uncheckedbox.png -------------------------------------------------------------------------------- /Resources/uncheckedbox@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/Resources/uncheckedbox@2x.png -------------------------------------------------------------------------------- /code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glushchenko/fsnotes/c9990f2ba2aa78c6e1d5d10cfb42a487f9eac165/code.png --------------------------------------------------------------------------------