├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── .gitignore ├── README.md ├── app ├── bootstrap.js ├── chrome │ ├── content │ │ ├── icons │ │ │ ├── icon.png │ │ │ ├── icon64.png │ │ │ ├── loading01.gif │ │ │ ├── settings-original.png │ │ │ ├── settings.png │ │ │ └── zenotes-settings-big.png │ │ └── xhtml │ │ │ ├── annotationeditor.xhtml │ │ │ ├── browser.xhtml │ │ │ ├── notes.css │ │ │ ├── notes.xhtml │ │ │ └── preferences │ │ │ ├── parts │ │ │ ├── contextmenu-display.xhtml │ │ │ ├── custom-ai.xhtml │ │ │ ├── deepseek.xhtml │ │ │ ├── dropbox.xhtml │ │ │ ├── gemini.xhtml │ │ │ ├── openai.xhtml │ │ │ ├── table-display.xhtml │ │ │ ├── tesseract.xhtml │ │ │ └── translation.xhtml │ │ │ ├── prefs.css │ │ │ ├── prefs.js │ │ │ └── prefs.xhtml │ └── core │ │ ├── appbase.js │ │ ├── engine.css │ │ ├── engine.js │ │ └── migrate │ │ ├── aes.js │ │ ├── migrate.js │ │ └── version01.js ├── locale │ ├── en-GB │ │ └── zenotes.ftl │ └── en-US │ │ └── zenotes.ftl ├── manifest.json ├── prefs.js └── style.css ├── commands ├── analyze.mjs ├── build.mjs ├── dev.mjs ├── esbuild.inject.js ├── postbuild.mjs ├── settings.mjs └── test.mjs ├── docs ├── .gitignore ├── 404.html ├── _config.yml ├── images │ ├── screenshot-main-01.png │ ├── screenshot-main-02.png │ ├── settings-contextmenu-display.png │ ├── settings-custom-ai-01.png │ ├── settings-custom-ai-02.png │ ├── settings-custom-ai-03.png │ ├── settings-custom-ai.png │ ├── settings-deepseek.png │ ├── settings-gemini.png │ ├── settings-main-01.png │ ├── settings-openai.png │ ├── settings-table-display.png │ └── settings-tesseract.png └── index.md ├── package.json ├── src ├── Components │ ├── AnnotationCommentElement.tsx │ ├── AnnotationElement.tsx │ ├── AnnotationQuoteElement.tsx │ ├── Cell.tsx │ ├── Color.ts │ ├── ColumnResizer.tsx │ ├── ContextMenu │ │ ├── Menu.module.css │ │ ├── Menu.tsx │ │ ├── MenuItem.tsx │ │ ├── ReaderMenu.ts │ │ └── SubMenu.tsx │ ├── DataContext.ts │ ├── Dialog │ │ ├── AnnotationCommentEditor.tsx │ │ ├── ColumnSortContents.tsx │ │ ├── DataSettingDialog.tsx │ │ ├── Dialog.module.css │ │ ├── Dialog.tsx │ │ ├── DropboxDownloadDialog.tsx │ │ ├── DropboxUploadDialog.tsx │ │ ├── ExportSettingDialog.tsx │ │ ├── Form.tsx │ │ ├── TableSortContents.tsx │ │ └── TranslationElement.tsx │ ├── EventEmitter.ts │ ├── FileElement.tsx │ ├── FindBar.module.css │ ├── FindBar.tsx │ ├── Loading.tsx │ ├── MenuItems │ │ ├── AnnotationCommentMenu.ts │ │ ├── AnnotationImageMenu.ts │ │ ├── AnnotationQuoteMenu.ts │ │ ├── CellMenu.ts │ │ ├── CustomAiMenu.ts │ │ ├── HeaderMenu.ts │ │ ├── Icons.ts │ │ ├── MainMenu.ts │ │ ├── MenuUtils.ts │ │ ├── NoteImageMenu.ts │ │ ├── NoteTextMenu.ts │ │ └── index.ts │ ├── NativeFieldElement.tsx │ ├── NoteElement.tsx │ ├── Notes.tsx │ ├── Shortcuts.tsx │ ├── Table.module.css │ ├── Table.tsx │ ├── Tabs │ │ ├── TabContent.tsx │ │ ├── Tabs.module.css │ │ └── Tabs.tsx │ └── index.ts ├── Config.ts ├── Core │ ├── Actions │ │ ├── DataSettings.ts │ │ ├── TableSettings.ts │ │ └── index.ts │ ├── Ai │ │ ├── AiNotes.ts │ │ ├── Base.ts │ │ ├── CustomAI.ts │ │ ├── DeepSeek.ts │ │ ├── Gemini.ts │ │ ├── OpenAI.ts │ │ └── index.ts │ ├── Cloud │ │ ├── Dropbox.ts │ │ └── index.ts │ ├── Crypto.ts │ ├── Data.ts │ ├── Database.ts │ ├── Exporter │ │ ├── DataExporter.ts │ │ ├── Docx.ts │ │ ├── FileExporter.ts │ │ ├── Html.ts │ │ ├── Html2Docx.ts │ │ ├── Markdown.ts │ │ ├── PromptFormat.ts │ │ ├── Xls.ts │ │ ├── Xlsx.ts │ │ └── index.ts │ ├── Format.ts │ ├── Garbage.ts │ ├── Importer.ts │ ├── Migrator │ │ ├── One.ts │ │ ├── index.ts │ │ └── values.json │ ├── Ocr │ │ ├── Tesseract.ts │ │ └── index.ts │ ├── Page.ts │ ├── Prefs.ts │ ├── Request.ts │ ├── Server.ts │ ├── TablePrefs.ts │ ├── Translation │ │ ├── DeepL.ts │ │ ├── Format.ts │ │ ├── Google.ts │ │ ├── Languages.ts │ │ ├── Translator.ts │ │ └── index.ts │ ├── Utils.ts │ ├── ZPrefs.ts │ └── index.ts ├── Types │ └── zty.d.ts ├── Ui │ ├── ContextMenu.ts │ ├── MainMenu.ts │ ├── ToolBarMenu.ts │ └── index.ts ├── declarations.d.ts ├── globals.d.ts ├── globals.ts └── index.ts ├── tsconfig.json └── zenotes-update.json /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/README.md -------------------------------------------------------------------------------- /app/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/bootstrap.js -------------------------------------------------------------------------------- /app/chrome/content/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/chrome/content/icons/icon.png -------------------------------------------------------------------------------- /app/chrome/content/icons/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/chrome/content/icons/icon64.png -------------------------------------------------------------------------------- /app/chrome/content/icons/loading01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/chrome/content/icons/loading01.gif -------------------------------------------------------------------------------- /app/chrome/content/icons/settings-original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/chrome/content/icons/settings-original.png -------------------------------------------------------------------------------- /app/chrome/content/icons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/chrome/content/icons/settings.png -------------------------------------------------------------------------------- /app/chrome/content/icons/zenotes-settings-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/chrome/content/icons/zenotes-settings-big.png -------------------------------------------------------------------------------- /app/chrome/content/xhtml/annotationeditor.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/chrome/content/xhtml/annotationeditor.xhtml -------------------------------------------------------------------------------- /app/chrome/content/xhtml/browser.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/chrome/content/xhtml/browser.xhtml -------------------------------------------------------------------------------- /app/chrome/content/xhtml/notes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/chrome/content/xhtml/notes.css -------------------------------------------------------------------------------- /app/chrome/content/xhtml/notes.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/chrome/content/xhtml/notes.xhtml -------------------------------------------------------------------------------- /app/chrome/content/xhtml/preferences/parts/contextmenu-display.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/chrome/content/xhtml/preferences/parts/contextmenu-display.xhtml -------------------------------------------------------------------------------- /app/chrome/content/xhtml/preferences/parts/custom-ai.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/chrome/content/xhtml/preferences/parts/custom-ai.xhtml -------------------------------------------------------------------------------- /app/chrome/content/xhtml/preferences/parts/deepseek.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/chrome/content/xhtml/preferences/parts/deepseek.xhtml -------------------------------------------------------------------------------- /app/chrome/content/xhtml/preferences/parts/dropbox.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/chrome/content/xhtml/preferences/parts/dropbox.xhtml -------------------------------------------------------------------------------- /app/chrome/content/xhtml/preferences/parts/gemini.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/chrome/content/xhtml/preferences/parts/gemini.xhtml -------------------------------------------------------------------------------- /app/chrome/content/xhtml/preferences/parts/openai.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/chrome/content/xhtml/preferences/parts/openai.xhtml -------------------------------------------------------------------------------- /app/chrome/content/xhtml/preferences/parts/table-display.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/chrome/content/xhtml/preferences/parts/table-display.xhtml -------------------------------------------------------------------------------- /app/chrome/content/xhtml/preferences/parts/tesseract.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/chrome/content/xhtml/preferences/parts/tesseract.xhtml -------------------------------------------------------------------------------- /app/chrome/content/xhtml/preferences/parts/translation.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/chrome/content/xhtml/preferences/parts/translation.xhtml -------------------------------------------------------------------------------- /app/chrome/content/xhtml/preferences/prefs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/chrome/content/xhtml/preferences/prefs.css -------------------------------------------------------------------------------- /app/chrome/content/xhtml/preferences/prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/chrome/content/xhtml/preferences/prefs.js -------------------------------------------------------------------------------- /app/chrome/content/xhtml/preferences/prefs.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/chrome/content/xhtml/preferences/prefs.xhtml -------------------------------------------------------------------------------- /app/chrome/core/appbase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/chrome/core/appbase.js -------------------------------------------------------------------------------- /app/chrome/core/engine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/chrome/core/engine.css -------------------------------------------------------------------------------- /app/chrome/core/engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/chrome/core/engine.js -------------------------------------------------------------------------------- /app/chrome/core/migrate/aes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/chrome/core/migrate/aes.js -------------------------------------------------------------------------------- /app/chrome/core/migrate/migrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/chrome/core/migrate/migrate.js -------------------------------------------------------------------------------- /app/chrome/core/migrate/version01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/chrome/core/migrate/version01.js -------------------------------------------------------------------------------- /app/locale/en-GB/zenotes.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/locale/en-GB/zenotes.ftl -------------------------------------------------------------------------------- /app/locale/en-US/zenotes.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/locale/en-US/zenotes.ftl -------------------------------------------------------------------------------- /app/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/manifest.json -------------------------------------------------------------------------------- /app/prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/app/prefs.js -------------------------------------------------------------------------------- /app/style.css: -------------------------------------------------------------------------------- 1 | [aria-label*="[Ai column notes]"] { 2 | color: #e63946; 3 | } 4 | -------------------------------------------------------------------------------- /commands/analyze.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/commands/analyze.mjs -------------------------------------------------------------------------------- /commands/build.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/commands/build.mjs -------------------------------------------------------------------------------- /commands/dev.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/commands/dev.mjs -------------------------------------------------------------------------------- /commands/esbuild.inject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/commands/esbuild.inject.js -------------------------------------------------------------------------------- /commands/postbuild.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/commands/postbuild.mjs -------------------------------------------------------------------------------- /commands/settings.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/commands/settings.mjs -------------------------------------------------------------------------------- /commands/test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/commands/test.mjs -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/images/screenshot-main-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/docs/images/screenshot-main-01.png -------------------------------------------------------------------------------- /docs/images/screenshot-main-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/docs/images/screenshot-main-02.png -------------------------------------------------------------------------------- /docs/images/settings-contextmenu-display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/docs/images/settings-contextmenu-display.png -------------------------------------------------------------------------------- /docs/images/settings-custom-ai-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/docs/images/settings-custom-ai-01.png -------------------------------------------------------------------------------- /docs/images/settings-custom-ai-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/docs/images/settings-custom-ai-02.png -------------------------------------------------------------------------------- /docs/images/settings-custom-ai-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/docs/images/settings-custom-ai-03.png -------------------------------------------------------------------------------- /docs/images/settings-custom-ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/docs/images/settings-custom-ai.png -------------------------------------------------------------------------------- /docs/images/settings-deepseek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/docs/images/settings-deepseek.png -------------------------------------------------------------------------------- /docs/images/settings-gemini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/docs/images/settings-gemini.png -------------------------------------------------------------------------------- /docs/images/settings-main-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/docs/images/settings-main-01.png -------------------------------------------------------------------------------- /docs/images/settings-openai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/docs/images/settings-openai.png -------------------------------------------------------------------------------- /docs/images/settings-table-display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/docs/images/settings-table-display.png -------------------------------------------------------------------------------- /docs/images/settings-tesseract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/docs/images/settings-tesseract.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/docs/index.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/package.json -------------------------------------------------------------------------------- /src/Components/AnnotationCommentElement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/AnnotationCommentElement.tsx -------------------------------------------------------------------------------- /src/Components/AnnotationElement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/AnnotationElement.tsx -------------------------------------------------------------------------------- /src/Components/AnnotationQuoteElement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/AnnotationQuoteElement.tsx -------------------------------------------------------------------------------- /src/Components/Cell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/Cell.tsx -------------------------------------------------------------------------------- /src/Components/Color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/Color.ts -------------------------------------------------------------------------------- /src/Components/ColumnResizer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/ColumnResizer.tsx -------------------------------------------------------------------------------- /src/Components/ContextMenu/Menu.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/ContextMenu/Menu.module.css -------------------------------------------------------------------------------- /src/Components/ContextMenu/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/ContextMenu/Menu.tsx -------------------------------------------------------------------------------- /src/Components/ContextMenu/MenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/ContextMenu/MenuItem.tsx -------------------------------------------------------------------------------- /src/Components/ContextMenu/ReaderMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/ContextMenu/ReaderMenu.ts -------------------------------------------------------------------------------- /src/Components/ContextMenu/SubMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/ContextMenu/SubMenu.tsx -------------------------------------------------------------------------------- /src/Components/DataContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/DataContext.ts -------------------------------------------------------------------------------- /src/Components/Dialog/AnnotationCommentEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/Dialog/AnnotationCommentEditor.tsx -------------------------------------------------------------------------------- /src/Components/Dialog/ColumnSortContents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/Dialog/ColumnSortContents.tsx -------------------------------------------------------------------------------- /src/Components/Dialog/DataSettingDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/Dialog/DataSettingDialog.tsx -------------------------------------------------------------------------------- /src/Components/Dialog/Dialog.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/Dialog/Dialog.module.css -------------------------------------------------------------------------------- /src/Components/Dialog/Dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/Dialog/Dialog.tsx -------------------------------------------------------------------------------- /src/Components/Dialog/DropboxDownloadDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/Dialog/DropboxDownloadDialog.tsx -------------------------------------------------------------------------------- /src/Components/Dialog/DropboxUploadDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/Dialog/DropboxUploadDialog.tsx -------------------------------------------------------------------------------- /src/Components/Dialog/ExportSettingDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/Dialog/ExportSettingDialog.tsx -------------------------------------------------------------------------------- /src/Components/Dialog/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/Dialog/Form.tsx -------------------------------------------------------------------------------- /src/Components/Dialog/TableSortContents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/Dialog/TableSortContents.tsx -------------------------------------------------------------------------------- /src/Components/Dialog/TranslationElement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/Dialog/TranslationElement.tsx -------------------------------------------------------------------------------- /src/Components/EventEmitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/EventEmitter.ts -------------------------------------------------------------------------------- /src/Components/FileElement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/FileElement.tsx -------------------------------------------------------------------------------- /src/Components/FindBar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/FindBar.module.css -------------------------------------------------------------------------------- /src/Components/FindBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/FindBar.tsx -------------------------------------------------------------------------------- /src/Components/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/Loading.tsx -------------------------------------------------------------------------------- /src/Components/MenuItems/AnnotationCommentMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/MenuItems/AnnotationCommentMenu.ts -------------------------------------------------------------------------------- /src/Components/MenuItems/AnnotationImageMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/MenuItems/AnnotationImageMenu.ts -------------------------------------------------------------------------------- /src/Components/MenuItems/AnnotationQuoteMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/MenuItems/AnnotationQuoteMenu.ts -------------------------------------------------------------------------------- /src/Components/MenuItems/CellMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/MenuItems/CellMenu.ts -------------------------------------------------------------------------------- /src/Components/MenuItems/CustomAiMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/MenuItems/CustomAiMenu.ts -------------------------------------------------------------------------------- /src/Components/MenuItems/HeaderMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/MenuItems/HeaderMenu.ts -------------------------------------------------------------------------------- /src/Components/MenuItems/Icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/MenuItems/Icons.ts -------------------------------------------------------------------------------- /src/Components/MenuItems/MainMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/MenuItems/MainMenu.ts -------------------------------------------------------------------------------- /src/Components/MenuItems/MenuUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/MenuItems/MenuUtils.ts -------------------------------------------------------------------------------- /src/Components/MenuItems/NoteImageMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/MenuItems/NoteImageMenu.ts -------------------------------------------------------------------------------- /src/Components/MenuItems/NoteTextMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/MenuItems/NoteTextMenu.ts -------------------------------------------------------------------------------- /src/Components/MenuItems/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/MenuItems/index.ts -------------------------------------------------------------------------------- /src/Components/NativeFieldElement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/NativeFieldElement.tsx -------------------------------------------------------------------------------- /src/Components/NoteElement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/NoteElement.tsx -------------------------------------------------------------------------------- /src/Components/Notes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/Notes.tsx -------------------------------------------------------------------------------- /src/Components/Shortcuts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/Shortcuts.tsx -------------------------------------------------------------------------------- /src/Components/Table.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/Table.module.css -------------------------------------------------------------------------------- /src/Components/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/Table.tsx -------------------------------------------------------------------------------- /src/Components/Tabs/TabContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/Tabs/TabContent.tsx -------------------------------------------------------------------------------- /src/Components/Tabs/Tabs.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/Tabs/Tabs.module.css -------------------------------------------------------------------------------- /src/Components/Tabs/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/Tabs/Tabs.tsx -------------------------------------------------------------------------------- /src/Components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Components/index.ts -------------------------------------------------------------------------------- /src/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Config.ts -------------------------------------------------------------------------------- /src/Core/Actions/DataSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Actions/DataSettings.ts -------------------------------------------------------------------------------- /src/Core/Actions/TableSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Actions/TableSettings.ts -------------------------------------------------------------------------------- /src/Core/Actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Actions/index.ts -------------------------------------------------------------------------------- /src/Core/Ai/AiNotes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Ai/AiNotes.ts -------------------------------------------------------------------------------- /src/Core/Ai/Base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Ai/Base.ts -------------------------------------------------------------------------------- /src/Core/Ai/CustomAI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Ai/CustomAI.ts -------------------------------------------------------------------------------- /src/Core/Ai/DeepSeek.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Ai/DeepSeek.ts -------------------------------------------------------------------------------- /src/Core/Ai/Gemini.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Ai/Gemini.ts -------------------------------------------------------------------------------- /src/Core/Ai/OpenAI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Ai/OpenAI.ts -------------------------------------------------------------------------------- /src/Core/Ai/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Ai/index.ts -------------------------------------------------------------------------------- /src/Core/Cloud/Dropbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Cloud/Dropbox.ts -------------------------------------------------------------------------------- /src/Core/Cloud/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Cloud/index.ts -------------------------------------------------------------------------------- /src/Core/Crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Crypto.ts -------------------------------------------------------------------------------- /src/Core/Data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Data.ts -------------------------------------------------------------------------------- /src/Core/Database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Database.ts -------------------------------------------------------------------------------- /src/Core/Exporter/DataExporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Exporter/DataExporter.ts -------------------------------------------------------------------------------- /src/Core/Exporter/Docx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Exporter/Docx.ts -------------------------------------------------------------------------------- /src/Core/Exporter/FileExporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Exporter/FileExporter.ts -------------------------------------------------------------------------------- /src/Core/Exporter/Html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Exporter/Html.ts -------------------------------------------------------------------------------- /src/Core/Exporter/Html2Docx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Exporter/Html2Docx.ts -------------------------------------------------------------------------------- /src/Core/Exporter/Markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Exporter/Markdown.ts -------------------------------------------------------------------------------- /src/Core/Exporter/PromptFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Exporter/PromptFormat.ts -------------------------------------------------------------------------------- /src/Core/Exporter/Xls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Exporter/Xls.ts -------------------------------------------------------------------------------- /src/Core/Exporter/Xlsx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Exporter/Xlsx.ts -------------------------------------------------------------------------------- /src/Core/Exporter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Exporter/index.ts -------------------------------------------------------------------------------- /src/Core/Format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Format.ts -------------------------------------------------------------------------------- /src/Core/Garbage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Garbage.ts -------------------------------------------------------------------------------- /src/Core/Importer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Importer.ts -------------------------------------------------------------------------------- /src/Core/Migrator/One.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Migrator/One.ts -------------------------------------------------------------------------------- /src/Core/Migrator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Migrator/index.ts -------------------------------------------------------------------------------- /src/Core/Migrator/values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Migrator/values.json -------------------------------------------------------------------------------- /src/Core/Ocr/Tesseract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Ocr/Tesseract.ts -------------------------------------------------------------------------------- /src/Core/Ocr/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Ocr/index.ts -------------------------------------------------------------------------------- /src/Core/Page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Page.ts -------------------------------------------------------------------------------- /src/Core/Prefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Prefs.ts -------------------------------------------------------------------------------- /src/Core/Request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Request.ts -------------------------------------------------------------------------------- /src/Core/Server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Server.ts -------------------------------------------------------------------------------- /src/Core/TablePrefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/TablePrefs.ts -------------------------------------------------------------------------------- /src/Core/Translation/DeepL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Translation/DeepL.ts -------------------------------------------------------------------------------- /src/Core/Translation/Format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Translation/Format.ts -------------------------------------------------------------------------------- /src/Core/Translation/Google.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Translation/Google.ts -------------------------------------------------------------------------------- /src/Core/Translation/Languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Translation/Languages.ts -------------------------------------------------------------------------------- /src/Core/Translation/Translator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Translation/Translator.ts -------------------------------------------------------------------------------- /src/Core/Translation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Translation/index.ts -------------------------------------------------------------------------------- /src/Core/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/Utils.ts -------------------------------------------------------------------------------- /src/Core/ZPrefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/ZPrefs.ts -------------------------------------------------------------------------------- /src/Core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Core/index.ts -------------------------------------------------------------------------------- /src/Types/zty.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Types/zty.d.ts -------------------------------------------------------------------------------- /src/Ui/ContextMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Ui/ContextMenu.ts -------------------------------------------------------------------------------- /src/Ui/MainMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Ui/MainMenu.ts -------------------------------------------------------------------------------- /src/Ui/ToolBarMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Ui/ToolBarMenu.ts -------------------------------------------------------------------------------- /src/Ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/Ui/index.ts -------------------------------------------------------------------------------- /src/declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/declarations.d.ts -------------------------------------------------------------------------------- /src/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/globals.d.ts -------------------------------------------------------------------------------- /src/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/globals.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/tsconfig.json -------------------------------------------------------------------------------- /zenotes-update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frianasoa/Ze-Notes/HEAD/zenotes-update.json --------------------------------------------------------------------------------