├── .editorconfig ├── .eslintignore ├── .eslintrc.cjs ├── .github ├── FUNDING.yml └── workflows │ └── release.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── components.json ├── electron-builder.yml ├── electron.vite.config.ts ├── package.json ├── postcss.config.js ├── resources ├── favicon.ico ├── icon.png ├── nostrTemplate.png ├── nostrTemplate@2x.png ├── nostrTemplateDark.png ├── nostrTemplateDark@2x.png ├── nostrTemplatePurple.png └── nostrTemplatePurple@2x.png ├── screenshots ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png └── screenshot-4.png ├── src ├── common │ ├── config.ts │ ├── constants.ts │ ├── rule.ts │ └── types.ts ├── main │ ├── constants.ts │ ├── guards │ │ └── restriction.guard.ts │ ├── index.ts │ ├── plugins │ │ └── request-logger.plugin.ts │ ├── repositories │ │ ├── common.ts │ │ ├── config.repository.ts │ │ ├── index.ts │ │ └── rule.repository.ts │ ├── services │ │ ├── auto-launch.service.ts │ │ ├── guard.service.ts │ │ ├── log-viewer.service.ts │ │ ├── proxy-connector.service.ts │ │ ├── relay.service.ts │ │ └── theme.service.ts │ ├── types.ts │ └── utils.ts ├── preload │ ├── index.d.ts │ └── index.ts └── renderer │ ├── index.html │ └── src │ ├── App.tsx │ ├── assets │ └── main.css │ ├── components │ ├── RuleConditions.tsx │ ├── theme-provider.tsx │ └── ui │ │ ├── accordion.tsx │ │ ├── alert-dialog.tsx │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── checkbox.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── progress.tsx │ │ ├── radio-group.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── tooltip.tsx │ │ └── use-toast.ts │ ├── env.d.ts │ ├── lib │ └── utils.ts │ ├── main.tsx │ └── pages │ ├── data │ ├── ClearAllEvents.tsx │ ├── DeleteEvents │ │ ├── DeleteConfirmDialog.tsx │ │ └── index.tsx │ ├── DeleteEventsByFilter.tsx │ ├── ExportEvents.tsx │ ├── ImportEvents.tsx │ └── index.tsx │ ├── home │ └── index.tsx │ ├── logs │ ├── components │ │ └── LogItem.tsx │ └── index.tsx │ ├── proxy │ ├── PublicAddress.tsx │ └── index.tsx │ ├── rules │ ├── components │ │ ├── columns.tsx │ │ └── data-table.tsx │ ├── edit.tsx │ └── index.tsx │ ├── settings │ ├── components │ │ ├── AppearanceOption.tsx │ │ ├── AutoLaunchOption.tsx │ │ ├── DefaultFilterLimitOption.tsx │ │ ├── MaxPayloadOption.tsx │ │ └── TrayIconColorOption.tsx │ └── index.tsx │ └── wotAndPow │ ├── components │ └── PowOption.tsx │ └── index.tsx ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json └── tsconfig.web.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | out 4 | .gitignore 5 | -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [CodyTseng] 2 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | out 4 | .DS_Store 5 | *.log* 6 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["dbaeumer.vscode-eslint"] 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/components.json -------------------------------------------------------------------------------- /electron-builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/electron-builder.yml -------------------------------------------------------------------------------- /electron.vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/electron.vite.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/postcss.config.js -------------------------------------------------------------------------------- /resources/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/resources/favicon.ico -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/nostrTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/resources/nostrTemplate.png -------------------------------------------------------------------------------- /resources/nostrTemplate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/resources/nostrTemplate@2x.png -------------------------------------------------------------------------------- /resources/nostrTemplateDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/resources/nostrTemplateDark.png -------------------------------------------------------------------------------- /resources/nostrTemplateDark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/resources/nostrTemplateDark@2x.png -------------------------------------------------------------------------------- /resources/nostrTemplatePurple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/resources/nostrTemplatePurple.png -------------------------------------------------------------------------------- /resources/nostrTemplatePurple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/resources/nostrTemplatePurple@2x.png -------------------------------------------------------------------------------- /screenshots/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/screenshots/screenshot-1.png -------------------------------------------------------------------------------- /screenshots/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/screenshots/screenshot-2.png -------------------------------------------------------------------------------- /screenshots/screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/screenshots/screenshot-3.png -------------------------------------------------------------------------------- /screenshots/screenshot-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/screenshots/screenshot-4.png -------------------------------------------------------------------------------- /src/common/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/common/config.ts -------------------------------------------------------------------------------- /src/common/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/common/constants.ts -------------------------------------------------------------------------------- /src/common/rule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/common/rule.ts -------------------------------------------------------------------------------- /src/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/common/types.ts -------------------------------------------------------------------------------- /src/main/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/main/constants.ts -------------------------------------------------------------------------------- /src/main/guards/restriction.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/main/guards/restriction.guard.ts -------------------------------------------------------------------------------- /src/main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/main/index.ts -------------------------------------------------------------------------------- /src/main/plugins/request-logger.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/main/plugins/request-logger.plugin.ts -------------------------------------------------------------------------------- /src/main/repositories/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/main/repositories/common.ts -------------------------------------------------------------------------------- /src/main/repositories/config.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/main/repositories/config.repository.ts -------------------------------------------------------------------------------- /src/main/repositories/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/main/repositories/index.ts -------------------------------------------------------------------------------- /src/main/repositories/rule.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/main/repositories/rule.repository.ts -------------------------------------------------------------------------------- /src/main/services/auto-launch.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/main/services/auto-launch.service.ts -------------------------------------------------------------------------------- /src/main/services/guard.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/main/services/guard.service.ts -------------------------------------------------------------------------------- /src/main/services/log-viewer.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/main/services/log-viewer.service.ts -------------------------------------------------------------------------------- /src/main/services/proxy-connector.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/main/services/proxy-connector.service.ts -------------------------------------------------------------------------------- /src/main/services/relay.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/main/services/relay.service.ts -------------------------------------------------------------------------------- /src/main/services/theme.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/main/services/theme.service.ts -------------------------------------------------------------------------------- /src/main/types.ts: -------------------------------------------------------------------------------- 1 | export type TSendToRenderer = (channel: string, ...args: any[]) => void 2 | -------------------------------------------------------------------------------- /src/main/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/main/utils.ts -------------------------------------------------------------------------------- /src/preload/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/preload/index.d.ts -------------------------------------------------------------------------------- /src/preload/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/preload/index.ts -------------------------------------------------------------------------------- /src/renderer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/index.html -------------------------------------------------------------------------------- /src/renderer/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/App.tsx -------------------------------------------------------------------------------- /src/renderer/src/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/assets/main.css -------------------------------------------------------------------------------- /src/renderer/src/components/RuleConditions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/components/RuleConditions.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/components/theme-provider.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/components/ui/use-toast.ts -------------------------------------------------------------------------------- /src/renderer/src/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/renderer/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/lib/utils.ts -------------------------------------------------------------------------------- /src/renderer/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/data/ClearAllEvents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/pages/data/ClearAllEvents.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/data/DeleteEvents/DeleteConfirmDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/pages/data/DeleteEvents/DeleteConfirmDialog.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/data/DeleteEvents/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/pages/data/DeleteEvents/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/data/DeleteEventsByFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/pages/data/DeleteEventsByFilter.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/data/ExportEvents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/pages/data/ExportEvents.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/data/ImportEvents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/pages/data/ImportEvents.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/data/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/pages/data/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/pages/home/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/logs/components/LogItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/pages/logs/components/LogItem.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/logs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/pages/logs/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/proxy/PublicAddress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/pages/proxy/PublicAddress.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/proxy/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/pages/proxy/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/rules/components/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/pages/rules/components/columns.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/rules/components/data-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/pages/rules/components/data-table.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/rules/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/pages/rules/edit.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/rules/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/pages/rules/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/settings/components/AppearanceOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/pages/settings/components/AppearanceOption.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/settings/components/AutoLaunchOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/pages/settings/components/AutoLaunchOption.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/settings/components/DefaultFilterLimitOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/pages/settings/components/DefaultFilterLimitOption.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/settings/components/MaxPayloadOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/pages/settings/components/MaxPayloadOption.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/settings/components/TrayIconColorOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/pages/settings/components/TrayIconColorOption.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/pages/settings/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/wotAndPow/components/PowOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/pages/wotAndPow/components/PowOption.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/wotAndPow/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/src/renderer/src/pages/wotAndPow/index.tsx -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /tsconfig.web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyTseng/nostr-relay-tray/HEAD/tsconfig.web.json --------------------------------------------------------------------------------