├── .commitlintrc.js ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── actions │ └── setup-node-with-cache │ │ └── action.yml └── workflows │ ├── android.e2e.yml │ ├── android.publish.internal.yml │ ├── android.publish.yml │ ├── core.tests.yml │ ├── desktop.publish.yml │ ├── desktop.tests.yml │ ├── editor.tests.yml │ ├── help.publish.yml │ ├── ios.publish.yml │ ├── monograph.publish.yml │ ├── nscurl.test.yml │ ├── theme-builder.publish.yml │ ├── vericrypt.publish.yml │ ├── web.benchmarks.yml │ ├── web.publish.yml │ └── web.tests.yml ├── .gitignore ├── .husky └── commit-msg ├── .prettierignore ├── .prettierrc.js ├── .vscode ├── extensions.json └── settings.json ├── .watchmanconfig ├── AUTHORS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── apps ├── desktop │ ├── .gitignore │ ├── README.md │ ├── __tests__ │ │ ├── auto-updates.test.ts │ │ ├── global-setup.ts │ │ ├── launch.test.ts │ │ ├── test-override.ts │ │ └── utils.ts │ ├── app-update.yml │ ├── assets │ │ ├── entitlements.mac.plist │ │ ├── entitlements.mas.inherit.plist │ │ ├── entitlements.mas.loginhelper.plist │ │ ├── entitlements.mas.plist │ │ └── icons │ │ │ ├── 1024x1024.png │ │ │ ├── 128x128.png │ │ │ ├── 16x16.png │ │ │ ├── 24x24.png │ │ │ ├── 256x256.png │ │ │ ├── 32x32.png │ │ │ ├── 48x48.png │ │ │ ├── 512x512.png │ │ │ ├── 64x64.png │ │ │ ├── app.icns │ │ │ ├── app.ico │ │ │ ├── note-add.dark.ico │ │ │ ├── note-add.ico │ │ │ ├── notebook-add.dark.ico │ │ │ ├── notebook-add.ico │ │ │ ├── quit.dark.ico │ │ │ ├── quit.ico │ │ │ ├── reminder-add.dark.ico │ │ │ ├── reminder-add.ico │ │ │ ├── tray-icon.dark.ico │ │ │ └── tray-icon.ico │ ├── dev-app-update.yml │ ├── electron-builder.config.js │ ├── global.d.ts │ ├── package-lock.json │ ├── package.json │ ├── patches │ │ ├── app-builder-lib+26.0.12.patch │ │ └── better-sqlite3-multiple-ciphers+11.10.0.patch │ ├── scripts │ │ ├── build.mjs │ │ ├── dev.mjs │ │ ├── patch-better-sqlite3.mjs │ │ ├── removeLocales.js │ │ └── sign.js │ ├── src │ │ ├── api │ │ │ ├── bridge.ts │ │ │ ├── compression.ts │ │ │ ├── index.ts │ │ │ ├── os-integration.ts │ │ │ ├── safe-storage.ts │ │ │ ├── spell-checker.ts │ │ │ ├── sqlite-kysely.ts │ │ │ ├── updater.ts │ │ │ └── window.ts │ │ ├── cli.ts │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── main.ts │ │ ├── overrides.ts │ │ ├── preload.ts │ │ └── utils │ │ │ ├── asset-manager.ts │ │ │ ├── autolaunch.ts │ │ │ ├── autoupdater.ts │ │ │ ├── bring-to-front.ts │ │ │ ├── config.ts │ │ │ ├── custom-dns.ts │ │ │ ├── desktop-integration.ts │ │ │ ├── index.ts │ │ │ ├── json-storage.ts │ │ │ ├── jumplist.ts │ │ │ ├── menu.ts │ │ │ ├── protocol.ts │ │ │ ├── resolve-path.ts │ │ │ ├── theme.ts │ │ │ ├── tray.ts │ │ │ └── window-state.ts │ ├── tsconfig.json │ └── vitest.config.ts ├── mobile │ ├── .bundle │ │ └── config │ ├── .github │ │ └── workflows │ │ │ ├── android-public-release.yml │ │ │ └── android-release.yml │ ├── .gitignore │ ├── .vscode │ │ └── launch.json │ ├── README.md │ ├── __tests__ │ │ └── App-test.js │ ├── app │ │ ├── app.tsx │ │ ├── assets │ │ │ └── images │ │ │ │ ├── assets.js │ │ │ │ ├── notesnook-dark.png │ │ │ │ └── notesnook.png │ │ ├── common │ │ │ ├── database │ │ │ │ ├── encryption.ts │ │ │ │ ├── index.ts │ │ │ │ ├── logger.ts │ │ │ │ ├── mmkv.ts │ │ │ │ ├── sqlite.kysely.ts │ │ │ │ └── storage.ts │ │ │ ├── filesystem │ │ │ │ ├── compress.js │ │ │ │ ├── download-attachment.tsx │ │ │ │ ├── download.ts │ │ │ │ ├── index.ts │ │ │ │ ├── io.ts │ │ │ │ ├── upload.ts │ │ │ │ └── utils.ts │ │ │ └── logger │ │ │ │ └── index.ts │ │ ├── components │ │ │ ├── announcements │ │ │ │ ├── announcement.js │ │ │ │ ├── body.js │ │ │ │ ├── cta.js │ │ │ │ ├── description.js │ │ │ │ ├── functions.js │ │ │ │ ├── index.js │ │ │ │ ├── list.js │ │ │ │ ├── photo.js │ │ │ │ ├── subheading.js │ │ │ │ └── title.js │ │ │ ├── app-lock │ │ │ │ └── index.tsx │ │ │ ├── attachments │ │ │ │ ├── actions.tsx │ │ │ │ ├── attachment-item.tsx │ │ │ │ └── index.tsx │ │ │ ├── auth │ │ │ │ ├── auth-modal.js │ │ │ │ ├── background.js │ │ │ │ ├── change-password.js │ │ │ │ ├── common.js │ │ │ │ ├── forgot-password.js │ │ │ │ ├── header.tsx │ │ │ │ ├── index.js │ │ │ │ ├── login.js │ │ │ │ ├── session-expired.js │ │ │ │ ├── signup-context.ts │ │ │ │ ├── signup.js │ │ │ │ ├── two-factor.js │ │ │ │ └── use-login.ts │ │ │ ├── container │ │ │ │ ├── floating-button.tsx │ │ │ │ └── index.tsx │ │ │ ├── delay-layout │ │ │ │ ├── default-placeholder.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── settings-placeholder.tsx │ │ │ ├── dialog-provider │ │ │ │ ├── index.js │ │ │ │ └── recievers.js │ │ │ ├── dialog │ │ │ │ ├── base-dialog.tsx │ │ │ │ ├── dialog-buttons.tsx │ │ │ │ ├── dialog-container.tsx │ │ │ │ ├── dialog-header.tsx │ │ │ │ ├── functions.ts │ │ │ │ └── index.tsx │ │ │ ├── dialogs │ │ │ │ ├── applock-password │ │ │ │ │ └── index.tsx │ │ │ │ ├── attach-image-dialog │ │ │ │ │ └── index.tsx │ │ │ │ ├── color-picker │ │ │ │ │ └── index.tsx │ │ │ │ ├── jump-to-section │ │ │ │ │ └── index.tsx │ │ │ │ ├── loading │ │ │ │ │ └── index.tsx │ │ │ │ ├── pdf-preview │ │ │ │ │ └── index.js │ │ │ │ ├── progress │ │ │ │ │ └── index.tsx │ │ │ │ ├── result │ │ │ │ │ ├── index.js │ │ │ │ │ └── pro-features.js │ │ │ │ └── vault │ │ │ │ │ └── index.js │ │ │ ├── exception-handler │ │ │ │ └── index.tsx │ │ │ ├── fluid-panels │ │ │ │ └── index.tsx │ │ │ ├── globalsafearea │ │ │ │ └── index.tsx │ │ │ ├── header │ │ │ │ ├── index.tsx │ │ │ │ ├── left-menus.tsx │ │ │ │ ├── right-menus.tsx │ │ │ │ └── title.tsx │ │ │ ├── image-preview │ │ │ │ └── index.tsx │ │ │ ├── intro │ │ │ │ └── index.tsx │ │ │ ├── list-items │ │ │ │ ├── footer │ │ │ │ │ └── index.js │ │ │ │ ├── headers │ │ │ │ │ ├── header.tsx │ │ │ │ │ ├── notebook-header.tsx │ │ │ │ │ └── section-header.tsx │ │ │ │ ├── note │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── wrapper.tsx │ │ │ │ ├── notebook │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── wrapper.tsx │ │ │ │ ├── reminder │ │ │ │ │ └── index.tsx │ │ │ │ ├── search-result │ │ │ │ │ └── index.tsx │ │ │ │ ├── selection-wrapper │ │ │ │ │ ├── back-fill.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── selection.tsx │ │ │ │ └── tag │ │ │ │ │ └── index.tsx │ │ │ ├── list │ │ │ │ ├── card.tsx │ │ │ │ ├── empty.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── list-item.wrapper.tsx │ │ │ │ └── reorderable-list.tsx │ │ │ ├── loading │ │ │ │ └── index.tsx │ │ │ ├── merge-conflicts │ │ │ │ └── index.js │ │ │ ├── note-history │ │ │ │ ├── index.tsx │ │ │ │ └── preview.js │ │ │ ├── paywall │ │ │ │ └── index.tsx │ │ │ ├── properties │ │ │ │ ├── color-tags.tsx │ │ │ │ ├── date-meta.js │ │ │ │ ├── index.js │ │ │ │ ├── items.tsx │ │ │ │ ├── notebooks.js │ │ │ │ ├── synced.js │ │ │ │ └── tags.js │ │ │ ├── selection-header │ │ │ │ └── index.tsx │ │ │ ├── sheet-provider │ │ │ │ └── index.js │ │ │ ├── sheets │ │ │ │ ├── add-notebook │ │ │ │ │ └── index.tsx │ │ │ │ ├── buy-plan │ │ │ │ │ └── index.tsx │ │ │ │ ├── editor-tabs │ │ │ │ │ └── index.tsx │ │ │ │ ├── export-notes │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── share.jsx │ │ │ │ ├── github │ │ │ │ │ └── issue.js │ │ │ │ ├── link-note │ │ │ │ │ └── index.tsx │ │ │ │ ├── menu-item-properties │ │ │ │ │ └── index.tsx │ │ │ │ ├── migrate │ │ │ │ │ └── index.tsx │ │ │ │ ├── new-feature │ │ │ │ │ └── index.tsx │ │ │ │ ├── notebooks │ │ │ │ │ └── index.tsx │ │ │ │ ├── paywall │ │ │ │ │ └── index.tsx │ │ │ │ ├── plan-limits │ │ │ │ │ └── index.tsx │ │ │ │ ├── progress │ │ │ │ │ └── index.tsx │ │ │ │ ├── publish-note │ │ │ │ │ └── index.tsx │ │ │ │ ├── rate-app │ │ │ │ │ └── index.js │ │ │ │ ├── recovery-key │ │ │ │ │ └── index.jsx │ │ │ │ ├── references │ │ │ │ │ └── index.tsx │ │ │ │ ├── relations-list │ │ │ │ │ └── index.tsx │ │ │ │ ├── reminder-notify │ │ │ │ │ └── index.tsx │ │ │ │ ├── sort │ │ │ │ │ └── index.tsx │ │ │ │ ├── toc │ │ │ │ │ └── index.tsx │ │ │ │ ├── update │ │ │ │ │ └── index.js │ │ │ │ └── user │ │ │ │ │ └── index.tsx │ │ │ ├── side-menu │ │ │ │ ├── color-section.tsx │ │ │ │ ├── dragging-store.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── menu-item.tsx │ │ │ │ ├── notebook-item.tsx │ │ │ │ ├── pinned-section.tsx │ │ │ │ ├── side-menu-header.tsx │ │ │ │ ├── side-menu-home.tsx │ │ │ │ ├── side-menu-list-empty.tsx │ │ │ │ ├── side-menu-notebooks.tsx │ │ │ │ ├── side-menu-tags.tsx │ │ │ │ ├── stores.ts │ │ │ │ └── user-status.js │ │ │ ├── tip │ │ │ │ └── index.tsx │ │ │ ├── toast │ │ │ │ └── index.tsx │ │ │ ├── ui │ │ │ │ ├── AppIcon │ │ │ │ │ └── index.tsx │ │ │ │ ├── button │ │ │ │ │ └── index.tsx │ │ │ │ ├── icon-button │ │ │ │ │ └── index.tsx │ │ │ │ ├── input │ │ │ │ │ └── index.tsx │ │ │ │ ├── notice │ │ │ │ │ └── index.tsx │ │ │ │ ├── pressable │ │ │ │ │ └── index.tsx │ │ │ │ ├── reminder-time │ │ │ │ │ └── index.tsx │ │ │ │ ├── seperator │ │ │ │ │ └── index.tsx │ │ │ │ ├── sheet │ │ │ │ │ └── index.js │ │ │ │ ├── svg │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── lazy.js │ │ │ │ │ └── module-svg.js │ │ │ │ ├── tag │ │ │ │ │ └── index.tsx │ │ │ │ ├── time-since │ │ │ │ │ └── index.tsx │ │ │ │ ├── transitions │ │ │ │ │ └── bouncing-view.js │ │ │ │ └── typography │ │ │ │ │ ├── heading.tsx │ │ │ │ │ └── paragraph.tsx │ │ │ └── walkthroughs │ │ │ │ ├── index.tsx │ │ │ │ └── walkthroughs.tsx │ │ ├── features.ts │ │ ├── hooks │ │ │ ├── use-actions.tsx │ │ │ ├── use-app-events.tsx │ │ │ ├── use-app-state.ts │ │ │ ├── use-attachment-progress.ts │ │ │ ├── use-db-item.ts │ │ │ ├── use-delay-layout.ts │ │ │ ├── use-feature-manager.ts │ │ │ ├── use-global-safe-area-insets.ts │ │ │ ├── use-group-options.ts │ │ │ ├── use-immediate.ts │ │ │ ├── use-is-compact-mode-enabled.ts │ │ │ ├── use-is-floating-keyboard.ts │ │ │ ├── use-keyboard.ts │ │ │ ├── use-navigation-focus.ts │ │ │ ├── use-notebook.ts │ │ │ ├── use-pricing-plans.ts │ │ │ ├── use-rotator.ts │ │ │ ├── use-selected.ts │ │ │ ├── use-shortcut-manager.ts │ │ │ ├── use-stored-ref.ts │ │ │ ├── use-stored-state.ts │ │ │ ├── use-sync-progress.ts │ │ │ ├── use-timer.ts │ │ │ ├── use-tooltip.ts │ │ │ └── use-vault-status.ts │ │ ├── navigation │ │ │ ├── fluid-panels-view.tsx │ │ │ └── navigation-stack.tsx │ │ ├── package.json │ │ ├── screens │ │ │ ├── add-reminder │ │ │ │ └── index.tsx │ │ │ ├── archive │ │ │ │ └── index.tsx │ │ │ ├── editor │ │ │ │ ├── index.tsx │ │ │ │ ├── loading.tsx │ │ │ │ ├── progress.tsx │ │ │ │ ├── readonly-editor.tsx │ │ │ │ ├── source.ts │ │ │ │ ├── tiptap │ │ │ │ │ ├── commands.ts │ │ │ │ │ ├── picker.ts │ │ │ │ │ ├── session-history.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ ├── use-editor-events.tsx │ │ │ │ │ ├── use-editor.ts │ │ │ │ │ ├── use-tab-store.ts │ │ │ │ │ └── utils.ts │ │ │ │ └── wrapper.tsx │ │ │ ├── favorites │ │ │ │ └── index.tsx │ │ │ ├── home │ │ │ │ ├── filter-bar.tsx │ │ │ │ └── index.tsx │ │ │ ├── link-notebooks │ │ │ │ └── index.tsx │ │ │ ├── manage-tags │ │ │ │ └── index.tsx │ │ │ ├── move-notebook │ │ │ │ └── index.tsx │ │ │ ├── move-notes │ │ │ │ └── index.tsx │ │ │ ├── note-preview-configure │ │ │ │ └── index.tsx │ │ │ ├── notebook │ │ │ │ └── index.tsx │ │ │ ├── notes │ │ │ │ ├── colored.tsx │ │ │ │ ├── common.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── monographs.tsx │ │ │ │ └── tagged.tsx │ │ │ ├── reminders │ │ │ │ └── index.tsx │ │ │ ├── search │ │ │ │ ├── index.tsx │ │ │ │ └── search-bar.tsx │ │ │ ├── settings │ │ │ │ ├── 2fa.tsx │ │ │ │ ├── attachment-group-progress.tsx │ │ │ │ ├── change-email │ │ │ │ │ └── index.tsx │ │ │ │ ├── components.tsx │ │ │ │ ├── debug.tsx │ │ │ │ ├── editor │ │ │ │ │ ├── common.tsx │ │ │ │ │ ├── configure-toolbar.tsx │ │ │ │ │ ├── group.tsx │ │ │ │ │ ├── state.ts │ │ │ │ │ ├── tool-sheet.tsx │ │ │ │ │ ├── tool.tsx │ │ │ │ │ └── toolbar-definition.ts │ │ │ │ ├── functions.js │ │ │ │ ├── group.tsx │ │ │ │ ├── home.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── license-data.js │ │ │ │ ├── licenses.tsx │ │ │ │ ├── logout.ts │ │ │ │ ├── notesnook-circle.tsx │ │ │ │ ├── picker │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── pickers.jsx │ │ │ │ ├── restore-backup │ │ │ │ │ └── index.tsx │ │ │ │ ├── section-group.tsx │ │ │ │ ├── section-item.tsx │ │ │ │ ├── server-config.tsx │ │ │ │ ├── settings-data.tsx │ │ │ │ ├── sound-picker.tsx │ │ │ │ ├── theme-selector.tsx │ │ │ │ ├── title-format.tsx │ │ │ │ ├── types.ts │ │ │ │ └── user-section.jsx │ │ │ └── trash │ │ │ │ └── index.tsx │ │ ├── services │ │ │ ├── app-review.ts │ │ │ ├── background-sync.ts │ │ │ ├── backup.ts │ │ │ ├── biometrics.ts │ │ │ ├── device-detection.js │ │ │ ├── event-manager.ts │ │ │ ├── exporter.ts │ │ │ ├── intent.ts │ │ │ ├── message.js │ │ │ ├── navigation.ts │ │ │ ├── note-preview-widget.ts │ │ │ ├── notifications.ts │ │ │ ├── premium.ts │ │ │ ├── search.js │ │ │ ├── settings.ts │ │ │ ├── sync.ts │ │ │ ├── tip-manager.ts │ │ │ └── validation.js │ │ ├── stores │ │ │ ├── create-db-collection-store.ts │ │ │ ├── create-notebook-tree-stores.ts │ │ │ ├── index.ts │ │ │ ├── item-selection-store.ts │ │ │ ├── use-archived-store.ts │ │ │ ├── use-attachment-store.ts │ │ │ ├── use-editor-store.ts │ │ │ ├── use-favorite-store.ts │ │ │ ├── use-menu-store.ts │ │ │ ├── use-message-store.ts │ │ │ ├── use-monograph-store.ts │ │ │ ├── use-navigation-store.ts │ │ │ ├── use-notebook-store.ts │ │ │ ├── use-notes-store.ts │ │ │ ├── use-relation-store.ts │ │ │ ├── use-reminder-store.ts │ │ │ ├── use-search-store.ts │ │ │ ├── use-selection-store.ts │ │ │ ├── use-setting-store.ts │ │ │ ├── use-tag-store.ts │ │ │ ├── use-theme-store.ts │ │ │ ├── use-trash-store.ts │ │ │ └── use-user-store.ts │ │ └── utils │ │ │ ├── colors.js │ │ │ ├── constants.ts │ │ │ ├── elevation.ts │ │ │ ├── errors.ts │ │ │ ├── events.js │ │ │ ├── functions.ts │ │ │ ├── github-version.ts │ │ │ ├── global-refs.ts │ │ │ ├── menu-items.ts │ │ │ ├── note-bundle.js │ │ │ ├── note-to-text.ts │ │ │ ├── notebooks.ts │ │ │ ├── notesnook-module.ts │ │ │ ├── size │ │ │ └── index.js │ │ │ ├── sse │ │ │ ├── even-source-ios.js │ │ │ └── event-source.js │ │ │ ├── styles.ts │ │ │ ├── time │ │ │ └── index.ts │ │ │ ├── tooltip.ts │ │ │ ├── types.ts │ │ │ └── unlock-vault.ts │ ├── e2e │ │ ├── globalSetup.ts │ │ ├── jest.config.js │ │ ├── setup.ts │ │ ├── test.ids.js │ │ ├── tests │ │ │ ├── __image_snapshots__ │ │ │ │ ├── __diff_output__ │ │ │ │ │ └── vault-e-2-e-js-vault-add-a-note-to-vault-1-snap-diff.png │ │ │ │ ├── vault-e-2-e-js-vault-add-a-note-to-vault-1-snap.png │ │ │ │ └── vault-e-2-e-js-vault-change-vault-password-1-snap.png │ │ │ ├── auth.e2e.ts │ │ │ ├── index.e2e.ts │ │ │ ├── note.e2e.ts │ │ │ ├── notebook.e2e.ts │ │ │ ├── search.e2e.ts │ │ │ ├── sort.e2e.ts │ │ │ ├── tag.e2e.ts │ │ │ ├── utils.ts │ │ │ └── vault.e2e.ts │ │ └── tsconfig.json │ ├── native │ │ ├── .bundle │ │ │ └── config │ │ ├── .detoxrc.js │ │ ├── .env │ │ ├── .env.public │ │ ├── .env.test │ │ ├── .ruby-version │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── android │ │ │ ├── .project │ │ │ ├── .settings │ │ │ │ └── org.eclipse.buildship.core.prefs │ │ │ ├── app │ │ │ │ ├── build.gradle │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ ├── androidTest │ │ │ │ │ └── java │ │ │ │ │ │ └── com │ │ │ │ │ │ └── streetwriters │ │ │ │ │ │ └── notesnook │ │ │ │ │ │ └── DetoxTest.java │ │ │ │ │ ├── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── ic_launcher-playstore.png │ │ │ │ │ ├── java │ │ │ │ │ │ └── com │ │ │ │ │ │ │ └── streetwriters │ │ │ │ │ │ │ └── notesnook │ │ │ │ │ │ │ ├── BootRecieverService.java │ │ │ │ │ │ │ ├── BootTaskService.java │ │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ │ ├── MainApplication.kt │ │ │ │ │ │ │ ├── NNativeModulePackage.java │ │ │ │ │ │ │ ├── NotePreviewConfigureActivity.java │ │ │ │ │ │ │ ├── NotePreviewWidget.java │ │ │ │ │ │ │ ├── NoteWidget.java │ │ │ │ │ │ │ ├── NotesnookTileService.java │ │ │ │ │ │ │ ├── OnClearFromRecentService.java │ │ │ │ │ │ │ ├── RCTNNativeModule.java │ │ │ │ │ │ │ ├── ReminderViewsService.java │ │ │ │ │ │ │ ├── ReminderWidgetProvider.java │ │ │ │ │ │ │ ├── ShareActivity.java │ │ │ │ │ │ │ ├── ShareApplication.java │ │ │ │ │ │ │ └── datatypes │ │ │ │ │ │ │ ├── BaseItem.java │ │ │ │ │ │ │ ├── Note.java │ │ │ │ │ │ │ └── Reminder.java │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-anydpi │ │ │ │ │ │ ├── ic_action_name.xml │ │ │ │ │ │ └── ic_newnote.xml │ │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ │ ├── ic_action_name.png │ │ │ │ │ │ ├── ic_newnote.png │ │ │ │ │ │ └── ic_stat_name.png │ │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ │ ├── ic_action_name.png │ │ │ │ │ │ ├── ic_newnote.png │ │ │ │ │ │ └── ic_stat_name.png │ │ │ │ │ │ ├── drawable-nodpi │ │ │ │ │ │ └── example_appwidget_preview.png │ │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ │ ├── ic_action_name.png │ │ │ │ │ │ ├── ic_newnote.png │ │ │ │ │ │ └── ic_stat_name.png │ │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ │ ├── ic_action_name.png │ │ │ │ │ │ ├── ic_newnote.png │ │ │ │ │ │ └── ic_stat_name.png │ │ │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ │ │ └── ic_stat_name.png │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── add_note.xml │ │ │ │ │ │ ├── edit_text.xml │ │ │ │ │ │ ├── layout_bg.xml │ │ │ │ │ │ ├── note_widget_preview.png │ │ │ │ │ │ ├── notesnooktext.png │ │ │ │ │ │ ├── reminder_preview.png │ │ │ │ │ │ └── widget_preview.png │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── new_note_widget.xml │ │ │ │ │ │ ├── new_note_widget_icon.xml │ │ │ │ │ │ ├── note_widget.xml │ │ │ │ │ │ ├── widget_reminder_empty.xml │ │ │ │ │ │ ├── widget_reminder_layout.xml │ │ │ │ │ │ ├── widget_reminder_layout_small.xml │ │ │ │ │ │ └── widget_reminders.xml │ │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ │ └── ic_launcher.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ ├── bootsplash_logo.png │ │ │ │ │ │ ├── bootsplash_logo_dark.png │ │ │ │ │ │ ├── ic_launcher_background.png │ │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ │ └── ic_launcher_monochrome.png │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ ├── bootsplash_logo.png │ │ │ │ │ │ ├── bootsplash_logo_dark.png │ │ │ │ │ │ ├── ic_launcher_background.png │ │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ │ └── ic_launcher_monochrome.png │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ ├── bootsplash_logo.png │ │ │ │ │ │ ├── bootsplash_logo_dark.png │ │ │ │ │ │ ├── ic_launcher_background.png │ │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ │ └── ic_launcher_monochrome.png │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ ├── bootsplash_logo.png │ │ │ │ │ │ ├── bootsplash_logo_dark.png │ │ │ │ │ │ ├── ic_launcher_background.png │ │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ │ └── ic_launcher_monochrome.png │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ ├── bootsplash_logo.png │ │ │ │ │ │ ├── bootsplash_logo_dark.png │ │ │ │ │ │ ├── ic_launcher_background.png │ │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ │ └── ic_launcher_monochrome.png │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ ├── values │ │ │ │ │ │ ├── attrs.xml │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ ├── dimens.xml │ │ │ │ │ │ ├── keep.xml │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ ├── styles.xml │ │ │ │ │ │ └── themes.xml │ │ │ │ │ │ └── xml │ │ │ │ │ │ ├── file_viewer_provider_paths.xml │ │ │ │ │ │ ├── network_security_config.xml │ │ │ │ │ │ ├── new_note_widget_info.xml │ │ │ │ │ │ ├── note_widget_info.xml │ │ │ │ │ │ └── widget_reminders_info.xml │ │ │ │ │ └── release │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── streetwriters │ │ │ │ │ └── notesnook │ │ │ │ │ └── ReactNativeFlipper.java │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── releasenotes │ │ │ │ └── whatsnew-en-US │ │ │ └── settings.gradle │ │ ├── app.json │ │ ├── apple-app-site-association │ │ ├── babel.config.js │ │ ├── fonts │ │ │ └── MaterialCommunityIcons.ttf │ │ ├── globals.js │ │ ├── index.ext.js │ │ ├── index.js │ │ ├── ios │ │ │ ├── .xcode.env │ │ │ ├── Add to Notes │ │ │ │ ├── Add to Notes-Bridging-Header.h │ │ │ │ ├── Add to Notes.entitlements │ │ │ │ ├── Add to NotesDebug.entitlements │ │ │ │ ├── Base.lproj │ │ │ │ │ └── MainInterface.storyboard │ │ │ │ ├── Info.plist │ │ │ │ └── ShareViewController.swift │ │ │ ├── ExportOptions.plist │ │ │ ├── File.swift │ │ │ ├── Make Note │ │ │ │ ├── Base.lproj │ │ │ │ │ └── MainInterface.storyboard │ │ │ │ ├── File.swift │ │ │ │ ├── Info.plist │ │ │ │ ├── Make Note-Bridging-Header.h │ │ │ │ ├── Make Note.entitlements │ │ │ │ ├── PrivacyInfo.xprivacy │ │ │ │ ├── ShareViewController.h │ │ │ │ └── ShareViewController.m │ │ │ ├── NotesWidget │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AccentColor.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── WidgetBackground.colorset │ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Info.plist │ │ │ │ ├── NotesWidget.swift │ │ │ │ └── PrivacyInfo.xprivacy │ │ │ ├── NotesWidgetExtensionDebug.entitlements │ │ │ ├── Notesnook-Bridging-Header.h │ │ │ ├── Notesnook.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── Make Note.xcscheme │ │ │ │ │ ├── Notesnook.xcscheme │ │ │ │ │ └── NotesnookRelease.xcscheme │ │ │ ├── Notesnook.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ ├── Notesnook │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.mm │ │ │ │ ├── BootSplash.storyboard │ │ │ │ ├── Images.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ ├── AppIcon-20@2x.png │ │ │ │ │ │ ├── AppIcon-20@2x~ipad.png │ │ │ │ │ │ ├── AppIcon-20@3x.png │ │ │ │ │ │ ├── AppIcon-20~ipad.png │ │ │ │ │ │ ├── AppIcon-29.png │ │ │ │ │ │ ├── AppIcon-29@2x.png │ │ │ │ │ │ ├── AppIcon-29@2x~ipad.png │ │ │ │ │ │ ├── AppIcon-29@3x.png │ │ │ │ │ │ ├── AppIcon-29~ipad.png │ │ │ │ │ │ ├── AppIcon-40@2x.png │ │ │ │ │ │ ├── AppIcon-40@2x~ipad.png │ │ │ │ │ │ ├── AppIcon-40@3x.png │ │ │ │ │ │ ├── AppIcon-40~ipad.png │ │ │ │ │ │ ├── AppIcon-60@2x~car.png │ │ │ │ │ │ ├── AppIcon-60@3x~car.png │ │ │ │ │ │ ├── AppIcon-83.5@2x~ipad.png │ │ │ │ │ │ ├── AppIcon@2x.png │ │ │ │ │ │ ├── AppIcon@2x~ipad.png │ │ │ │ │ │ ├── AppIcon@3x.png │ │ │ │ │ │ ├── AppIcon~ios-marketing.png │ │ │ │ │ │ ├── AppIcon~ipad.png │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── BootSplashLogo.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── bootsplash_logo-1.png │ │ │ │ │ │ ├── bootsplash_logo.png │ │ │ │ │ │ ├── bootsplash_logo@2x-1.png │ │ │ │ │ │ ├── bootsplash_logo@2x.png │ │ │ │ │ │ ├── bootsplash_logo@3x-1.png │ │ │ │ │ │ └── bootsplash_logo@3x.png │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── notesnook-text.png │ │ │ │ ├── Info.plist │ │ │ │ ├── Notesnook.entitlements │ │ │ │ ├── NotesnookDebug.entitlements │ │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ │ ├── PrivacyInfo.xprivacy │ │ │ │ └── main.m │ │ │ ├── NotesnookTests │ │ │ │ ├── Info.plist │ │ │ │ └── NotesnookTests.m │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ └── extension.bundle │ │ │ │ ├── clipper.bundle.js │ │ │ │ └── plaineditor.html │ │ ├── lingui.config.js │ │ ├── metro.config.js │ │ ├── package.json │ │ ├── polyfills │ │ │ └── console-time.js │ │ ├── react-native.config.js │ │ ├── rspack.config.js │ │ └── worker.js │ ├── package-lock.json │ ├── package.json │ ├── patches │ │ ├── @callstack+repack+5.1.2.patch │ │ ├── @flyerhq+react-native-link-preview+1.6.0.patch │ │ ├── @react-native+community-cli-plugin+0.77.2.patch │ │ ├── @react-navigation+core+6.4.8.patch │ │ ├── @react-navigation+native-stack+6.6.2.p │ │ ├── react-native+0.69.7.patch.old │ │ ├── react-native+0.77.2.patch │ │ ├── react-native-actions-sheet+0.9.7.patch │ │ ├── react-native-actions-shortcuts+1.0.1.patch │ │ ├── react-native-background-actions+2.6.7.patch │ │ ├── react-native-blob-util+0.18.3.patch │ │ ├── react-native-cli-bump-version+1.5.0.patch │ │ ├── react-native-device-info+8.7.1.patch │ │ ├── react-native-file-viewer+2.1.5.patch │ │ ├── react-native-html-to-pdf-lite+0.9.1.patch │ │ ├── react-native-image-crop-picker+0.51.1.patch │ │ ├── react-native-keyboard-aware-scroll-view+0.9.5.patch │ │ ├── react-native-keychain+4.0.5.patch │ │ ├── react-native-material-menu+2.0.0.patch │ │ ├── react-native-navigation-bar-color+2.0.2.patch │ │ ├── react-native-notification-sounds+0.5.5.patch │ │ ├── react-native-pdf+6.7.7.patch │ │ ├── react-native-progress+5.0.0.patch │ │ ├── react-native-quick-sqlite+8.2.7.patch │ │ ├── react-native-reanimated-progress-bar+1.0.1.patch │ │ ├── react-native-screenguard+1.0.0.patch │ │ ├── react-native-tooltips+1.0.3.patch │ │ ├── react-native-vector-icons+10.3.0.patch │ │ ├── react-native-wheel-color-picker+1.3.1.patch │ │ ├── react-native-zip-archive+6.0.9.patch │ │ └── toggle-switch-react-native+3.2.0.patch │ ├── scripts │ │ └── optimize-fonts.mjs │ ├── share │ │ ├── add-notebooks.jsx │ │ ├── add-tags.jsx │ │ ├── editor.js │ │ ├── fetch-webview.js │ │ ├── index.js │ │ ├── search.tsx │ │ ├── share.js │ │ └── store.js │ ├── tsconfig.json │ └── tsconfig.tsbuildinfo ├── monograph │ ├── .gitignore │ ├── Dockerfile │ ├── app │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-600.ttf │ │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-600.woff │ │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-600.woff2 │ │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-600italic.ttf │ │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-600italic.woff │ │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-600italic.woff2 │ │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.ttf │ │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.woff │ │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.woff2 │ │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700italic.ttf │ │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700italic.woff │ │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700italic.woff2 │ │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-italic.ttf │ │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-italic.woff │ │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-italic.woff2 │ │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.ttf │ │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff │ │ │ │ └── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff2 │ │ ├── components │ │ │ ├── card.tsx │ │ │ ├── footer.tsx │ │ │ ├── header.tsx │ │ │ ├── monograph-chat.tsx │ │ │ ├── monographpost │ │ │ │ ├── clipboard.ts │ │ │ │ ├── editor.client.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── report-modal.tsx │ │ │ │ ├── tiptap.tsx │ │ │ │ └── types.ts │ │ │ └── theme-provider.tsx │ │ ├── entry.client.tsx │ │ ├── entry.server.tsx │ │ ├── root.css │ │ ├── root.tsx │ │ ├── routes │ │ │ ├── $id.tsx │ │ │ ├── _index.tsx │ │ │ ├── api.health.ts │ │ │ ├── api.og.ts │ │ │ ├── api.og[.jpg].ts │ │ │ ├── api.og[.png].ts │ │ │ └── api.version.ts │ │ ├── styles │ │ │ ├── context.tsx │ │ │ └── createEmotionCache.tsx │ │ └── utils │ │ │ ├── env.ts │ │ │ ├── generate-og-image.server.ts │ │ │ ├── meta.ts │ │ │ ├── nncrypto.client.ts │ │ │ ├── nncrypto.worker.ts │ │ │ ├── slugify.ts │ │ │ ├── spam-filter.server.ts │ │ │ ├── storage │ │ │ ├── fs.ts │ │ │ ├── index.ts │ │ │ └── kv.ts │ │ │ └── use-hash-location.ts │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── _headers │ │ ├── _routes.json │ │ ├── favicon.png │ │ ├── favicon.svg │ │ ├── logo.svg │ │ └── social.png │ ├── scripts │ │ └── font-loader.mjs │ ├── server.ts │ ├── tsconfig.json │ └── vite.config.ts ├── theme-builder │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app.tsx │ │ ├── components │ │ │ └── theme-builder │ │ │ │ └── index.tsx │ │ ├── index.css │ │ ├── index.html │ │ ├── index.tsx │ │ └── utils │ │ │ ├── object.ts │ │ │ └── theme-loader.ts │ └── tsconfig.json ├── vericrypt │ ├── .gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── logo192.png │ │ └── robots.txt │ ├── src │ │ ├── app.css │ │ ├── app.tsx │ │ ├── assets │ │ │ ├── fonts │ │ │ │ ├── open-sans-v20-latin-600.woff │ │ │ │ ├── open-sans-v20-latin-600.woff2 │ │ │ │ ├── open-sans-v20-latin-600italic.woff │ │ │ │ ├── open-sans-v20-latin-600italic.woff2 │ │ │ │ ├── open-sans-v20-latin-700.woff │ │ │ │ ├── open-sans-v20-latin-700.woff2 │ │ │ │ ├── open-sans-v20-latin-700italic.woff │ │ │ │ ├── open-sans-v20-latin-700italic.woff2 │ │ │ │ ├── open-sans-v20-latin-italic.woff │ │ │ │ ├── open-sans-v20-latin-italic.woff2 │ │ │ │ ├── open-sans-v20-latin-regular.woff │ │ │ │ └── open-sans-v20-latin-regular.woff2 │ │ │ ├── images │ │ │ │ └── map.svg │ │ │ └── screenshots │ │ │ │ ├── devtools_application_tab.png │ │ │ │ ├── devtools_copy_salt.png │ │ │ │ ├── devtools_requests_copy.png │ │ │ │ ├── devtools_requests_filter.png │ │ │ │ ├── devtools_requests_ws.png │ │ │ │ ├── devtools_requests_ws_messages.png │ │ │ │ ├── devtools_requests_ws_messages_copy.png │ │ │ │ ├── devtools_salt.png │ │ │ │ ├── devtools_select_db.png │ │ │ │ └── firefox │ │ │ │ ├── copy_curl_request.png │ │ │ │ ├── devtools_requests_filter.png │ │ │ │ ├── devtools_requests_ws.png │ │ │ │ ├── devtools_requests_ws_messages_copy.png │ │ │ │ ├── devtools_requests_ws_messages_select.png │ │ │ │ ├── devtools_requests_ws_response.png │ │ │ │ ├── devtools_requests_ws_response_sizecolumn.png │ │ │ │ ├── firefox_copy_salt.png │ │ │ │ ├── firefox_keyvalue_pairs.png │ │ │ │ ├── firefox_storage_tab.png │ │ │ │ └── firefox_user_object.png │ │ ├── components │ │ │ ├── accordion.tsx │ │ │ ├── code.tsx │ │ │ ├── decrypted-result.tsx │ │ │ ├── errors-list.tsx │ │ │ ├── footer.tsx │ │ │ ├── hero.tsx │ │ │ ├── key-combo.tsx │ │ │ ├── step-1.tsx │ │ │ ├── step-2.tsx │ │ │ ├── step-3.tsx │ │ │ ├── step-4.tsx │ │ │ ├── step-container.tsx │ │ │ └── step-seperator.tsx │ │ ├── global.d.ts │ │ ├── index.tsx │ │ ├── polyfills.ts │ │ ├── react-app-env.d.ts │ │ └── utils │ │ │ ├── keycombos.ts │ │ │ ├── links.ts │ │ │ └── version.ts │ ├── tsconfig.json │ └── vite.config.ts └── web │ ├── .gitignore │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── README.md │ ├── __bench__ │ └── app.bench.mjs │ ├── __e2e__ │ ├── app-lock.test.ts │ ├── backups.test.ts │ ├── checkout.test.ts │ ├── checkout.test.ts-snapshots │ │ ├── checkout-monthly-IN-discounted-prices-Chromium-darwin.txt │ │ ├── checkout-monthly-IN-discounted-prices-Chromium-linux.txt │ │ ├── checkout-monthly-IN-discounted-prices-Chromium-win32.txt │ │ ├── checkout-monthly-IN-discounted-prices-Firefox-win32.txt │ │ ├── checkout-monthly-IN-prices-Chromium-darwin.txt │ │ ├── checkout-monthly-IN-prices-Chromium-linux.txt │ │ ├── checkout-monthly-IN-prices-Chromium-win32.txt │ │ ├── checkout-monthly-IN-prices-Firefox-win32.txt │ │ ├── checkout-monthly-discounted-prices-Chromium-darwin.txt │ │ ├── checkout-monthly-discounted-prices-Chromium-linux.txt │ │ ├── checkout-monthly-discounted-prices-Chromium-win32.txt │ │ ├── checkout-monthly-discounted-prices-Firefox-win32.txt │ │ ├── checkout-monthly-prices-Chromium-darwin.txt │ │ ├── checkout-monthly-prices-Chromium-linux.txt │ │ ├── checkout-monthly-prices-Chromium-win32.txt │ │ ├── checkout-monthly-prices-Firefox-win32.txt │ │ ├── checkout-yearly-IN-discounted-prices-Chromium-darwin.txt │ │ ├── checkout-yearly-IN-discounted-prices-Chromium-linux.txt │ │ ├── checkout-yearly-IN-discounted-prices-Chromium-win32.txt │ │ ├── checkout-yearly-IN-discounted-prices-Firefox-win32.txt │ │ ├── checkout-yearly-IN-prices-Chromium-darwin.txt │ │ ├── checkout-yearly-IN-prices-Chromium-linux.txt │ │ ├── checkout-yearly-IN-prices-Chromium-win32.txt │ │ ├── checkout-yearly-IN-prices-Firefox-win32.txt │ │ ├── checkout-yearly-discounted-prices-Chromium-darwin.txt │ │ ├── checkout-yearly-discounted-prices-Chromium-linux.txt │ │ ├── checkout-yearly-discounted-prices-Chromium-win32.txt │ │ ├── checkout-yearly-discounted-prices-Firefox-win32.txt │ │ ├── checkout-yearly-prices-Chromium-darwin.txt │ │ ├── checkout-yearly-prices-Chromium-linux.txt │ │ ├── checkout-yearly-prices-Chromium-win32.txt │ │ └── checkout-yearly-prices-Firefox-win32.txt │ ├── colors.test.ts │ ├── data │ │ ├── backup.nnbackup │ │ ├── encrypted.nnbackup │ │ └── importer-data.zip │ ├── drag-drop.test.ts │ ├── editor.test.ts │ ├── editor.test.ts-snapshots │ │ ├── fast-switch-and-edit-note-1-Chromium-darwin.txt │ │ ├── fast-switch-and-edit-note-1-Chromium-linux.txt │ │ ├── fast-switch-and-edit-note-1-Chromium-win32.txt │ │ ├── fast-switch-and-edit-note-1-Firefox-linux.txt │ │ ├── fast-switch-and-edit-note-1-Firefox-win32.txt │ │ ├── fast-switch-and-edit-note-1-WebKit-linux.txt │ │ ├── fast-switch-and-edit-note-2-Chromium-darwin.txt │ │ ├── fast-switch-and-edit-note-2-Chromium-linux.txt │ │ ├── fast-switch-and-edit-note-2-Chromium-win32.txt │ │ ├── fast-switch-and-edit-note-2-Firefox-linux.txt │ │ ├── fast-switch-and-edit-note-2-Firefox-win32.txt │ │ ├── fast-switch-and-edit-note-2-WebKit-linux.txt │ │ ├── fast-switch-and-edit-note-title-1-Chromium-darwin.txt │ │ ├── fast-switch-and-edit-note-title-1-Chromium-linux.txt │ │ ├── fast-switch-and-edit-note-title-1-Chromium-win32.txt │ │ ├── fast-switch-and-edit-note-title-1-Firefox-linux.txt │ │ ├── fast-switch-and-edit-note-title-1-Firefox-win32.txt │ │ ├── fast-switch-and-edit-note-title-1-WebKit-linux.txt │ │ ├── fast-switch-and-edit-note-title-2-Chromium-darwin.txt │ │ ├── fast-switch-and-edit-note-title-2-Chromium-linux.txt │ │ ├── fast-switch-and-edit-note-title-2-Chromium-win32.txt │ │ ├── fast-switch-and-edit-note-title-2-Firefox-linux.txt │ │ ├── fast-switch-and-edit-note-title-2-Firefox-win32.txt │ │ ├── fast-switch-and-edit-note-title-2-WebKit-linux.txt │ │ ├── focus-mode-Chromium-darwin.jpg │ │ ├── focus-mode-Chromium-linux.jpg │ │ ├── focus-mode-Chromium-win32.jpg │ │ ├── normal-mode-from-focus-mode-Chromium-darwin.jpg │ │ ├── normal-mode-from-focus-mode-Chromium-linux.jpg │ │ ├── normal-mode-from-focus-mode-Chromium-win32.jpg │ │ ├── readonly-edited-note-Chromium-darwin.txt │ │ ├── readonly-edited-note-Chromium-linux.txt │ │ ├── readonly-edited-note-Chromium-win32.txt │ │ ├── readonly-edited-note-Firefox-linux.txt │ │ ├── readonly-edited-note-Firefox-win32.txt │ │ └── readonly-edited-note-WebKit-linux.txt │ ├── importer.test.js │ ├── keyboard-list-navigation.test.ts │ ├── models │ │ ├── app.model.ts │ │ ├── auth.model.ts │ │ ├── base-item.model.ts │ │ ├── base-view.model.ts │ │ ├── checkout.model.ts │ │ ├── context-menu.model.ts │ │ ├── editor.model.ts │ │ ├── item.model.ts │ │ ├── items-view.model.ts │ │ ├── navigation-menu.model.ts │ │ ├── note-item.model.ts │ │ ├── note-properties.model.ts │ │ ├── notebook-item.model.ts │ │ ├── notebooks-view.model.ts │ │ ├── notes-view.model.ts │ │ ├── reminder-item.model.ts │ │ ├── reminders-view.model.ts │ │ ├── search-view-model.ts │ │ ├── session-history-item-model.ts │ │ ├── session-history-preview-model.ts │ │ ├── settings-view.model.ts │ │ ├── subnotebooks-view.model.ts │ │ ├── tab-item.model.ts │ │ ├── toasts.model.ts │ │ ├── toggle.model.ts │ │ ├── trash-item.model.ts │ │ ├── trash-view.model.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── monographs.test.ts │ ├── navigation.test.ts │ ├── notebooks.issues.test.ts │ ├── notebooks.test.ts │ ├── notehistory.test.ts │ ├── notes.issues.test.ts │ ├── notes.test.ts │ ├── notes.test.ts-snapshots │ │ ├── export-html-Chromium-darwin.txt │ │ ├── export-html-Chromium-linux.txt │ │ ├── export-html-Chromium-win32.txt │ │ ├── export-html-Firefox-linux.txt │ │ ├── export-html-Firefox-win32.txt │ │ ├── export-html-WebKit-linux.txt │ │ ├── export-md-Chromium-darwin.txt │ │ ├── export-md-Chromium-linux.txt │ │ ├── export-md-Chromium-win32.txt │ │ ├── export-md-Firefox-linux.txt │ │ ├── export-md-Firefox-win32.txt │ │ ├── export-md-WebKit-linux.txt │ │ ├── export-txt-Chromium-darwin.txt │ │ ├── export-txt-Chromium-linux.txt │ │ ├── export-txt-Chromium-win32.txt │ │ ├── export-txt-Firefox-linux.txt │ │ ├── export-txt-Firefox-win32.txt │ │ └── export-txt-WebKit-linux.txt │ ├── reminders.test.ts │ ├── search.test.ts │ ├── settings.test.ts │ ├── sync.test.ts │ ├── tabs.test.ts │ ├── tags.test.ts │ ├── user.test.ts │ ├── utils │ │ └── index.ts │ └── vault.test.ts │ ├── __tests__ │ ├── base64-stream.test.ts │ ├── bootstrap.ts │ ├── chunked-stream.test.ts │ └── data │ │ └── 35a4b0a78dbb9260 │ ├── at-rest-encryption.md │ ├── functions │ ├── _middleware.ts │ └── tsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── playwright.config.ts │ ├── public │ ├── _headers │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── android-chrome-maskable-192x192.png │ ├── android-chrome-maskable-512x512.png │ ├── apple-app-site-association │ ├── apple-touch-icon.png │ ├── banner.jpg │ ├── browserconfig.xml │ ├── favicon.png │ ├── favicon.svg │ ├── pdf.worker.min.js │ ├── robots.txt │ └── screenshots │ │ ├── screenshot-1.jpg │ │ ├── screenshot-2.jpg │ │ ├── screenshot-3.jpg │ │ ├── screenshot-4.jpg │ │ ├── screenshot-5.jpg │ │ ├── screenshot-6.jpg │ │ └── screenshot-7.jpg │ ├── src │ ├── app-effects.tsx │ ├── app.css │ ├── app.tsx │ ├── assets │ │ ├── accent.svg │ │ ├── apple.png │ │ ├── backup.svg │ │ ├── cause.svg │ │ ├── dark1.png │ │ ├── dark2.png │ │ ├── e2e.svg │ │ ├── email.svg │ │ ├── export.svg │ │ ├── fallback2fa.svg │ │ ├── featured │ │ │ ├── android-police.svg │ │ │ ├── appleinsider.svg │ │ │ ├── freedom-press.svg │ │ │ ├── hackernoon.png │ │ │ ├── itsfoss.webp │ │ │ ├── privacy-guides.svg │ │ │ ├── techlore.svg │ │ │ ├── theverge.svg │ │ │ └── xda.svg │ │ ├── fonts │ │ │ ├── Inter-Bold.ttf │ │ │ ├── Inter-Bold.woff2 │ │ │ ├── Inter-BoldItalic.ttf │ │ │ ├── Inter-BoldItalic.woff2 │ │ │ ├── Inter-Italic.ttf │ │ │ ├── Inter-Italic.woff2 │ │ │ ├── Inter-Medium.ttf │ │ │ ├── Inter-Medium.woff2 │ │ │ ├── Inter-MediumItalic.ttf │ │ │ ├── Inter-MediumItalic.woff2 │ │ │ ├── Inter-Regular.ttf │ │ │ ├── Inter-Regular.woff2 │ │ │ ├── Inter-SemiBold.ttf │ │ │ ├── Inter-SemiBold.woff2 │ │ │ ├── Inter-SemiBoldItalic.ttf │ │ │ └── Inter-SemiBoldItalic.woff2 │ │ ├── light1.png │ │ ├── light2.png │ │ ├── mfa.svg │ │ ├── nomad.svg │ │ ├── note.svg │ │ ├── note2.svg │ │ ├── notesnook-logo.png │ │ ├── organize.svg │ │ ├── play.png │ │ ├── richtext.svg │ │ ├── rocket.svg │ │ ├── sync.svg │ │ ├── testimonials │ │ │ ├── cameron.jpg │ │ │ ├── grberk.jpeg │ │ │ ├── holenstein.jpg │ │ │ └── jason.jpg │ │ ├── vault.svg │ │ ├── workanywhere.svg │ │ └── worklate.svg │ ├── bootstrap.tsx │ ├── common │ │ ├── app-events.ts │ │ ├── attachments.ts │ │ ├── constants.ts │ │ ├── currencies.ts │ │ ├── db.ts │ │ ├── desktop-bridge │ │ │ ├── index.desktop.ts │ │ │ └── index.ts │ │ ├── dialog-manager.tsx │ │ ├── drop-handler.ts │ │ ├── export.ts │ │ ├── index.ts │ │ ├── key-handler.ts │ │ ├── key-map.ts │ │ ├── multi-select.ts │ │ ├── notices.ts │ │ ├── sqlite │ │ │ ├── AccessHandlePoolVFS.js │ │ │ ├── IDBBatchAtomicVFS.js │ │ │ ├── IDBContext.js │ │ │ ├── VFS.js │ │ │ ├── WebLocks.js │ │ │ ├── globals.d.ts │ │ │ ├── index.desktop.ts │ │ │ ├── index.ts │ │ │ ├── shared-service.ts │ │ │ ├── shared-service.worker.ts │ │ │ ├── sqlite-api.js │ │ │ ├── sqlite-constants.js │ │ │ ├── sqlite-export.ts │ │ │ ├── sqlite-types.ts │ │ │ ├── sqlite.worker.desktop.ts │ │ │ ├── sqlite.worker.ts │ │ │ ├── type.ts │ │ │ ├── wa-sqlite-async.js │ │ │ ├── wa-sqlite-async.wasm │ │ │ ├── wa-sqlite-kysely-driver.ts │ │ │ ├── wa-sqlite.js │ │ │ └── wa-sqlite.wasm │ │ ├── store.ts │ │ ├── task-manager.ts │ │ ├── themes-router.ts │ │ ├── toasts.ts │ │ ├── toolbar-config.ts │ │ └── vault.ts │ ├── components │ │ ├── accordion │ │ │ └── index.tsx │ │ ├── announcements │ │ │ ├── body.jsx │ │ │ └── index.jsx │ │ ├── attachment │ │ │ └── index.tsx │ │ ├── auth-container │ │ │ └── index.jsx │ │ ├── cached-router │ │ │ └── index.tsx │ │ ├── day-picker │ │ │ └── index.tsx │ │ ├── dialog │ │ │ └── index.tsx │ │ ├── diff-viewer │ │ │ ├── content-toggle.tsx │ │ │ └── index.tsx │ │ ├── dropdown-button │ │ │ └── index.jsx │ │ ├── editor │ │ │ ├── action-bar.tsx │ │ │ ├── common.ts │ │ │ ├── footer.tsx │ │ │ ├── header.tsx │ │ │ ├── index.tsx │ │ │ ├── manager.ts │ │ │ ├── picker.ts │ │ │ ├── table-of-contents.tsx │ │ │ ├── tiptap.tsx │ │ │ ├── title-box.tsx │ │ │ └── types.ts │ │ ├── error-boundary │ │ │ └── index.tsx │ │ ├── error-text │ │ │ └── index.tsx │ │ ├── field │ │ │ └── index.tsx │ │ ├── filtered-list │ │ │ └── index.tsx │ │ ├── global-menu-wrapper │ │ │ └── index.tsx │ │ ├── group-header │ │ │ └── index.tsx │ │ ├── hash-router │ │ │ └── index.tsx │ │ ├── icon-tag │ │ │ └── index.tsx │ │ ├── icons │ │ │ └── index.tsx │ │ ├── importer │ │ │ ├── components │ │ │ │ ├── file-provider-handler.tsx │ │ │ │ ├── import-errors.tsx │ │ │ │ ├── import-result.tsx │ │ │ │ ├── network-provider-handler.tsx │ │ │ │ └── provider-selector.tsx │ │ │ ├── importer.tsx │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── lightbox │ │ │ └── index.tsx │ │ ├── list-container │ │ │ ├── index.tsx │ │ │ ├── list-profiles.tsx │ │ │ └── types.ts │ │ ├── list-item │ │ │ └── index.tsx │ │ ├── loader │ │ │ └── index.tsx │ │ ├── loaders │ │ │ └── list-loader.tsx │ │ ├── navigation-menu │ │ │ ├── index.tsx │ │ │ ├── navigation-item.tsx │ │ │ └── tab-item.tsx │ │ ├── note │ │ │ └── index.tsx │ │ ├── notebook-header.tsx │ │ ├── notebook │ │ │ └── index.tsx │ │ ├── notice │ │ │ └── index.tsx │ │ ├── pdf-preview │ │ │ ├── index.tsx │ │ │ └── links-plugin.tsx │ │ ├── placeholders │ │ │ └── index.tsx │ │ ├── properties │ │ │ ├── index.tsx │ │ │ └── toggle.tsx │ │ ├── publish-view │ │ │ └── index.tsx │ │ ├── reminder │ │ │ └── index.tsx │ │ ├── route-container │ │ │ └── index.tsx │ │ ├── scroll-container │ │ │ └── index.tsx │ │ ├── search-result │ │ │ └── index.tsx │ │ ├── session-item │ │ │ └── index.tsx │ │ ├── sidebar-scroller.tsx │ │ ├── split-pane │ │ │ ├── base.ts │ │ │ ├── index.tsx │ │ │ ├── pane.tsx │ │ │ ├── sash.tsx │ │ │ ├── styles.css │ │ │ └── types.ts │ │ ├── status-bar │ │ │ └── index.tsx │ │ ├── tag │ │ │ └── index.tsx │ │ ├── theme-preview │ │ │ └── index.tsx │ │ ├── theme-provider │ │ │ └── index.tsx │ │ ├── time-ago │ │ │ └── index.tsx │ │ ├── tip │ │ │ └── index.jsx │ │ ├── title-bar │ │ │ └── index.tsx │ │ ├── toggle │ │ │ └── index.jsx │ │ ├── trash-item │ │ │ └── index.tsx │ │ ├── unlock │ │ │ └── index.tsx │ │ ├── virtualized-grid │ │ │ └── index.tsx │ │ ├── virtualized-list │ │ │ └── index.tsx │ │ ├── virtualized-table │ │ │ └── index.tsx │ │ └── virtualized-tree │ │ │ └── index.tsx │ ├── dialogs │ │ ├── add-notebook-dialog.tsx │ │ ├── add-reminder-dialog.tsx │ │ ├── add-tags-dialog.tsx │ │ ├── announcement-dialog.tsx │ │ ├── attachments-dialog.tsx │ │ ├── backup-password-dialog.tsx │ │ ├── buy-dialog │ │ │ ├── buy-dialog.tsx │ │ │ ├── change-plan-dialog.tsx │ │ │ ├── feature-caption.tsx │ │ │ ├── features.tsx │ │ │ ├── helpers.ts │ │ │ ├── index.ts │ │ │ ├── paddle.tsx │ │ │ ├── plan-list.tsx │ │ │ ├── plans.ts │ │ │ ├── store.ts │ │ │ ├── types.ts │ │ │ └── upgrade-dialog.tsx │ │ ├── command-palette │ │ │ ├── command-palette-dialog.tsx │ │ │ ├── commands.ts │ │ │ └── index.ts │ │ ├── confirm.tsx │ │ ├── create-color-dialog.tsx │ │ ├── edit-profile-picture-dialog.tsx │ │ ├── email-change-dialog.tsx │ │ ├── email-verification-dialog.tsx │ │ ├── feature-dialog.tsx │ │ ├── image-picker-dialog.tsx │ │ ├── issue-dialog.tsx │ │ ├── item-dialog.tsx │ │ ├── keyboard-shortcuts-dialog.tsx │ │ ├── mfa │ │ │ ├── multi-factor-dialog.tsx │ │ │ ├── recovery-code-dialog.tsx │ │ │ ├── steps.tsx │ │ │ └── types.ts │ │ ├── migration-dialog.tsx │ │ ├── move-note-dialog.tsx │ │ ├── move-notebook-dialog.tsx │ │ ├── note-linking-dialog.tsx │ │ ├── onboarding-dialog.tsx │ │ ├── password-dialog.tsx │ │ ├── progress-dialog.tsx │ │ ├── prompt.tsx │ │ ├── recovery-key-dialog.tsx │ │ ├── reminder-preview-dialog.tsx │ │ ├── settings │ │ │ ├── app-lock-settings.ts │ │ │ ├── appearance-settings.ts │ │ │ ├── auth-settings.ts │ │ │ ├── backup-export-settings.ts │ │ │ ├── behaviour-settings.ts │ │ │ ├── components │ │ │ │ ├── billing-history.tsx │ │ │ │ ├── circle-partners.tsx │ │ │ │ ├── customize-toolbar.tsx │ │ │ │ ├── dictionary-words.tsx │ │ │ │ ├── inbox-api-keys.tsx │ │ │ │ ├── servers-configuration.tsx │ │ │ │ ├── spell-checker-languages.tsx │ │ │ │ ├── subscription-status.tsx │ │ │ │ ├── themes-selector.tsx │ │ │ │ └── user-profile.tsx │ │ │ ├── desktop-integration-settings.ts │ │ │ ├── editor-settings.ts │ │ │ ├── importer-settings.ts │ │ │ ├── inbox-settings.ts │ │ │ ├── index.tsx │ │ │ ├── notesnook-circle-settings.ts │ │ │ ├── notifications-settings.ts │ │ │ ├── other-settings.ts │ │ │ ├── privacy-settings.ts │ │ │ ├── profile-settings.ts │ │ │ ├── servers-settings.ts │ │ │ ├── subscription-settings.ts │ │ │ ├── sync-settings.ts │ │ │ ├── types.ts │ │ │ └── vault-settings.tsx │ │ └── theme-details-dialog.tsx │ ├── global.d.ts │ ├── hooks │ │ ├── use-auto-updater.ts │ │ ├── use-database.ts │ │ ├── use-drag-handler.ts │ │ ├── use-hash-location.ts │ │ ├── use-hash-routes.tsx │ │ ├── use-is-user-premium.ts │ │ ├── use-keyboard-list-navigation.ts │ │ ├── use-location.ts │ │ ├── use-media-query.ts │ │ ├── use-menu.ts │ │ ├── use-mobile.ts │ │ ├── use-navigate.ts │ │ ├── use-persistent-state.ts │ │ ├── use-routes.ts │ │ ├── use-search.ts │ │ ├── use-session-state.ts │ │ ├── use-slider.ts │ │ ├── use-spell-checker.ts │ │ ├── use-status.ts │ │ ├── use-system-theme.ts │ │ ├── use-tablet.ts │ │ ├── use-timer.ts │ │ ├── use-tip.ts │ │ ├── use-vault.ts │ │ ├── use-window-controls.ts │ │ └── use-window-focus.ts │ ├── index.html │ ├── index.ts │ ├── interfaces │ │ ├── file-store.ts │ │ ├── fs.ts │ │ ├── key-store.ts │ │ ├── key-value.ts │ │ ├── nncrypto.ts │ │ ├── nncrypto.worker.ts │ │ ├── opfs.worker.ts │ │ └── storage.ts │ ├── navigation │ │ ├── hash-routes.tsx │ │ ├── index.ts │ │ ├── routes.tsx │ │ └── types.ts │ ├── polyfills.ts │ ├── re-exports │ │ └── react-qrcode-logo.ts │ ├── root.tsx │ ├── service-worker-registration.ts │ ├── service-worker.dev.ts │ ├── service-worker.ts │ ├── stores │ │ ├── announcement-store.js │ │ ├── app-store.ts │ │ ├── attachment-store.ts │ │ ├── editor-store.ts │ │ ├── index.ts │ │ ├── monograph-store.ts │ │ ├── note-store.ts │ │ ├── notebook-store.ts │ │ ├── reminder-store.ts │ │ ├── search-store.ts │ │ ├── selection-store.ts │ │ ├── setting-store.ts │ │ ├── tag-store.ts │ │ ├── theme-store.ts │ │ ├── trash-store.ts │ │ └── user-store.ts │ ├── utils │ │ ├── changelog.ts │ │ ├── clipboard.ts │ │ ├── compressor.ts │ │ ├── config.ts │ │ ├── data-transfer.ts │ │ ├── dom.ts │ │ ├── feature-check.ts │ │ ├── file-picker.ts │ │ ├── fullscreen.ts │ │ ├── html.ts │ │ ├── idle-detection.ts │ │ ├── image-compressor.ts │ │ ├── importer.ts │ │ ├── keyboard.ts │ │ ├── lazify.ts │ │ ├── logger.ts │ │ ├── md.ts │ │ ├── network-check.ts │ │ ├── network-check.worker.ts │ │ ├── page-visibility.ts │ │ ├── parse.ts │ │ ├── password-generator.ts │ │ ├── platform.ts │ │ ├── stream-saver │ │ │ ├── index.ts │ │ │ └── mitm.ts │ │ ├── stream.ts │ │ ├── streams │ │ │ ├── attachment-stream.ts │ │ │ ├── base64-decoder-stream.ts │ │ │ ├── chunked-stream.ts │ │ │ ├── export-stream.ts │ │ │ ├── fflate-shim.js │ │ │ ├── progress-stream.ts │ │ │ ├── unzip-stream.ts │ │ │ ├── utils.ts │ │ │ └── zip-stream.ts │ │ ├── task-scheduler.ts │ │ ├── task-scheduler.worker.ts │ │ ├── toast.tsx │ │ ├── updater.ts │ │ ├── version.ts │ │ ├── web-extension-relay.ts │ │ ├── web-extension-server.ts │ │ └── webauthn.ts │ └── views │ │ ├── all-notes.tsx │ │ ├── app-lock.tsx │ │ ├── auth.tsx │ │ ├── checkout.tsx │ │ ├── email-confirmed.tsx │ │ ├── notebooks.tsx │ │ ├── notes.tsx │ │ ├── payments.tsx │ │ ├── plans.tsx │ │ ├── recovery.tsx │ │ ├── reminders.tsx │ │ ├── tags.tsx │ │ └── trash.tsx │ ├── tsconfig.json │ ├── vite.config.ts │ ├── vitest.config.ts │ └── web-manifest.ts ├── docs └── help │ ├── contents │ ├── 404.md │ ├── README.md │ ├── _include │ │ ├── _head.html │ │ ├── app-lock-setting-on-off.png │ │ ├── app-lock-setting-time-out.png │ │ ├── app-lock-setting.png │ │ ├── auto-backups-desktop.png │ │ ├── auto-backups-web.png │ │ ├── cell-properties.png │ │ ├── change-remove-app-lock-pin.png │ │ ├── clear-task-icon.png │ │ ├── colored-note-sidemenu.png │ │ ├── colored-note.png │ │ ├── config-toolbar-desktop.png │ │ ├── create-backup-web.png │ │ ├── create-table.png │ │ ├── custom-themes │ │ │ ├── Screenshot_20230808-173716.png │ │ │ ├── theme-scope-context-menu.png │ │ │ ├── theme-scope-dialog.png │ │ │ ├── theme-scope-editor-sidebar.png │ │ │ ├── theme-scope-editor-toolbar.png │ │ │ ├── theme-scope-editor.png │ │ │ ├── theme-scope-list.png │ │ │ ├── theme-scope-navigation-menu.png │ │ │ ├── theme-scope-sheet.png │ │ │ ├── theme-scope-status-bar.png │ │ │ └── theme-scopes-schema.png │ │ ├── custom.css │ │ ├── delete-table.png │ │ ├── desktop-enable-app-lock.png │ │ ├── desktop-lock-app-after.png │ │ ├── desktop-password-key.png │ │ ├── drag-drop.gif │ │ ├── editor-status-bar-desktop.png │ │ ├── favicon.ico │ │ ├── first-note-desktop.png │ │ ├── first-note-mobile.png │ │ ├── fonts │ │ │ ├── fira-code-v21-latin-regular.ttf │ │ │ ├── fira-code-v21-latin-regular.woff │ │ │ ├── fira-code-v21-latin-regular.woff2 │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-600.ttf │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-600.woff │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-600.woff2 │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-600italic.ttf │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-600italic.woff │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-600italic.woff2 │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.ttf │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.woff │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700.woff2 │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700italic.ttf │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700italic.woff │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-700italic.woff2 │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-italic.ttf │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-italic.woff │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-italic.woff2 │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.ttf │ │ │ ├── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff │ │ │ └── open-sans-v34-vietnamese_latin-ext_latin_hebrew_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff2 │ │ ├── insert-row-table.gif │ │ ├── install-macos.png │ │ ├── logo.png │ │ ├── markdown-editing.gif │ │ ├── notebook-ref.png │ │ ├── plus-button-desktop.png │ │ ├── plus-button-mobile.png │ │ ├── plus-button.png │ │ ├── publish-theme-1.png │ │ ├── publish-theme-10.png │ │ ├── publish-theme-2.png │ │ ├── publish-theme-3.png │ │ ├── publish-theme-4.png │ │ ├── publish-theme-5.png │ │ ├── publish-theme-6.png │ │ ├── publish-theme-7.png │ │ ├── publish-theme-8.png │ │ ├── publish-theme-9.png │ │ ├── resize-table.gif │ │ ├── restore-backup-mobile.png │ │ ├── robots.txt │ │ ├── setup-app-lock-pin.png │ │ ├── sidemenu.png │ │ ├── sort-task-icon.png │ │ ├── static │ │ │ ├── account-recovery │ │ │ │ ├── recovery_email.png │ │ │ │ ├── step-1.png │ │ │ │ ├── step-2.png │ │ │ │ ├── step-3.png │ │ │ │ ├── step-4.png │ │ │ │ ├── step-5.png │ │ │ │ ├── step-6.png │ │ │ │ └── step-7.png │ │ │ ├── color_note_desktop.png │ │ │ ├── color_note_step_1.jpg │ │ │ ├── color_note_step_2.jpg │ │ │ ├── color_pinned_side_desktop.png │ │ │ ├── desktop-integration │ │ │ │ ├── dock-menu-macos.png │ │ │ │ ├── jumplist-menu-linux.png │ │ │ │ ├── jumplist-menu-windows.png │ │ │ │ └── system-tray-menu.png │ │ │ ├── evernote-importer │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ └── 6.png │ │ │ ├── favorite_note.jpg │ │ │ ├── favorites_page.png │ │ │ ├── google-keep-importer │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ └── 6.png │ │ │ ├── html │ │ │ │ ├── 1.png │ │ │ │ └── 2.png │ │ │ ├── joplin-importer │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ └── 4.png │ │ │ ├── markdown-importer │ │ │ │ ├── 1.png │ │ │ │ └── 2.png │ │ │ ├── merge-conflicts-resolution-screen-2.png │ │ │ ├── merge-conflicts-resolution-screen-mobile-2.png │ │ │ ├── merge-conflicts-resolution-screen-mobile.png │ │ │ ├── merge-conflicts-resolution-screen.png │ │ │ ├── mobile-integration │ │ │ │ ├── android-pin-notification.png │ │ │ │ ├── android-quick-note-notifications.png │ │ │ │ ├── android-quick-note-widget.png │ │ │ │ ├── clip-selection-android.png │ │ │ │ ├── clip-selection-ios.png │ │ │ │ ├── clip-webpage.png │ │ │ │ ├── ios-quick-note-widget.png │ │ │ │ ├── save-clip-ios.png │ │ │ │ ├── select-notesnook-android.png │ │ │ │ └── select-notesnook-ios.png │ │ │ ├── obsidian-importer │ │ │ │ ├── 1.png │ │ │ │ └── 2.png │ │ │ ├── onenote-importer │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ ├── plaintext-importer │ │ │ │ ├── 1.png │ │ │ │ └── 2.png │ │ │ ├── simplenote-importer │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ ├── skiff-importer │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ └── 4.png │ │ │ ├── spell-checker-languages.png │ │ │ ├── standard-notes-importer │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ └── 5.png │ │ │ ├── web-clipper │ │ │ │ ├── assign-a-tag.gif │ │ │ │ ├── chrome-dev-mode.png │ │ │ │ ├── chrome-pin-to-toolbar.gif │ │ │ │ ├── clipping-area.png │ │ │ │ ├── firefox-pin-to-toolbar.gif │ │ │ │ ├── organize-web-clip.png │ │ │ │ ├── selected-nodes-popup.png │ │ │ │ └── web-clip-embed.gif │ │ │ └── zoho-importer │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ └── 7.png │ │ ├── table-delete-column.png │ │ ├── table-example-22.png │ │ ├── table-insert-column.gif │ │ ├── table-merge-cells.gif │ │ ├── table-move-column.gif │ │ ├── table-move-row.gif │ │ ├── table-row-delete.png │ │ ├── table-split-cell.gif │ │ ├── tagged-note-mobile.png │ │ ├── tagged-note.png │ │ ├── tags-in-editor.png │ │ ├── task-drag-drop.png │ │ ├── task-header-title.png │ │ ├── theme-builder-actions.png │ │ ├── theme-builder-base.png │ │ ├── theme-builder-change-color.gif │ │ ├── theme-builder-export-theme.png │ │ ├── theme-builder-metadata.png │ │ ├── theme-builder-navigation-menu-modify.png │ │ ├── theme-builder-navigation-menu-scope.png │ │ ├── theme-builder-navigation-menu.png │ │ ├── theme-builder-select-starter-theme.png │ │ ├── theme-builder.png │ │ ├── theme-load-file.png │ │ ├── theme-set-as-default.png │ │ ├── three-dot-button.png │ │ ├── toolbar-blocks.png │ │ ├── toolbar-editor.png │ │ ├── toolbar-plus.png │ │ ├── update-theme-1.png │ │ ├── update-theme-2.png │ │ ├── update-theme-3.png │ │ ├── update-theme-4.png │ │ ├── update-theme-5.png │ │ └── update-theme-6.png │ ├── app-lock.md │ ├── backup-and-restore-notes-in-notesnook.md │ ├── create-a-note-in-notesnook.md │ ├── custom-themes │ │ ├── README.md │ │ ├── create-a-theme-with-theme-builder.md │ │ ├── install-a-theme-from-file.md │ │ ├── introduction.md │ │ └── publish-a-theme.md │ ├── deleting-your-account.md │ ├── desktop-integration │ │ ├── README.md │ │ ├── auto-start-on-system-startup.md │ │ ├── jumplist-and-dock-menu.md │ │ ├── spell-checker.md │ │ └── system-tray-menu.md │ ├── export-notes-from-notesnook.md │ ├── faqs │ │ ├── README.md │ │ ├── is-there-an-eta.md │ │ ├── login-to-upload-attachments.md │ │ └── what-are-merge-conflicts.md │ ├── gift-cards.md │ ├── how-is-my-data-encrypted.md │ ├── importing-notes │ │ ├── README.md │ │ ├── import-notes-from-evernote.md │ │ ├── import-notes-from-googlekeep.md │ │ ├── import-notes-from-html-files.md │ │ ├── import-notes-from-joplin.md │ │ ├── import-notes-from-markdown-files.md │ │ ├── import-notes-from-obsidian.md │ │ ├── import-notes-from-plaintext-files.md │ │ ├── import-notes-from-simplenote.md │ │ ├── import-notes-from-skiff-pages.md │ │ ├── import-notes-from-standardnotes.md │ │ └── import-notes-from-zoho-notebook.md │ ├── keyboard-shortcuts.md │ ├── lock-notes-with-private-vault.md │ ├── mobile-integration │ │ ├── README.md │ │ ├── home-screen-widgets.md │ │ ├── pin-notes-to-notifications.md │ │ ├── quick-note-from-notification.md │ │ └── share-things-from-other-apps.md │ ├── note-version-history.md │ ├── organizing-notes │ │ ├── README.md │ │ ├── organize-notes-using-colors.md │ │ ├── organize-notes-using-favorites.md │ │ ├── organize-notes-using-notebooks.md │ │ ├── organize-notes-using-tags.md │ │ ├── pin-notes-and-notebooks.md │ │ └── side-menu-shortcuts.md │ ├── privacy-mode.md │ ├── publish-notes-with-monographs.md │ ├── recovering-your-account.md │ ├── rich-text-editor │ │ ├── README.md │ │ ├── markdown-notes-editing.md │ │ ├── personalizing-rich-text-editor.md │ │ ├── rich-text-editor-toolbar.md │ │ ├── tables.md │ │ └── task-and-todo-lists.md │ └── web-clipper │ │ ├── README.md │ │ ├── clipping-your-first-web-page-with-web-clipper.md │ │ ├── installation.md │ │ └── troubleshooting.md │ ├── docgen.yaml │ ├── package-lock.json │ ├── package.json │ └── scripts │ └── document-keyboard-shortcuts.mjs ├── extensions └── web-clipper │ ├── .gitignore │ ├── README.md │ ├── assets │ ├── 128x128.png │ ├── 16x16.png │ ├── 24x24.png │ ├── 256x256.png │ ├── 32x32.png │ ├── 48x48.png │ ├── 64x64.png │ └── logo.svg │ ├── build-utils │ ├── build.js │ ├── dev.js │ ├── env.js │ └── manifest.js │ ├── global.d.ts │ ├── package-lock.json │ ├── package.json │ ├── public │ └── index.html │ ├── src │ ├── api.ts │ ├── app.tsx │ ├── background.ts │ ├── common │ │ ├── bridge.ts │ │ └── constants.ts │ ├── components │ │ ├── check-list-item │ │ │ └── index.tsx │ │ ├── filtered-list │ │ │ └── index.tsx │ │ ├── icons │ │ │ ├── icon.tsx │ │ │ └── index.ts │ │ ├── inline-tag │ │ │ └── index.tsx │ │ ├── note-picker │ │ │ └── index.tsx │ │ ├── notebook-picker │ │ │ └── index.tsx │ │ ├── picker │ │ │ └── index.tsx │ │ ├── scroll-container │ │ │ └── index.tsx │ │ └── tag-picker │ │ │ └── index.tsx │ ├── content-scripts │ │ ├── all.ts │ │ └── nn.ts │ ├── hooks │ │ └── use-persistent-state.ts │ ├── index.css │ ├── index.tsx │ ├── manifest.json │ ├── stores │ │ └── app-store.tsx │ ├── utils │ │ ├── comlink-extension.ts │ │ ├── config.ts │ │ └── storage.ts │ └── views │ │ ├── login.tsx │ │ ├── main.tsx │ │ └── settings.tsx │ ├── tsconfig.json │ └── webpack.config.js ├── fastlane └── metadata │ └── android │ └── en-US │ ├── changelogs │ ├── 10139.txt │ ├── 10184.txt │ ├── 10189.txt │ ├── 10234.txt │ ├── 10244.txt │ ├── 10249.txt │ ├── 10254.txt │ ├── 10259.txt │ ├── 10264.txt │ ├── 10269.txt │ ├── 10274.txt │ ├── 10279.txt │ ├── 10294.txt │ ├── 10299.txt │ ├── 10309.txt │ ├── 10319.txt │ ├── 10324.txt │ ├── 10329.txt │ ├── 10334.txt │ ├── 10344.txt │ ├── 10349.txt │ ├── 10354.txt │ ├── 10359.txt │ ├── 10364.txt │ ├── 10369.txt │ ├── 10374.txt │ ├── 10379.txt │ ├── 10424.txt │ ├── 10454.txt │ ├── 15044.txt │ ├── 15049.txt │ ├── 15054.txt │ ├── 15059.txt │ ├── 15064.txt │ ├── 15069.txt │ ├── 15074.txt │ ├── 15079.txt │ ├── 15084.txt │ ├── 15089.txt │ ├── 15094.txt │ ├── 15099.txt │ ├── 15104.txt │ ├── 15109.txt │ ├── 15114.txt │ ├── 15119.txt │ ├── 15124.txt │ ├── 15129.txt │ ├── 15144.txt │ ├── 15149.txt │ ├── 15154.txt │ ├── 15159.txt │ ├── 15164.txt │ ├── 15169.txt │ ├── 15174.txt │ ├── 15179.txt │ ├── 15184.txt │ ├── 15189.txt │ ├── 15209.txt │ ├── 15249.txt │ ├── 15254.txt │ ├── 15284.txt │ ├── 15294.txt │ ├── 15299.txt │ ├── 15304.txt │ ├── 15309.txt │ ├── 15314.txt │ ├── 15319.txt │ ├── 15324.txt │ ├── 15329.txt │ ├── 15334.txt │ ├── 15339.txt │ ├── 15344.txt │ ├── 15349.txt │ ├── 15354.txt │ ├── 15359.txt │ ├── 15374.txt │ ├── 15379.txt │ ├── 15384.txt │ ├── 15389.txt │ ├── 15394.txt │ ├── 4196327.txt │ ├── 4196328.txt │ ├── 4196329.txt │ ├── 4196330.txt │ ├── 4196331.txt │ └── default.txt │ ├── full_description.txt │ ├── images │ ├── icon.png │ └── phoneScreenshots │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ └── 7.jpg │ ├── keywords.txt │ ├── short_description.txt │ └── title.txt ├── package.json ├── packages ├── clipper │ ├── .gitignore │ ├── .npmignore │ ├── __tests__ │ │ ├── example.spec.ts │ │ ├── example.spec.ts-snapshots │ │ │ ├── Apple-chromium-linux.jpg │ │ │ ├── Docgen-Github-chromium-linux.jpg │ │ │ ├── House-of-the-Dragon--TV-Series-2022---IMDb-chromium-linux.jpg │ │ │ ├── How-to-set-Linux-environment-variables-with-Ansible-Stack-Overflow-chromium-linux.jpg │ │ │ ├── IMDb--Ratings-Reviews-and-Where-to-Watch-the-Best-Movies-and-TV-Shows-chromium-linux.jpg │ │ │ ├── My-Ad-Center-helps-you-control-the-ads-you-see-chromium-linux.jpg │ │ │ ├── Playwright-Docs-chromium-linux.jpg │ │ │ └── Playwright-Docs-image-chromium-linux.png │ │ └── pages.json │ ├── package-lock.json │ ├── package.json │ ├── patches │ │ └── css-what+6.1.0.patch │ ├── playwright.config.ts │ ├── rsbuild.config.ts │ ├── src │ │ ├── clone.ts │ │ ├── domtoimage.ts │ │ ├── fetch.ts │ │ ├── fontfaces.ts │ │ ├── images.ts │ │ ├── index.global.ts │ │ ├── index.ts │ │ ├── inliner.ts │ │ ├── styles.ts │ │ ├── types.ts │ │ └── utils.ts │ └── tsconfig.json ├── common │ ├── .gitignore │ ├── .npmignore │ ├── README.md │ ├── __tests__ │ │ └── path-tree.test.ts │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── components │ │ │ ├── index.ts │ │ │ └── resolved-item.tsx │ │ ├── database.ts │ │ ├── hooks │ │ │ ├── index.ts │ │ │ ├── use-is-feature-available.ts │ │ │ ├── use-promise.ts │ │ │ ├── use-resolved-item.ts │ │ │ └── use-time-ago.ts │ │ ├── index.ts │ │ └── utils │ │ │ ├── dataurl.ts │ │ │ ├── date-time.ts │ │ │ ├── debounce.ts │ │ │ ├── export-notes.ts │ │ │ ├── file.ts │ │ │ ├── index.ts │ │ │ ├── is-feature-available.ts │ │ │ ├── keybindings.ts │ │ │ ├── migrate-toolbar.ts │ │ │ ├── number.ts │ │ │ ├── path-tree.ts │ │ │ ├── random.ts │ │ │ ├── resolve-items.ts │ │ │ ├── string.ts │ │ │ └── tab-session-history.ts │ └── tsconfig.json ├── core │ ├── .gitignore │ ├── .npmignore │ ├── README.md │ ├── __benches__ │ │ ├── lookup.bench.ts │ │ ├── notes.bench.ts │ │ ├── objectid.bench.ts │ │ ├── relations.bench.ts │ │ └── reminders.bench.ts │ ├── __e2e__ │ │ ├── __snapshots__ │ │ │ └── offers.test.js.snap │ │ ├── monographs.test.js │ │ ├── offers.test.js │ │ ├── sync.test.js │ │ ├── token-manager.test.js │ │ ├── user-manager.test.js │ │ └── utils.js │ ├── __mocks__ │ │ ├── compressor.mock.js │ │ ├── fs.mock.ts │ │ └── node-storage.mock.ts │ ├── __tests__ │ │ ├── __fixtures__ │ │ │ ├── backup.v5.2.copy.json │ │ │ ├── backup.v5.2.json │ │ │ ├── backup.v5.6.json │ │ │ └── backup.v5.8.json │ │ ├── __snapshots__ │ │ │ └── notes.test.ts.snap │ │ ├── backup.test.js │ │ ├── db.test.js │ │ ├── fts-triggers.test.ts │ │ ├── logger.test.ts │ │ ├── lookup.test.js │ │ ├── migrations.test.ts │ │ ├── note-history.test.js │ │ ├── notebooks.test.js │ │ ├── notes.test.ts │ │ ├── reminders.test.js │ │ ├── settings.test.js │ │ ├── setup │ │ │ ├── global.setup.ts │ │ │ └── test.setup.ts │ │ ├── shortcuts.test.js │ │ ├── storage.test.js │ │ ├── tags.test.ts │ │ ├── trash.test.ts │ │ ├── utils │ │ │ └── index.ts │ │ └── vault.test.js │ ├── from-to-database-linking.png │ ├── incremental-grouping.md │ ├── package-lock.json │ ├── package.json │ ├── patches │ │ ├── @microsoft+signalr+8.0.0.patch │ │ └── html-to-text+9.0.5.patch │ ├── scripts │ │ └── prebuild.mjs │ ├── src │ │ ├── api │ │ │ ├── __tests__ │ │ │ │ ├── debug.test.js │ │ │ │ └── healthcheck.test.ts │ │ │ ├── circle.ts │ │ │ ├── debug.ts │ │ │ ├── healthcheck.ts │ │ │ ├── inbox-api-keys.ts │ │ │ ├── index.ts │ │ │ ├── lookup.ts │ │ │ ├── mfa-manager.ts │ │ │ ├── migrations.ts │ │ │ ├── monographs.ts │ │ │ ├── offers.ts │ │ │ ├── pricing.ts │ │ │ ├── subscriptions.ts │ │ │ ├── sync │ │ │ │ ├── __tests__ │ │ │ │ │ ├── collector.test.js │ │ │ │ │ └── merger.test.js │ │ │ │ ├── auto-sync.ts │ │ │ │ ├── collector.ts │ │ │ │ ├── devices.ts │ │ │ │ ├── index.ts │ │ │ │ ├── merger.ts │ │ │ │ └── types.ts │ │ │ ├── token-manager.ts │ │ │ ├── user-manager.ts │ │ │ └── vault.ts │ │ ├── collections │ │ │ ├── attachments.ts │ │ │ ├── collection.ts │ │ │ ├── colors.ts │ │ │ ├── content.ts │ │ │ ├── legacy-settings.ts │ │ │ ├── monographs.ts │ │ │ ├── note-history.ts │ │ │ ├── notebooks.ts │ │ │ ├── notes.ts │ │ │ ├── relations.ts │ │ │ ├── reminders.ts │ │ │ ├── session-content.ts │ │ │ ├── settings.ts │ │ │ ├── shortcuts.ts │ │ │ ├── tags.ts │ │ │ ├── trash.ts │ │ │ └── vaults.ts │ │ ├── common.ts │ │ ├── content-types │ │ │ ├── __tests__ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── tiptap.test.js.snap │ │ │ │ └── tiptap.test.js │ │ │ ├── index.ts │ │ │ └── tiptap.ts │ │ ├── database │ │ │ ├── backup.ts │ │ │ ├── cached-collection.ts │ │ │ ├── config.ts │ │ │ ├── fs.ts │ │ │ ├── fts.ts │ │ │ ├── index.ts │ │ │ ├── indexed-collection.ts │ │ │ ├── indexer.ts │ │ │ ├── kv.ts │ │ │ ├── migrations.ts │ │ │ ├── migrator.ts │ │ │ ├── sanitizer.ts │ │ │ ├── sql-cached-collection.ts │ │ │ ├── sql-collection.ts │ │ │ └── triggers.ts │ │ ├── index.ts │ │ ├── interfaces.ts │ │ ├── logger.ts │ │ ├── migrations.ts │ │ ├── types.ts │ │ └── utils │ │ │ ├── __tests__ │ │ │ ├── content-block.test.ts │ │ │ ├── fuzzy.test.ts │ │ │ ├── html-diff.test.js │ │ │ ├── internal-link.test.ts │ │ │ ├── query-transformer.test.ts │ │ │ ├── set.test.js │ │ │ ├── title-format.test.js │ │ │ └── virtualized-grouping.test.ts │ │ │ ├── array.ts │ │ │ ├── clone.ts │ │ │ ├── constants.ts │ │ │ ├── content-block.ts │ │ │ ├── crypto.ts │ │ │ ├── dataurl.ts │ │ │ ├── date.ts │ │ │ ├── event-manager.ts │ │ │ ├── filename.ts │ │ │ ├── fuzzy.ts │ │ │ ├── grouping.ts │ │ │ ├── has-require.ts │ │ │ ├── hostname.ts │ │ │ ├── html-diff.ts │ │ │ ├── html-parser.ts │ │ │ ├── html-rewriter.ts │ │ │ ├── http.ts │ │ │ ├── id.ts │ │ │ ├── index.ts │ │ │ ├── internal-link.ts │ │ │ ├── lazy-promise.ts │ │ │ ├── object-id.ts │ │ │ ├── query-transformer.ts │ │ │ ├── queue-value.ts │ │ │ ├── random.ts │ │ │ ├── set.ts │ │ │ ├── templates │ │ │ ├── html │ │ │ │ ├── index.ts │ │ │ │ └── template.ts │ │ │ ├── index.ts │ │ │ ├── md.ts │ │ │ └── text.ts │ │ │ ├── title-format.ts │ │ │ └── virtualized-grouping.ts │ ├── tsconfig.json │ └── vitest.config.ts ├── crypto │ ├── .npmignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── decryption.ts │ │ ├── encryption.ts │ │ ├── index.ts │ │ ├── interfaces.ts │ │ ├── keyutils.ts │ │ ├── password.ts │ │ └── types.ts │ └── tsconfig.json ├── editor-mobile │ ├── .env │ ├── .gitignore │ ├── README.md │ ├── __e2e__ │ │ ├── device-utils.ts │ │ ├── editor.mobile.test.ts │ │ ├── keyboard-utils.ts │ │ └── test-utils.ts │ ├── package-lock.json │ ├── package.json │ ├── patches │ │ └── react-scripts+5.0.1.patch │ ├── playwright.config.ts │ ├── public │ │ ├── favicon.ico │ │ ├── fonts.css │ │ ├── fonts │ │ │ ├── Inter-Black.ttf │ │ │ ├── Inter-BlackItalic.ttf │ │ │ ├── Inter-Bold.ttf │ │ │ ├── Inter-BoldItalic.ttf │ │ │ ├── Inter-ExtraBold.ttf │ │ │ ├── Inter-ExtraBoldItalic.ttf │ │ │ ├── Inter-ExtraLight.ttf │ │ │ ├── Inter-ExtraLightItalic.ttf │ │ │ ├── Inter-Italic.ttf │ │ │ ├── Inter-Light.ttf │ │ │ ├── Inter-LightItalic.ttf │ │ │ ├── Inter-Medium.ttf │ │ │ ├── Inter-MediumItalic.ttf │ │ │ ├── Inter-Regular.ttf │ │ │ ├── Inter-SemiBold.ttf │ │ │ ├── Inter-SemiBoldItalic.ttf │ │ │ ├── Inter-Thin.ttf │ │ │ └── Inter-ThinItalic.ttf │ │ ├── index.html │ │ ├── manifest.json │ │ ├── placeholder.svg │ │ └── robots.txt │ ├── scripts │ │ └── build.mjs │ ├── src │ │ ├── App.css │ │ ├── App.test.js │ │ ├── App.tsx │ │ ├── components │ │ │ ├── button.tsx │ │ │ ├── editor.tsx │ │ │ ├── header.tsx │ │ │ ├── readonly-editor.tsx │ │ │ ├── statusbar.tsx │ │ │ ├── styles.module.css │ │ │ ├── tags.tsx │ │ │ ├── tiptap.tsx │ │ │ └── title.tsx │ │ ├── hooks │ │ │ ├── useEditorController.ts │ │ │ ├── useSafeArea.ts │ │ │ ├── useSettings.ts │ │ │ └── useTabStore.ts │ │ ├── index.css │ │ ├── index.tsx │ │ ├── logo.svg │ │ ├── polyfill.ts │ │ ├── react-app-env.d.ts │ │ ├── setupTests.js │ │ ├── theme-factory │ │ │ └── index.tsx │ │ └── utils │ │ │ ├── commands.ts │ │ │ ├── css.ts │ │ │ ├── editor-events.ts │ │ │ ├── index.ts │ │ │ ├── native-events.ts │ │ │ └── pending-saves.ts │ └── tsconfig.json ├── editor │ ├── .gitignore │ ├── .npmignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── patches │ │ ├── @tiptap+core+2.6.6.patch │ │ ├── @tiptap+extension-list-keymap+2.6.6.patch │ │ ├── katex+0.16.11.patch │ │ ├── prosemirror-model+1.22.3.patch │ │ └── prosemirror-view+1.34.2.patch │ ├── scripts │ │ ├── build.mjs │ │ ├── langen.mjs │ │ └── postbuild.mjs │ ├── src │ │ ├── components │ │ │ ├── action-sheet │ │ │ │ └── index.tsx │ │ │ ├── button.tsx │ │ │ ├── inline-input │ │ │ │ └── index.tsx │ │ │ ├── popup-presenter │ │ │ │ └── index.tsx │ │ │ ├── resizer │ │ │ │ └── index.tsx │ │ │ ├── responsive │ │ │ │ └── index.tsx │ │ │ └── tabs │ │ │ │ └── index.tsx │ │ ├── extension-imports.ts │ │ ├── extensions │ │ │ ├── attachment │ │ │ │ ├── attachment.ts │ │ │ │ ├── component.tsx │ │ │ │ ├── index.ts │ │ │ │ └── types.ts │ │ │ ├── block-id │ │ │ │ ├── block-id.ts │ │ │ │ └── index.ts │ │ │ ├── blockquote │ │ │ │ ├── blockquote.ts │ │ │ │ └── index.ts │ │ │ ├── bullet-list │ │ │ │ ├── bullet-list.ts │ │ │ │ └── index.ts │ │ │ ├── callout │ │ │ │ ├── callout.ts │ │ │ │ └── index.ts │ │ │ ├── check-list-item │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── check-list-item.test.ts.snap │ │ │ │ │ └── check-list-item.test.ts │ │ │ │ ├── check-list-item.ts │ │ │ │ └── index.ts │ │ │ ├── check-list │ │ │ │ ├── check-list.ts │ │ │ │ └── index.ts │ │ │ ├── clipboard │ │ │ │ ├── clipboard-dom-parser.ts │ │ │ │ ├── clipboard-dom-serializer.ts │ │ │ │ ├── clipboard-text-parser.ts │ │ │ │ ├── clipboard-text-serializer.ts │ │ │ │ ├── clipboard.ts │ │ │ │ ├── index.ts │ │ │ │ └── tests │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── clipboard-dom-parser.test.ts.snap │ │ │ │ │ ├── clipboard-text-parser.test.ts.snap │ │ │ │ │ └── clipboard-text-serializer.test.ts.snap │ │ │ │ │ ├── clipboard-dom-parser.test.ts │ │ │ │ │ ├── clipboard-text-parser.test.ts │ │ │ │ │ └── clipboard-text-serializer.test.ts │ │ │ ├── code-block │ │ │ │ ├── code-block.ts │ │ │ │ ├── component.tsx │ │ │ │ ├── highlighter.ts │ │ │ │ ├── index.ts │ │ │ │ ├── languages.json │ │ │ │ ├── loader.ts │ │ │ │ ├── tests │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── code-block.test.ts.snap │ │ │ │ │ └── code-block.test.ts │ │ │ │ └── utils.ts │ │ │ ├── code-mark │ │ │ │ ├── code-mark.ts │ │ │ │ └── index.ts │ │ │ ├── date-time │ │ │ │ ├── date-time.ts │ │ │ │ └── index.ts │ │ │ ├── diff-highlighter │ │ │ │ ├── diff-highlighter.ts │ │ │ │ └── index.ts │ │ │ ├── embed │ │ │ │ ├── component.tsx │ │ │ │ ├── embed.ts │ │ │ │ └── index.ts │ │ │ ├── font-family │ │ │ │ ├── font-family.ts │ │ │ │ └── index.ts │ │ │ ├── font-ligature │ │ │ │ ├── font-ligature.ts │ │ │ │ └── index.ts │ │ │ ├── font-size │ │ │ │ ├── font-size.ts │ │ │ │ └── index.ts │ │ │ ├── heading │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── heading.test.ts.snap │ │ │ │ │ └── heading.test.ts │ │ │ │ ├── heading.ts │ │ │ │ └── index.ts │ │ │ ├── highlight │ │ │ │ ├── highlight.ts │ │ │ │ └── index.ts │ │ │ ├── image │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── image.test.ts.snap │ │ │ │ │ └── image.test.ts │ │ │ │ ├── component.tsx │ │ │ │ ├── image.ts │ │ │ │ └── index.ts │ │ │ ├── inline-code │ │ │ │ ├── index.ts │ │ │ │ ├── inline-code.ts │ │ │ │ └── tests │ │ │ │ │ └── inline-code.test.ts │ │ │ ├── keep-in-view │ │ │ │ ├── index.ts │ │ │ │ └── keep-in-view.ts │ │ │ ├── key-map │ │ │ │ ├── index.ts │ │ │ │ └── key-map.ts │ │ │ ├── link │ │ │ │ ├── helpers │ │ │ │ │ ├── autolink.ts │ │ │ │ │ ├── clickHandler.ts │ │ │ │ │ └── pasteHandler.ts │ │ │ │ ├── index.ts │ │ │ │ ├── link.ts │ │ │ │ └── tests │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── link.test.ts.snap │ │ │ │ │ └── link.test.ts │ │ │ ├── list-item │ │ │ │ ├── index.ts │ │ │ │ ├── list-item.ts │ │ │ │ └── tests │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── list-item.test.ts.snap │ │ │ │ │ └── list-item.test.ts │ │ │ ├── math │ │ │ │ ├── index.ts │ │ │ │ ├── math-block.ts │ │ │ │ ├── math-inline.ts │ │ │ │ └── plugin │ │ │ │ │ ├── commands │ │ │ │ │ ├── collapse-math-node.ts │ │ │ │ │ ├── insert-math-node.ts │ │ │ │ │ └── move-cursor-cmd.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── math-node-view.ts │ │ │ │ │ ├── math-plugin.ts │ │ │ │ │ ├── plugins │ │ │ │ │ ├── math-backspace.ts │ │ │ │ │ ├── math-paste-rules.ts │ │ │ │ │ └── math-select.ts │ │ │ │ │ ├── renderers │ │ │ │ │ ├── katex.ts │ │ │ │ │ └── types.ts │ │ │ │ │ └── utils │ │ │ │ │ ├── text-serializer.ts │ │ │ │ │ └── types.ts │ │ │ ├── ordered-list │ │ │ │ ├── index.ts │ │ │ │ └── ordered-list.ts │ │ │ ├── outline-list-item │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── outline-list-item.test.ts.snap │ │ │ │ │ └── outline-list-item.test.ts │ │ │ │ ├── index.ts │ │ │ │ └── outline-list-item.ts │ │ │ ├── outline-list │ │ │ │ ├── index.ts │ │ │ │ └── outline-list.ts │ │ │ ├── paragraph │ │ │ │ ├── index.ts │ │ │ │ └── paragraph.ts │ │ │ ├── quirks │ │ │ │ ├── index.ts │ │ │ │ └── quirks.ts │ │ │ ├── react │ │ │ │ ├── event-dispatcher.ts │ │ │ │ ├── index.ts │ │ │ │ ├── react-node-view.tsx │ │ │ │ ├── react-portal-provider.tsx │ │ │ │ └── types.ts │ │ │ ├── search-replace │ │ │ │ ├── index.ts │ │ │ │ └── search-replace.ts │ │ │ ├── search-result │ │ │ │ └── search-result.ts │ │ │ ├── table-cell │ │ │ │ ├── index.ts │ │ │ │ ├── table-cell.ts │ │ │ │ └── utils.ts │ │ │ ├── table-header │ │ │ │ ├── index.ts │ │ │ │ └── table-header.ts │ │ │ ├── table │ │ │ │ ├── actions.ts │ │ │ │ ├── component.tsx │ │ │ │ ├── index.ts │ │ │ │ └── table.ts │ │ │ ├── task-item │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── task-item.test.ts.snap │ │ │ │ │ └── task-item.test.ts │ │ │ │ ├── component.tsx │ │ │ │ ├── index.ts │ │ │ │ └── task-item.ts │ │ │ ├── task-list │ │ │ │ ├── __tests__ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── task-list.test.ts.snap │ │ │ │ │ └── task-list.test.ts │ │ │ │ ├── component.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── task-list.ts │ │ │ │ └── utils.ts │ │ │ ├── text-direction │ │ │ │ ├── index.ts │ │ │ │ └── text-direction.ts │ │ │ └── web-clip │ │ │ │ ├── component.tsx │ │ │ │ ├── index.ts │ │ │ │ └── web-clip.ts │ │ ├── hooks │ │ │ ├── use-editor.ts │ │ │ ├── use-observer.ts │ │ │ ├── use-permission-handler.ts │ │ │ ├── use-ref-value.ts │ │ │ └── use-timer.ts │ │ ├── index.ts │ │ ├── toolbar │ │ │ ├── components │ │ │ │ ├── counter.tsx │ │ │ │ ├── dropdown.tsx │ │ │ │ ├── more-tools.tsx │ │ │ │ ├── popup.tsx │ │ │ │ ├── split-button.tsx │ │ │ │ ├── tool-button.tsx │ │ │ │ └── toolbar-group.tsx │ │ │ ├── floating-menus │ │ │ │ ├── hover-popup │ │ │ │ │ ├── context.ts │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── link.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── search-replace.tsx │ │ │ │ └── types.ts │ │ │ ├── icons.ts │ │ │ ├── index.ts │ │ │ ├── popups │ │ │ │ ├── cell-properties.tsx │ │ │ │ ├── color-picker.tsx │ │ │ │ ├── embed-popup.tsx │ │ │ │ ├── image-properties.tsx │ │ │ │ ├── image-upload.tsx │ │ │ │ ├── link-popup.tsx │ │ │ │ ├── search-replace.tsx │ │ │ │ └── table-popup.tsx │ │ │ ├── stores │ │ │ │ ├── search-store.ts │ │ │ │ └── toolbar-store.ts │ │ │ ├── tool-definitions.ts │ │ │ ├── toolbar.tsx │ │ │ ├── tools │ │ │ │ ├── alignment.tsx │ │ │ │ ├── attachment.tsx │ │ │ │ ├── block.tsx │ │ │ │ ├── colors.tsx │ │ │ │ ├── embed.tsx │ │ │ │ ├── font.tsx │ │ │ │ ├── headings.tsx │ │ │ │ ├── image.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── inline.tsx │ │ │ │ ├── link.tsx │ │ │ │ ├── lists.tsx │ │ │ │ ├── table.tsx │ │ │ │ ├── text-direction.tsx │ │ │ │ ├── utils.tsx │ │ │ │ └── web-clip.tsx │ │ │ ├── types.ts │ │ │ └── utils │ │ │ │ └── dom.ts │ │ ├── types.ts │ │ └── utils │ │ │ ├── config.ts │ │ │ ├── debounce.ts │ │ │ ├── downloader.ts │ │ │ ├── font.ts │ │ │ ├── list.ts │ │ │ ├── node-types.ts │ │ │ ├── platform.ts │ │ │ ├── prosemirror.ts │ │ │ ├── toc.ts │ │ │ └── word-counter.ts │ ├── styles │ │ ├── fonts.css │ │ ├── fonts.mobile.css │ │ ├── fonts │ │ │ ├── KaTeX_AMS-Regular.ttf │ │ │ ├── KaTeX_AMS-Regular.woff │ │ │ ├── KaTeX_AMS-Regular.woff2 │ │ │ ├── KaTeX_Caligraphic-Bold.ttf │ │ │ ├── KaTeX_Caligraphic-Bold.woff │ │ │ ├── KaTeX_Caligraphic-Bold.woff2 │ │ │ ├── KaTeX_Caligraphic-Regular.ttf │ │ │ ├── KaTeX_Caligraphic-Regular.woff │ │ │ ├── KaTeX_Caligraphic-Regular.woff2 │ │ │ ├── KaTeX_Fraktur-Bold.ttf │ │ │ ├── KaTeX_Fraktur-Bold.woff │ │ │ ├── KaTeX_Fraktur-Bold.woff2 │ │ │ ├── KaTeX_Fraktur-Regular.ttf │ │ │ ├── KaTeX_Fraktur-Regular.woff │ │ │ ├── KaTeX_Fraktur-Regular.woff2 │ │ │ ├── KaTeX_Main-Bold.ttf │ │ │ ├── KaTeX_Main-Bold.woff │ │ │ ├── KaTeX_Main-Bold.woff2 │ │ │ ├── KaTeX_Main-BoldItalic.ttf │ │ │ ├── KaTeX_Main-BoldItalic.woff │ │ │ ├── KaTeX_Main-BoldItalic.woff2 │ │ │ ├── KaTeX_Main-Italic.ttf │ │ │ ├── KaTeX_Main-Italic.woff │ │ │ ├── KaTeX_Main-Italic.woff2 │ │ │ ├── KaTeX_Main-Regular.ttf │ │ │ ├── KaTeX_Main-Regular.woff │ │ │ ├── KaTeX_Main-Regular.woff2 │ │ │ ├── KaTeX_Math-BoldItalic.ttf │ │ │ ├── KaTeX_Math-BoldItalic.woff │ │ │ ├── KaTeX_Math-BoldItalic.woff2 │ │ │ ├── KaTeX_Math-Italic.ttf │ │ │ ├── KaTeX_Math-Italic.woff │ │ │ ├── KaTeX_Math-Italic.woff2 │ │ │ ├── KaTeX_SansSerif-Bold.ttf │ │ │ ├── KaTeX_SansSerif-Bold.woff │ │ │ ├── KaTeX_SansSerif-Bold.woff2 │ │ │ ├── KaTeX_SansSerif-Italic.ttf │ │ │ ├── KaTeX_SansSerif-Italic.woff │ │ │ ├── KaTeX_SansSerif-Italic.woff2 │ │ │ ├── KaTeX_SansSerif-Regular.ttf │ │ │ ├── KaTeX_SansSerif-Regular.woff │ │ │ ├── KaTeX_SansSerif-Regular.woff2 │ │ │ ├── KaTeX_Script-Regular.ttf │ │ │ ├── KaTeX_Script-Regular.woff │ │ │ ├── KaTeX_Script-Regular.woff2 │ │ │ ├── KaTeX_Size1-Regular.ttf │ │ │ ├── KaTeX_Size1-Regular.woff │ │ │ ├── KaTeX_Size1-Regular.woff2 │ │ │ ├── KaTeX_Size2-Regular.ttf │ │ │ ├── KaTeX_Size2-Regular.woff │ │ │ ├── KaTeX_Size2-Regular.woff2 │ │ │ ├── KaTeX_Size3-Regular.ttf │ │ │ ├── KaTeX_Size3-Regular.woff │ │ │ ├── KaTeX_Size3-Regular.woff2 │ │ │ ├── KaTeX_Size4-Regular.ttf │ │ │ ├── KaTeX_Size4-Regular.woff │ │ │ ├── KaTeX_Size4-Regular.woff2 │ │ │ ├── KaTeX_Typewriter-Regular.ttf │ │ │ ├── KaTeX_Typewriter-Regular.woff │ │ │ ├── KaTeX_Typewriter-Regular.woff2 │ │ │ ├── hack-bold.ttf │ │ │ ├── hack-bold.woff │ │ │ ├── hack-bold.woff2 │ │ │ ├── hack-bolditalic.ttf │ │ │ ├── hack-bolditalic.woff │ │ │ ├── hack-bolditalic.woff2 │ │ │ ├── hack-italic.ttf │ │ │ ├── hack-italic.woff │ │ │ ├── hack-italic.woff2 │ │ │ ├── hack-regular.ttf │ │ │ ├── hack-regular.woff │ │ │ ├── hack-regular.woff2 │ │ │ ├── noto-serif-v21-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.ttf │ │ │ ├── noto-serif-v21-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.woff │ │ │ ├── noto-serif-v21-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.woff2 │ │ │ ├── noto-serif-v21-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700italic.ttf │ │ │ ├── noto-serif-v21-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700italic.woff │ │ │ ├── noto-serif-v21-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700italic.woff2 │ │ │ ├── noto-serif-v21-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.ttf │ │ │ ├── noto-serif-v21-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.woff │ │ │ ├── noto-serif-v21-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.woff2 │ │ │ ├── noto-serif-v21-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.ttf │ │ │ ├── noto-serif-v21-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff │ │ │ └── noto-serif-v21-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff2 │ │ ├── katex-fonts.css │ │ ├── katex-fonts.mobile.css │ │ ├── katex.min.css │ │ └── styles.css │ ├── test-utils │ │ └── index.ts │ ├── tsconfig.json │ └── vitest.config.ts ├── intl │ ├── .gitignore │ ├── .npmignore │ ├── lingui.config.js │ ├── locale │ │ ├── en.po │ │ └── pseudo-LOCALE.po │ ├── package-lock.json │ ├── package.json │ ├── patches │ │ └── @lingui+cli+5.1.2.patch │ ├── scripts │ │ ├── generate-strings.mjs │ │ └── postbuild.mjs │ ├── src │ │ ├── index.ts │ │ ├── setup.ts │ │ └── strings.ts │ ├── tsconfig.json │ ├── vite.config.mts │ └── vite.config.mts.timestamp-1759858012392-73e449690d4298.mjs ├── logger │ ├── .gitignore │ ├── .npmignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── reporters │ │ │ ├── console.ts │ │ │ └── index.ts │ │ └── types.ts │ └── tsconfig.json ├── sodium │ ├── .npmignore │ ├── benches │ │ └── bench.ts │ ├── package-lock.json │ ├── package.json │ ├── patches │ │ └── libsodium-sumo+0.7.15.patch │ ├── scripts │ │ └── postbuild.mjs │ ├── src │ │ ├── @types │ │ │ └── sodium-native │ │ │ │ └── index.d.ts │ │ ├── browser.ts │ │ ├── node.ts │ │ └── types.ts │ ├── tests │ │ ├── compat.test.ts │ │ └── utils.ts │ └── tsconfig.json ├── streamable-fs │ ├── .npmignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── filehandle.ts │ │ ├── filestreamsource.ts │ │ ├── index.ts │ │ ├── interfaces.ts │ │ ├── types.ts │ │ └── utils.ts │ └── tsconfig.json ├── theme │ ├── .gitignore │ ├── .npmignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── scripts │ │ ├── prebuild.mjs │ │ └── schema-generator.mjs │ ├── src │ │ ├── emotion │ │ │ ├── index.ts │ │ │ └── theme-provider.tsx │ │ ├── index.ts │ │ ├── theme-engine │ │ │ ├── index.ts │ │ │ ├── types.ts │ │ │ ├── utils.ts │ │ │ └── validator.ts │ │ └── theme │ │ │ ├── font │ │ │ ├── fontsize.ts │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── types.ts │ │ │ └── variants │ │ │ ├── button.ts │ │ │ ├── flex.ts │ │ │ ├── index.ts │ │ │ ├── input.ts │ │ │ └── text.ts │ ├── tsconfig.json │ └── v1.schema.json └── ui │ ├── .npmignore │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── components │ │ ├── icon │ │ │ ├── index.tsx │ │ │ └── mdi-icon.tsx │ │ ├── index.ts │ │ ├── menu │ │ │ ├── index.tsx │ │ │ ├── menu-button.tsx │ │ │ ├── menu-separator.tsx │ │ │ ├── types.ts │ │ │ └── use-focus.ts │ │ ├── popup-presenter │ │ │ └── index.tsx │ │ └── scroll-container │ │ │ └── index.tsx │ ├── index.ts │ └── utils │ │ ├── index.ts │ │ └── position.ts │ └── tsconfig.json ├── resources ├── icon.png ├── screenshots │ ├── mobile.jpg │ ├── theme-builder.png │ └── web.jpg └── vscode-signed-off-commit.png ├── scripts ├── analyze.mjs ├── bootstrap.mjs ├── build.mjs ├── clean.mjs ├── execute.mjs ├── generate-sources.mjs └── publish.mjs ├── servers └── themes │ ├── .gitignore │ ├── global.d.ts │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── api.ts │ ├── constants.ts │ ├── counter.ts │ ├── index.ts │ ├── orama.ts │ ├── schemas.ts │ ├── server.ts │ ├── sync.ts │ └── trpc.ts │ ├── tsconfig.json │ └── vite.config.ts ├── tsconfig.json └── tsdown.config.ts /.commitlintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/.commitlintrc.js -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/android.e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/.github/workflows/android.e2e.yml -------------------------------------------------------------------------------- /.github/workflows/android.publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/.github/workflows/android.publish.yml -------------------------------------------------------------------------------- /.github/workflows/core.tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/.github/workflows/core.tests.yml -------------------------------------------------------------------------------- /.github/workflows/desktop.publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/.github/workflows/desktop.publish.yml -------------------------------------------------------------------------------- /.github/workflows/desktop.tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/.github/workflows/desktop.tests.yml -------------------------------------------------------------------------------- /.github/workflows/editor.tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/.github/workflows/editor.tests.yml -------------------------------------------------------------------------------- /.github/workflows/help.publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/.github/workflows/help.publish.yml -------------------------------------------------------------------------------- /.github/workflows/ios.publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/.github/workflows/ios.publish.yml -------------------------------------------------------------------------------- /.github/workflows/monograph.publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/.github/workflows/monograph.publish.yml -------------------------------------------------------------------------------- /.github/workflows/nscurl.test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/.github/workflows/nscurl.test.yml -------------------------------------------------------------------------------- /.github/workflows/vericrypt.publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/.github/workflows/vericrypt.publish.yml -------------------------------------------------------------------------------- /.github/workflows/web.benchmarks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/.github/workflows/web.benchmarks.yml -------------------------------------------------------------------------------- /.github/workflows/web.publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/.github/workflows/web.publish.yml -------------------------------------------------------------------------------- /.github/workflows/web.tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/.github/workflows/web.tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/AUTHORS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/README.md -------------------------------------------------------------------------------- /apps/desktop/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/.gitignore -------------------------------------------------------------------------------- /apps/desktop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/README.md -------------------------------------------------------------------------------- /apps/desktop/__tests__/global-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/__tests__/global-setup.ts -------------------------------------------------------------------------------- /apps/desktop/__tests__/launch.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/__tests__/launch.test.ts -------------------------------------------------------------------------------- /apps/desktop/__tests__/test-override.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/__tests__/test-override.ts -------------------------------------------------------------------------------- /apps/desktop/__tests__/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/__tests__/utils.ts -------------------------------------------------------------------------------- /apps/desktop/app-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/app-update.yml -------------------------------------------------------------------------------- /apps/desktop/assets/entitlements.mac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/assets/entitlements.mac.plist -------------------------------------------------------------------------------- /apps/desktop/assets/entitlements.mas.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/assets/entitlements.mas.plist -------------------------------------------------------------------------------- /apps/desktop/assets/icons/1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/assets/icons/1024x1024.png -------------------------------------------------------------------------------- /apps/desktop/assets/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/assets/icons/128x128.png -------------------------------------------------------------------------------- /apps/desktop/assets/icons/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/assets/icons/16x16.png -------------------------------------------------------------------------------- /apps/desktop/assets/icons/24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/assets/icons/24x24.png -------------------------------------------------------------------------------- /apps/desktop/assets/icons/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/assets/icons/256x256.png -------------------------------------------------------------------------------- /apps/desktop/assets/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/assets/icons/32x32.png -------------------------------------------------------------------------------- /apps/desktop/assets/icons/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/assets/icons/48x48.png -------------------------------------------------------------------------------- /apps/desktop/assets/icons/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/assets/icons/512x512.png -------------------------------------------------------------------------------- /apps/desktop/assets/icons/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/assets/icons/64x64.png -------------------------------------------------------------------------------- /apps/desktop/assets/icons/app.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/assets/icons/app.icns -------------------------------------------------------------------------------- /apps/desktop/assets/icons/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/assets/icons/app.ico -------------------------------------------------------------------------------- /apps/desktop/assets/icons/note-add.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/assets/icons/note-add.ico -------------------------------------------------------------------------------- /apps/desktop/assets/icons/notebook-add.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/assets/icons/notebook-add.ico -------------------------------------------------------------------------------- /apps/desktop/assets/icons/quit.dark.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/assets/icons/quit.dark.ico -------------------------------------------------------------------------------- /apps/desktop/assets/icons/quit.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/assets/icons/quit.ico -------------------------------------------------------------------------------- /apps/desktop/assets/icons/reminder-add.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/assets/icons/reminder-add.ico -------------------------------------------------------------------------------- /apps/desktop/assets/icons/tray-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/assets/icons/tray-icon.ico -------------------------------------------------------------------------------- /apps/desktop/dev-app-update.yml: -------------------------------------------------------------------------------- 1 | owner: streetwriters 2 | repo: notesnook 3 | provider: github 4 | -------------------------------------------------------------------------------- /apps/desktop/electron-builder.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/electron-builder.config.js -------------------------------------------------------------------------------- /apps/desktop/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/global.d.ts -------------------------------------------------------------------------------- /apps/desktop/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/package-lock.json -------------------------------------------------------------------------------- /apps/desktop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/package.json -------------------------------------------------------------------------------- /apps/desktop/scripts/build.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/scripts/build.mjs -------------------------------------------------------------------------------- /apps/desktop/scripts/dev.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/scripts/dev.mjs -------------------------------------------------------------------------------- /apps/desktop/scripts/removeLocales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/scripts/removeLocales.js -------------------------------------------------------------------------------- /apps/desktop/scripts/sign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/scripts/sign.js -------------------------------------------------------------------------------- /apps/desktop/src/api/bridge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/src/api/bridge.ts -------------------------------------------------------------------------------- /apps/desktop/src/api/compression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/src/api/compression.ts -------------------------------------------------------------------------------- /apps/desktop/src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/src/api/index.ts -------------------------------------------------------------------------------- /apps/desktop/src/api/os-integration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/src/api/os-integration.ts -------------------------------------------------------------------------------- /apps/desktop/src/api/safe-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/src/api/safe-storage.ts -------------------------------------------------------------------------------- /apps/desktop/src/api/spell-checker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/src/api/spell-checker.ts -------------------------------------------------------------------------------- /apps/desktop/src/api/sqlite-kysely.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/src/api/sqlite-kysely.ts -------------------------------------------------------------------------------- /apps/desktop/src/api/updater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/src/api/updater.ts -------------------------------------------------------------------------------- /apps/desktop/src/api/window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/src/api/window.ts -------------------------------------------------------------------------------- /apps/desktop/src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/src/cli.ts -------------------------------------------------------------------------------- /apps/desktop/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/src/constants.ts -------------------------------------------------------------------------------- /apps/desktop/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/src/index.ts -------------------------------------------------------------------------------- /apps/desktop/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/src/main.ts -------------------------------------------------------------------------------- /apps/desktop/src/overrides.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/src/overrides.ts -------------------------------------------------------------------------------- /apps/desktop/src/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/src/preload.ts -------------------------------------------------------------------------------- /apps/desktop/src/utils/asset-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/src/utils/asset-manager.ts -------------------------------------------------------------------------------- /apps/desktop/src/utils/autolaunch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/src/utils/autolaunch.ts -------------------------------------------------------------------------------- /apps/desktop/src/utils/autoupdater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/src/utils/autoupdater.ts -------------------------------------------------------------------------------- /apps/desktop/src/utils/bring-to-front.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/src/utils/bring-to-front.ts -------------------------------------------------------------------------------- /apps/desktop/src/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/src/utils/config.ts -------------------------------------------------------------------------------- /apps/desktop/src/utils/custom-dns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/src/utils/custom-dns.ts -------------------------------------------------------------------------------- /apps/desktop/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/src/utils/index.ts -------------------------------------------------------------------------------- /apps/desktop/src/utils/json-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/src/utils/json-storage.ts -------------------------------------------------------------------------------- /apps/desktop/src/utils/jumplist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/src/utils/jumplist.ts -------------------------------------------------------------------------------- /apps/desktop/src/utils/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/src/utils/menu.ts -------------------------------------------------------------------------------- /apps/desktop/src/utils/protocol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/src/utils/protocol.ts -------------------------------------------------------------------------------- /apps/desktop/src/utils/resolve-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/src/utils/resolve-path.ts -------------------------------------------------------------------------------- /apps/desktop/src/utils/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/src/utils/theme.ts -------------------------------------------------------------------------------- /apps/desktop/src/utils/tray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/src/utils/tray.ts -------------------------------------------------------------------------------- /apps/desktop/src/utils/window-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/src/utils/window-state.ts -------------------------------------------------------------------------------- /apps/desktop/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/tsconfig.json -------------------------------------------------------------------------------- /apps/desktop/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/desktop/vitest.config.ts -------------------------------------------------------------------------------- /apps/mobile/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/.bundle/config -------------------------------------------------------------------------------- /apps/mobile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/.gitignore -------------------------------------------------------------------------------- /apps/mobile/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/.vscode/launch.json -------------------------------------------------------------------------------- /apps/mobile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/README.md -------------------------------------------------------------------------------- /apps/mobile/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/__tests__/App-test.js -------------------------------------------------------------------------------- /apps/mobile/app/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/app.tsx -------------------------------------------------------------------------------- /apps/mobile/app/assets/images/assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/assets/images/assets.js -------------------------------------------------------------------------------- /apps/mobile/app/common/database/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/common/database/index.ts -------------------------------------------------------------------------------- /apps/mobile/app/common/database/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/common/database/logger.ts -------------------------------------------------------------------------------- /apps/mobile/app/common/database/mmkv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/common/database/mmkv.ts -------------------------------------------------------------------------------- /apps/mobile/app/common/database/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/common/database/storage.ts -------------------------------------------------------------------------------- /apps/mobile/app/common/filesystem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/common/filesystem/index.ts -------------------------------------------------------------------------------- /apps/mobile/app/common/filesystem/io.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/common/filesystem/io.ts -------------------------------------------------------------------------------- /apps/mobile/app/common/filesystem/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/common/filesystem/utils.ts -------------------------------------------------------------------------------- /apps/mobile/app/common/logger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/common/logger/index.ts -------------------------------------------------------------------------------- /apps/mobile/app/components/auth/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/components/auth/common.js -------------------------------------------------------------------------------- /apps/mobile/app/components/auth/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/components/auth/header.tsx -------------------------------------------------------------------------------- /apps/mobile/app/components/auth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/components/auth/index.js -------------------------------------------------------------------------------- /apps/mobile/app/components/auth/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/components/auth/login.js -------------------------------------------------------------------------------- /apps/mobile/app/components/auth/signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/components/auth/signup.js -------------------------------------------------------------------------------- /apps/mobile/app/features.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/features.ts -------------------------------------------------------------------------------- /apps/mobile/app/hooks/use-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/hooks/use-actions.tsx -------------------------------------------------------------------------------- /apps/mobile/app/hooks/use-app-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/hooks/use-app-state.ts -------------------------------------------------------------------------------- /apps/mobile/app/hooks/use-db-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/hooks/use-db-item.ts -------------------------------------------------------------------------------- /apps/mobile/app/hooks/use-immediate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/hooks/use-immediate.ts -------------------------------------------------------------------------------- /apps/mobile/app/hooks/use-keyboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/hooks/use-keyboard.ts -------------------------------------------------------------------------------- /apps/mobile/app/hooks/use-notebook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/hooks/use-notebook.ts -------------------------------------------------------------------------------- /apps/mobile/app/hooks/use-rotator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/hooks/use-rotator.ts -------------------------------------------------------------------------------- /apps/mobile/app/hooks/use-selected.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/hooks/use-selected.ts -------------------------------------------------------------------------------- /apps/mobile/app/hooks/use-stored-ref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/hooks/use-stored-ref.ts -------------------------------------------------------------------------------- /apps/mobile/app/hooks/use-timer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/hooks/use-timer.ts -------------------------------------------------------------------------------- /apps/mobile/app/hooks/use-tooltip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/hooks/use-tooltip.ts -------------------------------------------------------------------------------- /apps/mobile/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/package.json -------------------------------------------------------------------------------- /apps/mobile/app/screens/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/screens/home/index.tsx -------------------------------------------------------------------------------- /apps/mobile/app/screens/notes/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/screens/notes/common.ts -------------------------------------------------------------------------------- /apps/mobile/app/screens/notes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/screens/notes/index.tsx -------------------------------------------------------------------------------- /apps/mobile/app/screens/trash/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/screens/trash/index.tsx -------------------------------------------------------------------------------- /apps/mobile/app/services/app-review.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/services/app-review.ts -------------------------------------------------------------------------------- /apps/mobile/app/services/backup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/services/backup.ts -------------------------------------------------------------------------------- /apps/mobile/app/services/biometrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/services/biometrics.ts -------------------------------------------------------------------------------- /apps/mobile/app/services/exporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/services/exporter.ts -------------------------------------------------------------------------------- /apps/mobile/app/services/intent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/services/intent.ts -------------------------------------------------------------------------------- /apps/mobile/app/services/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/services/message.js -------------------------------------------------------------------------------- /apps/mobile/app/services/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/services/navigation.ts -------------------------------------------------------------------------------- /apps/mobile/app/services/premium.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/services/premium.ts -------------------------------------------------------------------------------- /apps/mobile/app/services/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/services/search.js -------------------------------------------------------------------------------- /apps/mobile/app/services/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/services/settings.ts -------------------------------------------------------------------------------- /apps/mobile/app/services/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/services/sync.ts -------------------------------------------------------------------------------- /apps/mobile/app/services/tip-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/services/tip-manager.ts -------------------------------------------------------------------------------- /apps/mobile/app/services/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/services/validation.js -------------------------------------------------------------------------------- /apps/mobile/app/stores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/stores/index.ts -------------------------------------------------------------------------------- /apps/mobile/app/stores/use-tag-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/stores/use-tag-store.ts -------------------------------------------------------------------------------- /apps/mobile/app/utils/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/utils/colors.js -------------------------------------------------------------------------------- /apps/mobile/app/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/utils/constants.ts -------------------------------------------------------------------------------- /apps/mobile/app/utils/elevation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/utils/elevation.ts -------------------------------------------------------------------------------- /apps/mobile/app/utils/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/utils/errors.ts -------------------------------------------------------------------------------- /apps/mobile/app/utils/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/utils/events.js -------------------------------------------------------------------------------- /apps/mobile/app/utils/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/utils/functions.ts -------------------------------------------------------------------------------- /apps/mobile/app/utils/github-version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/utils/github-version.ts -------------------------------------------------------------------------------- /apps/mobile/app/utils/global-refs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/utils/global-refs.ts -------------------------------------------------------------------------------- /apps/mobile/app/utils/menu-items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/utils/menu-items.ts -------------------------------------------------------------------------------- /apps/mobile/app/utils/note-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/utils/note-bundle.js -------------------------------------------------------------------------------- /apps/mobile/app/utils/note-to-text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/utils/note-to-text.ts -------------------------------------------------------------------------------- /apps/mobile/app/utils/notebooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/utils/notebooks.ts -------------------------------------------------------------------------------- /apps/mobile/app/utils/size/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/utils/size/index.js -------------------------------------------------------------------------------- /apps/mobile/app/utils/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/utils/styles.ts -------------------------------------------------------------------------------- /apps/mobile/app/utils/time/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/utils/time/index.ts -------------------------------------------------------------------------------- /apps/mobile/app/utils/tooltip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/utils/tooltip.ts -------------------------------------------------------------------------------- /apps/mobile/app/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/utils/types.ts -------------------------------------------------------------------------------- /apps/mobile/app/utils/unlock-vault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/app/utils/unlock-vault.ts -------------------------------------------------------------------------------- /apps/mobile/e2e/globalSetup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/e2e/globalSetup.ts -------------------------------------------------------------------------------- /apps/mobile/e2e/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/e2e/jest.config.js -------------------------------------------------------------------------------- /apps/mobile/e2e/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/e2e/setup.ts -------------------------------------------------------------------------------- /apps/mobile/e2e/test.ids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/e2e/test.ids.js -------------------------------------------------------------------------------- /apps/mobile/e2e/tests/auth.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/e2e/tests/auth.e2e.ts -------------------------------------------------------------------------------- /apps/mobile/e2e/tests/index.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/e2e/tests/index.e2e.ts -------------------------------------------------------------------------------- /apps/mobile/e2e/tests/note.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/e2e/tests/note.e2e.ts -------------------------------------------------------------------------------- /apps/mobile/e2e/tests/notebook.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/e2e/tests/notebook.e2e.ts -------------------------------------------------------------------------------- /apps/mobile/e2e/tests/search.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/e2e/tests/search.e2e.ts -------------------------------------------------------------------------------- /apps/mobile/e2e/tests/sort.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/e2e/tests/sort.e2e.ts -------------------------------------------------------------------------------- /apps/mobile/e2e/tests/tag.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/e2e/tests/tag.e2e.ts -------------------------------------------------------------------------------- /apps/mobile/e2e/tests/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/e2e/tests/utils.ts -------------------------------------------------------------------------------- /apps/mobile/e2e/tests/vault.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/e2e/tests/vault.e2e.ts -------------------------------------------------------------------------------- /apps/mobile/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/mobile/native/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/native/.bundle/config -------------------------------------------------------------------------------- /apps/mobile/native/.detoxrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/native/.detoxrc.js -------------------------------------------------------------------------------- /apps/mobile/native/.env: -------------------------------------------------------------------------------- 1 | GITHUB_RELEASE=false -------------------------------------------------------------------------------- /apps/mobile/native/.env.public: -------------------------------------------------------------------------------- 1 | GITHUB_RELEASE=true -------------------------------------------------------------------------------- /apps/mobile/native/.env.test: -------------------------------------------------------------------------------- 1 | isTesting=true -------------------------------------------------------------------------------- /apps/mobile/native/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.5 -------------------------------------------------------------------------------- /apps/mobile/native/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/native/Gemfile -------------------------------------------------------------------------------- /apps/mobile/native/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/native/Gemfile.lock -------------------------------------------------------------------------------- /apps/mobile/native/android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/native/android/.project -------------------------------------------------------------------------------- /apps/mobile/native/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/native/android/build.gradle -------------------------------------------------------------------------------- /apps/mobile/native/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/native/android/gradlew -------------------------------------------------------------------------------- /apps/mobile/native/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/native/android/gradlew.bat -------------------------------------------------------------------------------- /apps/mobile/native/android/releasenotes/whatsnew-en-US: -------------------------------------------------------------------------------- 1 | - Bug fixes and minor improvements 2 | 3 | Thank you for using Notesnook! -------------------------------------------------------------------------------- /apps/mobile/native/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/native/app.json -------------------------------------------------------------------------------- /apps/mobile/native/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/native/babel.config.js -------------------------------------------------------------------------------- /apps/mobile/native/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/native/globals.js -------------------------------------------------------------------------------- /apps/mobile/native/index.ext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/native/index.ext.js -------------------------------------------------------------------------------- /apps/mobile/native/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/native/index.js -------------------------------------------------------------------------------- /apps/mobile/native/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/native/ios/.xcode.env -------------------------------------------------------------------------------- /apps/mobile/native/ios/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/native/ios/File.swift -------------------------------------------------------------------------------- /apps/mobile/native/ios/Notesnook/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/native/ios/Notesnook/main.m -------------------------------------------------------------------------------- /apps/mobile/native/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/native/ios/Podfile -------------------------------------------------------------------------------- /apps/mobile/native/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/native/ios/Podfile.lock -------------------------------------------------------------------------------- /apps/mobile/native/lingui.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/native/lingui.config.js -------------------------------------------------------------------------------- /apps/mobile/native/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/native/metro.config.js -------------------------------------------------------------------------------- /apps/mobile/native/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/native/package.json -------------------------------------------------------------------------------- /apps/mobile/native/rspack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/native/rspack.config.js -------------------------------------------------------------------------------- /apps/mobile/native/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/native/worker.js -------------------------------------------------------------------------------- /apps/mobile/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/package-lock.json -------------------------------------------------------------------------------- /apps/mobile/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/package.json -------------------------------------------------------------------------------- /apps/mobile/scripts/optimize-fonts.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/scripts/optimize-fonts.mjs -------------------------------------------------------------------------------- /apps/mobile/share/add-notebooks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/share/add-notebooks.jsx -------------------------------------------------------------------------------- /apps/mobile/share/add-tags.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/share/add-tags.jsx -------------------------------------------------------------------------------- /apps/mobile/share/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/share/editor.js -------------------------------------------------------------------------------- /apps/mobile/share/fetch-webview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/share/fetch-webview.js -------------------------------------------------------------------------------- /apps/mobile/share/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/share/index.js -------------------------------------------------------------------------------- /apps/mobile/share/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/share/search.tsx -------------------------------------------------------------------------------- /apps/mobile/share/share.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/share/share.js -------------------------------------------------------------------------------- /apps/mobile/share/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/share/store.js -------------------------------------------------------------------------------- /apps/mobile/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/tsconfig.json -------------------------------------------------------------------------------- /apps/mobile/tsconfig.tsbuildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/mobile/tsconfig.tsbuildinfo -------------------------------------------------------------------------------- /apps/monograph/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/monograph/.gitignore -------------------------------------------------------------------------------- /apps/monograph/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/monograph/Dockerfile -------------------------------------------------------------------------------- /apps/monograph/app/components/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/monograph/app/components/card.tsx -------------------------------------------------------------------------------- /apps/monograph/app/entry.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/monograph/app/entry.client.tsx -------------------------------------------------------------------------------- /apps/monograph/app/entry.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/monograph/app/entry.server.tsx -------------------------------------------------------------------------------- /apps/monograph/app/root.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/monograph/app/root.css -------------------------------------------------------------------------------- /apps/monograph/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/monograph/app/root.tsx -------------------------------------------------------------------------------- /apps/monograph/app/routes/$id.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/monograph/app/routes/$id.tsx -------------------------------------------------------------------------------- /apps/monograph/app/routes/_index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/monograph/app/routes/_index.tsx -------------------------------------------------------------------------------- /apps/monograph/app/routes/api.health.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/monograph/app/routes/api.health.ts -------------------------------------------------------------------------------- /apps/monograph/app/routes/api.og.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/monograph/app/routes/api.og.ts -------------------------------------------------------------------------------- /apps/monograph/app/styles/context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/monograph/app/styles/context.tsx -------------------------------------------------------------------------------- /apps/monograph/app/utils/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/monograph/app/utils/env.ts -------------------------------------------------------------------------------- /apps/monograph/app/utils/meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/monograph/app/utils/meta.ts -------------------------------------------------------------------------------- /apps/monograph/app/utils/slugify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/monograph/app/utils/slugify.ts -------------------------------------------------------------------------------- /apps/monograph/app/utils/storage/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/monograph/app/utils/storage/fs.ts -------------------------------------------------------------------------------- /apps/monograph/app/utils/storage/kv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/monograph/app/utils/storage/kv.ts -------------------------------------------------------------------------------- /apps/monograph/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/monograph/package-lock.json -------------------------------------------------------------------------------- /apps/monograph/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/monograph/package.json -------------------------------------------------------------------------------- /apps/monograph/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/monograph/postcss.config.js -------------------------------------------------------------------------------- /apps/monograph/public/_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/monograph/public/_headers -------------------------------------------------------------------------------- /apps/monograph/public/_routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/monograph/public/_routes.json -------------------------------------------------------------------------------- /apps/monograph/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/monograph/public/favicon.png -------------------------------------------------------------------------------- /apps/monograph/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/monograph/public/favicon.svg -------------------------------------------------------------------------------- /apps/monograph/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/monograph/public/logo.svg -------------------------------------------------------------------------------- /apps/monograph/public/social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/monograph/public/social.png -------------------------------------------------------------------------------- /apps/monograph/scripts/font-loader.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/monograph/scripts/font-loader.mjs -------------------------------------------------------------------------------- /apps/monograph/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/monograph/server.ts -------------------------------------------------------------------------------- /apps/monograph/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/monograph/tsconfig.json -------------------------------------------------------------------------------- /apps/monograph/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/monograph/vite.config.ts -------------------------------------------------------------------------------- /apps/theme-builder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/theme-builder/.gitignore -------------------------------------------------------------------------------- /apps/theme-builder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/theme-builder/README.md -------------------------------------------------------------------------------- /apps/theme-builder/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/theme-builder/package-lock.json -------------------------------------------------------------------------------- /apps/theme-builder/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/theme-builder/package.json -------------------------------------------------------------------------------- /apps/theme-builder/src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/theme-builder/src/app.tsx -------------------------------------------------------------------------------- /apps/theme-builder/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/theme-builder/src/index.css -------------------------------------------------------------------------------- /apps/theme-builder/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/theme-builder/src/index.html -------------------------------------------------------------------------------- /apps/theme-builder/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/theme-builder/src/index.tsx -------------------------------------------------------------------------------- /apps/theme-builder/src/utils/object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/theme-builder/src/utils/object.ts -------------------------------------------------------------------------------- /apps/theme-builder/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/theme-builder/tsconfig.json -------------------------------------------------------------------------------- /apps/vericrypt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/vericrypt/.gitignore -------------------------------------------------------------------------------- /apps/vericrypt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/vericrypt/index.html -------------------------------------------------------------------------------- /apps/vericrypt/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/vericrypt/package-lock.json -------------------------------------------------------------------------------- /apps/vericrypt/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/vericrypt/package.json -------------------------------------------------------------------------------- /apps/vericrypt/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/vericrypt/public/favicon.ico -------------------------------------------------------------------------------- /apps/vericrypt/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/vericrypt/public/logo192.png -------------------------------------------------------------------------------- /apps/vericrypt/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/vericrypt/public/robots.txt -------------------------------------------------------------------------------- /apps/vericrypt/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/vericrypt/src/app.css -------------------------------------------------------------------------------- /apps/vericrypt/src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/vericrypt/src/app.tsx -------------------------------------------------------------------------------- /apps/vericrypt/src/components/code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/vericrypt/src/components/code.tsx -------------------------------------------------------------------------------- /apps/vericrypt/src/components/hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/vericrypt/src/components/hero.tsx -------------------------------------------------------------------------------- /apps/vericrypt/src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/vericrypt/src/global.d.ts -------------------------------------------------------------------------------- /apps/vericrypt/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/vericrypt/src/index.tsx -------------------------------------------------------------------------------- /apps/vericrypt/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/vericrypt/src/polyfills.ts -------------------------------------------------------------------------------- /apps/vericrypt/src/react-app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/vericrypt/src/react-app-env.d.ts -------------------------------------------------------------------------------- /apps/vericrypt/src/utils/keycombos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/vericrypt/src/utils/keycombos.ts -------------------------------------------------------------------------------- /apps/vericrypt/src/utils/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/vericrypt/src/utils/links.ts -------------------------------------------------------------------------------- /apps/vericrypt/src/utils/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/vericrypt/src/utils/version.ts -------------------------------------------------------------------------------- /apps/vericrypt/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/vericrypt/tsconfig.json -------------------------------------------------------------------------------- /apps/vericrypt/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/vericrypt/vite.config.ts -------------------------------------------------------------------------------- /apps/web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/.gitignore -------------------------------------------------------------------------------- /apps/web/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/.vscode/launch.json -------------------------------------------------------------------------------- /apps/web/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/.vscode/tasks.json -------------------------------------------------------------------------------- /apps/web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/README.md -------------------------------------------------------------------------------- /apps/web/__bench__/app.bench.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__bench__/app.bench.mjs -------------------------------------------------------------------------------- /apps/web/__e2e__/app-lock.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/app-lock.test.ts -------------------------------------------------------------------------------- /apps/web/__e2e__/backups.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/backups.test.ts -------------------------------------------------------------------------------- /apps/web/__e2e__/checkout.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/checkout.test.ts -------------------------------------------------------------------------------- /apps/web/__e2e__/colors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/colors.test.ts -------------------------------------------------------------------------------- /apps/web/__e2e__/data/backup.nnbackup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/data/backup.nnbackup -------------------------------------------------------------------------------- /apps/web/__e2e__/data/importer-data.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/data/importer-data.zip -------------------------------------------------------------------------------- /apps/web/__e2e__/drag-drop.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/drag-drop.test.ts -------------------------------------------------------------------------------- /apps/web/__e2e__/editor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/editor.test.ts -------------------------------------------------------------------------------- /apps/web/__e2e__/importer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/importer.test.js -------------------------------------------------------------------------------- /apps/web/__e2e__/models/app.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/models/app.model.ts -------------------------------------------------------------------------------- /apps/web/__e2e__/models/auth.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/models/auth.model.ts -------------------------------------------------------------------------------- /apps/web/__e2e__/models/editor.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/models/editor.model.ts -------------------------------------------------------------------------------- /apps/web/__e2e__/models/item.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/models/item.model.ts -------------------------------------------------------------------------------- /apps/web/__e2e__/models/toasts.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/models/toasts.model.ts -------------------------------------------------------------------------------- /apps/web/__e2e__/models/toggle.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/models/toggle.model.ts -------------------------------------------------------------------------------- /apps/web/__e2e__/models/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/models/types.ts -------------------------------------------------------------------------------- /apps/web/__e2e__/models/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/models/utils.ts -------------------------------------------------------------------------------- /apps/web/__e2e__/monographs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/monographs.test.ts -------------------------------------------------------------------------------- /apps/web/__e2e__/navigation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/navigation.test.ts -------------------------------------------------------------------------------- /apps/web/__e2e__/notebooks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/notebooks.test.ts -------------------------------------------------------------------------------- /apps/web/__e2e__/notehistory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/notehistory.test.ts -------------------------------------------------------------------------------- /apps/web/__e2e__/notes.issues.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/notes.issues.test.ts -------------------------------------------------------------------------------- /apps/web/__e2e__/notes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/notes.test.ts -------------------------------------------------------------------------------- /apps/web/__e2e__/reminders.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/reminders.test.ts -------------------------------------------------------------------------------- /apps/web/__e2e__/search.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/search.test.ts -------------------------------------------------------------------------------- /apps/web/__e2e__/settings.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/settings.test.ts -------------------------------------------------------------------------------- /apps/web/__e2e__/sync.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/sync.test.ts -------------------------------------------------------------------------------- /apps/web/__e2e__/tabs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/tabs.test.ts -------------------------------------------------------------------------------- /apps/web/__e2e__/tags.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/tags.test.ts -------------------------------------------------------------------------------- /apps/web/__e2e__/user.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/user.test.ts -------------------------------------------------------------------------------- /apps/web/__e2e__/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/utils/index.ts -------------------------------------------------------------------------------- /apps/web/__e2e__/vault.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__e2e__/vault.test.ts -------------------------------------------------------------------------------- /apps/web/__tests__/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/__tests__/bootstrap.ts -------------------------------------------------------------------------------- /apps/web/at-rest-encryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/at-rest-encryption.md -------------------------------------------------------------------------------- /apps/web/functions/_middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/functions/_middleware.ts -------------------------------------------------------------------------------- /apps/web/functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/functions/tsconfig.json -------------------------------------------------------------------------------- /apps/web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/package-lock.json -------------------------------------------------------------------------------- /apps/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/package.json -------------------------------------------------------------------------------- /apps/web/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/playwright.config.ts -------------------------------------------------------------------------------- /apps/web/public/_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/public/_headers -------------------------------------------------------------------------------- /apps/web/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/public/apple-touch-icon.png -------------------------------------------------------------------------------- /apps/web/public/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/public/banner.jpg -------------------------------------------------------------------------------- /apps/web/public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/public/browserconfig.xml -------------------------------------------------------------------------------- /apps/web/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/public/favicon.png -------------------------------------------------------------------------------- /apps/web/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/public/favicon.svg -------------------------------------------------------------------------------- /apps/web/public/pdf.worker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/public/pdf.worker.min.js -------------------------------------------------------------------------------- /apps/web/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/public/robots.txt -------------------------------------------------------------------------------- /apps/web/src/app-effects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/app-effects.tsx -------------------------------------------------------------------------------- /apps/web/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/app.css -------------------------------------------------------------------------------- /apps/web/src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/app.tsx -------------------------------------------------------------------------------- /apps/web/src/assets/accent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/assets/accent.svg -------------------------------------------------------------------------------- /apps/web/src/assets/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/assets/apple.png -------------------------------------------------------------------------------- /apps/web/src/assets/backup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/assets/backup.svg -------------------------------------------------------------------------------- /apps/web/src/assets/cause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/assets/cause.svg -------------------------------------------------------------------------------- /apps/web/src/assets/dark1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/assets/dark1.png -------------------------------------------------------------------------------- /apps/web/src/assets/dark2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/assets/dark2.png -------------------------------------------------------------------------------- /apps/web/src/assets/e2e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/assets/e2e.svg -------------------------------------------------------------------------------- /apps/web/src/assets/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/assets/email.svg -------------------------------------------------------------------------------- /apps/web/src/assets/export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/assets/export.svg -------------------------------------------------------------------------------- /apps/web/src/assets/fallback2fa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/assets/fallback2fa.svg -------------------------------------------------------------------------------- /apps/web/src/assets/featured/xda.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/assets/featured/xda.svg -------------------------------------------------------------------------------- /apps/web/src/assets/light1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/assets/light1.png -------------------------------------------------------------------------------- /apps/web/src/assets/light2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/assets/light2.png -------------------------------------------------------------------------------- /apps/web/src/assets/mfa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/assets/mfa.svg -------------------------------------------------------------------------------- /apps/web/src/assets/nomad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/assets/nomad.svg -------------------------------------------------------------------------------- /apps/web/src/assets/note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/assets/note.svg -------------------------------------------------------------------------------- /apps/web/src/assets/note2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/assets/note2.svg -------------------------------------------------------------------------------- /apps/web/src/assets/notesnook-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/assets/notesnook-logo.png -------------------------------------------------------------------------------- /apps/web/src/assets/organize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/assets/organize.svg -------------------------------------------------------------------------------- /apps/web/src/assets/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/assets/play.png -------------------------------------------------------------------------------- /apps/web/src/assets/richtext.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/assets/richtext.svg -------------------------------------------------------------------------------- /apps/web/src/assets/rocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/assets/rocket.svg -------------------------------------------------------------------------------- /apps/web/src/assets/sync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/assets/sync.svg -------------------------------------------------------------------------------- /apps/web/src/assets/vault.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/assets/vault.svg -------------------------------------------------------------------------------- /apps/web/src/assets/workanywhere.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/assets/workanywhere.svg -------------------------------------------------------------------------------- /apps/web/src/assets/worklate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/assets/worklate.svg -------------------------------------------------------------------------------- /apps/web/src/bootstrap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/bootstrap.tsx -------------------------------------------------------------------------------- /apps/web/src/common/app-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/common/app-events.ts -------------------------------------------------------------------------------- /apps/web/src/common/attachments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/common/attachments.ts -------------------------------------------------------------------------------- /apps/web/src/common/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/common/constants.ts -------------------------------------------------------------------------------- /apps/web/src/common/currencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/common/currencies.ts -------------------------------------------------------------------------------- /apps/web/src/common/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/common/db.ts -------------------------------------------------------------------------------- /apps/web/src/common/dialog-manager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/common/dialog-manager.tsx -------------------------------------------------------------------------------- /apps/web/src/common/drop-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/common/drop-handler.ts -------------------------------------------------------------------------------- /apps/web/src/common/export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/common/export.ts -------------------------------------------------------------------------------- /apps/web/src/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/common/index.ts -------------------------------------------------------------------------------- /apps/web/src/common/key-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/common/key-handler.ts -------------------------------------------------------------------------------- /apps/web/src/common/key-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/common/key-map.ts -------------------------------------------------------------------------------- /apps/web/src/common/multi-select.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/common/multi-select.ts -------------------------------------------------------------------------------- /apps/web/src/common/notices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/common/notices.ts -------------------------------------------------------------------------------- /apps/web/src/common/sqlite/VFS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/common/sqlite/VFS.js -------------------------------------------------------------------------------- /apps/web/src/common/sqlite/WebLocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/common/sqlite/WebLocks.js -------------------------------------------------------------------------------- /apps/web/src/common/sqlite/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/common/sqlite/globals.d.ts -------------------------------------------------------------------------------- /apps/web/src/common/sqlite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/common/sqlite/index.ts -------------------------------------------------------------------------------- /apps/web/src/common/sqlite/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/common/sqlite/type.ts -------------------------------------------------------------------------------- /apps/web/src/common/sqlite/wa-sqlite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/common/sqlite/wa-sqlite.js -------------------------------------------------------------------------------- /apps/web/src/common/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/common/store.ts -------------------------------------------------------------------------------- /apps/web/src/common/task-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/common/task-manager.ts -------------------------------------------------------------------------------- /apps/web/src/common/themes-router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/common/themes-router.ts -------------------------------------------------------------------------------- /apps/web/src/common/toasts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/common/toasts.ts -------------------------------------------------------------------------------- /apps/web/src/common/toolbar-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/common/toolbar-config.ts -------------------------------------------------------------------------------- /apps/web/src/common/vault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/common/vault.ts -------------------------------------------------------------------------------- /apps/web/src/components/editor/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/components/editor/types.ts -------------------------------------------------------------------------------- /apps/web/src/components/field/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/components/field/index.tsx -------------------------------------------------------------------------------- /apps/web/src/components/icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/components/icons/index.tsx -------------------------------------------------------------------------------- /apps/web/src/components/note/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/components/note/index.tsx -------------------------------------------------------------------------------- /apps/web/src/components/tag/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/components/tag/index.tsx -------------------------------------------------------------------------------- /apps/web/src/components/tip/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/components/tip/index.jsx -------------------------------------------------------------------------------- /apps/web/src/dialogs/confirm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/dialogs/confirm.tsx -------------------------------------------------------------------------------- /apps/web/src/dialogs/feature-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/dialogs/feature-dialog.tsx -------------------------------------------------------------------------------- /apps/web/src/dialogs/issue-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/dialogs/issue-dialog.tsx -------------------------------------------------------------------------------- /apps/web/src/dialogs/item-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/dialogs/item-dialog.tsx -------------------------------------------------------------------------------- /apps/web/src/dialogs/mfa/steps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/dialogs/mfa/steps.tsx -------------------------------------------------------------------------------- /apps/web/src/dialogs/mfa/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/dialogs/mfa/types.ts -------------------------------------------------------------------------------- /apps/web/src/dialogs/prompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/dialogs/prompt.tsx -------------------------------------------------------------------------------- /apps/web/src/dialogs/settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/dialogs/settings/index.tsx -------------------------------------------------------------------------------- /apps/web/src/dialogs/settings/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/dialogs/settings/types.ts -------------------------------------------------------------------------------- /apps/web/src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/global.d.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-auto-updater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/hooks/use-auto-updater.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/hooks/use-database.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-drag-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/hooks/use-drag-handler.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-hash-location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/hooks/use-hash-location.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-hash-routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/hooks/use-hash-routes.tsx -------------------------------------------------------------------------------- /apps/web/src/hooks/use-location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/hooks/use-location.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-media-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/hooks/use-media-query.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/hooks/use-menu.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/hooks/use-mobile.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-navigate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/hooks/use-navigate.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/hooks/use-routes.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/hooks/use-search.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-session-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/hooks/use-session-state.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-slider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/hooks/use-slider.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-spell-checker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/hooks/use-spell-checker.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/hooks/use-status.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-system-theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/hooks/use-system-theme.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-tablet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/hooks/use-tablet.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-timer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/hooks/use-timer.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-tip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/hooks/use-tip.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-vault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/hooks/use-vault.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-window-focus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/hooks/use-window-focus.ts -------------------------------------------------------------------------------- /apps/web/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/index.html -------------------------------------------------------------------------------- /apps/web/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/index.ts -------------------------------------------------------------------------------- /apps/web/src/interfaces/file-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/interfaces/file-store.ts -------------------------------------------------------------------------------- /apps/web/src/interfaces/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/interfaces/fs.ts -------------------------------------------------------------------------------- /apps/web/src/interfaces/key-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/interfaces/key-store.ts -------------------------------------------------------------------------------- /apps/web/src/interfaces/key-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/interfaces/key-value.ts -------------------------------------------------------------------------------- /apps/web/src/interfaces/nncrypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/interfaces/nncrypto.ts -------------------------------------------------------------------------------- /apps/web/src/interfaces/opfs.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/interfaces/opfs.worker.ts -------------------------------------------------------------------------------- /apps/web/src/interfaces/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/interfaces/storage.ts -------------------------------------------------------------------------------- /apps/web/src/navigation/hash-routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/navigation/hash-routes.tsx -------------------------------------------------------------------------------- /apps/web/src/navigation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/navigation/index.ts -------------------------------------------------------------------------------- /apps/web/src/navigation/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/navigation/routes.tsx -------------------------------------------------------------------------------- /apps/web/src/navigation/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/navigation/types.ts -------------------------------------------------------------------------------- /apps/web/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/polyfills.ts -------------------------------------------------------------------------------- /apps/web/src/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/root.tsx -------------------------------------------------------------------------------- /apps/web/src/service-worker.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/service-worker.dev.ts -------------------------------------------------------------------------------- /apps/web/src/service-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/service-worker.ts -------------------------------------------------------------------------------- /apps/web/src/stores/app-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/stores/app-store.ts -------------------------------------------------------------------------------- /apps/web/src/stores/attachment-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/stores/attachment-store.ts -------------------------------------------------------------------------------- /apps/web/src/stores/editor-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/stores/editor-store.ts -------------------------------------------------------------------------------- /apps/web/src/stores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/stores/index.ts -------------------------------------------------------------------------------- /apps/web/src/stores/monograph-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/stores/monograph-store.ts -------------------------------------------------------------------------------- /apps/web/src/stores/note-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/stores/note-store.ts -------------------------------------------------------------------------------- /apps/web/src/stores/notebook-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/stores/notebook-store.ts -------------------------------------------------------------------------------- /apps/web/src/stores/reminder-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/stores/reminder-store.ts -------------------------------------------------------------------------------- /apps/web/src/stores/search-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/stores/search-store.ts -------------------------------------------------------------------------------- /apps/web/src/stores/selection-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/stores/selection-store.ts -------------------------------------------------------------------------------- /apps/web/src/stores/setting-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/stores/setting-store.ts -------------------------------------------------------------------------------- /apps/web/src/stores/tag-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/stores/tag-store.ts -------------------------------------------------------------------------------- /apps/web/src/stores/theme-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/stores/theme-store.ts -------------------------------------------------------------------------------- /apps/web/src/stores/trash-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/stores/trash-store.ts -------------------------------------------------------------------------------- /apps/web/src/stores/user-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/stores/user-store.ts -------------------------------------------------------------------------------- /apps/web/src/utils/changelog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/utils/changelog.ts -------------------------------------------------------------------------------- /apps/web/src/utils/clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/utils/clipboard.ts -------------------------------------------------------------------------------- /apps/web/src/utils/compressor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/utils/compressor.ts -------------------------------------------------------------------------------- /apps/web/src/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/utils/config.ts -------------------------------------------------------------------------------- /apps/web/src/utils/data-transfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/utils/data-transfer.ts -------------------------------------------------------------------------------- /apps/web/src/utils/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/utils/dom.ts -------------------------------------------------------------------------------- /apps/web/src/utils/feature-check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/utils/feature-check.ts -------------------------------------------------------------------------------- /apps/web/src/utils/file-picker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/utils/file-picker.ts -------------------------------------------------------------------------------- /apps/web/src/utils/fullscreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/utils/fullscreen.ts -------------------------------------------------------------------------------- /apps/web/src/utils/html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/utils/html.ts -------------------------------------------------------------------------------- /apps/web/src/utils/idle-detection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/utils/idle-detection.ts -------------------------------------------------------------------------------- /apps/web/src/utils/image-compressor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/utils/image-compressor.ts -------------------------------------------------------------------------------- /apps/web/src/utils/importer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/utils/importer.ts -------------------------------------------------------------------------------- /apps/web/src/utils/keyboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/utils/keyboard.ts -------------------------------------------------------------------------------- /apps/web/src/utils/lazify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/utils/lazify.ts -------------------------------------------------------------------------------- /apps/web/src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/utils/logger.ts -------------------------------------------------------------------------------- /apps/web/src/utils/md.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/utils/md.ts -------------------------------------------------------------------------------- /apps/web/src/utils/network-check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/utils/network-check.ts -------------------------------------------------------------------------------- /apps/web/src/utils/page-visibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/utils/page-visibility.ts -------------------------------------------------------------------------------- /apps/web/src/utils/parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/utils/parse.ts -------------------------------------------------------------------------------- /apps/web/src/utils/platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/utils/platform.ts -------------------------------------------------------------------------------- /apps/web/src/utils/stream-saver/mitm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/utils/stream-saver/mitm.ts -------------------------------------------------------------------------------- /apps/web/src/utils/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/utils/stream.ts -------------------------------------------------------------------------------- /apps/web/src/utils/streams/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/utils/streams/utils.ts -------------------------------------------------------------------------------- /apps/web/src/utils/task-scheduler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/utils/task-scheduler.ts -------------------------------------------------------------------------------- /apps/web/src/utils/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/utils/toast.tsx -------------------------------------------------------------------------------- /apps/web/src/utils/updater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/utils/updater.ts -------------------------------------------------------------------------------- /apps/web/src/utils/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/utils/version.ts -------------------------------------------------------------------------------- /apps/web/src/utils/webauthn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/utils/webauthn.ts -------------------------------------------------------------------------------- /apps/web/src/views/all-notes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/views/all-notes.tsx -------------------------------------------------------------------------------- /apps/web/src/views/app-lock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/views/app-lock.tsx -------------------------------------------------------------------------------- /apps/web/src/views/auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/views/auth.tsx -------------------------------------------------------------------------------- /apps/web/src/views/checkout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/views/checkout.tsx -------------------------------------------------------------------------------- /apps/web/src/views/email-confirmed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/views/email-confirmed.tsx -------------------------------------------------------------------------------- /apps/web/src/views/notebooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/views/notebooks.tsx -------------------------------------------------------------------------------- /apps/web/src/views/notes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/views/notes.tsx -------------------------------------------------------------------------------- /apps/web/src/views/payments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/views/payments.tsx -------------------------------------------------------------------------------- /apps/web/src/views/plans.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/views/plans.tsx -------------------------------------------------------------------------------- /apps/web/src/views/recovery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/views/recovery.tsx -------------------------------------------------------------------------------- /apps/web/src/views/reminders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/views/reminders.tsx -------------------------------------------------------------------------------- /apps/web/src/views/tags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/views/tags.tsx -------------------------------------------------------------------------------- /apps/web/src/views/trash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/src/views/trash.tsx -------------------------------------------------------------------------------- /apps/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/tsconfig.json -------------------------------------------------------------------------------- /apps/web/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/vite.config.ts -------------------------------------------------------------------------------- /apps/web/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/vitest.config.ts -------------------------------------------------------------------------------- /apps/web/web-manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/apps/web/web-manifest.ts -------------------------------------------------------------------------------- /docs/help/contents/404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/docs/help/contents/404.md -------------------------------------------------------------------------------- /docs/help/contents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/docs/help/contents/README.md -------------------------------------------------------------------------------- /docs/help/contents/_include/_head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/docs/help/contents/_include/_head.html -------------------------------------------------------------------------------- /docs/help/contents/_include/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/docs/help/contents/_include/custom.css -------------------------------------------------------------------------------- /docs/help/contents/_include/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/docs/help/contents/_include/favicon.ico -------------------------------------------------------------------------------- /docs/help/contents/_include/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/docs/help/contents/_include/logo.png -------------------------------------------------------------------------------- /docs/help/contents/_include/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/docs/help/contents/_include/robots.txt -------------------------------------------------------------------------------- /docs/help/contents/app-lock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/docs/help/contents/app-lock.md -------------------------------------------------------------------------------- /docs/help/contents/custom-themes/README.md: -------------------------------------------------------------------------------- 1 | # Custom themes 2 | -------------------------------------------------------------------------------- /docs/help/contents/desktop-integration/README.md: -------------------------------------------------------------------------------- 1 | # Desktop integration 2 | -------------------------------------------------------------------------------- /docs/help/contents/faqs/README.md: -------------------------------------------------------------------------------- 1 | # FAQs 2 | -------------------------------------------------------------------------------- /docs/help/contents/gift-cards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/docs/help/contents/gift-cards.md -------------------------------------------------------------------------------- /docs/help/contents/mobile-integration/README.md: -------------------------------------------------------------------------------- 1 | # Mobile integration 2 | -------------------------------------------------------------------------------- /docs/help/contents/organizing-notes/README.md: -------------------------------------------------------------------------------- 1 | # Organizing notes 2 | -------------------------------------------------------------------------------- /docs/help/contents/privacy-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/docs/help/contents/privacy-mode.md -------------------------------------------------------------------------------- /docs/help/contents/rich-text-editor/README.md: -------------------------------------------------------------------------------- 1 | # Editor 2 | -------------------------------------------------------------------------------- /docs/help/contents/web-clipper/README.md: -------------------------------------------------------------------------------- 1 | # Web clipper 2 | -------------------------------------------------------------------------------- /docs/help/docgen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/docs/help/docgen.yaml -------------------------------------------------------------------------------- /docs/help/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/docs/help/package-lock.json -------------------------------------------------------------------------------- /docs/help/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/docs/help/package.json -------------------------------------------------------------------------------- /extensions/web-clipper/.gitignore: -------------------------------------------------------------------------------- 1 | build.pem -------------------------------------------------------------------------------- /extensions/web-clipper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/extensions/web-clipper/README.md -------------------------------------------------------------------------------- /extensions/web-clipper/assets/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/extensions/web-clipper/assets/16x16.png -------------------------------------------------------------------------------- /extensions/web-clipper/assets/24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/extensions/web-clipper/assets/24x24.png -------------------------------------------------------------------------------- /extensions/web-clipper/assets/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/extensions/web-clipper/assets/32x32.png -------------------------------------------------------------------------------- /extensions/web-clipper/assets/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/extensions/web-clipper/assets/48x48.png -------------------------------------------------------------------------------- /extensions/web-clipper/assets/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/extensions/web-clipper/assets/64x64.png -------------------------------------------------------------------------------- /extensions/web-clipper/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/extensions/web-clipper/assets/logo.svg -------------------------------------------------------------------------------- /extensions/web-clipper/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/extensions/web-clipper/global.d.ts -------------------------------------------------------------------------------- /extensions/web-clipper/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/extensions/web-clipper/package.json -------------------------------------------------------------------------------- /extensions/web-clipper/src/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/extensions/web-clipper/src/api.ts -------------------------------------------------------------------------------- /extensions/web-clipper/src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/extensions/web-clipper/src/app.tsx -------------------------------------------------------------------------------- /extensions/web-clipper/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/extensions/web-clipper/src/index.css -------------------------------------------------------------------------------- /extensions/web-clipper/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/extensions/web-clipper/src/index.tsx -------------------------------------------------------------------------------- /extensions/web-clipper/src/manifest.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /extensions/web-clipper/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/extensions/web-clipper/tsconfig.json -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/10139.txt: -------------------------------------------------------------------------------- 1 | - Bug fixes 2 | 3 | Thank you for using Notesnook! -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/10269.txt: -------------------------------------------------------------------------------- 1 | - Bug fixes and performance improvements 2 | 3 | Thank you for using Notesnook! -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/10279.txt: -------------------------------------------------------------------------------- 1 | - Bug fixes and performance improvements 2 | 3 | Thank you for using Notesnook! -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/10329.txt: -------------------------------------------------------------------------------- 1 | - Bug fixes and performance improvements 2 | 3 | Thank you for using Notesnook! -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/10344.txt: -------------------------------------------------------------------------------- 1 | - Bug fixes and performance improvements 2 | 3 | Thank you for using Notesnook! -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/10359.txt: -------------------------------------------------------------------------------- 1 | - Bug fixes and performance improvements 2 | 3 | Thank you for using Notesnook! -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/10454.txt: -------------------------------------------------------------------------------- 1 | - Minor bug fixes 2 | 3 | Thank you for using Notesnook! -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/15054.txt: -------------------------------------------------------------------------------- 1 | - Bug fixes and performance improvements 2 | 3 | Thank you for using Notesnook! -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/15064.txt: -------------------------------------------------------------------------------- 1 | - Bug fixes and performance improvements 2 | 3 | Thank you for using Notesnook! -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/15069.txt: -------------------------------------------------------------------------------- 1 | - Bug fixes and performance improvements 2 | 3 | Thank you for using Notesnook! -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/15074.txt: -------------------------------------------------------------------------------- 1 | - Bug fixes and performance improvements 2 | 3 | Thank you for using Notesnook! -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/15079.txt: -------------------------------------------------------------------------------- 1 | - Bug fixes and performance improvements 2 | 3 | Thank you for using Notesnook! -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/15084.txt: -------------------------------------------------------------------------------- 1 | - Bug fixes and performance improvements 2 | 3 | Thank you for using Notesnook! -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/15104.txt: -------------------------------------------------------------------------------- 1 | - Bug fixes and performance improvements 2 | 3 | Thank you for using Notesnook! -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/15109.txt: -------------------------------------------------------------------------------- 1 | - Bug fixes and performance improvements 2 | 3 | Thank you for using Notesnook! -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/15119.txt: -------------------------------------------------------------------------------- 1 | - Bug fixes and small improvements 2 | 3 | Thank you for using Notesnook! -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/15154.txt: -------------------------------------------------------------------------------- 1 | - Bug fixes and improvements 2 | 3 | Thank you for using Notesnook! -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/15184.txt: -------------------------------------------------------------------------------- 1 | - Small bug fixes and improvements 2 | 3 | Thank you for using Notesnook! -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/15254.txt: -------------------------------------------------------------------------------- 1 | - Bug fixes 2 | 3 | Thank you for using Notesnook! -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/15324.txt: -------------------------------------------------------------------------------- 1 | - Minor bug fixes and improvements 2 | 3 | Thank you for using Notesnook! -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/15339.txt: -------------------------------------------------------------------------------- 1 | - Bug fixes and improvements 2 | 3 | Thank you for using Notesnook! -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/15379.txt: -------------------------------------------------------------------------------- 1 | - Minor bug fixes and improvements 2 | 3 | Thank you for using Notesnook! -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/15384.txt: -------------------------------------------------------------------------------- 1 | - Minor bug fixes and improvements 2 | 3 | Thank you for using Notesnook! -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/15389.txt: -------------------------------------------------------------------------------- 1 | - Minor bug fixes and improvements 2 | 3 | Thank you for using Notesnook! -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/15394.txt: -------------------------------------------------------------------------------- 1 | - Minor bug fixes and improvements 2 | 3 | Thank you for using Notesnook! -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/4196329.txt: -------------------------------------------------------------------------------- 1 | - Bug fixes & small improvements 2 | 3 | Thank you for using Notesnook! -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/4196331.txt: -------------------------------------------------------------------------------- 1 | - Bug fixes 2 | 3 | Thank you for using Notesnook! -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/default.txt: -------------------------------------------------------------------------------- 1 | Minor bug fixes and improvements 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Notesnook - Private notes app 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/package.json -------------------------------------------------------------------------------- /packages/clipper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/clipper/.gitignore -------------------------------------------------------------------------------- /packages/clipper/.npmignore: -------------------------------------------------------------------------------- 1 | * 2 | !dist/**/* 3 | -------------------------------------------------------------------------------- /packages/clipper/__tests__/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/clipper/__tests__/pages.json -------------------------------------------------------------------------------- /packages/clipper/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/clipper/package-lock.json -------------------------------------------------------------------------------- /packages/clipper/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/clipper/package.json -------------------------------------------------------------------------------- /packages/clipper/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/clipper/playwright.config.ts -------------------------------------------------------------------------------- /packages/clipper/rsbuild.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/clipper/rsbuild.config.ts -------------------------------------------------------------------------------- /packages/clipper/src/clone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/clipper/src/clone.ts -------------------------------------------------------------------------------- /packages/clipper/src/domtoimage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/clipper/src/domtoimage.ts -------------------------------------------------------------------------------- /packages/clipper/src/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/clipper/src/fetch.ts -------------------------------------------------------------------------------- /packages/clipper/src/fontfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/clipper/src/fontfaces.ts -------------------------------------------------------------------------------- /packages/clipper/src/images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/clipper/src/images.ts -------------------------------------------------------------------------------- /packages/clipper/src/index.global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/clipper/src/index.global.ts -------------------------------------------------------------------------------- /packages/clipper/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/clipper/src/index.ts -------------------------------------------------------------------------------- /packages/clipper/src/inliner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/clipper/src/inliner.ts -------------------------------------------------------------------------------- /packages/clipper/src/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/clipper/src/styles.ts -------------------------------------------------------------------------------- /packages/clipper/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/clipper/src/types.ts -------------------------------------------------------------------------------- /packages/clipper/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/clipper/src/utils.ts -------------------------------------------------------------------------------- /packages/clipper/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/clipper/tsconfig.json -------------------------------------------------------------------------------- /packages/common/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/common/.gitignore -------------------------------------------------------------------------------- /packages/common/.npmignore: -------------------------------------------------------------------------------- 1 | * 2 | !dist/**/* 3 | !package.json -------------------------------------------------------------------------------- /packages/common/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/common/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/common/package-lock.json -------------------------------------------------------------------------------- /packages/common/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/common/package.json -------------------------------------------------------------------------------- /packages/common/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/common/src/components/index.ts -------------------------------------------------------------------------------- /packages/common/src/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/common/src/database.ts -------------------------------------------------------------------------------- /packages/common/src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/common/src/hooks/index.ts -------------------------------------------------------------------------------- /packages/common/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/common/src/index.ts -------------------------------------------------------------------------------- /packages/common/src/utils/dataurl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/common/src/utils/dataurl.ts -------------------------------------------------------------------------------- /packages/common/src/utils/date-time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/common/src/utils/date-time.ts -------------------------------------------------------------------------------- /packages/common/src/utils/debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/common/src/utils/debounce.ts -------------------------------------------------------------------------------- /packages/common/src/utils/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/common/src/utils/file.ts -------------------------------------------------------------------------------- /packages/common/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/common/src/utils/index.ts -------------------------------------------------------------------------------- /packages/common/src/utils/number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/common/src/utils/number.ts -------------------------------------------------------------------------------- /packages/common/src/utils/path-tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/common/src/utils/path-tree.ts -------------------------------------------------------------------------------- /packages/common/src/utils/random.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/common/src/utils/random.ts -------------------------------------------------------------------------------- /packages/common/src/utils/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/common/src/utils/string.ts -------------------------------------------------------------------------------- /packages/common/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/common/tsconfig.json -------------------------------------------------------------------------------- /packages/core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/.gitignore -------------------------------------------------------------------------------- /packages/core/.npmignore: -------------------------------------------------------------------------------- 1 | * 2 | !dist/**/* 3 | -------------------------------------------------------------------------------- /packages/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/README.md -------------------------------------------------------------------------------- /packages/core/__e2e__/offers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/__e2e__/offers.test.js -------------------------------------------------------------------------------- /packages/core/__e2e__/sync.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/__e2e__/sync.test.js -------------------------------------------------------------------------------- /packages/core/__e2e__/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/__e2e__/utils.js -------------------------------------------------------------------------------- /packages/core/__mocks__/fs.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/__mocks__/fs.mock.ts -------------------------------------------------------------------------------- /packages/core/__tests__/backup.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/__tests__/backup.test.js -------------------------------------------------------------------------------- /packages/core/__tests__/db.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/__tests__/db.test.js -------------------------------------------------------------------------------- /packages/core/__tests__/logger.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/__tests__/logger.test.ts -------------------------------------------------------------------------------- /packages/core/__tests__/lookup.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/__tests__/lookup.test.js -------------------------------------------------------------------------------- /packages/core/__tests__/notes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/__tests__/notes.test.ts -------------------------------------------------------------------------------- /packages/core/__tests__/storage.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/__tests__/storage.test.js -------------------------------------------------------------------------------- /packages/core/__tests__/tags.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/__tests__/tags.test.ts -------------------------------------------------------------------------------- /packages/core/__tests__/trash.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/__tests__/trash.test.ts -------------------------------------------------------------------------------- /packages/core/__tests__/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/__tests__/utils/index.ts -------------------------------------------------------------------------------- /packages/core/__tests__/vault.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/__tests__/vault.test.js -------------------------------------------------------------------------------- /packages/core/incremental-grouping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/incremental-grouping.md -------------------------------------------------------------------------------- /packages/core/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/package-lock.json -------------------------------------------------------------------------------- /packages/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/package.json -------------------------------------------------------------------------------- /packages/core/scripts/prebuild.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/scripts/prebuild.mjs -------------------------------------------------------------------------------- /packages/core/src/api/circle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/api/circle.ts -------------------------------------------------------------------------------- /packages/core/src/api/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/api/debug.ts -------------------------------------------------------------------------------- /packages/core/src/api/healthcheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/api/healthcheck.ts -------------------------------------------------------------------------------- /packages/core/src/api/inbox-api-keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/api/inbox-api-keys.ts -------------------------------------------------------------------------------- /packages/core/src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/api/index.ts -------------------------------------------------------------------------------- /packages/core/src/api/lookup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/api/lookup.ts -------------------------------------------------------------------------------- /packages/core/src/api/mfa-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/api/mfa-manager.ts -------------------------------------------------------------------------------- /packages/core/src/api/migrations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/api/migrations.ts -------------------------------------------------------------------------------- /packages/core/src/api/monographs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/api/monographs.ts -------------------------------------------------------------------------------- /packages/core/src/api/offers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/api/offers.ts -------------------------------------------------------------------------------- /packages/core/src/api/pricing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/api/pricing.ts -------------------------------------------------------------------------------- /packages/core/src/api/subscriptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/api/subscriptions.ts -------------------------------------------------------------------------------- /packages/core/src/api/sync/auto-sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/api/sync/auto-sync.ts -------------------------------------------------------------------------------- /packages/core/src/api/sync/collector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/api/sync/collector.ts -------------------------------------------------------------------------------- /packages/core/src/api/sync/devices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/api/sync/devices.ts -------------------------------------------------------------------------------- /packages/core/src/api/sync/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/api/sync/index.ts -------------------------------------------------------------------------------- /packages/core/src/api/sync/merger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/api/sync/merger.ts -------------------------------------------------------------------------------- /packages/core/src/api/sync/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/api/sync/types.ts -------------------------------------------------------------------------------- /packages/core/src/api/token-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/api/token-manager.ts -------------------------------------------------------------------------------- /packages/core/src/api/user-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/api/user-manager.ts -------------------------------------------------------------------------------- /packages/core/src/api/vault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/api/vault.ts -------------------------------------------------------------------------------- /packages/core/src/collections/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/collections/colors.ts -------------------------------------------------------------------------------- /packages/core/src/collections/notes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/collections/notes.ts -------------------------------------------------------------------------------- /packages/core/src/collections/tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/collections/tags.ts -------------------------------------------------------------------------------- /packages/core/src/collections/trash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/collections/trash.ts -------------------------------------------------------------------------------- /packages/core/src/collections/vaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/collections/vaults.ts -------------------------------------------------------------------------------- /packages/core/src/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/common.ts -------------------------------------------------------------------------------- /packages/core/src/database/backup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/database/backup.ts -------------------------------------------------------------------------------- /packages/core/src/database/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/database/config.ts -------------------------------------------------------------------------------- /packages/core/src/database/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/database/fs.ts -------------------------------------------------------------------------------- /packages/core/src/database/fts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/database/fts.ts -------------------------------------------------------------------------------- /packages/core/src/database/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/database/index.ts -------------------------------------------------------------------------------- /packages/core/src/database/indexer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/database/indexer.ts -------------------------------------------------------------------------------- /packages/core/src/database/kv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/database/kv.ts -------------------------------------------------------------------------------- /packages/core/src/database/migrator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/database/migrator.ts -------------------------------------------------------------------------------- /packages/core/src/database/sanitizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/database/sanitizer.ts -------------------------------------------------------------------------------- /packages/core/src/database/triggers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/database/triggers.ts -------------------------------------------------------------------------------- /packages/core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/index.ts -------------------------------------------------------------------------------- /packages/core/src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/interfaces.ts -------------------------------------------------------------------------------- /packages/core/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/logger.ts -------------------------------------------------------------------------------- /packages/core/src/migrations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/migrations.ts -------------------------------------------------------------------------------- /packages/core/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/types.ts -------------------------------------------------------------------------------- /packages/core/src/utils/array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/utils/array.ts -------------------------------------------------------------------------------- /packages/core/src/utils/clone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/utils/clone.ts -------------------------------------------------------------------------------- /packages/core/src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/utils/constants.ts -------------------------------------------------------------------------------- /packages/core/src/utils/crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/utils/crypto.ts -------------------------------------------------------------------------------- /packages/core/src/utils/dataurl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/utils/dataurl.ts -------------------------------------------------------------------------------- /packages/core/src/utils/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/utils/date.ts -------------------------------------------------------------------------------- /packages/core/src/utils/filename.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/utils/filename.ts -------------------------------------------------------------------------------- /packages/core/src/utils/fuzzy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/utils/fuzzy.ts -------------------------------------------------------------------------------- /packages/core/src/utils/grouping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/utils/grouping.ts -------------------------------------------------------------------------------- /packages/core/src/utils/has-require.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/utils/has-require.ts -------------------------------------------------------------------------------- /packages/core/src/utils/hostname.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/utils/hostname.ts -------------------------------------------------------------------------------- /packages/core/src/utils/html-diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/utils/html-diff.ts -------------------------------------------------------------------------------- /packages/core/src/utils/html-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/utils/html-parser.ts -------------------------------------------------------------------------------- /packages/core/src/utils/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/utils/http.ts -------------------------------------------------------------------------------- /packages/core/src/utils/id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/utils/id.ts -------------------------------------------------------------------------------- /packages/core/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/utils/index.ts -------------------------------------------------------------------------------- /packages/core/src/utils/lazy-promise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/utils/lazy-promise.ts -------------------------------------------------------------------------------- /packages/core/src/utils/object-id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/utils/object-id.ts -------------------------------------------------------------------------------- /packages/core/src/utils/queue-value.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/utils/queue-value.ts -------------------------------------------------------------------------------- /packages/core/src/utils/random.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/utils/random.ts -------------------------------------------------------------------------------- /packages/core/src/utils/set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/utils/set.ts -------------------------------------------------------------------------------- /packages/core/src/utils/templates/md.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/utils/templates/md.ts -------------------------------------------------------------------------------- /packages/core/src/utils/title-format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/src/utils/title-format.ts -------------------------------------------------------------------------------- /packages/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/tsconfig.json -------------------------------------------------------------------------------- /packages/core/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/core/vitest.config.ts -------------------------------------------------------------------------------- /packages/crypto/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/crypto/.npmignore -------------------------------------------------------------------------------- /packages/crypto/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/crypto/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/crypto/package-lock.json -------------------------------------------------------------------------------- /packages/crypto/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/crypto/package.json -------------------------------------------------------------------------------- /packages/crypto/src/decryption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/crypto/src/decryption.ts -------------------------------------------------------------------------------- /packages/crypto/src/encryption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/crypto/src/encryption.ts -------------------------------------------------------------------------------- /packages/crypto/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/crypto/src/index.ts -------------------------------------------------------------------------------- /packages/crypto/src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/crypto/src/interfaces.ts -------------------------------------------------------------------------------- /packages/crypto/src/keyutils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/crypto/src/keyutils.ts -------------------------------------------------------------------------------- /packages/crypto/src/password.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/crypto/src/password.ts -------------------------------------------------------------------------------- /packages/crypto/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/crypto/src/types.ts -------------------------------------------------------------------------------- /packages/crypto/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/crypto/tsconfig.json -------------------------------------------------------------------------------- /packages/editor-mobile/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true -------------------------------------------------------------------------------- /packages/editor-mobile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor-mobile/.gitignore -------------------------------------------------------------------------------- /packages/editor-mobile/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/editor-mobile/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor-mobile/package.json -------------------------------------------------------------------------------- /packages/editor-mobile/public/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor-mobile/public/fonts.css -------------------------------------------------------------------------------- /packages/editor-mobile/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor-mobile/src/App.css -------------------------------------------------------------------------------- /packages/editor-mobile/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor-mobile/src/App.test.js -------------------------------------------------------------------------------- /packages/editor-mobile/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor-mobile/src/App.tsx -------------------------------------------------------------------------------- /packages/editor-mobile/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor-mobile/src/index.css -------------------------------------------------------------------------------- /packages/editor-mobile/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor-mobile/src/index.tsx -------------------------------------------------------------------------------- /packages/editor-mobile/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor-mobile/src/logo.svg -------------------------------------------------------------------------------- /packages/editor-mobile/src/polyfill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor-mobile/src/polyfill.ts -------------------------------------------------------------------------------- /packages/editor-mobile/src/utils/css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor-mobile/src/utils/css.ts -------------------------------------------------------------------------------- /packages/editor-mobile/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor-mobile/tsconfig.json -------------------------------------------------------------------------------- /packages/editor/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | *.tsbuildinfo 3 | dist 4 | languages/ -------------------------------------------------------------------------------- /packages/editor/.npmignore: -------------------------------------------------------------------------------- 1 | * 2 | !dist/**/* 3 | -------------------------------------------------------------------------------- /packages/editor/README.md: -------------------------------------------------------------------------------- 1 | # notesnook-editor 2 | -------------------------------------------------------------------------------- /packages/editor/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor/package-lock.json -------------------------------------------------------------------------------- /packages/editor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor/package.json -------------------------------------------------------------------------------- /packages/editor/scripts/build.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor/scripts/build.mjs -------------------------------------------------------------------------------- /packages/editor/scripts/langen.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor/scripts/langen.mjs -------------------------------------------------------------------------------- /packages/editor/scripts/postbuild.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor/scripts/postbuild.mjs -------------------------------------------------------------------------------- /packages/editor/src/hooks/use-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor/src/hooks/use-editor.ts -------------------------------------------------------------------------------- /packages/editor/src/hooks/use-timer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor/src/hooks/use-timer.ts -------------------------------------------------------------------------------- /packages/editor/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor/src/index.ts -------------------------------------------------------------------------------- /packages/editor/src/toolbar/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor/src/toolbar/icons.ts -------------------------------------------------------------------------------- /packages/editor/src/toolbar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor/src/toolbar/index.ts -------------------------------------------------------------------------------- /packages/editor/src/toolbar/toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor/src/toolbar/toolbar.tsx -------------------------------------------------------------------------------- /packages/editor/src/toolbar/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor/src/toolbar/types.ts -------------------------------------------------------------------------------- /packages/editor/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor/src/types.ts -------------------------------------------------------------------------------- /packages/editor/src/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor/src/utils/config.ts -------------------------------------------------------------------------------- /packages/editor/src/utils/debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor/src/utils/debounce.ts -------------------------------------------------------------------------------- /packages/editor/src/utils/downloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor/src/utils/downloader.ts -------------------------------------------------------------------------------- /packages/editor/src/utils/font.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor/src/utils/font.ts -------------------------------------------------------------------------------- /packages/editor/src/utils/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor/src/utils/list.ts -------------------------------------------------------------------------------- /packages/editor/src/utils/node-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor/src/utils/node-types.ts -------------------------------------------------------------------------------- /packages/editor/src/utils/platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor/src/utils/platform.ts -------------------------------------------------------------------------------- /packages/editor/src/utils/toc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor/src/utils/toc.ts -------------------------------------------------------------------------------- /packages/editor/styles/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor/styles/fonts.css -------------------------------------------------------------------------------- /packages/editor/styles/fonts.mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor/styles/fonts.mobile.css -------------------------------------------------------------------------------- /packages/editor/styles/katex-fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor/styles/katex-fonts.css -------------------------------------------------------------------------------- /packages/editor/styles/katex.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor/styles/katex.min.css -------------------------------------------------------------------------------- /packages/editor/styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor/styles/styles.css -------------------------------------------------------------------------------- /packages/editor/test-utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor/test-utils/index.ts -------------------------------------------------------------------------------- /packages/editor/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor/tsconfig.json -------------------------------------------------------------------------------- /packages/editor/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/editor/vitest.config.ts -------------------------------------------------------------------------------- /packages/intl/.gitignore: -------------------------------------------------------------------------------- 1 | .swc 2 | locales 3 | generated/*.ts -------------------------------------------------------------------------------- /packages/intl/.npmignore: -------------------------------------------------------------------------------- 1 | * 2 | !dist/**/* 3 | !package.json -------------------------------------------------------------------------------- /packages/intl/lingui.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/intl/lingui.config.js -------------------------------------------------------------------------------- /packages/intl/locale/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/intl/locale/en.po -------------------------------------------------------------------------------- /packages/intl/locale/pseudo-LOCALE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/intl/locale/pseudo-LOCALE.po -------------------------------------------------------------------------------- /packages/intl/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/intl/package-lock.json -------------------------------------------------------------------------------- /packages/intl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/intl/package.json -------------------------------------------------------------------------------- /packages/intl/scripts/postbuild.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/intl/scripts/postbuild.mjs -------------------------------------------------------------------------------- /packages/intl/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/intl/src/index.ts -------------------------------------------------------------------------------- /packages/intl/src/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/intl/src/setup.ts -------------------------------------------------------------------------------- /packages/intl/src/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/intl/src/strings.ts -------------------------------------------------------------------------------- /packages/intl/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/intl/tsconfig.json -------------------------------------------------------------------------------- /packages/intl/vite.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/intl/vite.config.mts -------------------------------------------------------------------------------- /packages/logger/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/logger/.gitignore -------------------------------------------------------------------------------- /packages/logger/.npmignore: -------------------------------------------------------------------------------- 1 | * 2 | !dist/**/* 3 | !package.json -------------------------------------------------------------------------------- /packages/logger/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/logger/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/logger/package-lock.json -------------------------------------------------------------------------------- /packages/logger/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/logger/package.json -------------------------------------------------------------------------------- /packages/logger/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/logger/src/index.ts -------------------------------------------------------------------------------- /packages/logger/src/reporters/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/logger/src/reporters/index.ts -------------------------------------------------------------------------------- /packages/logger/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/logger/src/types.ts -------------------------------------------------------------------------------- /packages/logger/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/logger/tsconfig.json -------------------------------------------------------------------------------- /packages/sodium/.npmignore: -------------------------------------------------------------------------------- 1 | * 2 | 3 | !dist/**/* 4 | !package.json 5 | !README.md -------------------------------------------------------------------------------- /packages/sodium/benches/bench.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/sodium/benches/bench.ts -------------------------------------------------------------------------------- /packages/sodium/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/sodium/package-lock.json -------------------------------------------------------------------------------- /packages/sodium/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/sodium/package.json -------------------------------------------------------------------------------- /packages/sodium/scripts/postbuild.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/sodium/scripts/postbuild.mjs -------------------------------------------------------------------------------- /packages/sodium/src/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/sodium/src/browser.ts -------------------------------------------------------------------------------- /packages/sodium/src/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/sodium/src/node.ts -------------------------------------------------------------------------------- /packages/sodium/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/sodium/src/types.ts -------------------------------------------------------------------------------- /packages/sodium/tests/compat.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/sodium/tests/compat.test.ts -------------------------------------------------------------------------------- /packages/sodium/tests/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/sodium/tests/utils.ts -------------------------------------------------------------------------------- /packages/sodium/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/sodium/tsconfig.json -------------------------------------------------------------------------------- /packages/streamable-fs/.npmignore: -------------------------------------------------------------------------------- 1 | * 2 | !dist/**/* 3 | -------------------------------------------------------------------------------- /packages/streamable-fs/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/streamable-fs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/streamable-fs/package.json -------------------------------------------------------------------------------- /packages/streamable-fs/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/streamable-fs/src/index.ts -------------------------------------------------------------------------------- /packages/streamable-fs/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/streamable-fs/src/types.ts -------------------------------------------------------------------------------- /packages/streamable-fs/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/streamable-fs/src/utils.ts -------------------------------------------------------------------------------- /packages/streamable-fs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/streamable-fs/tsconfig.json -------------------------------------------------------------------------------- /packages/theme/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/theme/.gitignore -------------------------------------------------------------------------------- /packages/theme/.npmignore: -------------------------------------------------------------------------------- 1 | * 2 | !dist/**/* -------------------------------------------------------------------------------- /packages/theme/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/theme/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/theme/package-lock.json -------------------------------------------------------------------------------- /packages/theme/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/theme/package.json -------------------------------------------------------------------------------- /packages/theme/scripts/prebuild.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/theme/scripts/prebuild.mjs -------------------------------------------------------------------------------- /packages/theme/src/emotion/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/theme/src/emotion/index.ts -------------------------------------------------------------------------------- /packages/theme/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/theme/src/index.ts -------------------------------------------------------------------------------- /packages/theme/src/theme/font/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/theme/src/theme/font/index.ts -------------------------------------------------------------------------------- /packages/theme/src/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/theme/src/theme/index.ts -------------------------------------------------------------------------------- /packages/theme/src/theme/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/theme/src/theme/types.ts -------------------------------------------------------------------------------- /packages/theme/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/theme/tsconfig.json -------------------------------------------------------------------------------- /packages/theme/v1.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/theme/v1.schema.json -------------------------------------------------------------------------------- /packages/ui/.npmignore: -------------------------------------------------------------------------------- 1 | * 2 | !dist/**/* 3 | -------------------------------------------------------------------------------- /packages/ui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/ui/package-lock.json -------------------------------------------------------------------------------- /packages/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/ui/package.json -------------------------------------------------------------------------------- /packages/ui/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/ui/src/components/index.ts -------------------------------------------------------------------------------- /packages/ui/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/ui/src/index.ts -------------------------------------------------------------------------------- /packages/ui/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/ui/src/utils/index.ts -------------------------------------------------------------------------------- /packages/ui/src/utils/position.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/ui/src/utils/position.ts -------------------------------------------------------------------------------- /packages/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/packages/ui/tsconfig.json -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/screenshots/mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/resources/screenshots/mobile.jpg -------------------------------------------------------------------------------- /resources/screenshots/theme-builder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/resources/screenshots/theme-builder.png -------------------------------------------------------------------------------- /resources/screenshots/web.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/resources/screenshots/web.jpg -------------------------------------------------------------------------------- /resources/vscode-signed-off-commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/resources/vscode-signed-off-commit.png -------------------------------------------------------------------------------- /scripts/analyze.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/scripts/analyze.mjs -------------------------------------------------------------------------------- /scripts/bootstrap.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/scripts/bootstrap.mjs -------------------------------------------------------------------------------- /scripts/build.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/scripts/build.mjs -------------------------------------------------------------------------------- /scripts/clean.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/scripts/clean.mjs -------------------------------------------------------------------------------- /scripts/execute.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/scripts/execute.mjs -------------------------------------------------------------------------------- /scripts/generate-sources.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/scripts/generate-sources.mjs -------------------------------------------------------------------------------- /scripts/publish.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/scripts/publish.mjs -------------------------------------------------------------------------------- /servers/themes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/servers/themes/.gitignore -------------------------------------------------------------------------------- /servers/themes/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/servers/themes/global.d.ts -------------------------------------------------------------------------------- /servers/themes/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/servers/themes/package-lock.json -------------------------------------------------------------------------------- /servers/themes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/servers/themes/package.json -------------------------------------------------------------------------------- /servers/themes/src/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/servers/themes/src/api.ts -------------------------------------------------------------------------------- /servers/themes/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/servers/themes/src/constants.ts -------------------------------------------------------------------------------- /servers/themes/src/counter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/servers/themes/src/counter.ts -------------------------------------------------------------------------------- /servers/themes/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/servers/themes/src/index.ts -------------------------------------------------------------------------------- /servers/themes/src/orama.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/servers/themes/src/orama.ts -------------------------------------------------------------------------------- /servers/themes/src/schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/servers/themes/src/schemas.ts -------------------------------------------------------------------------------- /servers/themes/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/servers/themes/src/server.ts -------------------------------------------------------------------------------- /servers/themes/src/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/servers/themes/src/sync.ts -------------------------------------------------------------------------------- /servers/themes/src/trpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/servers/themes/src/trpc.ts -------------------------------------------------------------------------------- /servers/themes/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/servers/themes/tsconfig.json -------------------------------------------------------------------------------- /servers/themes/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/servers/themes/vite.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsdown.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streetwriters/notesnook/HEAD/tsdown.config.ts --------------------------------------------------------------------------------