├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github └── workflows │ ├── pre-release.yml │ └── release.yaml ├── .gitignore ├── .npmrc ├── .prettierrc ├── LICENSE ├── README.md ├── __tests__ ├── TestMinimark.ts ├── TestSettingsStorage.ts ├── TestSyncStore.ts ├── TestTimeProvider.ts ├── TestTokenStore.ts └── mocks │ └── MockTimeProvider.ts ├── beta-version.py ├── debug-tools ├── unused.mjs └── watch.py ├── esbuild.config.mjs ├── jest.config.js ├── manifest-beta.json ├── manifest.json ├── package.json ├── src ├── AwarenessViewPlugin.ts ├── BackgroundSync.ts ├── CAS.ts ├── Canvas.ts ├── CanvasPlugin.ts ├── CanvasView.ts ├── ConnectionPool.ts ├── DatabaseTools.ts ├── DiskBuffer.ts ├── Document.ts ├── EndpointManager.ts ├── FolderSort.ts ├── Frontmatter.ts ├── HasProvider.ts ├── IFile.ts ├── LiveTokenStore.ts ├── LiveViews.ts ├── LocalStorage.ts ├── LoginManager.ts ├── NetworkStatus.ts ├── PolicyManager.ts ├── Relay.ts ├── RelayManager.ts ├── S3RN.ts ├── SettingsStorage.ts ├── ShareLinkPlugin.ts ├── SharedFolder.ts ├── SyncFile.ts ├── SyncFolder.ts ├── SyncSettings.ts ├── SyncStore.ts ├── SyncTypes.ts ├── TimeProvider.ts ├── TokenStore.ts ├── UpdateManager.ts ├── User.ts ├── areObjectsEqual.ts ├── components │ ├── AccountSettingItem.svelte │ ├── AddToVaultModalContent.svelte │ ├── Avatar.svelte │ ├── Breadcrumbs.svelte │ ├── BugReportModalContent.svelte │ ├── Callout.svelte │ ├── Checkbox.svelte │ ├── CodeBlock.svelte │ ├── DebugModalContent.svelte │ ├── Discord.svelte │ ├── DiskUsage.svelte │ ├── EndpointConfigModalContent.svelte │ ├── ExternalLink.svelte │ ├── FeatureFlagModalContent.svelte │ ├── Folder.svelte │ ├── FolderSelectInput.svelte │ ├── FolderSuggest.svelte │ ├── FolderSuggestion.svelte │ ├── FolderSyncStatus.svelte │ ├── GenericSuggest.svelte │ ├── GetInTouch.svelte │ ├── HelpPopover.svelte │ ├── IndexedDBAnalysisModalContent.svelte │ ├── Lock.svelte │ ├── LoggedIn.svelte │ ├── ManageRelay.svelte │ ├── ManageRemoteFolder.svelte │ ├── ManageSharedFolder.svelte │ ├── ModalSettingsNav.svelte │ ├── Pill.svelte │ ├── PluginSettings.svelte │ ├── RelayConfigBlock.svelte │ ├── RelayText.svelte │ ├── Relays.svelte │ ├── ReleaseManagerContent.svelte │ ├── RemoteFolder.svelte │ ├── RemoteFolderSuggest.svelte │ ├── Satellite.svelte │ ├── SecretText.svelte │ ├── SelectedFolder.svelte │ ├── SelfHostModalContent.svelte │ ├── SettingItem.svelte │ ├── SettingItemHeading.svelte │ ├── SettingsControl.svelte │ ├── ShareFolderModalContent.svelte │ ├── SharedFolderSpan.svelte │ ├── SlimSettingItem.svelte │ ├── SyncQueueModalContent.svelte │ ├── TFolderSuggest.svelte │ ├── TextPill.svelte │ ├── Toast.svelte │ ├── ToastManager.svelte │ ├── UploadPill.svelte │ ├── UserAwareness.svelte │ ├── UserSelectModalContent.svelte │ ├── UserSuggestion.svelte │ ├── ViewActions.svelte │ ├── WelcomeFooter.svelte │ └── WelcomeHeader.svelte ├── customFetch.ts ├── debug.ts ├── debugObsididan.ts ├── differ │ ├── actionLine.ts │ ├── actionLineButton.ts │ ├── actionLineDivider.ts │ ├── difference.ts │ ├── differencesView.ts │ ├── fileDifferences.ts │ └── stringUtils.ts ├── flagManager.ts ├── flags.ts ├── hashing.ts ├── main.ts ├── markdownView │ └── InvalidLinkExtension.ts ├── mimetypes.ts ├── minimark.ts ├── observable │ ├── Observable.ts │ ├── ObservableMap.ts │ ├── ObservableSet.ts │ └── Postie.ts ├── pathProxy.ts ├── pocketbase │ └── LocalAuthStore.ts ├── promiseUtils.ts ├── sync.ts ├── ui │ ├── AddToVaultModal.ts │ ├── Banner.ts │ ├── BugReportModal.ts │ ├── DebugModal.ts │ ├── EndpointConfigModal.ts │ ├── FeatureFlagModal.ts │ ├── FolderCreateModal.ts │ ├── FolderNav.ts │ ├── FolderSuggestModal.ts │ ├── GenericSuggestModal.ts │ ├── IndexedDBAnalysisModal.ts │ ├── ReleaseManager.ts │ ├── RemoteFolderSuggestModal.ts │ ├── SelfHostModal.ts │ ├── SettingsTab.ts │ ├── ShareFolderModal.ts │ ├── SyncQueueModal.ts │ └── UserSelectModal.ts ├── utils │ └── toastStore.ts ├── y-codemirror.next │ ├── LICENSE │ ├── LiveEditPlugin.ts │ ├── LiveNodePlugin.ts │ ├── PositionTransformer.ts │ ├── RemoteSelections.ts │ └── YRange.ts ├── y-diffMatchPatch.ts └── y-sweet.ts ├── styles.css ├── tsconfig.json ├── version-bump.mjs ├── version.py └── versions.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | main.js 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/pre-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/.github/workflows/pre-release.yml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix="" -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/TestMinimark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/__tests__/TestMinimark.ts -------------------------------------------------------------------------------- /__tests__/TestSettingsStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/__tests__/TestSettingsStorage.ts -------------------------------------------------------------------------------- /__tests__/TestSyncStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/__tests__/TestSyncStore.ts -------------------------------------------------------------------------------- /__tests__/TestTimeProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/__tests__/TestTimeProvider.ts -------------------------------------------------------------------------------- /__tests__/TestTokenStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/__tests__/TestTokenStore.ts -------------------------------------------------------------------------------- /__tests__/mocks/MockTimeProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/__tests__/mocks/MockTimeProvider.ts -------------------------------------------------------------------------------- /beta-version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/beta-version.py -------------------------------------------------------------------------------- /debug-tools/unused.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/debug-tools/unused.mjs -------------------------------------------------------------------------------- /debug-tools/watch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/debug-tools/watch.py -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/esbuild.config.mjs -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/jest.config.js -------------------------------------------------------------------------------- /manifest-beta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/manifest-beta.json -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/package.json -------------------------------------------------------------------------------- /src/AwarenessViewPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/AwarenessViewPlugin.ts -------------------------------------------------------------------------------- /src/BackgroundSync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/BackgroundSync.ts -------------------------------------------------------------------------------- /src/CAS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/CAS.ts -------------------------------------------------------------------------------- /src/Canvas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/Canvas.ts -------------------------------------------------------------------------------- /src/CanvasPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/CanvasPlugin.ts -------------------------------------------------------------------------------- /src/CanvasView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/CanvasView.ts -------------------------------------------------------------------------------- /src/ConnectionPool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/ConnectionPool.ts -------------------------------------------------------------------------------- /src/DatabaseTools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/DatabaseTools.ts -------------------------------------------------------------------------------- /src/DiskBuffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/DiskBuffer.ts -------------------------------------------------------------------------------- /src/Document.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/Document.ts -------------------------------------------------------------------------------- /src/EndpointManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/EndpointManager.ts -------------------------------------------------------------------------------- /src/FolderSort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/FolderSort.ts -------------------------------------------------------------------------------- /src/Frontmatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/Frontmatter.ts -------------------------------------------------------------------------------- /src/HasProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/HasProvider.ts -------------------------------------------------------------------------------- /src/IFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/IFile.ts -------------------------------------------------------------------------------- /src/LiveTokenStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/LiveTokenStore.ts -------------------------------------------------------------------------------- /src/LiveViews.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/LiveViews.ts -------------------------------------------------------------------------------- /src/LocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/LocalStorage.ts -------------------------------------------------------------------------------- /src/LoginManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/LoginManager.ts -------------------------------------------------------------------------------- /src/NetworkStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/NetworkStatus.ts -------------------------------------------------------------------------------- /src/PolicyManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/PolicyManager.ts -------------------------------------------------------------------------------- /src/Relay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/Relay.ts -------------------------------------------------------------------------------- /src/RelayManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/RelayManager.ts -------------------------------------------------------------------------------- /src/S3RN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/S3RN.ts -------------------------------------------------------------------------------- /src/SettingsStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/SettingsStorage.ts -------------------------------------------------------------------------------- /src/ShareLinkPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/ShareLinkPlugin.ts -------------------------------------------------------------------------------- /src/SharedFolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/SharedFolder.ts -------------------------------------------------------------------------------- /src/SyncFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/SyncFile.ts -------------------------------------------------------------------------------- /src/SyncFolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/SyncFolder.ts -------------------------------------------------------------------------------- /src/SyncSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/SyncSettings.ts -------------------------------------------------------------------------------- /src/SyncStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/SyncStore.ts -------------------------------------------------------------------------------- /src/SyncTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/SyncTypes.ts -------------------------------------------------------------------------------- /src/TimeProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/TimeProvider.ts -------------------------------------------------------------------------------- /src/TokenStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/TokenStore.ts -------------------------------------------------------------------------------- /src/UpdateManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/UpdateManager.ts -------------------------------------------------------------------------------- /src/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/User.ts -------------------------------------------------------------------------------- /src/areObjectsEqual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/areObjectsEqual.ts -------------------------------------------------------------------------------- /src/components/AccountSettingItem.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/AccountSettingItem.svelte -------------------------------------------------------------------------------- /src/components/AddToVaultModalContent.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/AddToVaultModalContent.svelte -------------------------------------------------------------------------------- /src/components/Avatar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/Avatar.svelte -------------------------------------------------------------------------------- /src/components/Breadcrumbs.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/Breadcrumbs.svelte -------------------------------------------------------------------------------- /src/components/BugReportModalContent.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/BugReportModalContent.svelte -------------------------------------------------------------------------------- /src/components/Callout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/Callout.svelte -------------------------------------------------------------------------------- /src/components/Checkbox.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/Checkbox.svelte -------------------------------------------------------------------------------- /src/components/CodeBlock.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/CodeBlock.svelte -------------------------------------------------------------------------------- /src/components/DebugModalContent.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/DebugModalContent.svelte -------------------------------------------------------------------------------- /src/components/Discord.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/Discord.svelte -------------------------------------------------------------------------------- /src/components/DiskUsage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/DiskUsage.svelte -------------------------------------------------------------------------------- /src/components/EndpointConfigModalContent.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/EndpointConfigModalContent.svelte -------------------------------------------------------------------------------- /src/components/ExternalLink.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/ExternalLink.svelte -------------------------------------------------------------------------------- /src/components/FeatureFlagModalContent.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/FeatureFlagModalContent.svelte -------------------------------------------------------------------------------- /src/components/Folder.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/Folder.svelte -------------------------------------------------------------------------------- /src/components/FolderSelectInput.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/FolderSelectInput.svelte -------------------------------------------------------------------------------- /src/components/FolderSuggest.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/FolderSuggest.svelte -------------------------------------------------------------------------------- /src/components/FolderSuggestion.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/FolderSuggestion.svelte -------------------------------------------------------------------------------- /src/components/FolderSyncStatus.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/FolderSyncStatus.svelte -------------------------------------------------------------------------------- /src/components/GenericSuggest.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/GenericSuggest.svelte -------------------------------------------------------------------------------- /src/components/GetInTouch.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/GetInTouch.svelte -------------------------------------------------------------------------------- /src/components/HelpPopover.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/HelpPopover.svelte -------------------------------------------------------------------------------- /src/components/IndexedDBAnalysisModalContent.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/IndexedDBAnalysisModalContent.svelte -------------------------------------------------------------------------------- /src/components/Lock.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/Lock.svelte -------------------------------------------------------------------------------- /src/components/LoggedIn.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/LoggedIn.svelte -------------------------------------------------------------------------------- /src/components/ManageRelay.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/ManageRelay.svelte -------------------------------------------------------------------------------- /src/components/ManageRemoteFolder.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/ManageRemoteFolder.svelte -------------------------------------------------------------------------------- /src/components/ManageSharedFolder.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/ManageSharedFolder.svelte -------------------------------------------------------------------------------- /src/components/ModalSettingsNav.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/ModalSettingsNav.svelte -------------------------------------------------------------------------------- /src/components/Pill.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/Pill.svelte -------------------------------------------------------------------------------- /src/components/PluginSettings.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/PluginSettings.svelte -------------------------------------------------------------------------------- /src/components/RelayConfigBlock.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/RelayConfigBlock.svelte -------------------------------------------------------------------------------- /src/components/RelayText.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/RelayText.svelte -------------------------------------------------------------------------------- /src/components/Relays.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/Relays.svelte -------------------------------------------------------------------------------- /src/components/ReleaseManagerContent.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/ReleaseManagerContent.svelte -------------------------------------------------------------------------------- /src/components/RemoteFolder.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/RemoteFolder.svelte -------------------------------------------------------------------------------- /src/components/RemoteFolderSuggest.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/RemoteFolderSuggest.svelte -------------------------------------------------------------------------------- /src/components/Satellite.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/Satellite.svelte -------------------------------------------------------------------------------- /src/components/SecretText.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/SecretText.svelte -------------------------------------------------------------------------------- /src/components/SelectedFolder.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/SelectedFolder.svelte -------------------------------------------------------------------------------- /src/components/SelfHostModalContent.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/SelfHostModalContent.svelte -------------------------------------------------------------------------------- /src/components/SettingItem.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/SettingItem.svelte -------------------------------------------------------------------------------- /src/components/SettingItemHeading.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/SettingItemHeading.svelte -------------------------------------------------------------------------------- /src/components/SettingsControl.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/SettingsControl.svelte -------------------------------------------------------------------------------- /src/components/ShareFolderModalContent.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/ShareFolderModalContent.svelte -------------------------------------------------------------------------------- /src/components/SharedFolderSpan.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/SharedFolderSpan.svelte -------------------------------------------------------------------------------- /src/components/SlimSettingItem.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/SlimSettingItem.svelte -------------------------------------------------------------------------------- /src/components/SyncQueueModalContent.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/SyncQueueModalContent.svelte -------------------------------------------------------------------------------- /src/components/TFolderSuggest.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/TFolderSuggest.svelte -------------------------------------------------------------------------------- /src/components/TextPill.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/TextPill.svelte -------------------------------------------------------------------------------- /src/components/Toast.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/Toast.svelte -------------------------------------------------------------------------------- /src/components/ToastManager.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/ToastManager.svelte -------------------------------------------------------------------------------- /src/components/UploadPill.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/UploadPill.svelte -------------------------------------------------------------------------------- /src/components/UserAwareness.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/UserAwareness.svelte -------------------------------------------------------------------------------- /src/components/UserSelectModalContent.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/UserSelectModalContent.svelte -------------------------------------------------------------------------------- /src/components/UserSuggestion.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/UserSuggestion.svelte -------------------------------------------------------------------------------- /src/components/ViewActions.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/ViewActions.svelte -------------------------------------------------------------------------------- /src/components/WelcomeFooter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/WelcomeFooter.svelte -------------------------------------------------------------------------------- /src/components/WelcomeHeader.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/components/WelcomeHeader.svelte -------------------------------------------------------------------------------- /src/customFetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/customFetch.ts -------------------------------------------------------------------------------- /src/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/debug.ts -------------------------------------------------------------------------------- /src/debugObsididan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/debugObsididan.ts -------------------------------------------------------------------------------- /src/differ/actionLine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/differ/actionLine.ts -------------------------------------------------------------------------------- /src/differ/actionLineButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/differ/actionLineButton.ts -------------------------------------------------------------------------------- /src/differ/actionLineDivider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/differ/actionLineDivider.ts -------------------------------------------------------------------------------- /src/differ/difference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/differ/difference.ts -------------------------------------------------------------------------------- /src/differ/differencesView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/differ/differencesView.ts -------------------------------------------------------------------------------- /src/differ/fileDifferences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/differ/fileDifferences.ts -------------------------------------------------------------------------------- /src/differ/stringUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/differ/stringUtils.ts -------------------------------------------------------------------------------- /src/flagManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/flagManager.ts -------------------------------------------------------------------------------- /src/flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/flags.ts -------------------------------------------------------------------------------- /src/hashing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/hashing.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/markdownView/InvalidLinkExtension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/markdownView/InvalidLinkExtension.ts -------------------------------------------------------------------------------- /src/mimetypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/mimetypes.ts -------------------------------------------------------------------------------- /src/minimark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/minimark.ts -------------------------------------------------------------------------------- /src/observable/Observable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/observable/Observable.ts -------------------------------------------------------------------------------- /src/observable/ObservableMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/observable/ObservableMap.ts -------------------------------------------------------------------------------- /src/observable/ObservableSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/observable/ObservableSet.ts -------------------------------------------------------------------------------- /src/observable/Postie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/observable/Postie.ts -------------------------------------------------------------------------------- /src/pathProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/pathProxy.ts -------------------------------------------------------------------------------- /src/pocketbase/LocalAuthStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/pocketbase/LocalAuthStore.ts -------------------------------------------------------------------------------- /src/promiseUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/promiseUtils.ts -------------------------------------------------------------------------------- /src/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/sync.ts -------------------------------------------------------------------------------- /src/ui/AddToVaultModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/ui/AddToVaultModal.ts -------------------------------------------------------------------------------- /src/ui/Banner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/ui/Banner.ts -------------------------------------------------------------------------------- /src/ui/BugReportModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/ui/BugReportModal.ts -------------------------------------------------------------------------------- /src/ui/DebugModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/ui/DebugModal.ts -------------------------------------------------------------------------------- /src/ui/EndpointConfigModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/ui/EndpointConfigModal.ts -------------------------------------------------------------------------------- /src/ui/FeatureFlagModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/ui/FeatureFlagModal.ts -------------------------------------------------------------------------------- /src/ui/FolderCreateModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/ui/FolderCreateModal.ts -------------------------------------------------------------------------------- /src/ui/FolderNav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/ui/FolderNav.ts -------------------------------------------------------------------------------- /src/ui/FolderSuggestModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/ui/FolderSuggestModal.ts -------------------------------------------------------------------------------- /src/ui/GenericSuggestModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/ui/GenericSuggestModal.ts -------------------------------------------------------------------------------- /src/ui/IndexedDBAnalysisModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/ui/IndexedDBAnalysisModal.ts -------------------------------------------------------------------------------- /src/ui/ReleaseManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/ui/ReleaseManager.ts -------------------------------------------------------------------------------- /src/ui/RemoteFolderSuggestModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/ui/RemoteFolderSuggestModal.ts -------------------------------------------------------------------------------- /src/ui/SelfHostModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/ui/SelfHostModal.ts -------------------------------------------------------------------------------- /src/ui/SettingsTab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/ui/SettingsTab.ts -------------------------------------------------------------------------------- /src/ui/ShareFolderModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/ui/ShareFolderModal.ts -------------------------------------------------------------------------------- /src/ui/SyncQueueModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/ui/SyncQueueModal.ts -------------------------------------------------------------------------------- /src/ui/UserSelectModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/ui/UserSelectModal.ts -------------------------------------------------------------------------------- /src/utils/toastStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/utils/toastStore.ts -------------------------------------------------------------------------------- /src/y-codemirror.next/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/y-codemirror.next/LICENSE -------------------------------------------------------------------------------- /src/y-codemirror.next/LiveEditPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/y-codemirror.next/LiveEditPlugin.ts -------------------------------------------------------------------------------- /src/y-codemirror.next/LiveNodePlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/y-codemirror.next/LiveNodePlugin.ts -------------------------------------------------------------------------------- /src/y-codemirror.next/PositionTransformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/y-codemirror.next/PositionTransformer.ts -------------------------------------------------------------------------------- /src/y-codemirror.next/RemoteSelections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/y-codemirror.next/RemoteSelections.ts -------------------------------------------------------------------------------- /src/y-codemirror.next/YRange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/y-codemirror.next/YRange.ts -------------------------------------------------------------------------------- /src/y-diffMatchPatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/y-diffMatchPatch.ts -------------------------------------------------------------------------------- /src/y-sweet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/src/y-sweet.ts -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/styles.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/tsconfig.json -------------------------------------------------------------------------------- /version-bump.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/version-bump.mjs -------------------------------------------------------------------------------- /version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/version.py -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No-Instructions/Relay/HEAD/versions.json --------------------------------------------------------------------------------