├── .env.example ├── .github └── instructions │ └── commands.instructions.md ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── PRIVACY.md ├── README.md ├── Zettel.xcodeproj ├── project.pbxproj ├── project.pbxproj.backup ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── Zettel.xcscheme ├── Zettel ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ └── Contents.json ├── Constants │ ├── LayoutConstants.swift │ ├── StringConstants.swift │ └── ThemeConstants.swift ├── ContentView.swift ├── Extensions │ ├── CGFloat+Extensions.swift │ ├── Color+Extensions.swift │ └── String+Localization.swift ├── Info.plist ├── Intents │ └── CreateNewNoteIntent.swift ├── Localizable.strings ├── Models │ ├── Note.swift │ ├── Tag.swift │ └── TagParser.swift ├── Speech │ ├── DictationLocaleManager.swift │ └── NoteDictationController.swift ├── Stores │ ├── NoteStore.swift │ ├── TagStore.swift │ └── ThemeStore.swift ├── Utilities │ ├── DefaultTitleTemplateManager.swift │ └── LocalizationManager.swift ├── Views │ ├── DebugShortcutView.swift │ ├── LoadingStateView.swift │ ├── LocalizationTestView.swift │ ├── MainView.swift │ ├── Modifiers │ │ └── ScrollFadeModifier.swift │ ├── OverviewGrid.swift │ ├── SelectableTextField.swift │ ├── SettingsView.swift │ ├── SwipeNavigationView.swift │ ├── TagChipView.swift │ └── TaggableTextEditor.swift ├── Zettel.entitlements ├── ZettelApp.swift ├── de.lproj │ └── Localizable.strings ├── ja.lproj │ └── Localizable.strings └── zettel.icon │ ├── Assets │ └── zettel-icon-note-40.png │ └── icon.json ├── clean.sh ├── cloudperformance.md ├── codebase.md ├── conductor.json ├── configure.sh └── run.sh /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/.env.example -------------------------------------------------------------------------------- /.github/instructions/commands.instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/.github/instructions/commands.instructions.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/LICENSE -------------------------------------------------------------------------------- /PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/PRIVACY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/README.md -------------------------------------------------------------------------------- /Zettel.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Zettel.xcodeproj/project.pbxproj.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel.xcodeproj/project.pbxproj.backup -------------------------------------------------------------------------------- /Zettel.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Zettel.xcodeproj/xcshareddata/xcschemes/Zettel.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel.xcodeproj/xcshareddata/xcschemes/Zettel.xcscheme -------------------------------------------------------------------------------- /Zettel/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Zettel/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Zettel/Constants/LayoutConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Constants/LayoutConstants.swift -------------------------------------------------------------------------------- /Zettel/Constants/StringConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Constants/StringConstants.swift -------------------------------------------------------------------------------- /Zettel/Constants/ThemeConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Constants/ThemeConstants.swift -------------------------------------------------------------------------------- /Zettel/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/ContentView.swift -------------------------------------------------------------------------------- /Zettel/Extensions/CGFloat+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Extensions/CGFloat+Extensions.swift -------------------------------------------------------------------------------- /Zettel/Extensions/Color+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Extensions/Color+Extensions.swift -------------------------------------------------------------------------------- /Zettel/Extensions/String+Localization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Extensions/String+Localization.swift -------------------------------------------------------------------------------- /Zettel/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Info.plist -------------------------------------------------------------------------------- /Zettel/Intents/CreateNewNoteIntent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Intents/CreateNewNoteIntent.swift -------------------------------------------------------------------------------- /Zettel/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Localizable.strings -------------------------------------------------------------------------------- /Zettel/Models/Note.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Models/Note.swift -------------------------------------------------------------------------------- /Zettel/Models/Tag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Models/Tag.swift -------------------------------------------------------------------------------- /Zettel/Models/TagParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Models/TagParser.swift -------------------------------------------------------------------------------- /Zettel/Speech/DictationLocaleManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Speech/DictationLocaleManager.swift -------------------------------------------------------------------------------- /Zettel/Speech/NoteDictationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Speech/NoteDictationController.swift -------------------------------------------------------------------------------- /Zettel/Stores/NoteStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Stores/NoteStore.swift -------------------------------------------------------------------------------- /Zettel/Stores/TagStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Stores/TagStore.swift -------------------------------------------------------------------------------- /Zettel/Stores/ThemeStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Stores/ThemeStore.swift -------------------------------------------------------------------------------- /Zettel/Utilities/DefaultTitleTemplateManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Utilities/DefaultTitleTemplateManager.swift -------------------------------------------------------------------------------- /Zettel/Utilities/LocalizationManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Utilities/LocalizationManager.swift -------------------------------------------------------------------------------- /Zettel/Views/DebugShortcutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Views/DebugShortcutView.swift -------------------------------------------------------------------------------- /Zettel/Views/LoadingStateView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Views/LoadingStateView.swift -------------------------------------------------------------------------------- /Zettel/Views/LocalizationTestView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Views/LocalizationTestView.swift -------------------------------------------------------------------------------- /Zettel/Views/MainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Views/MainView.swift -------------------------------------------------------------------------------- /Zettel/Views/Modifiers/ScrollFadeModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Views/Modifiers/ScrollFadeModifier.swift -------------------------------------------------------------------------------- /Zettel/Views/OverviewGrid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Views/OverviewGrid.swift -------------------------------------------------------------------------------- /Zettel/Views/SelectableTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Views/SelectableTextField.swift -------------------------------------------------------------------------------- /Zettel/Views/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Views/SettingsView.swift -------------------------------------------------------------------------------- /Zettel/Views/SwipeNavigationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Views/SwipeNavigationView.swift -------------------------------------------------------------------------------- /Zettel/Views/TagChipView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Views/TagChipView.swift -------------------------------------------------------------------------------- /Zettel/Views/TaggableTextEditor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Views/TaggableTextEditor.swift -------------------------------------------------------------------------------- /Zettel/Zettel.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/Zettel.entitlements -------------------------------------------------------------------------------- /Zettel/ZettelApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/ZettelApp.swift -------------------------------------------------------------------------------- /Zettel/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /Zettel/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /Zettel/zettel.icon/Assets/zettel-icon-note-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/zettel.icon/Assets/zettel-icon-note-40.png -------------------------------------------------------------------------------- /Zettel/zettel.icon/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/Zettel/zettel.icon/icon.json -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/clean.sh -------------------------------------------------------------------------------- /cloudperformance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/cloudperformance.md -------------------------------------------------------------------------------- /codebase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/codebase.md -------------------------------------------------------------------------------- /conductor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/conductor.json -------------------------------------------------------------------------------- /configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/configure.sh -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexW00/Zettel/HEAD/run.sh --------------------------------------------------------------------------------