├── .gitignore ├── NotesOllama.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── swiftpm │ └── Package.resolved ├── NotesOllama ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── 1024-mac.png │ │ ├── 128-mac.png │ │ ├── 16-mac.png │ │ ├── 256-mac 1.png │ │ ├── 256-mac.png │ │ ├── 32-mac 1.png │ │ ├── 32-mac.png │ │ ├── 512-mac 1.png │ │ ├── 512-mac.png │ │ ├── 64-mac.png │ │ └── Contents.json │ ├── Contents.json │ └── icon.imageset │ │ ├── 128-mac.png │ │ ├── 256-mac.png │ │ ├── 512-mac.png │ │ └── Contents.json ├── Menu │ ├── AlertHandlingExtension.swift │ ├── LaunchAtLogin.swift │ ├── MenuView.swift │ ├── MenuViewModel.swift │ └── commands.swift ├── NotesOllama.entitlements ├── NotesWatcher.swift ├── Onboarding │ ├── AuthorizeView.swift │ └── WelcomeView.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── Services │ ├── OllamaService.swift │ └── PasteService.swift ├── commands.json ├── main.swift └── utils.swift ├── NotesOllamaTests └── NotesOllamaTests.swift ├── NotesOllamaUITests ├── NotesOllamaUITests.swift └── NotesOllamaUITestsLaunchTests.swift ├── README.md ├── notesollama-icon.png └── notesollama-logo.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/.gitignore -------------------------------------------------------------------------------- /NotesOllama.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NotesOllama.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /NotesOllama.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /NotesOllama.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /NotesOllama/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/AppDelegate.swift -------------------------------------------------------------------------------- /NotesOllama/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /NotesOllama/Assets.xcassets/AppIcon.appiconset/1024-mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/Assets.xcassets/AppIcon.appiconset/1024-mac.png -------------------------------------------------------------------------------- /NotesOllama/Assets.xcassets/AppIcon.appiconset/128-mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/Assets.xcassets/AppIcon.appiconset/128-mac.png -------------------------------------------------------------------------------- /NotesOllama/Assets.xcassets/AppIcon.appiconset/16-mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/Assets.xcassets/AppIcon.appiconset/16-mac.png -------------------------------------------------------------------------------- /NotesOllama/Assets.xcassets/AppIcon.appiconset/256-mac 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/Assets.xcassets/AppIcon.appiconset/256-mac 1.png -------------------------------------------------------------------------------- /NotesOllama/Assets.xcassets/AppIcon.appiconset/256-mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/Assets.xcassets/AppIcon.appiconset/256-mac.png -------------------------------------------------------------------------------- /NotesOllama/Assets.xcassets/AppIcon.appiconset/32-mac 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/Assets.xcassets/AppIcon.appiconset/32-mac 1.png -------------------------------------------------------------------------------- /NotesOllama/Assets.xcassets/AppIcon.appiconset/32-mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/Assets.xcassets/AppIcon.appiconset/32-mac.png -------------------------------------------------------------------------------- /NotesOllama/Assets.xcassets/AppIcon.appiconset/512-mac 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/Assets.xcassets/AppIcon.appiconset/512-mac 1.png -------------------------------------------------------------------------------- /NotesOllama/Assets.xcassets/AppIcon.appiconset/512-mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/Assets.xcassets/AppIcon.appiconset/512-mac.png -------------------------------------------------------------------------------- /NotesOllama/Assets.xcassets/AppIcon.appiconset/64-mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/Assets.xcassets/AppIcon.appiconset/64-mac.png -------------------------------------------------------------------------------- /NotesOllama/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /NotesOllama/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /NotesOllama/Assets.xcassets/icon.imageset/128-mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/Assets.xcassets/icon.imageset/128-mac.png -------------------------------------------------------------------------------- /NotesOllama/Assets.xcassets/icon.imageset/256-mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/Assets.xcassets/icon.imageset/256-mac.png -------------------------------------------------------------------------------- /NotesOllama/Assets.xcassets/icon.imageset/512-mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/Assets.xcassets/icon.imageset/512-mac.png -------------------------------------------------------------------------------- /NotesOllama/Assets.xcassets/icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/Assets.xcassets/icon.imageset/Contents.json -------------------------------------------------------------------------------- /NotesOllama/Menu/AlertHandlingExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/Menu/AlertHandlingExtension.swift -------------------------------------------------------------------------------- /NotesOllama/Menu/LaunchAtLogin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/Menu/LaunchAtLogin.swift -------------------------------------------------------------------------------- /NotesOllama/Menu/MenuView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/Menu/MenuView.swift -------------------------------------------------------------------------------- /NotesOllama/Menu/MenuViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/Menu/MenuViewModel.swift -------------------------------------------------------------------------------- /NotesOllama/Menu/commands.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/Menu/commands.swift -------------------------------------------------------------------------------- /NotesOllama/NotesOllama.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/NotesOllama.entitlements -------------------------------------------------------------------------------- /NotesOllama/NotesWatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/NotesWatcher.swift -------------------------------------------------------------------------------- /NotesOllama/Onboarding/AuthorizeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/Onboarding/AuthorizeView.swift -------------------------------------------------------------------------------- /NotesOllama/Onboarding/WelcomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/Onboarding/WelcomeView.swift -------------------------------------------------------------------------------- /NotesOllama/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /NotesOllama/Services/OllamaService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/Services/OllamaService.swift -------------------------------------------------------------------------------- /NotesOllama/Services/PasteService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/Services/PasteService.swift -------------------------------------------------------------------------------- /NotesOllama/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/commands.json -------------------------------------------------------------------------------- /NotesOllama/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/main.swift -------------------------------------------------------------------------------- /NotesOllama/utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllama/utils.swift -------------------------------------------------------------------------------- /NotesOllamaTests/NotesOllamaTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllamaTests/NotesOllamaTests.swift -------------------------------------------------------------------------------- /NotesOllamaUITests/NotesOllamaUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllamaUITests/NotesOllamaUITests.swift -------------------------------------------------------------------------------- /NotesOllamaUITests/NotesOllamaUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/NotesOllamaUITests/NotesOllamaUITestsLaunchTests.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/README.md -------------------------------------------------------------------------------- /notesollama-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/notesollama-icon.png -------------------------------------------------------------------------------- /notesollama-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersrex/notesollama/HEAD/notesollama-logo.png --------------------------------------------------------------------------------