├── .github └── workflows │ └── publish.yml ├── .gitignore ├── .vscode └── extensions.json ├── LICENSE ├── README.md ├── assets └── images │ ├── icon.svg │ ├── promo_screenshot_main.png │ └── usage_settings_screenshot_dark.png ├── bun.lock ├── components.json ├── i18n.json ├── i18n.lock ├── index.html ├── org.codequill.CodeQuill.yml ├── package.json ├── postcss.config.js ├── public ├── icon.svg └── locales │ ├── ar │ └── translation.json │ ├── de │ └── translation.json │ ├── en │ └── translation.json │ ├── es │ └── translation.json │ ├── fr │ └── translation.json │ ├── it │ └── translation.json │ ├── ja │ └── translation.json │ ├── ko │ └── translation.json │ ├── nl │ └── translation.json │ ├── pt │ └── translation.json │ ├── ru │ └── translation.json │ └── zh │ └── translation.json ├── release.md ├── snapcraft.yaml ├── src-tauri ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── build.rs ├── capabilities │ └── default.json ├── icons │ ├── 128x128.png │ ├── 128x128@2x.png │ ├── 32x32.png │ ├── 64x64.png │ ├── Square107x107Logo.png │ ├── Square142x142Logo.png │ ├── Square150x150Logo.png │ ├── Square284x284Logo.png │ ├── Square30x30Logo.png │ ├── Square310x310Logo.png │ ├── Square44x44Logo.png │ ├── Square71x71Logo.png │ ├── Square89x89Logo.png │ ├── StoreLogo.png │ ├── android │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ └── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ ├── icon.icns │ ├── icon.ico │ ├── icon.png │ └── ios │ │ ├── AppIcon-20x20@1x.png │ │ ├── AppIcon-20x20@2x-1.png │ │ ├── AppIcon-20x20@2x.png │ │ ├── AppIcon-20x20@3x.png │ │ ├── AppIcon-29x29@1x.png │ │ ├── AppIcon-29x29@2x-1.png │ │ ├── AppIcon-29x29@2x.png │ │ ├── AppIcon-29x29@3x.png │ │ ├── AppIcon-40x40@1x.png │ │ ├── AppIcon-40x40@2x-1.png │ │ ├── AppIcon-40x40@2x.png │ │ ├── AppIcon-40x40@3x.png │ │ ├── AppIcon-512@2x.png │ │ ├── AppIcon-60x60@2x.png │ │ ├── AppIcon-60x60@3x.png │ │ ├── AppIcon-76x76@1x.png │ │ ├── AppIcon-76x76@2x.png │ │ └── AppIcon-83.5x83.5@2x.png ├── src │ ├── lib.rs │ └── main.rs └── tauri.conf.json ├── src ├── @types │ └── lucide-react-icons.d.ts ├── App.tsx ├── AppContent.tsx ├── assets │ ├── previewLanguages.json │ └── supportedLanguages.json ├── components │ ├── cq │ │ └── kbd.tsx │ └── ui │ │ ├── accordion.tsx │ │ ├── alert-dialog.tsx │ │ ├── alert.tsx │ │ ├── aspect-ratio.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── breadcrumb.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── carousel.tsx │ │ ├── chart.tsx │ │ ├── checkbox.tsx │ │ ├── collapsible.tsx │ │ ├── command.tsx │ │ ├── context-menu.tsx │ │ ├── dialog.tsx │ │ ├── drawer.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── hover-card.tsx │ │ ├── input-otp.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── menubar.tsx │ │ ├── navigation-menu.tsx │ │ ├── pagination.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── radio-group.tsx │ │ ├── resizable.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── sidebar.tsx │ │ ├── skeleton.tsx │ │ ├── slider.tsx │ │ ├── sonner.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toggle-group.tsx │ │ ├── toggle.tsx │ │ └── tooltip.tsx ├── hooks │ └── use-mobile.ts ├── i18n.ts ├── index.css ├── lib │ └── utils.ts ├── main.tsx ├── routes │ ├── home │ │ ├── DeleteDialog.tsx │ │ ├── Editor.tsx │ │ ├── Header.tsx │ │ ├── LanguageSelector.tsx │ │ ├── SnippetInfoDialog.tsx │ │ ├── SnippetSearchDialog.tsx │ │ ├── SnippetSidebar.tsx │ │ ├── index.tsx │ │ ├── previews │ │ │ ├── html.tsx │ │ │ └── markdown.tsx │ │ ├── types.ts │ │ └── useSnippets.tsx │ └── settings │ │ ├── AppInfoSection.tsx │ │ ├── DependenciesSection.tsx │ │ ├── KeyboardShortcutsSection.tsx │ │ ├── LanguageSection.tsx │ │ ├── ProgrammingLanguageSection.tsx │ │ ├── ThemeSection.tsx │ │ └── index.tsx ├── utils │ ├── config.ts │ ├── database.ts │ └── db │ │ └── migrators.ts └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/README.md -------------------------------------------------------------------------------- /assets/images/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/assets/images/icon.svg -------------------------------------------------------------------------------- /assets/images/promo_screenshot_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/assets/images/promo_screenshot_main.png -------------------------------------------------------------------------------- /assets/images/usage_settings_screenshot_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/assets/images/usage_settings_screenshot_dark.png -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/bun.lock -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/components.json -------------------------------------------------------------------------------- /i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/i18n.json -------------------------------------------------------------------------------- /i18n.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/i18n.lock -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/index.html -------------------------------------------------------------------------------- /org.codequill.CodeQuill.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/org.codequill.CodeQuill.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/public/icon.svg -------------------------------------------------------------------------------- /public/locales/ar/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/public/locales/ar/translation.json -------------------------------------------------------------------------------- /public/locales/de/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/public/locales/de/translation.json -------------------------------------------------------------------------------- /public/locales/en/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/public/locales/en/translation.json -------------------------------------------------------------------------------- /public/locales/es/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/public/locales/es/translation.json -------------------------------------------------------------------------------- /public/locales/fr/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/public/locales/fr/translation.json -------------------------------------------------------------------------------- /public/locales/it/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/public/locales/it/translation.json -------------------------------------------------------------------------------- /public/locales/ja/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/public/locales/ja/translation.json -------------------------------------------------------------------------------- /public/locales/ko/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/public/locales/ko/translation.json -------------------------------------------------------------------------------- /public/locales/nl/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/public/locales/nl/translation.json -------------------------------------------------------------------------------- /public/locales/pt/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/public/locales/pt/translation.json -------------------------------------------------------------------------------- /public/locales/ru/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/public/locales/ru/translation.json -------------------------------------------------------------------------------- /public/locales/zh/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/public/locales/zh/translation.json -------------------------------------------------------------------------------- /release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/release.md -------------------------------------------------------------------------------- /snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/snapcraft.yaml -------------------------------------------------------------------------------- /src-tauri/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/.gitignore -------------------------------------------------------------------------------- /src-tauri/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/Cargo.lock -------------------------------------------------------------------------------- /src-tauri/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/Cargo.toml -------------------------------------------------------------------------------- /src-tauri/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/build.rs -------------------------------------------------------------------------------- /src-tauri/capabilities/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/capabilities/default.json -------------------------------------------------------------------------------- /src-tauri/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/128x128.png -------------------------------------------------------------------------------- /src-tauri/icons/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/128x128@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/32x32.png -------------------------------------------------------------------------------- /src-tauri/icons/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/64x64.png -------------------------------------------------------------------------------- /src-tauri/icons/Square107x107Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/Square107x107Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square142x142Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/Square142x142Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/Square150x150Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square284x284Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/Square284x284Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square30x30Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/Square30x30Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/Square310x310Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/Square44x44Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square71x71Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/Square71x71Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/Square89x89Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/Square89x89Logo.png -------------------------------------------------------------------------------- /src-tauri/icons/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/StoreLogo.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/android/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/android/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/android/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/android/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/android/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/android/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/android/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /src-tauri/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/icon.icns -------------------------------------------------------------------------------- /src-tauri/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/icon.ico -------------------------------------------------------------------------------- /src-tauri/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/icon.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/ios/AppIcon-20x20@1x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-20x20@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/ios/AppIcon-20x20@2x-1.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/ios/AppIcon-20x20@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/ios/AppIcon-20x20@3x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/ios/AppIcon-29x29@1x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-29x29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/ios/AppIcon-29x29@2x-1.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/ios/AppIcon-29x29@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/ios/AppIcon-29x29@3x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/ios/AppIcon-40x40@1x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-40x40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/ios/AppIcon-40x40@2x-1.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/ios/AppIcon-40x40@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/ios/AppIcon-40x40@3x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/ios/AppIcon-512@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/ios/AppIcon-60x60@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/ios/AppIcon-60x60@3x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/ios/AppIcon-76x76@1x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/ios/AppIcon-76x76@2x.png -------------------------------------------------------------------------------- /src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png -------------------------------------------------------------------------------- /src-tauri/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/src/lib.rs -------------------------------------------------------------------------------- /src-tauri/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/src/main.rs -------------------------------------------------------------------------------- /src-tauri/tauri.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src-tauri/tauri.conf.json -------------------------------------------------------------------------------- /src/@types/lucide-react-icons.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/@types/lucide-react-icons.d.ts -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/AppContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/AppContent.tsx -------------------------------------------------------------------------------- /src/assets/previewLanguages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/assets/previewLanguages.json -------------------------------------------------------------------------------- /src/assets/supportedLanguages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/assets/supportedLanguages.json -------------------------------------------------------------------------------- /src/components/cq/kbd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/cq/kbd.tsx -------------------------------------------------------------------------------- /src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /src/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/chart.tsx -------------------------------------------------------------------------------- /src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/command.tsx -------------------------------------------------------------------------------- /src/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /src/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/menubar.tsx -------------------------------------------------------------------------------- /src/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /src/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/resizable.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/hooks/use-mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/hooks/use-mobile.ts -------------------------------------------------------------------------------- /src/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/i18n.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/index.css -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/routes/home/DeleteDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/routes/home/DeleteDialog.tsx -------------------------------------------------------------------------------- /src/routes/home/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/routes/home/Editor.tsx -------------------------------------------------------------------------------- /src/routes/home/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/routes/home/Header.tsx -------------------------------------------------------------------------------- /src/routes/home/LanguageSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/routes/home/LanguageSelector.tsx -------------------------------------------------------------------------------- /src/routes/home/SnippetInfoDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/routes/home/SnippetInfoDialog.tsx -------------------------------------------------------------------------------- /src/routes/home/SnippetSearchDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/routes/home/SnippetSearchDialog.tsx -------------------------------------------------------------------------------- /src/routes/home/SnippetSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/routes/home/SnippetSidebar.tsx -------------------------------------------------------------------------------- /src/routes/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/routes/home/index.tsx -------------------------------------------------------------------------------- /src/routes/home/previews/html.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/routes/home/previews/html.tsx -------------------------------------------------------------------------------- /src/routes/home/previews/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/routes/home/previews/markdown.tsx -------------------------------------------------------------------------------- /src/routes/home/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/routes/home/types.ts -------------------------------------------------------------------------------- /src/routes/home/useSnippets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/routes/home/useSnippets.tsx -------------------------------------------------------------------------------- /src/routes/settings/AppInfoSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/routes/settings/AppInfoSection.tsx -------------------------------------------------------------------------------- /src/routes/settings/DependenciesSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/routes/settings/DependenciesSection.tsx -------------------------------------------------------------------------------- /src/routes/settings/KeyboardShortcutsSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/routes/settings/KeyboardShortcutsSection.tsx -------------------------------------------------------------------------------- /src/routes/settings/LanguageSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/routes/settings/LanguageSection.tsx -------------------------------------------------------------------------------- /src/routes/settings/ProgrammingLanguageSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/routes/settings/ProgrammingLanguageSection.tsx -------------------------------------------------------------------------------- /src/routes/settings/ThemeSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/routes/settings/ThemeSection.tsx -------------------------------------------------------------------------------- /src/routes/settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/routes/settings/index.tsx -------------------------------------------------------------------------------- /src/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/utils/config.ts -------------------------------------------------------------------------------- /src/utils/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/utils/database.ts -------------------------------------------------------------------------------- /src/utils/db/migrators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/src/utils/db/migrators.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Best-Codes/codequill/HEAD/vite.config.ts --------------------------------------------------------------------------------