├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature-request.md └── workflows │ ├── build.yml │ └── web-deploy.yml ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app ├── README.md ├── package-lock.json └── package.json ├── bun.lockb ├── client.config.js.gpg ├── config-check.js ├── config-example.js ├── config_decrypt.sh ├── cypress.config.js ├── cypress ├── e2e │ ├── 01-doc.management.cy.js │ ├── authentication_flow.cy.js │ ├── doc.editing-cardbased.cy.js │ ├── doc.editing.cy.js │ ├── doc.export.cy.js │ ├── doc.import.cy.js │ ├── doc.keyboard.cy.js │ ├── doc.loading.cy.js │ ├── doc.random_ids.cy.js │ ├── doc.settings.cy.js │ ├── doc.templates.cy.js │ ├── doc.ui.cy.js │ ├── empty.cy.js │ ├── not_found.cy.js │ ├── offline.cy.js │ └── payment.cy.js ├── fixtures │ ├── bulk-import-test-larger.txt │ ├── bulk-import-test.txt │ ├── deleteNonTestData.sql │ ├── deleteTestData.sql │ ├── example.json │ ├── fourSmallTrees.ids.json │ ├── fourSmallTrees.json │ ├── fourSmallTrees.sql │ ├── fourTrees.ids.json │ ├── fourTrees.json │ ├── oneEmptyTree.json │ ├── oneEmptyTree.sql │ ├── oneTree.ids.json │ ├── oneTree.sql │ ├── sevenTrees.ids.json │ ├── sevenTrees.json │ ├── stripeSuccess.json │ ├── twoTrees.ids.json │ ├── twoTrees.json │ └── twoTrees.sql ├── plugins │ └── index.js └── support │ ├── commands.js │ └── e2e.js ├── docs └── images │ ├── how-to-clone-address.png │ ├── how-to-fork.png │ └── screenshot-alien-screenplay.png ├── elm-log-colors.sh ├── elm-postprocess.mjs ├── elm-watch.json ├── elm.json ├── esbuild.mjs ├── hidden-config-example.js ├── i18n ├── ar.json ├── br.json ├── ca.json ├── cs.json ├── de.json ├── es.json ├── fa.json ├── fr.json ├── get-code-terms.sh ├── hr.json ├── hu.json ├── id.json ├── it.json ├── ja.json ├── ko.json ├── mr.json ├── nb.json ├── nl.json ├── pes.json ├── pl.json ├── ro.json ├── ru.json ├── sv.json ├── terms.po ├── uk.json ├── zh_hans.json └── zh_hant.json ├── package.json ├── playwright.config.ts ├── postcss.config.js ├── review ├── elm.json └── src │ └── ReviewConfig.elm ├── src ├── bin │ ├── linux │ │ └── pandoc │ ├── mac │ │ └── pandoc │ └── win │ │ └── pandoc.exe ├── electron │ ├── commit.js │ ├── container-electron.js │ ├── container.js │ ├── doc-list.js │ ├── enter-license-modal.ejs │ ├── faq-modal.ejs │ ├── file-io.js │ ├── home.ejs │ ├── home.js │ ├── main.js │ ├── menu.js │ ├── oldmain.js │ ├── oldmenu.js │ ├── pandoc.js │ ├── preload.js │ ├── renderer.ejs │ ├── renderer.js │ ├── shortcuts-modal.ejs │ ├── shortcuts-modal.js │ ├── support-modal.ejs │ ├── support-modal.js │ ├── trial-modal.ejs │ ├── trial-modal.js │ ├── trial-preload.js │ ├── trial-success-modal.ejs │ ├── videos-modal.ejs │ └── videos-modal.js ├── elm │ ├── Api.elm │ ├── Coders.elm │ ├── Diff3.elm │ ├── Doc │ │ ├── ContactForm.elm │ │ ├── Data.elm │ │ ├── Data │ │ │ └── Conflict.elm │ │ ├── Fonts.elm │ │ ├── Fullscreen.elm │ │ ├── HelpScreen.elm │ │ ├── History.elm │ │ ├── List.elm │ │ ├── Metadata.elm │ │ ├── Switcher.elm │ │ ├── TreeSort.elm │ │ ├── TreeStructure.elm │ │ ├── TreeUtils.elm │ │ ├── UI.elm │ │ ├── UIStyled.elm │ │ └── VideoViewer.elm │ ├── Electron │ │ ├── Electron.elm │ │ ├── Home.elm │ │ ├── ShortcutsModal.elm │ │ ├── SupportModal.elm │ │ ├── TrialModal.elm │ │ ├── VideosModal.elm │ │ └── Worker.elm │ ├── Feature.elm │ ├── Features.elm │ ├── GlobalData.elm │ ├── Import │ │ ├── Bulk.elm │ │ ├── Bulk │ │ │ └── UI.elm │ │ ├── Incoming.elm │ │ ├── Opml.elm │ │ ├── Single.elm │ │ ├── Template.elm │ │ └── Text.elm │ ├── Main.elm │ ├── Outgoing.elm │ ├── Page │ │ ├── App.elm │ │ ├── Copy.elm │ │ ├── Doc.elm │ │ ├── Doc │ │ │ ├── ContextMenu.elm │ │ │ ├── Export.elm │ │ │ ├── Incoming.elm │ │ │ └── Theme.elm │ │ ├── DocMessage.elm │ │ ├── DocNew.elm │ │ ├── ForgotPassword.elm │ │ ├── Import.elm │ │ ├── Login.elm │ │ ├── Message.elm │ │ ├── NotFound.elm │ │ ├── Public.elm │ │ ├── ResetPassword.elm │ │ └── Signup.elm │ ├── Public.elm │ ├── RandomId.elm │ ├── Route.elm │ ├── Session.elm │ ├── SharedUI.elm │ ├── Styles.elm │ ├── Toast.elm │ ├── Translation.elm │ ├── Types.elm │ ├── UI │ │ ├── Collaborators.elm │ │ ├── Collaborators │ │ │ └── Modal.elm │ │ ├── Header.elm │ │ └── Sidebar.elm │ ├── UpdatedAt.elm │ ├── Upgrade.elm │ └── Utils.elm ├── index.ejs ├── legacy-import │ ├── LegacyWorker.elm │ ├── bun.lockb │ ├── elm.json │ ├── mongodb-to-sqlite.ts │ ├── package.json │ └── tsconfig.json ├── migration │ ├── MigrationWorker.elm │ ├── couchdb-to-sqlite.ts │ └── elm.json ├── shared │ ├── data.js │ ├── data.worker.js │ ├── doc-helpers.js │ ├── doc.js │ ├── encrypt.js │ ├── errors.js │ ├── home.js │ └── translation.js ├── static │ ├── adriano-small-circle.jpg │ ├── concrete_wall-2.png │ ├── concrete_wall.png │ ├── database-download.html │ ├── desktop-fonts.css │ ├── desktop.css │ ├── docs-blank_1.png │ ├── email.html │ ├── faq-modal.css │ ├── fonts │ │ ├── Bitter │ │ │ ├── Bitter-Bold.ttf │ │ │ ├── Bitter-Italic.ttf │ │ │ ├── Bitter-Regular.ttf │ │ │ ├── OFL.txt │ │ │ ├── bitter-v26-latin-700.woff │ │ │ ├── bitter-v26-latin-700.woff2 │ │ │ ├── bitter-v26-latin-700italic.woff │ │ │ ├── bitter-v26-latin-700italic.woff2 │ │ │ ├── bitter-v26-latin-italic.woff │ │ │ ├── bitter-v26-latin-italic.woff2 │ │ │ ├── bitter-v26-latin-regular.woff │ │ │ └── bitter-v26-latin-regular.woff2 │ │ ├── Catamaran │ │ │ ├── Catamaran-Black.ttf │ │ │ ├── Catamaran-Bold.ttf │ │ │ ├── Catamaran-ExtraBold.ttf │ │ │ ├── Catamaran-ExtraLight.ttf │ │ │ ├── Catamaran-Light.ttf │ │ │ ├── Catamaran-Medium.ttf │ │ │ ├── Catamaran-Regular.ttf │ │ │ ├── Catamaran-SemiBold.ttf │ │ │ ├── Catamaran-Thin.ttf │ │ │ ├── Catamaran-VariableFont_wght.ttf │ │ │ ├── OFL.txt │ │ │ └── README.txt │ │ ├── Droid_Sans_Mono │ │ │ ├── DroidSansMono.ttf │ │ │ └── LICENSE.txt │ │ ├── Droid_Serif │ │ │ ├── DroidSerif-Bold.ttf │ │ │ ├── DroidSerif-BoldItalic.ttf │ │ │ ├── DroidSerif-Italic.ttf │ │ │ ├── DroidSerif.ttf │ │ │ └── LICENSE.txt │ │ ├── Merriweather │ │ │ ├── Merriweather-Bold.ttf │ │ │ ├── Merriweather-BoldItalic.ttf │ │ │ ├── Merriweather-Italic.ttf │ │ │ └── Merriweather-Regular.ttf │ │ ├── OpenDyslexic │ │ │ ├── OpenDyslexic-Bold.otf │ │ │ ├── OpenDyslexic-BoldItalic.otf │ │ │ ├── OpenDyslexic-Italic.otf │ │ │ └── OpenDyslexic-Regular.otf │ │ ├── Open_Sans │ │ │ ├── LICENSE.txt │ │ │ ├── OpenSans-Bold.ttf │ │ │ ├── OpenSans-BoldItalic.ttf │ │ │ ├── OpenSans-ExtraBold.ttf │ │ │ ├── OpenSans-ExtraBoldItalic.ttf │ │ │ ├── OpenSans-Italic.ttf │ │ │ ├── OpenSans-Light.ttf │ │ │ ├── OpenSans-LightItalic.ttf │ │ │ ├── OpenSans-Regular.ttf │ │ │ ├── OpenSans-Semibold.ttf │ │ │ ├── OpenSans-SemiboldItalic.ttf │ │ │ ├── open-sans-v29-latin-700.woff │ │ │ ├── open-sans-v29-latin-700.woff2 │ │ │ ├── open-sans-v29-latin-700italic.woff │ │ │ ├── open-sans-v29-latin-700italic.woff2 │ │ │ ├── open-sans-v29-latin-italic.woff │ │ │ ├── open-sans-v29-latin-italic.woff2 │ │ │ ├── open-sans-v29-latin-regular.woff │ │ │ └── open-sans-v29-latin-regular.woff2 │ │ ├── Roboto │ │ │ ├── LICENSE.txt │ │ │ ├── Roboto-Black.ttf │ │ │ ├── Roboto-BlackItalic.ttf │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-BoldItalic.ttf │ │ │ ├── Roboto-Italic.ttf │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-LightItalic.ttf │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-MediumItalic.ttf │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Thin.ttf │ │ │ └── Roboto-ThinItalic.ttf │ │ ├── Roboto_Mono │ │ │ ├── LICENSE.txt │ │ │ ├── RobotoMono-Bold.ttf │ │ │ ├── RobotoMono-BoldItalic.ttf │ │ │ ├── RobotoMono-Italic.ttf │ │ │ ├── RobotoMono-Light.ttf │ │ │ ├── RobotoMono-LightItalic.ttf │ │ │ ├── RobotoMono-Medium.ttf │ │ │ ├── RobotoMono-MediumItalic.ttf │ │ │ ├── RobotoMono-Regular.ttf │ │ │ ├── RobotoMono-Thin.ttf │ │ │ ├── RobotoMono-ThinItalic.ttf │ │ │ ├── roboto-mono-v21-latin-700.woff │ │ │ ├── roboto-mono-v21-latin-700.woff2 │ │ │ ├── roboto-mono-v21-latin-regular.woff │ │ │ └── roboto-mono-v21-latin-regular.woff2 │ │ ├── eczar │ │ │ ├── Eczar-Bold.ttf │ │ │ └── Eczar-Regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ ├── glyphicons-halflings-regular.woff2 │ │ ├── librebaskerville │ │ │ ├── LibreBaskerville-Bold.ttf │ │ │ ├── LibreBaskerville-Italic.ttf │ │ │ └── LibreBaskerville-Regular.ttf │ │ ├── lora │ │ │ ├── DESCRIPTION.en_us.html │ │ │ ├── FONTLOG.txt │ │ │ ├── Lora-Bold.ttf │ │ │ ├── Lora-BoldItalic.ttf │ │ │ ├── Lora-Italic.ttf │ │ │ ├── Lora-Regular.ttf │ │ │ ├── METADATA.pb │ │ │ └── OFL.txt │ │ ├── notoserif │ │ │ ├── DESCRIPTION.en_us.html │ │ │ ├── METADATA.pb │ │ │ ├── NotoSerif-Bold.ttf │ │ │ ├── NotoSerif-BoldItalic.ttf │ │ │ ├── NotoSerif-Italic.ttf │ │ │ ├── NotoSerif-Regular.ttf │ │ │ └── OFL.txt │ │ └── robotoslab │ │ │ ├── COPYRIGHT.txt │ │ │ ├── DESCRIPTION.en_us.html │ │ │ ├── LICENSE.txt │ │ │ ├── METADATA.pb │ │ │ ├── RobotoSlab-Bold.ttf │ │ │ ├── RobotoSlab-Light.ttf │ │ │ ├── RobotoSlab-Regular.ttf │ │ │ └── RobotoSlab-Thin.ttf │ ├── gingko-leaf-logo.svg │ ├── handmadepaper.png │ ├── help-menu.png │ ├── highlight.pack.js │ ├── home.css │ ├── index.html │ ├── leaf.png │ ├── leaf128.icns │ ├── leaf128.ico │ ├── leaf128.png │ ├── leaf196.png │ ├── leaf256.ico │ ├── leaf256blurry.png │ ├── license.html │ ├── list.html │ ├── modal.css │ ├── new-doc.png │ ├── shared.css │ ├── shortcuts-modal.css │ ├── stripe-climate-badge.svg │ ├── style.css │ ├── styles │ │ └── github.css │ ├── support-modal.css │ ├── support.html │ ├── templates │ │ ├── academic-paper.json │ │ ├── heros-journey.json │ │ ├── project-brainstorming.json │ │ ├── timeline.json │ │ └── welcome.json │ ├── trial-modal.css │ └── videos-modal.css └── web │ └── container-web.js ├── tailwind.config.js ├── tests ├── DataTests.elm ├── ParserTests.elm ├── e2e │ ├── auth.setup.ts │ ├── doc.fullscreen.spec.ts │ ├── fixtures │ │ └── deleteTestData.sql │ └── shared.ts ├── electron │ └── electron.spec.ts ├── shared │ └── doc.shared.tests.ts └── web │ ├── web.doc.spec.ts │ └── web.spec.ts ├── tsconfig.json └── webpack.config.js /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/web-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/.github/workflows/web-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/README.md -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/app/package-lock.json -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/app/package.json -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/bun.lockb -------------------------------------------------------------------------------- /client.config.js.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/client.config.js.gpg -------------------------------------------------------------------------------- /config-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/config-check.js -------------------------------------------------------------------------------- /config-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/config-example.js -------------------------------------------------------------------------------- /config_decrypt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/config_decrypt.sh -------------------------------------------------------------------------------- /cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress.config.js -------------------------------------------------------------------------------- /cypress/e2e/01-doc.management.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/e2e/01-doc.management.cy.js -------------------------------------------------------------------------------- /cypress/e2e/authentication_flow.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/e2e/authentication_flow.cy.js -------------------------------------------------------------------------------- /cypress/e2e/doc.editing-cardbased.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/e2e/doc.editing-cardbased.cy.js -------------------------------------------------------------------------------- /cypress/e2e/doc.editing.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/e2e/doc.editing.cy.js -------------------------------------------------------------------------------- /cypress/e2e/doc.export.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/e2e/doc.export.cy.js -------------------------------------------------------------------------------- /cypress/e2e/doc.import.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/e2e/doc.import.cy.js -------------------------------------------------------------------------------- /cypress/e2e/doc.keyboard.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/e2e/doc.keyboard.cy.js -------------------------------------------------------------------------------- /cypress/e2e/doc.loading.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/e2e/doc.loading.cy.js -------------------------------------------------------------------------------- /cypress/e2e/doc.random_ids.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/e2e/doc.random_ids.cy.js -------------------------------------------------------------------------------- /cypress/e2e/doc.settings.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/e2e/doc.settings.cy.js -------------------------------------------------------------------------------- /cypress/e2e/doc.templates.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/e2e/doc.templates.cy.js -------------------------------------------------------------------------------- /cypress/e2e/doc.ui.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/e2e/doc.ui.cy.js -------------------------------------------------------------------------------- /cypress/e2e/empty.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/e2e/empty.cy.js -------------------------------------------------------------------------------- /cypress/e2e/not_found.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/e2e/not_found.cy.js -------------------------------------------------------------------------------- /cypress/e2e/offline.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/e2e/offline.cy.js -------------------------------------------------------------------------------- /cypress/e2e/payment.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/e2e/payment.cy.js -------------------------------------------------------------------------------- /cypress/fixtures/bulk-import-test-larger.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/fixtures/bulk-import-test-larger.txt -------------------------------------------------------------------------------- /cypress/fixtures/bulk-import-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/fixtures/bulk-import-test.txt -------------------------------------------------------------------------------- /cypress/fixtures/deleteNonTestData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/fixtures/deleteNonTestData.sql -------------------------------------------------------------------------------- /cypress/fixtures/deleteTestData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/fixtures/deleteTestData.sql -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/fixtures/fourSmallTrees.ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/fixtures/fourSmallTrees.ids.json -------------------------------------------------------------------------------- /cypress/fixtures/fourSmallTrees.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/fixtures/fourSmallTrees.json -------------------------------------------------------------------------------- /cypress/fixtures/fourSmallTrees.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/fixtures/fourSmallTrees.sql -------------------------------------------------------------------------------- /cypress/fixtures/fourTrees.ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/fixtures/fourTrees.ids.json -------------------------------------------------------------------------------- /cypress/fixtures/fourTrees.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/fixtures/fourTrees.json -------------------------------------------------------------------------------- /cypress/fixtures/oneEmptyTree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/fixtures/oneEmptyTree.json -------------------------------------------------------------------------------- /cypress/fixtures/oneEmptyTree.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/fixtures/oneEmptyTree.sql -------------------------------------------------------------------------------- /cypress/fixtures/oneTree.ids.json: -------------------------------------------------------------------------------- 1 | ["9y9ve"] 2 | -------------------------------------------------------------------------------- /cypress/fixtures/oneTree.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/fixtures/oneTree.sql -------------------------------------------------------------------------------- /cypress/fixtures/sevenTrees.ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/fixtures/sevenTrees.ids.json -------------------------------------------------------------------------------- /cypress/fixtures/sevenTrees.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/fixtures/sevenTrees.json -------------------------------------------------------------------------------- /cypress/fixtures/stripeSuccess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/fixtures/stripeSuccess.json -------------------------------------------------------------------------------- /cypress/fixtures/twoTrees.ids.json: -------------------------------------------------------------------------------- 1 | ["CJoWu", "lYTJe"] -------------------------------------------------------------------------------- /cypress/fixtures/twoTrees.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/fixtures/twoTrees.json -------------------------------------------------------------------------------- /cypress/fixtures/twoTrees.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/fixtures/twoTrees.sql -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/cypress/support/e2e.js -------------------------------------------------------------------------------- /docs/images/how-to-clone-address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/docs/images/how-to-clone-address.png -------------------------------------------------------------------------------- /docs/images/how-to-fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/docs/images/how-to-fork.png -------------------------------------------------------------------------------- /docs/images/screenshot-alien-screenplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/docs/images/screenshot-alien-screenplay.png -------------------------------------------------------------------------------- /elm-log-colors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/elm-log-colors.sh -------------------------------------------------------------------------------- /elm-postprocess.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/elm-postprocess.mjs -------------------------------------------------------------------------------- /elm-watch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/elm-watch.json -------------------------------------------------------------------------------- /elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/elm.json -------------------------------------------------------------------------------- /esbuild.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/esbuild.mjs -------------------------------------------------------------------------------- /hidden-config-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/hidden-config-example.js -------------------------------------------------------------------------------- /i18n/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/i18n/ar.json -------------------------------------------------------------------------------- /i18n/br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/i18n/br.json -------------------------------------------------------------------------------- /i18n/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/i18n/ca.json -------------------------------------------------------------------------------- /i18n/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/i18n/cs.json -------------------------------------------------------------------------------- /i18n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/i18n/de.json -------------------------------------------------------------------------------- /i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/i18n/es.json -------------------------------------------------------------------------------- /i18n/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/i18n/fa.json -------------------------------------------------------------------------------- /i18n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/i18n/fr.json -------------------------------------------------------------------------------- /i18n/get-code-terms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/i18n/get-code-terms.sh -------------------------------------------------------------------------------- /i18n/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/i18n/hr.json -------------------------------------------------------------------------------- /i18n/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/i18n/hu.json -------------------------------------------------------------------------------- /i18n/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/i18n/id.json -------------------------------------------------------------------------------- /i18n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/i18n/it.json -------------------------------------------------------------------------------- /i18n/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/i18n/ja.json -------------------------------------------------------------------------------- /i18n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/i18n/ko.json -------------------------------------------------------------------------------- /i18n/mr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/i18n/mr.json -------------------------------------------------------------------------------- /i18n/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/i18n/nb.json -------------------------------------------------------------------------------- /i18n/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/i18n/nl.json -------------------------------------------------------------------------------- /i18n/pes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/i18n/pes.json -------------------------------------------------------------------------------- /i18n/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/i18n/pl.json -------------------------------------------------------------------------------- /i18n/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/i18n/ro.json -------------------------------------------------------------------------------- /i18n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/i18n/ru.json -------------------------------------------------------------------------------- /i18n/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/i18n/sv.json -------------------------------------------------------------------------------- /i18n/terms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/i18n/terms.po -------------------------------------------------------------------------------- /i18n/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/i18n/uk.json -------------------------------------------------------------------------------- /i18n/zh_hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/i18n/zh_hans.json -------------------------------------------------------------------------------- /i18n/zh_hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/i18n/zh_hant.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/postcss.config.js -------------------------------------------------------------------------------- /review/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/review/elm.json -------------------------------------------------------------------------------- /review/src/ReviewConfig.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/review/src/ReviewConfig.elm -------------------------------------------------------------------------------- /src/bin/linux/pandoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/bin/linux/pandoc -------------------------------------------------------------------------------- /src/bin/mac/pandoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/bin/mac/pandoc -------------------------------------------------------------------------------- /src/bin/win/pandoc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/bin/win/pandoc.exe -------------------------------------------------------------------------------- /src/electron/commit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/electron/commit.js -------------------------------------------------------------------------------- /src/electron/container-electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/electron/container-electron.js -------------------------------------------------------------------------------- /src/electron/container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/electron/container.js -------------------------------------------------------------------------------- /src/electron/doc-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/electron/doc-list.js -------------------------------------------------------------------------------- /src/electron/enter-license-modal.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/electron/enter-license-modal.ejs -------------------------------------------------------------------------------- /src/electron/faq-modal.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/electron/faq-modal.ejs -------------------------------------------------------------------------------- /src/electron/file-io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/electron/file-io.js -------------------------------------------------------------------------------- /src/electron/home.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/electron/home.ejs -------------------------------------------------------------------------------- /src/electron/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/electron/home.js -------------------------------------------------------------------------------- /src/electron/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/electron/main.js -------------------------------------------------------------------------------- /src/electron/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/electron/menu.js -------------------------------------------------------------------------------- /src/electron/oldmain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/electron/oldmain.js -------------------------------------------------------------------------------- /src/electron/oldmenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/electron/oldmenu.js -------------------------------------------------------------------------------- /src/electron/pandoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/electron/pandoc.js -------------------------------------------------------------------------------- /src/electron/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/electron/preload.js -------------------------------------------------------------------------------- /src/electron/renderer.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/electron/renderer.ejs -------------------------------------------------------------------------------- /src/electron/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/electron/renderer.js -------------------------------------------------------------------------------- /src/electron/shortcuts-modal.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/electron/shortcuts-modal.ejs -------------------------------------------------------------------------------- /src/electron/shortcuts-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/electron/shortcuts-modal.js -------------------------------------------------------------------------------- /src/electron/support-modal.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/electron/support-modal.ejs -------------------------------------------------------------------------------- /src/electron/support-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/electron/support-modal.js -------------------------------------------------------------------------------- /src/electron/trial-modal.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/electron/trial-modal.ejs -------------------------------------------------------------------------------- /src/electron/trial-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/electron/trial-modal.js -------------------------------------------------------------------------------- /src/electron/trial-preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/electron/trial-preload.js -------------------------------------------------------------------------------- /src/electron/trial-success-modal.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/electron/trial-success-modal.ejs -------------------------------------------------------------------------------- /src/electron/videos-modal.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/electron/videos-modal.ejs -------------------------------------------------------------------------------- /src/electron/videos-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/electron/videos-modal.js -------------------------------------------------------------------------------- /src/elm/Api.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Api.elm -------------------------------------------------------------------------------- /src/elm/Coders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Coders.elm -------------------------------------------------------------------------------- /src/elm/Diff3.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Diff3.elm -------------------------------------------------------------------------------- /src/elm/Doc/ContactForm.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Doc/ContactForm.elm -------------------------------------------------------------------------------- /src/elm/Doc/Data.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Doc/Data.elm -------------------------------------------------------------------------------- /src/elm/Doc/Data/Conflict.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Doc/Data/Conflict.elm -------------------------------------------------------------------------------- /src/elm/Doc/Fonts.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Doc/Fonts.elm -------------------------------------------------------------------------------- /src/elm/Doc/Fullscreen.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Doc/Fullscreen.elm -------------------------------------------------------------------------------- /src/elm/Doc/HelpScreen.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Doc/HelpScreen.elm -------------------------------------------------------------------------------- /src/elm/Doc/History.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Doc/History.elm -------------------------------------------------------------------------------- /src/elm/Doc/List.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Doc/List.elm -------------------------------------------------------------------------------- /src/elm/Doc/Metadata.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Doc/Metadata.elm -------------------------------------------------------------------------------- /src/elm/Doc/Switcher.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Doc/Switcher.elm -------------------------------------------------------------------------------- /src/elm/Doc/TreeSort.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Doc/TreeSort.elm -------------------------------------------------------------------------------- /src/elm/Doc/TreeStructure.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Doc/TreeStructure.elm -------------------------------------------------------------------------------- /src/elm/Doc/TreeUtils.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Doc/TreeUtils.elm -------------------------------------------------------------------------------- /src/elm/Doc/UI.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Doc/UI.elm -------------------------------------------------------------------------------- /src/elm/Doc/UIStyled.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Doc/UIStyled.elm -------------------------------------------------------------------------------- /src/elm/Doc/VideoViewer.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Doc/VideoViewer.elm -------------------------------------------------------------------------------- /src/elm/Electron/Electron.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Electron/Electron.elm -------------------------------------------------------------------------------- /src/elm/Electron/Home.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Electron/Home.elm -------------------------------------------------------------------------------- /src/elm/Electron/ShortcutsModal.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Electron/ShortcutsModal.elm -------------------------------------------------------------------------------- /src/elm/Electron/SupportModal.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Electron/SupportModal.elm -------------------------------------------------------------------------------- /src/elm/Electron/TrialModal.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Electron/TrialModal.elm -------------------------------------------------------------------------------- /src/elm/Electron/VideosModal.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Electron/VideosModal.elm -------------------------------------------------------------------------------- /src/elm/Electron/Worker.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Electron/Worker.elm -------------------------------------------------------------------------------- /src/elm/Feature.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Feature.elm -------------------------------------------------------------------------------- /src/elm/Features.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Features.elm -------------------------------------------------------------------------------- /src/elm/GlobalData.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/GlobalData.elm -------------------------------------------------------------------------------- /src/elm/Import/Bulk.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Import/Bulk.elm -------------------------------------------------------------------------------- /src/elm/Import/Bulk/UI.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Import/Bulk/UI.elm -------------------------------------------------------------------------------- /src/elm/Import/Incoming.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Import/Incoming.elm -------------------------------------------------------------------------------- /src/elm/Import/Opml.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Import/Opml.elm -------------------------------------------------------------------------------- /src/elm/Import/Single.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Import/Single.elm -------------------------------------------------------------------------------- /src/elm/Import/Template.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Import/Template.elm -------------------------------------------------------------------------------- /src/elm/Import/Text.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Import/Text.elm -------------------------------------------------------------------------------- /src/elm/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Main.elm -------------------------------------------------------------------------------- /src/elm/Outgoing.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Outgoing.elm -------------------------------------------------------------------------------- /src/elm/Page/App.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Page/App.elm -------------------------------------------------------------------------------- /src/elm/Page/Copy.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Page/Copy.elm -------------------------------------------------------------------------------- /src/elm/Page/Doc.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Page/Doc.elm -------------------------------------------------------------------------------- /src/elm/Page/Doc/ContextMenu.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Page/Doc/ContextMenu.elm -------------------------------------------------------------------------------- /src/elm/Page/Doc/Export.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Page/Doc/Export.elm -------------------------------------------------------------------------------- /src/elm/Page/Doc/Incoming.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Page/Doc/Incoming.elm -------------------------------------------------------------------------------- /src/elm/Page/Doc/Theme.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Page/Doc/Theme.elm -------------------------------------------------------------------------------- /src/elm/Page/DocMessage.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Page/DocMessage.elm -------------------------------------------------------------------------------- /src/elm/Page/DocNew.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Page/DocNew.elm -------------------------------------------------------------------------------- /src/elm/Page/ForgotPassword.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Page/ForgotPassword.elm -------------------------------------------------------------------------------- /src/elm/Page/Import.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Page/Import.elm -------------------------------------------------------------------------------- /src/elm/Page/Login.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Page/Login.elm -------------------------------------------------------------------------------- /src/elm/Page/Message.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Page/Message.elm -------------------------------------------------------------------------------- /src/elm/Page/NotFound.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Page/NotFound.elm -------------------------------------------------------------------------------- /src/elm/Page/Public.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Page/Public.elm -------------------------------------------------------------------------------- /src/elm/Page/ResetPassword.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Page/ResetPassword.elm -------------------------------------------------------------------------------- /src/elm/Page/Signup.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Page/Signup.elm -------------------------------------------------------------------------------- /src/elm/Public.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Public.elm -------------------------------------------------------------------------------- /src/elm/RandomId.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/RandomId.elm -------------------------------------------------------------------------------- /src/elm/Route.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Route.elm -------------------------------------------------------------------------------- /src/elm/Session.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Session.elm -------------------------------------------------------------------------------- /src/elm/SharedUI.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/SharedUI.elm -------------------------------------------------------------------------------- /src/elm/Styles.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Styles.elm -------------------------------------------------------------------------------- /src/elm/Toast.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Toast.elm -------------------------------------------------------------------------------- /src/elm/Translation.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Translation.elm -------------------------------------------------------------------------------- /src/elm/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Types.elm -------------------------------------------------------------------------------- /src/elm/UI/Collaborators.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/UI/Collaborators.elm -------------------------------------------------------------------------------- /src/elm/UI/Collaborators/Modal.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/UI/Collaborators/Modal.elm -------------------------------------------------------------------------------- /src/elm/UI/Header.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/UI/Header.elm -------------------------------------------------------------------------------- /src/elm/UI/Sidebar.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/UI/Sidebar.elm -------------------------------------------------------------------------------- /src/elm/UpdatedAt.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/UpdatedAt.elm -------------------------------------------------------------------------------- /src/elm/Upgrade.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Upgrade.elm -------------------------------------------------------------------------------- /src/elm/Utils.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/elm/Utils.elm -------------------------------------------------------------------------------- /src/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/index.ejs -------------------------------------------------------------------------------- /src/legacy-import/LegacyWorker.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/legacy-import/LegacyWorker.elm -------------------------------------------------------------------------------- /src/legacy-import/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/legacy-import/bun.lockb -------------------------------------------------------------------------------- /src/legacy-import/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/legacy-import/elm.json -------------------------------------------------------------------------------- /src/legacy-import/mongodb-to-sqlite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/legacy-import/mongodb-to-sqlite.ts -------------------------------------------------------------------------------- /src/legacy-import/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/legacy-import/package.json -------------------------------------------------------------------------------- /src/legacy-import/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/legacy-import/tsconfig.json -------------------------------------------------------------------------------- /src/migration/MigrationWorker.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/migration/MigrationWorker.elm -------------------------------------------------------------------------------- /src/migration/couchdb-to-sqlite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/migration/couchdb-to-sqlite.ts -------------------------------------------------------------------------------- /src/migration/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/migration/elm.json -------------------------------------------------------------------------------- /src/shared/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/shared/data.js -------------------------------------------------------------------------------- /src/shared/data.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/shared/data.worker.js -------------------------------------------------------------------------------- /src/shared/doc-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/shared/doc-helpers.js -------------------------------------------------------------------------------- /src/shared/doc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/shared/doc.js -------------------------------------------------------------------------------- /src/shared/encrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/shared/encrypt.js -------------------------------------------------------------------------------- /src/shared/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/shared/errors.js -------------------------------------------------------------------------------- /src/shared/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/shared/home.js -------------------------------------------------------------------------------- /src/shared/translation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/shared/translation.js -------------------------------------------------------------------------------- /src/static/adriano-small-circle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/adriano-small-circle.jpg -------------------------------------------------------------------------------- /src/static/concrete_wall-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/concrete_wall-2.png -------------------------------------------------------------------------------- /src/static/concrete_wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/concrete_wall.png -------------------------------------------------------------------------------- /src/static/database-download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/database-download.html -------------------------------------------------------------------------------- /src/static/desktop-fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/desktop-fonts.css -------------------------------------------------------------------------------- /src/static/desktop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/desktop.css -------------------------------------------------------------------------------- /src/static/docs-blank_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/docs-blank_1.png -------------------------------------------------------------------------------- /src/static/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/email.html -------------------------------------------------------------------------------- /src/static/faq-modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/faq-modal.css -------------------------------------------------------------------------------- /src/static/fonts/Bitter/Bitter-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Bitter/Bitter-Bold.ttf -------------------------------------------------------------------------------- /src/static/fonts/Bitter/Bitter-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Bitter/Bitter-Italic.ttf -------------------------------------------------------------------------------- /src/static/fonts/Bitter/Bitter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Bitter/Bitter-Regular.ttf -------------------------------------------------------------------------------- /src/static/fonts/Bitter/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Bitter/OFL.txt -------------------------------------------------------------------------------- /src/static/fonts/Bitter/bitter-v26-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Bitter/bitter-v26-latin-700.woff -------------------------------------------------------------------------------- /src/static/fonts/Bitter/bitter-v26-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Bitter/bitter-v26-latin-700.woff2 -------------------------------------------------------------------------------- /src/static/fonts/Bitter/bitter-v26-latin-700italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Bitter/bitter-v26-latin-700italic.woff -------------------------------------------------------------------------------- /src/static/fonts/Bitter/bitter-v26-latin-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Bitter/bitter-v26-latin-700italic.woff2 -------------------------------------------------------------------------------- /src/static/fonts/Bitter/bitter-v26-latin-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Bitter/bitter-v26-latin-italic.woff -------------------------------------------------------------------------------- /src/static/fonts/Bitter/bitter-v26-latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Bitter/bitter-v26-latin-italic.woff2 -------------------------------------------------------------------------------- /src/static/fonts/Bitter/bitter-v26-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Bitter/bitter-v26-latin-regular.woff -------------------------------------------------------------------------------- /src/static/fonts/Bitter/bitter-v26-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Bitter/bitter-v26-latin-regular.woff2 -------------------------------------------------------------------------------- /src/static/fonts/Catamaran/Catamaran-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Catamaran/Catamaran-Black.ttf -------------------------------------------------------------------------------- /src/static/fonts/Catamaran/Catamaran-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Catamaran/Catamaran-Bold.ttf -------------------------------------------------------------------------------- /src/static/fonts/Catamaran/Catamaran-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Catamaran/Catamaran-ExtraBold.ttf -------------------------------------------------------------------------------- /src/static/fonts/Catamaran/Catamaran-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Catamaran/Catamaran-ExtraLight.ttf -------------------------------------------------------------------------------- /src/static/fonts/Catamaran/Catamaran-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Catamaran/Catamaran-Light.ttf -------------------------------------------------------------------------------- /src/static/fonts/Catamaran/Catamaran-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Catamaran/Catamaran-Medium.ttf -------------------------------------------------------------------------------- /src/static/fonts/Catamaran/Catamaran-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Catamaran/Catamaran-Regular.ttf -------------------------------------------------------------------------------- /src/static/fonts/Catamaran/Catamaran-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Catamaran/Catamaran-SemiBold.ttf -------------------------------------------------------------------------------- /src/static/fonts/Catamaran/Catamaran-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Catamaran/Catamaran-Thin.ttf -------------------------------------------------------------------------------- /src/static/fonts/Catamaran/Catamaran-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Catamaran/Catamaran-VariableFont_wght.ttf -------------------------------------------------------------------------------- /src/static/fonts/Catamaran/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Catamaran/OFL.txt -------------------------------------------------------------------------------- /src/static/fonts/Catamaran/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Catamaran/README.txt -------------------------------------------------------------------------------- /src/static/fonts/Droid_Sans_Mono/DroidSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Droid_Sans_Mono/DroidSansMono.ttf -------------------------------------------------------------------------------- /src/static/fonts/Droid_Sans_Mono/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Droid_Sans_Mono/LICENSE.txt -------------------------------------------------------------------------------- /src/static/fonts/Droid_Serif/DroidSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Droid_Serif/DroidSerif-Bold.ttf -------------------------------------------------------------------------------- /src/static/fonts/Droid_Serif/DroidSerif-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Droid_Serif/DroidSerif-BoldItalic.ttf -------------------------------------------------------------------------------- /src/static/fonts/Droid_Serif/DroidSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Droid_Serif/DroidSerif-Italic.ttf -------------------------------------------------------------------------------- /src/static/fonts/Droid_Serif/DroidSerif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Droid_Serif/DroidSerif.ttf -------------------------------------------------------------------------------- /src/static/fonts/Droid_Serif/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Droid_Serif/LICENSE.txt -------------------------------------------------------------------------------- /src/static/fonts/Merriweather/Merriweather-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Merriweather/Merriweather-Bold.ttf -------------------------------------------------------------------------------- /src/static/fonts/Merriweather/Merriweather-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Merriweather/Merriweather-BoldItalic.ttf -------------------------------------------------------------------------------- /src/static/fonts/Merriweather/Merriweather-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Merriweather/Merriweather-Italic.ttf -------------------------------------------------------------------------------- /src/static/fonts/Merriweather/Merriweather-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Merriweather/Merriweather-Regular.ttf -------------------------------------------------------------------------------- /src/static/fonts/OpenDyslexic/OpenDyslexic-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/OpenDyslexic/OpenDyslexic-Bold.otf -------------------------------------------------------------------------------- /src/static/fonts/OpenDyslexic/OpenDyslexic-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/OpenDyslexic/OpenDyslexic-BoldItalic.otf -------------------------------------------------------------------------------- /src/static/fonts/OpenDyslexic/OpenDyslexic-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/OpenDyslexic/OpenDyslexic-Italic.otf -------------------------------------------------------------------------------- /src/static/fonts/OpenDyslexic/OpenDyslexic-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/OpenDyslexic/OpenDyslexic-Regular.otf -------------------------------------------------------------------------------- /src/static/fonts/Open_Sans/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Open_Sans/LICENSE.txt -------------------------------------------------------------------------------- /src/static/fonts/Open_Sans/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Open_Sans/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /src/static/fonts/Open_Sans/OpenSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Open_Sans/OpenSans-BoldItalic.ttf -------------------------------------------------------------------------------- /src/static/fonts/Open_Sans/OpenSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Open_Sans/OpenSans-ExtraBold.ttf -------------------------------------------------------------------------------- /src/static/fonts/Open_Sans/OpenSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Open_Sans/OpenSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /src/static/fonts/Open_Sans/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Open_Sans/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /src/static/fonts/Open_Sans/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Open_Sans/OpenSans-Light.ttf -------------------------------------------------------------------------------- /src/static/fonts/Open_Sans/OpenSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Open_Sans/OpenSans-LightItalic.ttf -------------------------------------------------------------------------------- /src/static/fonts/Open_Sans/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Open_Sans/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /src/static/fonts/Open_Sans/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Open_Sans/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /src/static/fonts/Open_Sans/OpenSans-SemiboldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Open_Sans/OpenSans-SemiboldItalic.ttf -------------------------------------------------------------------------------- /src/static/fonts/Open_Sans/open-sans-v29-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Open_Sans/open-sans-v29-latin-700.woff -------------------------------------------------------------------------------- /src/static/fonts/Open_Sans/open-sans-v29-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Open_Sans/open-sans-v29-latin-700.woff2 -------------------------------------------------------------------------------- /src/static/fonts/Open_Sans/open-sans-v29-latin-700italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Open_Sans/open-sans-v29-latin-700italic.woff -------------------------------------------------------------------------------- /src/static/fonts/Open_Sans/open-sans-v29-latin-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Open_Sans/open-sans-v29-latin-700italic.woff2 -------------------------------------------------------------------------------- /src/static/fonts/Open_Sans/open-sans-v29-latin-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Open_Sans/open-sans-v29-latin-italic.woff -------------------------------------------------------------------------------- /src/static/fonts/Open_Sans/open-sans-v29-latin-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Open_Sans/open-sans-v29-latin-italic.woff2 -------------------------------------------------------------------------------- /src/static/fonts/Open_Sans/open-sans-v29-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Open_Sans/open-sans-v29-latin-regular.woff -------------------------------------------------------------------------------- /src/static/fonts/Open_Sans/open-sans-v29-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Open_Sans/open-sans-v29-latin-regular.woff2 -------------------------------------------------------------------------------- /src/static/fonts/Roboto/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Roboto/LICENSE.txt -------------------------------------------------------------------------------- /src/static/fonts/Roboto/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Roboto/Roboto-Black.ttf -------------------------------------------------------------------------------- /src/static/fonts/Roboto/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Roboto/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /src/static/fonts/Roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /src/static/fonts/Roboto/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Roboto/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /src/static/fonts/Roboto/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Roboto/Roboto-Italic.ttf -------------------------------------------------------------------------------- /src/static/fonts/Roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /src/static/fonts/Roboto/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Roboto/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /src/static/fonts/Roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /src/static/fonts/Roboto/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Roboto/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /src/static/fonts/Roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /src/static/fonts/Roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /src/static/fonts/Roboto/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Roboto/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /src/static/fonts/Roboto_Mono/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Roboto_Mono/LICENSE.txt -------------------------------------------------------------------------------- /src/static/fonts/Roboto_Mono/RobotoMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Roboto_Mono/RobotoMono-Bold.ttf -------------------------------------------------------------------------------- /src/static/fonts/Roboto_Mono/RobotoMono-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Roboto_Mono/RobotoMono-BoldItalic.ttf -------------------------------------------------------------------------------- /src/static/fonts/Roboto_Mono/RobotoMono-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Roboto_Mono/RobotoMono-Italic.ttf -------------------------------------------------------------------------------- /src/static/fonts/Roboto_Mono/RobotoMono-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Roboto_Mono/RobotoMono-Light.ttf -------------------------------------------------------------------------------- /src/static/fonts/Roboto_Mono/RobotoMono-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Roboto_Mono/RobotoMono-LightItalic.ttf -------------------------------------------------------------------------------- /src/static/fonts/Roboto_Mono/RobotoMono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Roboto_Mono/RobotoMono-Medium.ttf -------------------------------------------------------------------------------- /src/static/fonts/Roboto_Mono/RobotoMono-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Roboto_Mono/RobotoMono-MediumItalic.ttf -------------------------------------------------------------------------------- /src/static/fonts/Roboto_Mono/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Roboto_Mono/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /src/static/fonts/Roboto_Mono/RobotoMono-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Roboto_Mono/RobotoMono-Thin.ttf -------------------------------------------------------------------------------- /src/static/fonts/Roboto_Mono/RobotoMono-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Roboto_Mono/RobotoMono-ThinItalic.ttf -------------------------------------------------------------------------------- /src/static/fonts/Roboto_Mono/roboto-mono-v21-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Roboto_Mono/roboto-mono-v21-latin-700.woff -------------------------------------------------------------------------------- /src/static/fonts/Roboto_Mono/roboto-mono-v21-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Roboto_Mono/roboto-mono-v21-latin-700.woff2 -------------------------------------------------------------------------------- /src/static/fonts/Roboto_Mono/roboto-mono-v21-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Roboto_Mono/roboto-mono-v21-latin-regular.woff -------------------------------------------------------------------------------- /src/static/fonts/Roboto_Mono/roboto-mono-v21-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/Roboto_Mono/roboto-mono-v21-latin-regular.woff2 -------------------------------------------------------------------------------- /src/static/fonts/eczar/Eczar-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/eczar/Eczar-Bold.ttf -------------------------------------------------------------------------------- /src/static/fonts/eczar/Eczar-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/eczar/Eczar-Regular.ttf -------------------------------------------------------------------------------- /src/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/static/fonts/librebaskerville/LibreBaskerville-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/librebaskerville/LibreBaskerville-Bold.ttf -------------------------------------------------------------------------------- /src/static/fonts/librebaskerville/LibreBaskerville-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/librebaskerville/LibreBaskerville-Italic.ttf -------------------------------------------------------------------------------- /src/static/fonts/librebaskerville/LibreBaskerville-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/librebaskerville/LibreBaskerville-Regular.ttf -------------------------------------------------------------------------------- /src/static/fonts/lora/DESCRIPTION.en_us.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/lora/DESCRIPTION.en_us.html -------------------------------------------------------------------------------- /src/static/fonts/lora/FONTLOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/lora/FONTLOG.txt -------------------------------------------------------------------------------- /src/static/fonts/lora/Lora-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/lora/Lora-Bold.ttf -------------------------------------------------------------------------------- /src/static/fonts/lora/Lora-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/lora/Lora-BoldItalic.ttf -------------------------------------------------------------------------------- /src/static/fonts/lora/Lora-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/lora/Lora-Italic.ttf -------------------------------------------------------------------------------- /src/static/fonts/lora/Lora-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/lora/Lora-Regular.ttf -------------------------------------------------------------------------------- /src/static/fonts/lora/METADATA.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/lora/METADATA.pb -------------------------------------------------------------------------------- /src/static/fonts/lora/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/lora/OFL.txt -------------------------------------------------------------------------------- /src/static/fonts/notoserif/DESCRIPTION.en_us.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/notoserif/DESCRIPTION.en_us.html -------------------------------------------------------------------------------- /src/static/fonts/notoserif/METADATA.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/notoserif/METADATA.pb -------------------------------------------------------------------------------- /src/static/fonts/notoserif/NotoSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/notoserif/NotoSerif-Bold.ttf -------------------------------------------------------------------------------- /src/static/fonts/notoserif/NotoSerif-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/notoserif/NotoSerif-BoldItalic.ttf -------------------------------------------------------------------------------- /src/static/fonts/notoserif/NotoSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/notoserif/NotoSerif-Italic.ttf -------------------------------------------------------------------------------- /src/static/fonts/notoserif/NotoSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/notoserif/NotoSerif-Regular.ttf -------------------------------------------------------------------------------- /src/static/fonts/notoserif/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/notoserif/OFL.txt -------------------------------------------------------------------------------- /src/static/fonts/robotoslab/COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/robotoslab/COPYRIGHT.txt -------------------------------------------------------------------------------- /src/static/fonts/robotoslab/DESCRIPTION.en_us.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/robotoslab/DESCRIPTION.en_us.html -------------------------------------------------------------------------------- /src/static/fonts/robotoslab/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/robotoslab/LICENSE.txt -------------------------------------------------------------------------------- /src/static/fonts/robotoslab/METADATA.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/robotoslab/METADATA.pb -------------------------------------------------------------------------------- /src/static/fonts/robotoslab/RobotoSlab-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/robotoslab/RobotoSlab-Bold.ttf -------------------------------------------------------------------------------- /src/static/fonts/robotoslab/RobotoSlab-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/robotoslab/RobotoSlab-Light.ttf -------------------------------------------------------------------------------- /src/static/fonts/robotoslab/RobotoSlab-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/robotoslab/RobotoSlab-Regular.ttf -------------------------------------------------------------------------------- /src/static/fonts/robotoslab/RobotoSlab-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/fonts/robotoslab/RobotoSlab-Thin.ttf -------------------------------------------------------------------------------- /src/static/gingko-leaf-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/gingko-leaf-logo.svg -------------------------------------------------------------------------------- /src/static/handmadepaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/handmadepaper.png -------------------------------------------------------------------------------- /src/static/help-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/help-menu.png -------------------------------------------------------------------------------- /src/static/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/highlight.pack.js -------------------------------------------------------------------------------- /src/static/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/home.css -------------------------------------------------------------------------------- /src/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/index.html -------------------------------------------------------------------------------- /src/static/leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/leaf.png -------------------------------------------------------------------------------- /src/static/leaf128.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/leaf128.icns -------------------------------------------------------------------------------- /src/static/leaf128.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/leaf128.ico -------------------------------------------------------------------------------- /src/static/leaf128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/leaf128.png -------------------------------------------------------------------------------- /src/static/leaf196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/leaf196.png -------------------------------------------------------------------------------- /src/static/leaf256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/leaf256.ico -------------------------------------------------------------------------------- /src/static/leaf256blurry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/leaf256blurry.png -------------------------------------------------------------------------------- /src/static/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/license.html -------------------------------------------------------------------------------- /src/static/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/list.html -------------------------------------------------------------------------------- /src/static/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/modal.css -------------------------------------------------------------------------------- /src/static/new-doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/new-doc.png -------------------------------------------------------------------------------- /src/static/shared.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/shared.css -------------------------------------------------------------------------------- /src/static/shortcuts-modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/shortcuts-modal.css -------------------------------------------------------------------------------- /src/static/stripe-climate-badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/stripe-climate-badge.svg -------------------------------------------------------------------------------- /src/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/style.css -------------------------------------------------------------------------------- /src/static/styles/github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/styles/github.css -------------------------------------------------------------------------------- /src/static/support-modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/support-modal.css -------------------------------------------------------------------------------- /src/static/support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/support.html -------------------------------------------------------------------------------- /src/static/templates/academic-paper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/templates/academic-paper.json -------------------------------------------------------------------------------- /src/static/templates/heros-journey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/templates/heros-journey.json -------------------------------------------------------------------------------- /src/static/templates/project-brainstorming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/templates/project-brainstorming.json -------------------------------------------------------------------------------- /src/static/templates/timeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/templates/timeline.json -------------------------------------------------------------------------------- /src/static/templates/welcome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/templates/welcome.json -------------------------------------------------------------------------------- /src/static/trial-modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/trial-modal.css -------------------------------------------------------------------------------- /src/static/videos-modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/static/videos-modal.css -------------------------------------------------------------------------------- /src/web/container-web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/src/web/container-web.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/DataTests.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/tests/DataTests.elm -------------------------------------------------------------------------------- /tests/ParserTests.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/tests/ParserTests.elm -------------------------------------------------------------------------------- /tests/e2e/auth.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/tests/e2e/auth.setup.ts -------------------------------------------------------------------------------- /tests/e2e/doc.fullscreen.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/tests/e2e/doc.fullscreen.spec.ts -------------------------------------------------------------------------------- /tests/e2e/fixtures/deleteTestData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/tests/e2e/fixtures/deleteTestData.sql -------------------------------------------------------------------------------- /tests/e2e/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/tests/e2e/shared.ts -------------------------------------------------------------------------------- /tests/electron/electron.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/tests/electron/electron.spec.ts -------------------------------------------------------------------------------- /tests/shared/doc.shared.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/tests/shared/doc.shared.tests.ts -------------------------------------------------------------------------------- /tests/web/web.doc.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/tests/web/web.doc.spec.ts -------------------------------------------------------------------------------- /tests/web/web.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/tests/web/web.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gingko/client/HEAD/webpack.config.js --------------------------------------------------------------------------------