├── .dockerignore ├── .editorconfig ├── .env.example ├── .eslintignore ├── .eslintrc-module_system.js ├── .eslintrc.js ├── .git-blame-ignore-revs ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-desktop.yml │ ├── bug-web.yml │ ├── config.yml │ └── enhancement.yml ├── PULL_REQUEST_TEMPLATE.md ├── cfp_headers ├── renovate.json └── workflows │ ├── backport.yml │ ├── issue_closed.yml │ ├── pending-reviews.yaml │ ├── publish_docker_image.yml │ ├── static_analysis.yaml │ ├── triage-assigned.yml │ ├── triage-incoming.yml │ ├── triage-labelled.yml │ ├── triage-move-review-requests.yml │ ├── triage-unlabelled.yml │ └── update-topics.yaml ├── .gitignore ├── .modernizr.json ├── .npmignore ├── .prettierignore ├── .prettierrc.js ├── .stylelintrc.js ├── AUTHORS.rst ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── __mocks__ └── cssMock.js ├── babel.config.js ├── code_style.md ├── components.json ├── config.sample.json ├── contribute.json ├── docs ├── app-load.md ├── betas.md ├── choosing-an-issue.md ├── config.md ├── custom-home.md ├── customisations.md ├── e2ee.md ├── feature-flags.md ├── img │ └── pr-checks.png ├── jitsi-dev.md ├── jitsi.md ├── kubernetes.md ├── labs.md ├── memory-profiles-and-leaks.md ├── modules.md ├── native-node-modules.md ├── pr-previews.md ├── review.md ├── theming.md ├── translating-dev.md └── translating.md ├── element.io ├── README ├── app │ └── config.json └── develop │ └── config.json ├── graphics ├── ic_launcher_sc.svg ├── icon_gen.sh ├── icon_wide.svg ├── icon_wide_transparent.svg └── store_icon.svg ├── jest.config.ts ├── module_system ├── BuildConfig.ts ├── installer.ts └── scripts │ └── install.ts ├── nginx └── conf.d │ └── default.conf ├── overlay-package.json ├── package.json ├── release.sh ├── release_config.yaml ├── res ├── apple-app-site-association ├── css │ └── structures │ │ └── ErrorView.pcss ├── decoder-ring │ ├── datatypes.js │ ├── decoder.js │ └── index.html ├── manifest.json ├── sw.js ├── themes │ └── element │ │ └── img │ │ ├── backgrounds │ │ └── ocean.jpg │ │ ├── download │ │ ├── apple.svg │ │ ├── fdroid.svg │ │ └── google.svg │ │ └── logos │ │ ├── element-logo.svg │ │ └── opengraph.png ├── vector-icons │ ├── 1024.png │ ├── 120.png │ ├── 1240x600.png │ ├── 150.png │ ├── 152.png │ ├── 180.png │ ├── 24.png │ ├── 300.png │ ├── 44.png │ ├── 50.png │ ├── 620x300.png │ ├── 76.png │ ├── 88.png │ ├── apple-touch-icon-114.png │ ├── apple-touch-icon-120.png │ ├── apple-touch-icon-144.png │ ├── apple-touch-icon-152.png │ ├── apple-touch-icon-180.png │ ├── apple-touch-icon-57.png │ ├── apple-touch-icon-60.png │ ├── apple-touch-icon-72.png │ ├── apple-touch-icon-76.png │ ├── browserconfig.xml │ ├── favicon.ico │ ├── mstile-150.png │ ├── mstile-310.png │ ├── mstile-310x150.png │ └── mstile-70.png ├── welcome.html └── welcome │ └── images │ ├── icon-create-account.svg │ ├── icon-help.svg │ ├── icon-room-directory.svg │ └── icon-sign-in.svg ├── scripts ├── analyse_unused_exports.js ├── build-jitsi.js ├── check-i18n.pl ├── ci_package.sh ├── cleanup.sh ├── copy-res.js ├── deploy.py ├── docker-link-repos.sh ├── docker-package.sh ├── fetch-develop.deps.sh ├── genflags.sh ├── get-version-from-git.sh ├── issues-burndown.pl ├── issues-no-state.pl ├── layered.sh ├── normalize-version.sh └── package.sh ├── sonar-project.properties ├── src ├── @types │ ├── global.d.ts │ ├── jitsi-meet.d.ts │ ├── raw-loader.d.ts │ └── svg.d.ts ├── async-components │ └── structures │ │ ├── CompatibilityView.tsx │ │ └── ErrorView.tsx ├── components │ └── views │ │ └── auth │ │ ├── VectorAuthFooter.tsx │ │ ├── VectorAuthHeaderLogo.tsx │ │ └── VectorAuthPage.tsx ├── customisations │ └── README.md ├── favicon.ts ├── i18n │ └── strings │ │ ├── ar.json │ │ ├── az.json │ │ ├── basefile.json │ │ ├── be.json │ │ ├── bg.json │ │ ├── bn.json │ │ ├── bn_BD.json │ │ ├── bn_IN.json │ │ ├── br.json │ │ ├── bs.json │ │ ├── ca.json │ │ ├── ckb.json │ │ ├── cs.json │ │ ├── cy.json │ │ ├── da.json │ │ ├── de_DE.json │ │ ├── el.json │ │ ├── en_EN.json │ │ ├── en_US.json │ │ ├── eo.json │ │ ├── es.json │ │ ├── et.json │ │ ├── eu.json │ │ ├── fa.json │ │ ├── fi.json │ │ ├── fr.json │ │ ├── fy.json │ │ ├── ga.json │ │ ├── gl.json │ │ ├── he.json │ │ ├── hi.json │ │ ├── hr.json │ │ ├── hu.json │ │ ├── hy.json │ │ ├── id.json │ │ ├── is.json │ │ ├── it.json │ │ ├── ja.json │ │ ├── jbo.json │ │ ├── ka.json │ │ ├── kab.json │ │ ├── ko.json │ │ ├── lb.json │ │ ├── lo.json │ │ ├── lt.json │ │ ├── lv.json │ │ ├── ml.json │ │ ├── mn.json │ │ ├── my.json │ │ ├── nb_NO.json │ │ ├── ne.json │ │ ├── nl.json │ │ ├── nn.json │ │ ├── oc.json │ │ ├── pl.json │ │ ├── pt.json │ │ ├── pt_BR.json │ │ ├── ro.json │ │ ├── ru.json │ │ ├── sco.json │ │ ├── si.json │ │ ├── sk.json │ │ ├── sl.json │ │ ├── sq.json │ │ ├── sr.json │ │ ├── sr_Latn.json │ │ ├── sv.json │ │ ├── sw.json │ │ ├── szl.json │ │ ├── ta.json │ │ ├── te.json │ │ ├── th.json │ │ ├── tlh.json │ │ ├── tr.json │ │ ├── tzm.json │ │ ├── uk.json │ │ ├── uz.json │ │ ├── vi.json │ │ ├── vls.json │ │ ├── zh_Hans.json │ │ └── zh_Hant.json └── vector │ ├── app.tsx │ ├── devcss.ts │ ├── getconfig.ts │ ├── index.html │ ├── index.ts │ ├── indexeddb-worker.ts │ ├── init.tsx │ ├── jitsi │ ├── index.html │ ├── index.pcss │ └── index.ts │ ├── localstorage-fix.ts │ ├── mobile_guide │ ├── index.html │ └── index.ts │ ├── modernizr.js │ ├── platform │ ├── ElectronPlatform.tsx │ ├── IPCManager.ts │ ├── PWAPlatform.ts │ ├── SeshatIndexManager.ts │ ├── VectorBasePlatform.ts │ └── WebPlatform.ts │ ├── rageshakesetup.ts │ ├── routing.ts │ ├── static │ ├── incompatible-browser.html │ └── unable-to-load.html │ └── url_utils.ts ├── test ├── app-tests │ ├── loading-test.tsx │ └── server-config-test.ts ├── jest-mocks.ts ├── test-utils.ts └── unit-tests │ ├── README.md │ ├── __snapshots__ │ └── favicon-test.ts.snap │ ├── async-components │ └── structures │ │ ├── ErrorView-test.tsx │ │ └── __snapshots__ │ │ └── ErrorView-test.tsx.snap │ ├── components │ └── views │ │ └── auth │ │ ├── VectorAuthFooter-test.tsx │ │ ├── VectorAuthHeaderLogo-test.tsx │ │ ├── VectorAuthPage-test.tsx │ │ └── __snapshots__ │ │ ├── VectorAuthFooter-test.tsx.snap │ │ ├── VectorAuthHeaderLogo-test.tsx.snap │ │ └── VectorAuthPage-test.tsx.snap │ ├── favicon-test.ts │ └── vector │ ├── getconfig-test.ts │ ├── platform │ ├── ElectronPlatform-test.ts │ ├── PWAPlatform-test.ts │ └── WebPlatform-test.ts │ ├── routing-test.ts │ └── url_utils-test.ts ├── tsconfig.json ├── tsconfig.module_system.json ├── webpack.config.js └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc-module_system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/.eslintrc-module_system.js -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | # prettier 2 | 7921a6cbf86b035d2b0c1daecb4c24beaf5a5abc 3 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-desktop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/.github/ISSUE_TEMPLATE/bug-desktop.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/.github/ISSUE_TEMPLATE/bug-web.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/.github/ISSUE_TEMPLATE/enhancement.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/cfp_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/.github/cfp_headers -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/backport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/.github/workflows/backport.yml -------------------------------------------------------------------------------- /.github/workflows/issue_closed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/.github/workflows/issue_closed.yml -------------------------------------------------------------------------------- /.github/workflows/pending-reviews.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/.github/workflows/pending-reviews.yaml -------------------------------------------------------------------------------- /.github/workflows/publish_docker_image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/.github/workflows/publish_docker_image.yml -------------------------------------------------------------------------------- /.github/workflows/static_analysis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/.github/workflows/static_analysis.yaml -------------------------------------------------------------------------------- /.github/workflows/triage-assigned.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/.github/workflows/triage-assigned.yml -------------------------------------------------------------------------------- /.github/workflows/triage-incoming.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/.github/workflows/triage-incoming.yml -------------------------------------------------------------------------------- /.github/workflows/triage-labelled.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/.github/workflows/triage-labelled.yml -------------------------------------------------------------------------------- /.github/workflows/triage-move-review-requests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/.github/workflows/triage-move-review-requests.yml -------------------------------------------------------------------------------- /.github/workflows/triage-unlabelled.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/.github/workflows/triage-unlabelled.yml -------------------------------------------------------------------------------- /.github/workflows/update-topics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/.github/workflows/update-topics.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/.gitignore -------------------------------------------------------------------------------- /.modernizr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/.modernizr.json -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require("eslint-plugin-matrix-org/.prettierrc.js"); 2 | -------------------------------------------------------------------------------- /.stylelintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/.stylelintrc.js -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/cssMock.js: -------------------------------------------------------------------------------- 1 | module.exports = "css-file-stub"; 2 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/babel.config.js -------------------------------------------------------------------------------- /code_style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/code_style.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/components.json -------------------------------------------------------------------------------- /config.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/config.sample.json -------------------------------------------------------------------------------- /contribute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/contribute.json -------------------------------------------------------------------------------- /docs/app-load.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/docs/app-load.md -------------------------------------------------------------------------------- /docs/betas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/docs/betas.md -------------------------------------------------------------------------------- /docs/choosing-an-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/docs/choosing-an-issue.md -------------------------------------------------------------------------------- /docs/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/docs/config.md -------------------------------------------------------------------------------- /docs/custom-home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/docs/custom-home.md -------------------------------------------------------------------------------- /docs/customisations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/docs/customisations.md -------------------------------------------------------------------------------- /docs/e2ee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/docs/e2ee.md -------------------------------------------------------------------------------- /docs/feature-flags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/docs/feature-flags.md -------------------------------------------------------------------------------- /docs/img/pr-checks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/docs/img/pr-checks.png -------------------------------------------------------------------------------- /docs/jitsi-dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/docs/jitsi-dev.md -------------------------------------------------------------------------------- /docs/jitsi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/docs/jitsi.md -------------------------------------------------------------------------------- /docs/kubernetes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/docs/kubernetes.md -------------------------------------------------------------------------------- /docs/labs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/docs/labs.md -------------------------------------------------------------------------------- /docs/memory-profiles-and-leaks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/docs/memory-profiles-and-leaks.md -------------------------------------------------------------------------------- /docs/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/docs/modules.md -------------------------------------------------------------------------------- /docs/native-node-modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/docs/native-node-modules.md -------------------------------------------------------------------------------- /docs/pr-previews.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/docs/pr-previews.md -------------------------------------------------------------------------------- /docs/review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/docs/review.md -------------------------------------------------------------------------------- /docs/theming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/docs/theming.md -------------------------------------------------------------------------------- /docs/translating-dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/docs/translating-dev.md -------------------------------------------------------------------------------- /docs/translating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/docs/translating.md -------------------------------------------------------------------------------- /element.io/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/element.io/README -------------------------------------------------------------------------------- /element.io/app/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/element.io/app/config.json -------------------------------------------------------------------------------- /element.io/develop/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/element.io/develop/config.json -------------------------------------------------------------------------------- /graphics/ic_launcher_sc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/graphics/ic_launcher_sc.svg -------------------------------------------------------------------------------- /graphics/icon_gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/graphics/icon_gen.sh -------------------------------------------------------------------------------- /graphics/icon_wide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/graphics/icon_wide.svg -------------------------------------------------------------------------------- /graphics/icon_wide_transparent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/graphics/icon_wide_transparent.svg -------------------------------------------------------------------------------- /graphics/store_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/graphics/store_icon.svg -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/jest.config.ts -------------------------------------------------------------------------------- /module_system/BuildConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/module_system/BuildConfig.ts -------------------------------------------------------------------------------- /module_system/installer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/module_system/installer.ts -------------------------------------------------------------------------------- /module_system/scripts/install.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/module_system/scripts/install.ts -------------------------------------------------------------------------------- /nginx/conf.d/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/nginx/conf.d/default.conf -------------------------------------------------------------------------------- /overlay-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/overlay-package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/package.json -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/release.sh -------------------------------------------------------------------------------- /release_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/release_config.yaml -------------------------------------------------------------------------------- /res/apple-app-site-association: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/apple-app-site-association -------------------------------------------------------------------------------- /res/css/structures/ErrorView.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/css/structures/ErrorView.pcss -------------------------------------------------------------------------------- /res/decoder-ring/datatypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/decoder-ring/datatypes.js -------------------------------------------------------------------------------- /res/decoder-ring/decoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/decoder-ring/decoder.js -------------------------------------------------------------------------------- /res/decoder-ring/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/decoder-ring/index.html -------------------------------------------------------------------------------- /res/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/manifest.json -------------------------------------------------------------------------------- /res/sw.js: -------------------------------------------------------------------------------- 1 | self.addEventListener("fetch", () => {}); 2 | -------------------------------------------------------------------------------- /res/themes/element/img/backgrounds/ocean.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/themes/element/img/backgrounds/ocean.jpg -------------------------------------------------------------------------------- /res/themes/element/img/download/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/themes/element/img/download/apple.svg -------------------------------------------------------------------------------- /res/themes/element/img/download/fdroid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/themes/element/img/download/fdroid.svg -------------------------------------------------------------------------------- /res/themes/element/img/download/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/themes/element/img/download/google.svg -------------------------------------------------------------------------------- /res/themes/element/img/logos/element-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/themes/element/img/logos/element-logo.svg -------------------------------------------------------------------------------- /res/themes/element/img/logos/opengraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/themes/element/img/logos/opengraph.png -------------------------------------------------------------------------------- /res/vector-icons/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/vector-icons/1024.png -------------------------------------------------------------------------------- /res/vector-icons/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/vector-icons/120.png -------------------------------------------------------------------------------- /res/vector-icons/1240x600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/vector-icons/1240x600.png -------------------------------------------------------------------------------- /res/vector-icons/150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/vector-icons/150.png -------------------------------------------------------------------------------- /res/vector-icons/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/vector-icons/152.png -------------------------------------------------------------------------------- /res/vector-icons/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/vector-icons/180.png -------------------------------------------------------------------------------- /res/vector-icons/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/vector-icons/24.png -------------------------------------------------------------------------------- /res/vector-icons/300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/vector-icons/300.png -------------------------------------------------------------------------------- /res/vector-icons/44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/vector-icons/44.png -------------------------------------------------------------------------------- /res/vector-icons/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/vector-icons/50.png -------------------------------------------------------------------------------- /res/vector-icons/620x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/vector-icons/620x300.png -------------------------------------------------------------------------------- /res/vector-icons/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/vector-icons/76.png -------------------------------------------------------------------------------- /res/vector-icons/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/vector-icons/88.png -------------------------------------------------------------------------------- /res/vector-icons/apple-touch-icon-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/vector-icons/apple-touch-icon-114.png -------------------------------------------------------------------------------- /res/vector-icons/apple-touch-icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/vector-icons/apple-touch-icon-120.png -------------------------------------------------------------------------------- /res/vector-icons/apple-touch-icon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/vector-icons/apple-touch-icon-144.png -------------------------------------------------------------------------------- /res/vector-icons/apple-touch-icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/vector-icons/apple-touch-icon-152.png -------------------------------------------------------------------------------- /res/vector-icons/apple-touch-icon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/vector-icons/apple-touch-icon-180.png -------------------------------------------------------------------------------- /res/vector-icons/apple-touch-icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/vector-icons/apple-touch-icon-57.png -------------------------------------------------------------------------------- /res/vector-icons/apple-touch-icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/vector-icons/apple-touch-icon-60.png -------------------------------------------------------------------------------- /res/vector-icons/apple-touch-icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/vector-icons/apple-touch-icon-72.png -------------------------------------------------------------------------------- /res/vector-icons/apple-touch-icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/vector-icons/apple-touch-icon-76.png -------------------------------------------------------------------------------- /res/vector-icons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/vector-icons/browserconfig.xml -------------------------------------------------------------------------------- /res/vector-icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/vector-icons/favicon.ico -------------------------------------------------------------------------------- /res/vector-icons/mstile-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/vector-icons/mstile-150.png -------------------------------------------------------------------------------- /res/vector-icons/mstile-310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/vector-icons/mstile-310.png -------------------------------------------------------------------------------- /res/vector-icons/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/vector-icons/mstile-310x150.png -------------------------------------------------------------------------------- /res/vector-icons/mstile-70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/vector-icons/mstile-70.png -------------------------------------------------------------------------------- /res/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/welcome.html -------------------------------------------------------------------------------- /res/welcome/images/icon-create-account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/welcome/images/icon-create-account.svg -------------------------------------------------------------------------------- /res/welcome/images/icon-help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/welcome/images/icon-help.svg -------------------------------------------------------------------------------- /res/welcome/images/icon-room-directory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/welcome/images/icon-room-directory.svg -------------------------------------------------------------------------------- /res/welcome/images/icon-sign-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/res/welcome/images/icon-sign-in.svg -------------------------------------------------------------------------------- /scripts/analyse_unused_exports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/scripts/analyse_unused_exports.js -------------------------------------------------------------------------------- /scripts/build-jitsi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/scripts/build-jitsi.js -------------------------------------------------------------------------------- /scripts/check-i18n.pl: -------------------------------------------------------------------------------- 1 | ../../matrix-react-sdk/scripts/check-i18n.pl -------------------------------------------------------------------------------- /scripts/ci_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/scripts/ci_package.sh -------------------------------------------------------------------------------- /scripts/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/scripts/cleanup.sh -------------------------------------------------------------------------------- /scripts/copy-res.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/scripts/copy-res.js -------------------------------------------------------------------------------- /scripts/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/scripts/deploy.py -------------------------------------------------------------------------------- /scripts/docker-link-repos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/scripts/docker-link-repos.sh -------------------------------------------------------------------------------- /scripts/docker-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/scripts/docker-package.sh -------------------------------------------------------------------------------- /scripts/fetch-develop.deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/scripts/fetch-develop.deps.sh -------------------------------------------------------------------------------- /scripts/genflags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/scripts/genflags.sh -------------------------------------------------------------------------------- /scripts/get-version-from-git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/scripts/get-version-from-git.sh -------------------------------------------------------------------------------- /scripts/issues-burndown.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/scripts/issues-burndown.pl -------------------------------------------------------------------------------- /scripts/issues-no-state.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/scripts/issues-no-state.pl -------------------------------------------------------------------------------- /scripts/layered.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/scripts/layered.sh -------------------------------------------------------------------------------- /scripts/normalize-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/scripts/normalize-version.sh -------------------------------------------------------------------------------- /scripts/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/scripts/package.sh -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/@types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/@types/global.d.ts -------------------------------------------------------------------------------- /src/@types/jitsi-meet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/@types/jitsi-meet.d.ts -------------------------------------------------------------------------------- /src/@types/raw-loader.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/@types/raw-loader.d.ts -------------------------------------------------------------------------------- /src/@types/svg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/@types/svg.d.ts -------------------------------------------------------------------------------- /src/async-components/structures/CompatibilityView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/async-components/structures/CompatibilityView.tsx -------------------------------------------------------------------------------- /src/async-components/structures/ErrorView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/async-components/structures/ErrorView.tsx -------------------------------------------------------------------------------- /src/components/views/auth/VectorAuthFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/components/views/auth/VectorAuthFooter.tsx -------------------------------------------------------------------------------- /src/components/views/auth/VectorAuthHeaderLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/components/views/auth/VectorAuthHeaderLogo.tsx -------------------------------------------------------------------------------- /src/components/views/auth/VectorAuthPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/components/views/auth/VectorAuthPage.tsx -------------------------------------------------------------------------------- /src/customisations/README.md: -------------------------------------------------------------------------------- 1 | ../../docs/customisations.md -------------------------------------------------------------------------------- /src/favicon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/favicon.ts -------------------------------------------------------------------------------- /src/i18n/strings/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/ar.json -------------------------------------------------------------------------------- /src/i18n/strings/az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/az.json -------------------------------------------------------------------------------- /src/i18n/strings/basefile.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/i18n/strings/be.json: -------------------------------------------------------------------------------- 1 | { 2 | "Dismiss": "Aдхіліць" 3 | } 4 | -------------------------------------------------------------------------------- /src/i18n/strings/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/bg.json -------------------------------------------------------------------------------- /src/i18n/strings/bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/bn.json -------------------------------------------------------------------------------- /src/i18n/strings/bn_BD.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/i18n/strings/bn_IN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/bn_IN.json -------------------------------------------------------------------------------- /src/i18n/strings/br.json: -------------------------------------------------------------------------------- 1 | { 2 | "Open": "Digeriñ" 3 | } 4 | -------------------------------------------------------------------------------- /src/i18n/strings/bs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/bs.json -------------------------------------------------------------------------------- /src/i18n/strings/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/ca.json -------------------------------------------------------------------------------- /src/i18n/strings/ckb.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/i18n/strings/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/cs.json -------------------------------------------------------------------------------- /src/i18n/strings/cy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/cy.json -------------------------------------------------------------------------------- /src/i18n/strings/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/da.json -------------------------------------------------------------------------------- /src/i18n/strings/de_DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/de_DE.json -------------------------------------------------------------------------------- /src/i18n/strings/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/el.json -------------------------------------------------------------------------------- /src/i18n/strings/en_EN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/en_EN.json -------------------------------------------------------------------------------- /src/i18n/strings/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/en_US.json -------------------------------------------------------------------------------- /src/i18n/strings/eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/eo.json -------------------------------------------------------------------------------- /src/i18n/strings/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/es.json -------------------------------------------------------------------------------- /src/i18n/strings/et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/et.json -------------------------------------------------------------------------------- /src/i18n/strings/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/eu.json -------------------------------------------------------------------------------- /src/i18n/strings/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/fa.json -------------------------------------------------------------------------------- /src/i18n/strings/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/fi.json -------------------------------------------------------------------------------- /src/i18n/strings/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/fr.json -------------------------------------------------------------------------------- /src/i18n/strings/fy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/fy.json -------------------------------------------------------------------------------- /src/i18n/strings/ga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/ga.json -------------------------------------------------------------------------------- /src/i18n/strings/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/gl.json -------------------------------------------------------------------------------- /src/i18n/strings/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/he.json -------------------------------------------------------------------------------- /src/i18n/strings/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/hi.json -------------------------------------------------------------------------------- /src/i18n/strings/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/hr.json -------------------------------------------------------------------------------- /src/i18n/strings/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/hu.json -------------------------------------------------------------------------------- /src/i18n/strings/hy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/hy.json -------------------------------------------------------------------------------- /src/i18n/strings/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/id.json -------------------------------------------------------------------------------- /src/i18n/strings/is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/is.json -------------------------------------------------------------------------------- /src/i18n/strings/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/it.json -------------------------------------------------------------------------------- /src/i18n/strings/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/ja.json -------------------------------------------------------------------------------- /src/i18n/strings/jbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/jbo.json -------------------------------------------------------------------------------- /src/i18n/strings/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/ka.json -------------------------------------------------------------------------------- /src/i18n/strings/kab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/kab.json -------------------------------------------------------------------------------- /src/i18n/strings/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/ko.json -------------------------------------------------------------------------------- /src/i18n/strings/lb.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/i18n/strings/lo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/lo.json -------------------------------------------------------------------------------- /src/i18n/strings/lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/lt.json -------------------------------------------------------------------------------- /src/i18n/strings/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/lv.json -------------------------------------------------------------------------------- /src/i18n/strings/ml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/ml.json -------------------------------------------------------------------------------- /src/i18n/strings/mn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/mn.json -------------------------------------------------------------------------------- /src/i18n/strings/my.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/my.json -------------------------------------------------------------------------------- /src/i18n/strings/nb_NO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/nb_NO.json -------------------------------------------------------------------------------- /src/i18n/strings/ne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/ne.json -------------------------------------------------------------------------------- /src/i18n/strings/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/nl.json -------------------------------------------------------------------------------- /src/i18n/strings/nn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/nn.json -------------------------------------------------------------------------------- /src/i18n/strings/oc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/oc.json -------------------------------------------------------------------------------- /src/i18n/strings/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/pl.json -------------------------------------------------------------------------------- /src/i18n/strings/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/pt.json -------------------------------------------------------------------------------- /src/i18n/strings/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/pt_BR.json -------------------------------------------------------------------------------- /src/i18n/strings/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/ro.json -------------------------------------------------------------------------------- /src/i18n/strings/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/ru.json -------------------------------------------------------------------------------- /src/i18n/strings/sco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/sco.json -------------------------------------------------------------------------------- /src/i18n/strings/si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/si.json -------------------------------------------------------------------------------- /src/i18n/strings/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/sk.json -------------------------------------------------------------------------------- /src/i18n/strings/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/sl.json -------------------------------------------------------------------------------- /src/i18n/strings/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/sq.json -------------------------------------------------------------------------------- /src/i18n/strings/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/sr.json -------------------------------------------------------------------------------- /src/i18n/strings/sr_Latn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/sr_Latn.json -------------------------------------------------------------------------------- /src/i18n/strings/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/sv.json -------------------------------------------------------------------------------- /src/i18n/strings/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/sw.json -------------------------------------------------------------------------------- /src/i18n/strings/szl.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/i18n/strings/ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/ta.json -------------------------------------------------------------------------------- /src/i18n/strings/te.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/te.json -------------------------------------------------------------------------------- /src/i18n/strings/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/th.json -------------------------------------------------------------------------------- /src/i18n/strings/tlh.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/i18n/strings/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/tr.json -------------------------------------------------------------------------------- /src/i18n/strings/tzm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/tzm.json -------------------------------------------------------------------------------- /src/i18n/strings/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/uk.json -------------------------------------------------------------------------------- /src/i18n/strings/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/uz.json -------------------------------------------------------------------------------- /src/i18n/strings/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/vi.json -------------------------------------------------------------------------------- /src/i18n/strings/vls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/vls.json -------------------------------------------------------------------------------- /src/i18n/strings/zh_Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/zh_Hans.json -------------------------------------------------------------------------------- /src/i18n/strings/zh_Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/i18n/strings/zh_Hant.json -------------------------------------------------------------------------------- /src/vector/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/vector/app.tsx -------------------------------------------------------------------------------- /src/vector/devcss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/vector/devcss.ts -------------------------------------------------------------------------------- /src/vector/getconfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/vector/getconfig.ts -------------------------------------------------------------------------------- /src/vector/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/vector/index.html -------------------------------------------------------------------------------- /src/vector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/vector/index.ts -------------------------------------------------------------------------------- /src/vector/indexeddb-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/vector/indexeddb-worker.ts -------------------------------------------------------------------------------- /src/vector/init.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/vector/init.tsx -------------------------------------------------------------------------------- /src/vector/jitsi/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/vector/jitsi/index.html -------------------------------------------------------------------------------- /src/vector/jitsi/index.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/vector/jitsi/index.pcss -------------------------------------------------------------------------------- /src/vector/jitsi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/vector/jitsi/index.ts -------------------------------------------------------------------------------- /src/vector/localstorage-fix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/vector/localstorage-fix.ts -------------------------------------------------------------------------------- /src/vector/mobile_guide/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/vector/mobile_guide/index.html -------------------------------------------------------------------------------- /src/vector/mobile_guide/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/vector/mobile_guide/index.ts -------------------------------------------------------------------------------- /src/vector/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/vector/modernizr.js -------------------------------------------------------------------------------- /src/vector/platform/ElectronPlatform.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/vector/platform/ElectronPlatform.tsx -------------------------------------------------------------------------------- /src/vector/platform/IPCManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/vector/platform/IPCManager.ts -------------------------------------------------------------------------------- /src/vector/platform/PWAPlatform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/vector/platform/PWAPlatform.ts -------------------------------------------------------------------------------- /src/vector/platform/SeshatIndexManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/vector/platform/SeshatIndexManager.ts -------------------------------------------------------------------------------- /src/vector/platform/VectorBasePlatform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/vector/platform/VectorBasePlatform.ts -------------------------------------------------------------------------------- /src/vector/platform/WebPlatform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/vector/platform/WebPlatform.ts -------------------------------------------------------------------------------- /src/vector/rageshakesetup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/vector/rageshakesetup.ts -------------------------------------------------------------------------------- /src/vector/routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/vector/routing.ts -------------------------------------------------------------------------------- /src/vector/static/incompatible-browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/vector/static/incompatible-browser.html -------------------------------------------------------------------------------- /src/vector/static/unable-to-load.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/vector/static/unable-to-load.html -------------------------------------------------------------------------------- /src/vector/url_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/src/vector/url_utils.ts -------------------------------------------------------------------------------- /test/app-tests/loading-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/test/app-tests/loading-test.tsx -------------------------------------------------------------------------------- /test/app-tests/server-config-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/test/app-tests/server-config-test.ts -------------------------------------------------------------------------------- /test/jest-mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/test/jest-mocks.ts -------------------------------------------------------------------------------- /test/test-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/test/test-utils.ts -------------------------------------------------------------------------------- /test/unit-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/test/unit-tests/README.md -------------------------------------------------------------------------------- /test/unit-tests/__snapshots__/favicon-test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/test/unit-tests/__snapshots__/favicon-test.ts.snap -------------------------------------------------------------------------------- /test/unit-tests/async-components/structures/ErrorView-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/test/unit-tests/async-components/structures/ErrorView-test.tsx -------------------------------------------------------------------------------- /test/unit-tests/async-components/structures/__snapshots__/ErrorView-test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/test/unit-tests/async-components/structures/__snapshots__/ErrorView-test.tsx.snap -------------------------------------------------------------------------------- /test/unit-tests/components/views/auth/VectorAuthFooter-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/test/unit-tests/components/views/auth/VectorAuthFooter-test.tsx -------------------------------------------------------------------------------- /test/unit-tests/components/views/auth/VectorAuthHeaderLogo-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/test/unit-tests/components/views/auth/VectorAuthHeaderLogo-test.tsx -------------------------------------------------------------------------------- /test/unit-tests/components/views/auth/VectorAuthPage-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/test/unit-tests/components/views/auth/VectorAuthPage-test.tsx -------------------------------------------------------------------------------- /test/unit-tests/components/views/auth/__snapshots__/VectorAuthFooter-test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/test/unit-tests/components/views/auth/__snapshots__/VectorAuthFooter-test.tsx.snap -------------------------------------------------------------------------------- /test/unit-tests/components/views/auth/__snapshots__/VectorAuthHeaderLogo-test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/test/unit-tests/components/views/auth/__snapshots__/VectorAuthHeaderLogo-test.tsx.snap -------------------------------------------------------------------------------- /test/unit-tests/components/views/auth/__snapshots__/VectorAuthPage-test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/test/unit-tests/components/views/auth/__snapshots__/VectorAuthPage-test.tsx.snap -------------------------------------------------------------------------------- /test/unit-tests/favicon-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/test/unit-tests/favicon-test.ts -------------------------------------------------------------------------------- /test/unit-tests/vector/getconfig-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/test/unit-tests/vector/getconfig-test.ts -------------------------------------------------------------------------------- /test/unit-tests/vector/platform/ElectronPlatform-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/test/unit-tests/vector/platform/ElectronPlatform-test.ts -------------------------------------------------------------------------------- /test/unit-tests/vector/platform/PWAPlatform-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/test/unit-tests/vector/platform/PWAPlatform-test.ts -------------------------------------------------------------------------------- /test/unit-tests/vector/platform/WebPlatform-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/test/unit-tests/vector/platform/WebPlatform-test.ts -------------------------------------------------------------------------------- /test/unit-tests/vector/routing-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/test/unit-tests/vector/routing-test.ts -------------------------------------------------------------------------------- /test/unit-tests/vector/url_utils-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/test/unit-tests/vector/url_utils-test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.module_system.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/tsconfig.module_system.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SchildiChat/element-web/HEAD/yarn.lock --------------------------------------------------------------------------------