├── .env ├── .eslintignore ├── .eslintrc.cjs ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── lint-check-build.yml ├── .gitignore ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── SECURITY.md ├── package.json ├── postcss.config.js ├── src ├── app.css ├── app.d.ts ├── app.html ├── components │ ├── AddConversation.svelte │ ├── AddConversationButton.svelte │ ├── Avatar.svelte │ ├── Banner.svelte │ ├── BoxWrapper.svelte │ ├── Button.svelte │ ├── ChannelStatus.svelte │ ├── Chat.svelte │ ├── ChatInput.svelte │ ├── ChatLoading.svelte │ ├── ChatMessages.svelte │ ├── ChatWindow.svelte │ ├── Connect.svelte │ ├── ConversationRow.svelte │ ├── Conversations.svelte │ ├── ConvoNav.svelte │ ├── ConvoView.svelte │ ├── CopyButton.svelte │ ├── Error.svelte │ ├── FaqItem.svelte │ ├── Footer.svelte │ ├── Header.svelte │ ├── Hero.svelte │ ├── HomeNav.svelte │ ├── HomeView.svelte │ ├── Icon.svelte │ ├── InfoTooltip.svelte │ ├── Link.svelte │ ├── LoadingBars.svelte │ ├── LoadingPing.svelte │ ├── Login.svelte │ ├── Message.svelte │ ├── MessageHistory.svelte │ ├── MessageInfo.svelte │ ├── Node.svelte │ ├── Offline.svelte │ ├── Profile.svelte │ ├── PublicLayout.svelte │ ├── RowItem.svelte │ ├── Settings.svelte │ ├── ShareHandler.svelte │ ├── SharedChannel.svelte │ ├── SyncPing.svelte │ ├── Version.svelte │ ├── Warning.svelte │ ├── Wrapper.svelte │ └── index.ts ├── lib │ ├── buffer.ts │ ├── chat.ts │ ├── crypto.ts │ ├── db.ts │ ├── store.ts │ ├── sync.ts │ ├── tlv.ts │ ├── types.ts │ └── utils.ts ├── routes │ ├── +error.svelte │ ├── +layout.svelte │ ├── +layout.ts │ ├── +page.svelte │ ├── donate │ │ └── +page.svelte │ ├── faq │ │ └── +page.svelte │ ├── license │ │ └── +page.svelte │ └── privacy │ │ └── +page.svelte └── service-worker.ts ├── static ├── CNAME ├── audio │ ├── message.mp3 │ └── notification.mp3 ├── cipherchat.webmanifest ├── favicon.png ├── fonts │ ├── Press_Start_2P │ │ ├── OFL.txt │ │ └── PressStart2P-Regular.ttf │ └── Roboto_Mono │ │ ├── LICENSE.txt │ │ └── RobotoMono-VariableFont_wght.ttf ├── icons │ ├── feather-sprite.svg │ ├── icon.png │ └── pwa │ │ ├── android │ │ ├── android-launchericon-144-144.png │ │ ├── android-launchericon-192-192.png │ │ ├── android-launchericon-48-48.png │ │ ├── android-launchericon-512-512.png │ │ ├── android-launchericon-72-72.png │ │ └── android-launchericon-96-96.png │ │ ├── ios │ │ ├── 100.png │ │ ├── 1024.png │ │ ├── 114.png │ │ ├── 120.png │ │ ├── 128.png │ │ ├── 144.png │ │ ├── 152.png │ │ ├── 16.png │ │ ├── 167.png │ │ ├── 180.png │ │ ├── 192.png │ │ ├── 20.png │ │ ├── 256.png │ │ ├── 29.png │ │ ├── 32.png │ │ ├── 40.png │ │ ├── 50.png │ │ ├── 512.png │ │ ├── 57.png │ │ ├── 58.png │ │ ├── 60.png │ │ ├── 64.png │ │ ├── 72.png │ │ ├── 76.png │ │ ├── 80.png │ │ └── 87.png │ │ ├── maskable │ │ ├── maskable_icon_x128.png │ │ ├── maskable_icon_x192.png │ │ ├── maskable_icon_x384.png │ │ ├── maskable_icon_x48.png │ │ ├── maskable_icon_x512.png │ │ ├── maskable_icon_x72.png │ │ └── maskable_icon_x96.png │ │ └── windows11 │ │ ├── LargeTile.scale-100.png │ │ ├── LargeTile.scale-125.png │ │ ├── LargeTile.scale-150.png │ │ ├── LargeTile.scale-200.png │ │ ├── LargeTile.scale-400.png │ │ ├── SmallTile.scale-100.png │ │ ├── SmallTile.scale-125.png │ │ ├── SmallTile.scale-150.png │ │ ├── SmallTile.scale-200.png │ │ ├── SmallTile.scale-400.png │ │ ├── SplashScreen.scale-100.png │ │ ├── SplashScreen.scale-125.png │ │ ├── SplashScreen.scale-150.png │ │ ├── SplashScreen.scale-200.png │ │ ├── SplashScreen.scale-400.png │ │ ├── Square150x150Logo.scale-100.png │ │ ├── Square150x150Logo.scale-125.png │ │ ├── Square150x150Logo.scale-150.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square150x150Logo.scale-400.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-20.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-30.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-36.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-40.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-44.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-60.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-64.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-72.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-80.png │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-96.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-20.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-24.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-30.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-36.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-40.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-44.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-60.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-64.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-72.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-80.png │ │ ├── Square44x44Logo.altform-unplated_targetsize-96.png │ │ ├── Square44x44Logo.scale-100.png │ │ ├── Square44x44Logo.scale-125.png │ │ ├── Square44x44Logo.scale-150.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.scale-400.png │ │ ├── Square44x44Logo.targetsize-16.png │ │ ├── Square44x44Logo.targetsize-20.png │ │ ├── Square44x44Logo.targetsize-24.png │ │ ├── Square44x44Logo.targetsize-256.png │ │ ├── Square44x44Logo.targetsize-30.png │ │ ├── Square44x44Logo.targetsize-32.png │ │ ├── Square44x44Logo.targetsize-36.png │ │ ├── Square44x44Logo.targetsize-40.png │ │ ├── Square44x44Logo.targetsize-44.png │ │ ├── Square44x44Logo.targetsize-48.png │ │ ├── Square44x44Logo.targetsize-60.png │ │ ├── Square44x44Logo.targetsize-64.png │ │ ├── Square44x44Logo.targetsize-72.png │ │ ├── Square44x44Logo.targetsize-80.png │ │ ├── Square44x44Logo.targetsize-96.png │ │ ├── StoreLogo.scale-100.png │ │ ├── StoreLogo.scale-125.png │ │ ├── StoreLogo.scale-150.png │ │ ├── StoreLogo.scale-200.png │ │ ├── StoreLogo.scale-400.png │ │ ├── Wide310x150Logo.scale-100.png │ │ ├── Wide310x150Logo.scale-125.png │ │ ├── Wide310x150Logo.scale-150.png │ │ ├── Wide310x150Logo.scale-200.png │ │ └── Wide310x150Logo.scale-400.png ├── images │ ├── agplv3.png │ ├── bricks │ │ ├── 0.svg │ │ ├── 1.svg │ │ ├── 2.svg │ │ └── 3.svg │ ├── donate-qr.svg │ ├── logo.png │ ├── og.png │ └── screenshots │ │ ├── 0.webp │ │ └── 1.webp ├── robots.txt ├── videos │ └── lnc-tutorial.webm └── wasm-client │ └── lnc-v0.3.1-alpha.wasm ├── svelte.config.js ├── tailwind.config.js ├── tsconfig.json ├── vite.config.ts └── yarn.lock /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/.env -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: [getalby.com/p/secondl1ght] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/lint-check-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/.github/workflows/lint-check-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | resolution-mode=highest 3 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/* 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/SECURITY.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/app.css -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/app.d.ts -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/app.html -------------------------------------------------------------------------------- /src/components/AddConversation.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/AddConversation.svelte -------------------------------------------------------------------------------- /src/components/AddConversationButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/AddConversationButton.svelte -------------------------------------------------------------------------------- /src/components/Avatar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/Avatar.svelte -------------------------------------------------------------------------------- /src/components/Banner.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/Banner.svelte -------------------------------------------------------------------------------- /src/components/BoxWrapper.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/BoxWrapper.svelte -------------------------------------------------------------------------------- /src/components/Button.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/Button.svelte -------------------------------------------------------------------------------- /src/components/ChannelStatus.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/ChannelStatus.svelte -------------------------------------------------------------------------------- /src/components/Chat.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/Chat.svelte -------------------------------------------------------------------------------- /src/components/ChatInput.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/ChatInput.svelte -------------------------------------------------------------------------------- /src/components/ChatLoading.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/ChatLoading.svelte -------------------------------------------------------------------------------- /src/components/ChatMessages.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/ChatMessages.svelte -------------------------------------------------------------------------------- /src/components/ChatWindow.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/ChatWindow.svelte -------------------------------------------------------------------------------- /src/components/Connect.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/Connect.svelte -------------------------------------------------------------------------------- /src/components/ConversationRow.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/ConversationRow.svelte -------------------------------------------------------------------------------- /src/components/Conversations.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/Conversations.svelte -------------------------------------------------------------------------------- /src/components/ConvoNav.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/ConvoNav.svelte -------------------------------------------------------------------------------- /src/components/ConvoView.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/ConvoView.svelte -------------------------------------------------------------------------------- /src/components/CopyButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/CopyButton.svelte -------------------------------------------------------------------------------- /src/components/Error.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/Error.svelte -------------------------------------------------------------------------------- /src/components/FaqItem.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/FaqItem.svelte -------------------------------------------------------------------------------- /src/components/Footer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/Footer.svelte -------------------------------------------------------------------------------- /src/components/Header.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/Header.svelte -------------------------------------------------------------------------------- /src/components/Hero.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/Hero.svelte -------------------------------------------------------------------------------- /src/components/HomeNav.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/HomeNav.svelte -------------------------------------------------------------------------------- /src/components/HomeView.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/HomeView.svelte -------------------------------------------------------------------------------- /src/components/Icon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/Icon.svelte -------------------------------------------------------------------------------- /src/components/InfoTooltip.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/InfoTooltip.svelte -------------------------------------------------------------------------------- /src/components/Link.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/Link.svelte -------------------------------------------------------------------------------- /src/components/LoadingBars.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/LoadingBars.svelte -------------------------------------------------------------------------------- /src/components/LoadingPing.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/LoadingPing.svelte -------------------------------------------------------------------------------- /src/components/Login.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/Login.svelte -------------------------------------------------------------------------------- /src/components/Message.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/Message.svelte -------------------------------------------------------------------------------- /src/components/MessageHistory.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/MessageHistory.svelte -------------------------------------------------------------------------------- /src/components/MessageInfo.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/MessageInfo.svelte -------------------------------------------------------------------------------- /src/components/Node.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/Node.svelte -------------------------------------------------------------------------------- /src/components/Offline.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/Offline.svelte -------------------------------------------------------------------------------- /src/components/Profile.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/Profile.svelte -------------------------------------------------------------------------------- /src/components/PublicLayout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/PublicLayout.svelte -------------------------------------------------------------------------------- /src/components/RowItem.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/RowItem.svelte -------------------------------------------------------------------------------- /src/components/Settings.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/Settings.svelte -------------------------------------------------------------------------------- /src/components/ShareHandler.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/ShareHandler.svelte -------------------------------------------------------------------------------- /src/components/SharedChannel.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/SharedChannel.svelte -------------------------------------------------------------------------------- /src/components/SyncPing.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/SyncPing.svelte -------------------------------------------------------------------------------- /src/components/Version.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/Version.svelte -------------------------------------------------------------------------------- /src/components/Warning.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/Warning.svelte -------------------------------------------------------------------------------- /src/components/Wrapper.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/Wrapper.svelte -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/lib/buffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/lib/buffer.ts -------------------------------------------------------------------------------- /src/lib/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/lib/chat.ts -------------------------------------------------------------------------------- /src/lib/crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/lib/crypto.ts -------------------------------------------------------------------------------- /src/lib/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/lib/db.ts -------------------------------------------------------------------------------- /src/lib/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/lib/store.ts -------------------------------------------------------------------------------- /src/lib/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/lib/sync.ts -------------------------------------------------------------------------------- /src/lib/tlv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/lib/tlv.ts -------------------------------------------------------------------------------- /src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/lib/types.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/routes/+error.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/routes/+error.svelte -------------------------------------------------------------------------------- /src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/routes/+layout.svelte -------------------------------------------------------------------------------- /src/routes/+layout.ts: -------------------------------------------------------------------------------- 1 | export const ssr = false; 2 | -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/routes/+page.svelte -------------------------------------------------------------------------------- /src/routes/donate/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/routes/donate/+page.svelte -------------------------------------------------------------------------------- /src/routes/faq/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/routes/faq/+page.svelte -------------------------------------------------------------------------------- /src/routes/license/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/routes/license/+page.svelte -------------------------------------------------------------------------------- /src/routes/privacy/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/routes/privacy/+page.svelte -------------------------------------------------------------------------------- /src/service-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/src/service-worker.ts -------------------------------------------------------------------------------- /static/CNAME: -------------------------------------------------------------------------------- 1 | cipherchat.app -------------------------------------------------------------------------------- /static/audio/message.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/audio/message.mp3 -------------------------------------------------------------------------------- /static/audio/notification.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/audio/notification.mp3 -------------------------------------------------------------------------------- /static/cipherchat.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/cipherchat.webmanifest -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/fonts/Press_Start_2P/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/fonts/Press_Start_2P/OFL.txt -------------------------------------------------------------------------------- /static/fonts/Press_Start_2P/PressStart2P-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/fonts/Press_Start_2P/PressStart2P-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/Roboto_Mono/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/fonts/Roboto_Mono/LICENSE.txt -------------------------------------------------------------------------------- /static/fonts/Roboto_Mono/RobotoMono-VariableFont_wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/fonts/Roboto_Mono/RobotoMono-VariableFont_wght.ttf -------------------------------------------------------------------------------- /static/icons/feather-sprite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/feather-sprite.svg -------------------------------------------------------------------------------- /static/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/icon.png -------------------------------------------------------------------------------- /static/icons/pwa/android/android-launchericon-144-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/android/android-launchericon-144-144.png -------------------------------------------------------------------------------- /static/icons/pwa/android/android-launchericon-192-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/android/android-launchericon-192-192.png -------------------------------------------------------------------------------- /static/icons/pwa/android/android-launchericon-48-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/android/android-launchericon-48-48.png -------------------------------------------------------------------------------- /static/icons/pwa/android/android-launchericon-512-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/android/android-launchericon-512-512.png -------------------------------------------------------------------------------- /static/icons/pwa/android/android-launchericon-72-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/android/android-launchericon-72-72.png -------------------------------------------------------------------------------- /static/icons/pwa/android/android-launchericon-96-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/android/android-launchericon-96-96.png -------------------------------------------------------------------------------- /static/icons/pwa/ios/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/ios/100.png -------------------------------------------------------------------------------- /static/icons/pwa/ios/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/ios/1024.png -------------------------------------------------------------------------------- /static/icons/pwa/ios/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/ios/114.png -------------------------------------------------------------------------------- /static/icons/pwa/ios/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/ios/120.png -------------------------------------------------------------------------------- /static/icons/pwa/ios/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/ios/128.png -------------------------------------------------------------------------------- /static/icons/pwa/ios/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/ios/144.png -------------------------------------------------------------------------------- /static/icons/pwa/ios/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/ios/152.png -------------------------------------------------------------------------------- /static/icons/pwa/ios/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/ios/16.png -------------------------------------------------------------------------------- /static/icons/pwa/ios/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/ios/167.png -------------------------------------------------------------------------------- /static/icons/pwa/ios/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/ios/180.png -------------------------------------------------------------------------------- /static/icons/pwa/ios/192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/ios/192.png -------------------------------------------------------------------------------- /static/icons/pwa/ios/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/ios/20.png -------------------------------------------------------------------------------- /static/icons/pwa/ios/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/ios/256.png -------------------------------------------------------------------------------- /static/icons/pwa/ios/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/ios/29.png -------------------------------------------------------------------------------- /static/icons/pwa/ios/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/ios/32.png -------------------------------------------------------------------------------- /static/icons/pwa/ios/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/ios/40.png -------------------------------------------------------------------------------- /static/icons/pwa/ios/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/ios/50.png -------------------------------------------------------------------------------- /static/icons/pwa/ios/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/ios/512.png -------------------------------------------------------------------------------- /static/icons/pwa/ios/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/ios/57.png -------------------------------------------------------------------------------- /static/icons/pwa/ios/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/ios/58.png -------------------------------------------------------------------------------- /static/icons/pwa/ios/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/ios/60.png -------------------------------------------------------------------------------- /static/icons/pwa/ios/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/ios/64.png -------------------------------------------------------------------------------- /static/icons/pwa/ios/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/ios/72.png -------------------------------------------------------------------------------- /static/icons/pwa/ios/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/ios/76.png -------------------------------------------------------------------------------- /static/icons/pwa/ios/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/ios/80.png -------------------------------------------------------------------------------- /static/icons/pwa/ios/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/ios/87.png -------------------------------------------------------------------------------- /static/icons/pwa/maskable/maskable_icon_x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/maskable/maskable_icon_x128.png -------------------------------------------------------------------------------- /static/icons/pwa/maskable/maskable_icon_x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/maskable/maskable_icon_x192.png -------------------------------------------------------------------------------- /static/icons/pwa/maskable/maskable_icon_x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/maskable/maskable_icon_x384.png -------------------------------------------------------------------------------- /static/icons/pwa/maskable/maskable_icon_x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/maskable/maskable_icon_x48.png -------------------------------------------------------------------------------- /static/icons/pwa/maskable/maskable_icon_x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/maskable/maskable_icon_x512.png -------------------------------------------------------------------------------- /static/icons/pwa/maskable/maskable_icon_x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/maskable/maskable_icon_x72.png -------------------------------------------------------------------------------- /static/icons/pwa/maskable/maskable_icon_x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/maskable/maskable_icon_x96.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/LargeTile.scale-100.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/LargeTile.scale-125.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/LargeTile.scale-150.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/LargeTile.scale-200.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/LargeTile.scale-400.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/SmallTile.scale-100.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/SmallTile.scale-125.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/SmallTile.scale-150.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/SmallTile.scale-200.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/SmallTile.scale-400.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-20.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-30.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-36.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-40.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-44.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-60.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-64.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-72.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-80.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.altform-lightunplated_targetsize-96.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-20.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-24.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-30.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-36.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-40.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-44.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-60.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-64.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-72.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-80.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.altform-unplated_targetsize-96.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.targetsize-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.targetsize-20.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.targetsize-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.targetsize-30.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.targetsize-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.targetsize-36.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.targetsize-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.targetsize-40.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.targetsize-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.targetsize-44.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.targetsize-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.targetsize-60.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.targetsize-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.targetsize-64.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.targetsize-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.targetsize-72.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.targetsize-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.targetsize-80.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Square44x44Logo.targetsize-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Square44x44Logo.targetsize-96.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /static/icons/pwa/windows11/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/icons/pwa/windows11/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /static/images/agplv3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/images/agplv3.png -------------------------------------------------------------------------------- /static/images/bricks/0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/images/bricks/0.svg -------------------------------------------------------------------------------- /static/images/bricks/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/images/bricks/1.svg -------------------------------------------------------------------------------- /static/images/bricks/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/images/bricks/2.svg -------------------------------------------------------------------------------- /static/images/bricks/3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/images/bricks/3.svg -------------------------------------------------------------------------------- /static/images/donate-qr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/images/donate-qr.svg -------------------------------------------------------------------------------- /static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/images/logo.png -------------------------------------------------------------------------------- /static/images/og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/images/og.png -------------------------------------------------------------------------------- /static/images/screenshots/0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/images/screenshots/0.webp -------------------------------------------------------------------------------- /static/images/screenshots/1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/images/screenshots/1.webp -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: -------------------------------------------------------------------------------- /static/videos/lnc-tutorial.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/videos/lnc-tutorial.webm -------------------------------------------------------------------------------- /static/wasm-client/lnc-v0.3.1-alpha.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/static/wasm-client/lnc-v0.3.1-alpha.wasm -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secondl1ght/cipherchat/HEAD/yarn.lock --------------------------------------------------------------------------------