├── .github └── workflows │ ├── release.yml │ └── rolling-release.yml ├── .gitignore ├── GUI.for.SingBox.code-workspace ├── LICENSE ├── README.md ├── bridge ├── bridge.go ├── exec.go ├── exec_others.go ├── exec_windows.go ├── io.go ├── mmdb.go ├── net.go ├── notification.go ├── server.go ├── tray.go ├── types.go └── utils.go ├── docs └── imgs │ ├── dark.png │ └── light.png ├── frontend ├── .editorconfig ├── .env ├── .gitattributes ├── .gitignore ├── .oxlintrc.json ├── .prettierrc.json ├── .vscode │ ├── extensions.json │ └── settings.json ├── README.md ├── env.d.ts ├── eslint.config.js ├── index.html ├── package.json ├── pnpm-lock.yaml ├── public │ ├── favicon.ico │ ├── icons │ │ ├── tray_normal_dark.ico │ │ ├── tray_normal_light.ico │ │ ├── tray_proxy_dark.ico │ │ ├── tray_proxy_light.ico │ │ ├── tray_tun_dark.ico │ │ └── tray_tun_light.ico │ └── imgs │ │ ├── notify_error.png │ │ ├── notify_success.png │ │ ├── tray_normal_dark.png │ │ ├── tray_normal_light.png │ │ ├── tray_proxy_dark.png │ │ ├── tray_proxy_light.png │ │ ├── tray_tun_dark.png │ │ └── tray_tun_light.png ├── src │ ├── App.vue │ ├── api │ │ └── kernel.ts │ ├── assets │ │ ├── globalMethods.ts │ │ ├── logo.png │ │ ├── main.less │ │ ├── polyfills.ts │ │ └── styles │ │ │ ├── custom.less │ │ │ ├── reset.less │ │ │ ├── theme.less │ │ │ ├── utilities │ │ │ ├── display.less │ │ │ ├── flex.less │ │ │ ├── gap.less │ │ │ ├── grid.less │ │ │ ├── index.less │ │ │ ├── others.less │ │ │ ├── rounded.less │ │ │ ├── size.less │ │ │ ├── spacing.less │ │ │ └── text.less │ │ │ └── variables.less │ ├── bridge │ │ ├── app.ts │ │ ├── exec.ts │ │ ├── index.ts │ │ ├── io.ts │ │ ├── mmdb.ts │ │ ├── net.ts │ │ ├── notification.ts │ │ ├── server.ts │ │ └── wailsjs │ │ │ ├── go │ │ │ ├── bridge │ │ │ │ ├── App.d.ts │ │ │ │ └── App.js │ │ │ └── models.ts │ │ │ └── runtime │ │ │ ├── package.json │ │ │ ├── runtime.d.ts │ │ │ └── runtime.js │ ├── components │ │ ├── Button │ │ │ └── index.vue │ │ ├── Card │ │ │ └── index.vue │ │ ├── CheckBox │ │ │ └── index.vue │ │ ├── CodeViewer │ │ │ └── index.vue │ │ ├── Confirm │ │ │ └── index.vue │ │ ├── CustomAction │ │ │ └── index.vue │ │ ├── Divider │ │ │ └── index.vue │ │ ├── Dropdown │ │ │ └── index.vue │ │ ├── Empty │ │ │ └── index.vue │ │ ├── Icon │ │ │ ├── AddIcon.vue │ │ │ ├── ArrowDownIcon.vue │ │ │ ├── ArrowLeftIcon.vue │ │ │ ├── ArrowRightIcon.vue │ │ │ ├── Clear2Icon.vue │ │ │ ├── Clear3Icon.vue │ │ │ ├── ClearIcon.vue │ │ │ ├── CloseIcon.vue │ │ │ ├── CodeIcon.vue │ │ │ ├── CollapseIcon.vue │ │ │ ├── DeleteIcon.vue │ │ │ ├── DisabledIcon.vue │ │ │ ├── DragIcon.vue │ │ │ ├── EditIcon.vue │ │ │ ├── EmptyIcon.vue │ │ │ ├── ErrorIcon.vue │ │ │ ├── ExpandIcon.vue │ │ │ ├── FileIcon.vue │ │ │ ├── FilterIcon.vue │ │ │ ├── Folder2Icon.vue │ │ │ ├── FolderIcon.vue │ │ │ ├── ForbiddenIcon.vue │ │ │ ├── GithubIcon.vue │ │ │ ├── GrantIcon.vue │ │ │ ├── Link2Icon.vue │ │ │ ├── LinkIcon.vue │ │ │ ├── LoadingIcon.vue │ │ │ ├── LogIcon.vue │ │ │ ├── Maximize2Icon.vue │ │ │ ├── MaximizeIcon.vue │ │ │ ├── MessageErrorIcon.vue │ │ │ ├── MessageInfoIcon.vue │ │ │ ├── MessageSuccessIcon.vue │ │ │ ├── MessageWarnIcon.vue │ │ │ ├── MinimizeIcon.vue │ │ │ ├── MoreIcon.vue │ │ │ ├── OverviewIcon.vue │ │ │ ├── PauseIcon.vue │ │ │ ├── PinFillIcon.vue │ │ │ ├── PinIcon.vue │ │ │ ├── PlayIcon.vue │ │ │ ├── PluginsIcon.vue │ │ │ ├── PreviewIcon.vue │ │ │ ├── ProfilesIcon.vue │ │ │ ├── RefreshIcon.vue │ │ │ ├── ResetIcon.vue │ │ │ ├── RestartAppIcon.vue │ │ │ ├── RestartIcon.vue │ │ │ ├── RollbackIcon.vue │ │ │ ├── RulesetsIcon.vue │ │ │ ├── ScheduledTasksIcon.vue │ │ │ ├── SelectedIcon.vue │ │ │ ├── Settings2Icon.vue │ │ │ ├── Settings3Icon.vue │ │ │ ├── SettingsIcon.vue │ │ │ ├── SparkleIcon.vue │ │ │ ├── SpeedTestIcon.vue │ │ │ ├── StopIcon.vue │ │ │ ├── SubscriptionsIcon.vue │ │ │ ├── TelegramIcon.vue │ │ │ ├── icons.ts │ │ │ └── index.vue │ │ ├── Input │ │ │ └── index.vue │ │ ├── InputList │ │ │ └── index.vue │ │ ├── InterfaceSelect │ │ │ └── index.vue │ │ ├── KeyValueEditor │ │ │ └── index.vue │ │ ├── Menu │ │ │ └── index.vue │ │ ├── Message │ │ │ └── index.vue │ │ ├── Modal │ │ │ ├── index.ts │ │ │ └── index.vue │ │ ├── MultipleSelect │ │ │ └── index.vue │ │ ├── NavigationBar.vue │ │ ├── Pagination │ │ │ └── index.vue │ │ ├── Picker │ │ │ └── index.vue │ │ ├── Progress │ │ │ └── index.vue │ │ ├── Prompt │ │ │ └── index.vue │ │ ├── Radio │ │ │ └── index.vue │ │ ├── Select │ │ │ └── index.vue │ │ ├── Switch │ │ │ └── index.vue │ │ ├── Table │ │ │ └── index.vue │ │ ├── Tabs │ │ │ └── index.vue │ │ ├── Tag │ │ │ └── index.vue │ │ ├── Tips │ │ │ └── index.vue │ │ ├── TitleBar.vue │ │ ├── TrafficChart │ │ │ └── index.vue │ │ ├── components.d.ts │ │ └── index.ts │ ├── constant │ │ ├── app.ts │ │ ├── kernel.ts │ │ └── profile.ts │ ├── directives │ │ ├── index.ts │ │ ├── menu.ts │ │ └── tips.ts │ ├── enums │ │ ├── app.ts │ │ └── kernel.ts │ ├── hooks │ │ ├── index.ts │ │ ├── useBool.ts │ │ └── useCoreBranch.ts │ ├── lang │ │ ├── index.ts │ │ └── locale │ │ │ ├── en.ts │ │ │ └── zh.ts │ ├── main.ts │ ├── router │ │ ├── index.ts │ │ ├── router.d.ts │ │ └── routes.ts │ ├── stores │ │ ├── app.ts │ │ ├── appSettings.ts │ │ ├── env.ts │ │ ├── index.ts │ │ ├── kernelApi.ts │ │ ├── logs.ts │ │ ├── plugins.ts │ │ ├── profiles.ts │ │ ├── rulesets.ts │ │ ├── scheduledtasks.ts │ │ └── subscribes.ts │ ├── types │ │ ├── app.d.ts │ │ ├── global.d.ts │ │ ├── kernel.d.ts │ │ ├── profile.d.ts │ │ └── typescript.d.ts │ ├── utils │ │ ├── command.ts │ │ ├── completion.ts │ │ ├── env.ts │ │ ├── eventBus.ts │ │ ├── format.ts │ │ ├── generator.ts │ │ ├── helper.ts │ │ ├── index.ts │ │ ├── interaction.ts │ │ ├── is.ts │ │ ├── migration.ts │ │ ├── others.ts │ │ ├── request.ts │ │ ├── restorer.ts │ │ ├── tray.ts │ │ └── websockets.ts │ └── views │ │ ├── AboutView.vue │ │ ├── CommandView.vue │ │ ├── HomeView │ │ ├── components │ │ │ ├── CommonController.vue │ │ │ ├── ConnectionsController.vue │ │ │ ├── GroupsController.vue │ │ │ ├── KernelLogs.vue │ │ │ ├── LogsController.vue │ │ │ ├── OverView.vue │ │ │ └── QuickStart.vue │ │ └── index.vue │ │ ├── PluginsView │ │ ├── components │ │ │ ├── PluginChangelog.vue │ │ │ ├── PluginConfigItem.vue │ │ │ ├── PluginConfigurator.vue │ │ │ ├── PluginForm.vue │ │ │ ├── PluginHub.vue │ │ │ └── PluginView.vue │ │ └── index.vue │ │ ├── ProfilesView │ │ ├── components │ │ │ ├── DnsConfig.vue │ │ │ ├── DnsRulesConfig.vue │ │ │ ├── DnsServersConfig.vue │ │ │ ├── GeneralConfig.vue │ │ │ ├── InboundsConfig.vue │ │ │ ├── MixinAndScriptConfig.vue │ │ │ ├── OutboundsConfig.vue │ │ │ ├── ProfileForm.vue │ │ │ ├── RouteConfig.vue │ │ │ ├── RouteRulesConfig.vue │ │ │ └── RouteRulesetConfig.vue │ │ └── index.vue │ │ ├── RulesetsView │ │ ├── components │ │ │ ├── RulesetForm.vue │ │ │ ├── RulesetHub.vue │ │ │ └── RulesetView.vue │ │ └── index.vue │ │ ├── ScheduledTasksView │ │ ├── components │ │ │ ├── ScheduledTaskForm.vue │ │ │ └── ScheduledTasksLogs.vue │ │ └── index.vue │ │ ├── SettingsView │ │ ├── components │ │ │ ├── CoreSettings.vue │ │ │ ├── GeneralSettings.vue │ │ │ ├── PluginSettings.vue │ │ │ └── components │ │ │ │ ├── BranchDetail.vue │ │ │ │ ├── CoreConfig.vue │ │ │ │ └── SwitchBranch.vue │ │ └── index.vue │ │ ├── SplashView.vue │ │ └── SubscribesView │ │ ├── components │ │ ├── ProxiesEditor.vue │ │ ├── ProxiesView.vue │ │ ├── SubscribeForm.vue │ │ └── SubscribeScript.vue │ │ └── index.vue ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── go.mod ├── go.sum ├── main.go └── wails.json /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/rolling-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/.github/workflows/rolling-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/bin 2 | frontend/dist 3 | 4 | .DS_Store -------------------------------------------------------------------------------- /GUI.for.SingBox.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/GUI.for.SingBox.code-workspace -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/README.md -------------------------------------------------------------------------------- /bridge/bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/bridge/bridge.go -------------------------------------------------------------------------------- /bridge/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/bridge/exec.go -------------------------------------------------------------------------------- /bridge/exec_others.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/bridge/exec_others.go -------------------------------------------------------------------------------- /bridge/exec_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/bridge/exec_windows.go -------------------------------------------------------------------------------- /bridge/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/bridge/io.go -------------------------------------------------------------------------------- /bridge/mmdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/bridge/mmdb.go -------------------------------------------------------------------------------- /bridge/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/bridge/net.go -------------------------------------------------------------------------------- /bridge/notification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/bridge/notification.go -------------------------------------------------------------------------------- /bridge/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/bridge/server.go -------------------------------------------------------------------------------- /bridge/tray.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/bridge/tray.go -------------------------------------------------------------------------------- /bridge/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/bridge/types.go -------------------------------------------------------------------------------- /bridge/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/bridge/utils.go -------------------------------------------------------------------------------- /docs/imgs/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/docs/imgs/dark.png -------------------------------------------------------------------------------- /docs/imgs/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/docs/imgs/light.png -------------------------------------------------------------------------------- /frontend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/.editorconfig -------------------------------------------------------------------------------- /frontend/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/.env -------------------------------------------------------------------------------- /frontend/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.oxlintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/.oxlintrc.json -------------------------------------------------------------------------------- /frontend/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/.prettierrc.json -------------------------------------------------------------------------------- /frontend/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/.vscode/extensions.json -------------------------------------------------------------------------------- /frontend/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/.vscode/settings.json -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/env.d.ts -------------------------------------------------------------------------------- /frontend/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/eslint.config.js -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/pnpm-lock.yaml -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/icons/tray_normal_dark.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/public/icons/tray_normal_dark.ico -------------------------------------------------------------------------------- /frontend/public/icons/tray_normal_light.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/public/icons/tray_normal_light.ico -------------------------------------------------------------------------------- /frontend/public/icons/tray_proxy_dark.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/public/icons/tray_proxy_dark.ico -------------------------------------------------------------------------------- /frontend/public/icons/tray_proxy_light.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/public/icons/tray_proxy_light.ico -------------------------------------------------------------------------------- /frontend/public/icons/tray_tun_dark.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/public/icons/tray_tun_dark.ico -------------------------------------------------------------------------------- /frontend/public/icons/tray_tun_light.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/public/icons/tray_tun_light.ico -------------------------------------------------------------------------------- /frontend/public/imgs/notify_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/public/imgs/notify_error.png -------------------------------------------------------------------------------- /frontend/public/imgs/notify_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/public/imgs/notify_success.png -------------------------------------------------------------------------------- /frontend/public/imgs/tray_normal_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/public/imgs/tray_normal_dark.png -------------------------------------------------------------------------------- /frontend/public/imgs/tray_normal_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/public/imgs/tray_normal_light.png -------------------------------------------------------------------------------- /frontend/public/imgs/tray_proxy_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/public/imgs/tray_proxy_dark.png -------------------------------------------------------------------------------- /frontend/public/imgs/tray_proxy_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/public/imgs/tray_proxy_light.png -------------------------------------------------------------------------------- /frontend/public/imgs/tray_tun_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/public/imgs/tray_tun_dark.png -------------------------------------------------------------------------------- /frontend/public/imgs/tray_tun_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/public/imgs/tray_tun_light.png -------------------------------------------------------------------------------- /frontend/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/App.vue -------------------------------------------------------------------------------- /frontend/src/api/kernel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/api/kernel.ts -------------------------------------------------------------------------------- /frontend/src/assets/globalMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/assets/globalMethods.ts -------------------------------------------------------------------------------- /frontend/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/assets/logo.png -------------------------------------------------------------------------------- /frontend/src/assets/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/assets/main.less -------------------------------------------------------------------------------- /frontend/src/assets/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/assets/polyfills.ts -------------------------------------------------------------------------------- /frontend/src/assets/styles/custom.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/assets/styles/custom.less -------------------------------------------------------------------------------- /frontend/src/assets/styles/reset.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/assets/styles/reset.less -------------------------------------------------------------------------------- /frontend/src/assets/styles/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/assets/styles/theme.less -------------------------------------------------------------------------------- /frontend/src/assets/styles/utilities/display.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/assets/styles/utilities/display.less -------------------------------------------------------------------------------- /frontend/src/assets/styles/utilities/flex.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/assets/styles/utilities/flex.less -------------------------------------------------------------------------------- /frontend/src/assets/styles/utilities/gap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/assets/styles/utilities/gap.less -------------------------------------------------------------------------------- /frontend/src/assets/styles/utilities/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/assets/styles/utilities/grid.less -------------------------------------------------------------------------------- /frontend/src/assets/styles/utilities/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/assets/styles/utilities/index.less -------------------------------------------------------------------------------- /frontend/src/assets/styles/utilities/others.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/assets/styles/utilities/others.less -------------------------------------------------------------------------------- /frontend/src/assets/styles/utilities/rounded.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/assets/styles/utilities/rounded.less -------------------------------------------------------------------------------- /frontend/src/assets/styles/utilities/size.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/assets/styles/utilities/size.less -------------------------------------------------------------------------------- /frontend/src/assets/styles/utilities/spacing.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/assets/styles/utilities/spacing.less -------------------------------------------------------------------------------- /frontend/src/assets/styles/utilities/text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/assets/styles/utilities/text.less -------------------------------------------------------------------------------- /frontend/src/assets/styles/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/assets/styles/variables.less -------------------------------------------------------------------------------- /frontend/src/bridge/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/bridge/app.ts -------------------------------------------------------------------------------- /frontend/src/bridge/exec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/bridge/exec.ts -------------------------------------------------------------------------------- /frontend/src/bridge/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/bridge/index.ts -------------------------------------------------------------------------------- /frontend/src/bridge/io.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/bridge/io.ts -------------------------------------------------------------------------------- /frontend/src/bridge/mmdb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/bridge/mmdb.ts -------------------------------------------------------------------------------- /frontend/src/bridge/net.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/bridge/net.ts -------------------------------------------------------------------------------- /frontend/src/bridge/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/bridge/notification.ts -------------------------------------------------------------------------------- /frontend/src/bridge/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/bridge/server.ts -------------------------------------------------------------------------------- /frontend/src/bridge/wailsjs/go/bridge/App.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/bridge/wailsjs/go/bridge/App.d.ts -------------------------------------------------------------------------------- /frontend/src/bridge/wailsjs/go/bridge/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/bridge/wailsjs/go/bridge/App.js -------------------------------------------------------------------------------- /frontend/src/bridge/wailsjs/go/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/bridge/wailsjs/go/models.ts -------------------------------------------------------------------------------- /frontend/src/bridge/wailsjs/runtime/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/bridge/wailsjs/runtime/package.json -------------------------------------------------------------------------------- /frontend/src/bridge/wailsjs/runtime/runtime.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/bridge/wailsjs/runtime/runtime.d.ts -------------------------------------------------------------------------------- /frontend/src/bridge/wailsjs/runtime/runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/bridge/wailsjs/runtime/runtime.js -------------------------------------------------------------------------------- /frontend/src/components/Button/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Button/index.vue -------------------------------------------------------------------------------- /frontend/src/components/Card/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Card/index.vue -------------------------------------------------------------------------------- /frontend/src/components/CheckBox/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/CheckBox/index.vue -------------------------------------------------------------------------------- /frontend/src/components/CodeViewer/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/CodeViewer/index.vue -------------------------------------------------------------------------------- /frontend/src/components/Confirm/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Confirm/index.vue -------------------------------------------------------------------------------- /frontend/src/components/CustomAction/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/CustomAction/index.vue -------------------------------------------------------------------------------- /frontend/src/components/Divider/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Divider/index.vue -------------------------------------------------------------------------------- /frontend/src/components/Dropdown/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Dropdown/index.vue -------------------------------------------------------------------------------- /frontend/src/components/Empty/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Empty/index.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/AddIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/AddIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/ArrowDownIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/ArrowDownIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/ArrowLeftIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/ArrowLeftIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/ArrowRightIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/ArrowRightIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/Clear2Icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/Clear2Icon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/Clear3Icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/Clear3Icon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/ClearIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/ClearIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/CloseIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/CloseIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/CodeIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/CodeIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/CollapseIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/CollapseIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/DeleteIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/DeleteIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/DisabledIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/DisabledIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/DragIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/DragIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/EditIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/EditIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/EmptyIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/EmptyIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/ErrorIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/ErrorIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/ExpandIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/ExpandIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/FileIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/FileIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/FilterIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/FilterIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/Folder2Icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/Folder2Icon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/FolderIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/FolderIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/ForbiddenIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/ForbiddenIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/GithubIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/GithubIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/GrantIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/GrantIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/Link2Icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/Link2Icon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/LinkIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/LinkIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/LoadingIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/LoadingIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/LogIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/LogIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/Maximize2Icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/Maximize2Icon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/MaximizeIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/MaximizeIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/MessageErrorIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/MessageErrorIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/MessageInfoIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/MessageInfoIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/MessageSuccessIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/MessageSuccessIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/MessageWarnIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/MessageWarnIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/MinimizeIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/MinimizeIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/MoreIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/MoreIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/OverviewIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/OverviewIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/PauseIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/PauseIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/PinFillIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/PinFillIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/PinIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/PinIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/PlayIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/PlayIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/PluginsIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/PluginsIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/PreviewIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/PreviewIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/ProfilesIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/ProfilesIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/RefreshIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/RefreshIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/ResetIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/ResetIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/RestartAppIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/RestartAppIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/RestartIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/RestartIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/RollbackIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/RollbackIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/RulesetsIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/RulesetsIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/ScheduledTasksIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/ScheduledTasksIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/SelectedIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/SelectedIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/Settings2Icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/Settings2Icon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/Settings3Icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/Settings3Icon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/SettingsIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/SettingsIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/SparkleIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/SparkleIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/SpeedTestIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/SpeedTestIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/StopIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/StopIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/SubscriptionsIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/SubscriptionsIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/TelegramIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/TelegramIcon.vue -------------------------------------------------------------------------------- /frontend/src/components/Icon/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/icons.ts -------------------------------------------------------------------------------- /frontend/src/components/Icon/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Icon/index.vue -------------------------------------------------------------------------------- /frontend/src/components/Input/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Input/index.vue -------------------------------------------------------------------------------- /frontend/src/components/InputList/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/InputList/index.vue -------------------------------------------------------------------------------- /frontend/src/components/InterfaceSelect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/InterfaceSelect/index.vue -------------------------------------------------------------------------------- /frontend/src/components/KeyValueEditor/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/KeyValueEditor/index.vue -------------------------------------------------------------------------------- /frontend/src/components/Menu/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Menu/index.vue -------------------------------------------------------------------------------- /frontend/src/components/Message/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Message/index.vue -------------------------------------------------------------------------------- /frontend/src/components/Modal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Modal/index.ts -------------------------------------------------------------------------------- /frontend/src/components/Modal/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Modal/index.vue -------------------------------------------------------------------------------- /frontend/src/components/MultipleSelect/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/MultipleSelect/index.vue -------------------------------------------------------------------------------- /frontend/src/components/NavigationBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/NavigationBar.vue -------------------------------------------------------------------------------- /frontend/src/components/Pagination/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Pagination/index.vue -------------------------------------------------------------------------------- /frontend/src/components/Picker/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Picker/index.vue -------------------------------------------------------------------------------- /frontend/src/components/Progress/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Progress/index.vue -------------------------------------------------------------------------------- /frontend/src/components/Prompt/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Prompt/index.vue -------------------------------------------------------------------------------- /frontend/src/components/Radio/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Radio/index.vue -------------------------------------------------------------------------------- /frontend/src/components/Select/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Select/index.vue -------------------------------------------------------------------------------- /frontend/src/components/Switch/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Switch/index.vue -------------------------------------------------------------------------------- /frontend/src/components/Table/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Table/index.vue -------------------------------------------------------------------------------- /frontend/src/components/Tabs/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Tabs/index.vue -------------------------------------------------------------------------------- /frontend/src/components/Tag/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Tag/index.vue -------------------------------------------------------------------------------- /frontend/src/components/Tips/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/Tips/index.vue -------------------------------------------------------------------------------- /frontend/src/components/TitleBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/TitleBar.vue -------------------------------------------------------------------------------- /frontend/src/components/TrafficChart/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/TrafficChart/index.vue -------------------------------------------------------------------------------- /frontend/src/components/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/components.d.ts -------------------------------------------------------------------------------- /frontend/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/components/index.ts -------------------------------------------------------------------------------- /frontend/src/constant/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/constant/app.ts -------------------------------------------------------------------------------- /frontend/src/constant/kernel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/constant/kernel.ts -------------------------------------------------------------------------------- /frontend/src/constant/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/constant/profile.ts -------------------------------------------------------------------------------- /frontend/src/directives/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/directives/index.ts -------------------------------------------------------------------------------- /frontend/src/directives/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/directives/menu.ts -------------------------------------------------------------------------------- /frontend/src/directives/tips.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/directives/tips.ts -------------------------------------------------------------------------------- /frontend/src/enums/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/enums/app.ts -------------------------------------------------------------------------------- /frontend/src/enums/kernel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/enums/kernel.ts -------------------------------------------------------------------------------- /frontend/src/hooks/index.ts: -------------------------------------------------------------------------------- 1 | export * from './useBool' 2 | -------------------------------------------------------------------------------- /frontend/src/hooks/useBool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/hooks/useBool.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useCoreBranch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/hooks/useCoreBranch.ts -------------------------------------------------------------------------------- /frontend/src/lang/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/lang/index.ts -------------------------------------------------------------------------------- /frontend/src/lang/locale/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/lang/locale/en.ts -------------------------------------------------------------------------------- /frontend/src/lang/locale/zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/lang/locale/zh.ts -------------------------------------------------------------------------------- /frontend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/main.ts -------------------------------------------------------------------------------- /frontend/src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/router/index.ts -------------------------------------------------------------------------------- /frontend/src/router/router.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/router/router.d.ts -------------------------------------------------------------------------------- /frontend/src/router/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/router/routes.ts -------------------------------------------------------------------------------- /frontend/src/stores/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/stores/app.ts -------------------------------------------------------------------------------- /frontend/src/stores/appSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/stores/appSettings.ts -------------------------------------------------------------------------------- /frontend/src/stores/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/stores/env.ts -------------------------------------------------------------------------------- /frontend/src/stores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/stores/index.ts -------------------------------------------------------------------------------- /frontend/src/stores/kernelApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/stores/kernelApi.ts -------------------------------------------------------------------------------- /frontend/src/stores/logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/stores/logs.ts -------------------------------------------------------------------------------- /frontend/src/stores/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/stores/plugins.ts -------------------------------------------------------------------------------- /frontend/src/stores/profiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/stores/profiles.ts -------------------------------------------------------------------------------- /frontend/src/stores/rulesets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/stores/rulesets.ts -------------------------------------------------------------------------------- /frontend/src/stores/scheduledtasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/stores/scheduledtasks.ts -------------------------------------------------------------------------------- /frontend/src/stores/subscribes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/stores/subscribes.ts -------------------------------------------------------------------------------- /frontend/src/types/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/types/app.d.ts -------------------------------------------------------------------------------- /frontend/src/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/types/global.d.ts -------------------------------------------------------------------------------- /frontend/src/types/kernel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/types/kernel.d.ts -------------------------------------------------------------------------------- /frontend/src/types/profile.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/types/profile.d.ts -------------------------------------------------------------------------------- /frontend/src/types/typescript.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/types/typescript.d.ts -------------------------------------------------------------------------------- /frontend/src/utils/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/utils/command.ts -------------------------------------------------------------------------------- /frontend/src/utils/completion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/utils/completion.ts -------------------------------------------------------------------------------- /frontend/src/utils/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/utils/env.ts -------------------------------------------------------------------------------- /frontend/src/utils/eventBus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/utils/eventBus.ts -------------------------------------------------------------------------------- /frontend/src/utils/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/utils/format.ts -------------------------------------------------------------------------------- /frontend/src/utils/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/utils/generator.ts -------------------------------------------------------------------------------- /frontend/src/utils/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/utils/helper.ts -------------------------------------------------------------------------------- /frontend/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/utils/index.ts -------------------------------------------------------------------------------- /frontend/src/utils/interaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/utils/interaction.ts -------------------------------------------------------------------------------- /frontend/src/utils/is.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/utils/is.ts -------------------------------------------------------------------------------- /frontend/src/utils/migration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/utils/migration.ts -------------------------------------------------------------------------------- /frontend/src/utils/others.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/utils/others.ts -------------------------------------------------------------------------------- /frontend/src/utils/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/utils/request.ts -------------------------------------------------------------------------------- /frontend/src/utils/restorer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/utils/restorer.ts -------------------------------------------------------------------------------- /frontend/src/utils/tray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/utils/tray.ts -------------------------------------------------------------------------------- /frontend/src/utils/websockets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/utils/websockets.ts -------------------------------------------------------------------------------- /frontend/src/views/AboutView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/AboutView.vue -------------------------------------------------------------------------------- /frontend/src/views/CommandView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/CommandView.vue -------------------------------------------------------------------------------- /frontend/src/views/HomeView/components/CommonController.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/HomeView/components/CommonController.vue -------------------------------------------------------------------------------- /frontend/src/views/HomeView/components/ConnectionsController.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/HomeView/components/ConnectionsController.vue -------------------------------------------------------------------------------- /frontend/src/views/HomeView/components/GroupsController.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/HomeView/components/GroupsController.vue -------------------------------------------------------------------------------- /frontend/src/views/HomeView/components/KernelLogs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/HomeView/components/KernelLogs.vue -------------------------------------------------------------------------------- /frontend/src/views/HomeView/components/LogsController.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/HomeView/components/LogsController.vue -------------------------------------------------------------------------------- /frontend/src/views/HomeView/components/OverView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/HomeView/components/OverView.vue -------------------------------------------------------------------------------- /frontend/src/views/HomeView/components/QuickStart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/HomeView/components/QuickStart.vue -------------------------------------------------------------------------------- /frontend/src/views/HomeView/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/HomeView/index.vue -------------------------------------------------------------------------------- /frontend/src/views/PluginsView/components/PluginChangelog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/PluginsView/components/PluginChangelog.vue -------------------------------------------------------------------------------- /frontend/src/views/PluginsView/components/PluginConfigItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/PluginsView/components/PluginConfigItem.vue -------------------------------------------------------------------------------- /frontend/src/views/PluginsView/components/PluginConfigurator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/PluginsView/components/PluginConfigurator.vue -------------------------------------------------------------------------------- /frontend/src/views/PluginsView/components/PluginForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/PluginsView/components/PluginForm.vue -------------------------------------------------------------------------------- /frontend/src/views/PluginsView/components/PluginHub.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/PluginsView/components/PluginHub.vue -------------------------------------------------------------------------------- /frontend/src/views/PluginsView/components/PluginView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/PluginsView/components/PluginView.vue -------------------------------------------------------------------------------- /frontend/src/views/PluginsView/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/PluginsView/index.vue -------------------------------------------------------------------------------- /frontend/src/views/ProfilesView/components/DnsConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/ProfilesView/components/DnsConfig.vue -------------------------------------------------------------------------------- /frontend/src/views/ProfilesView/components/DnsRulesConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/ProfilesView/components/DnsRulesConfig.vue -------------------------------------------------------------------------------- /frontend/src/views/ProfilesView/components/DnsServersConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/ProfilesView/components/DnsServersConfig.vue -------------------------------------------------------------------------------- /frontend/src/views/ProfilesView/components/GeneralConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/ProfilesView/components/GeneralConfig.vue -------------------------------------------------------------------------------- /frontend/src/views/ProfilesView/components/InboundsConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/ProfilesView/components/InboundsConfig.vue -------------------------------------------------------------------------------- /frontend/src/views/ProfilesView/components/MixinAndScriptConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/ProfilesView/components/MixinAndScriptConfig.vue -------------------------------------------------------------------------------- /frontend/src/views/ProfilesView/components/OutboundsConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/ProfilesView/components/OutboundsConfig.vue -------------------------------------------------------------------------------- /frontend/src/views/ProfilesView/components/ProfileForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/ProfilesView/components/ProfileForm.vue -------------------------------------------------------------------------------- /frontend/src/views/ProfilesView/components/RouteConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/ProfilesView/components/RouteConfig.vue -------------------------------------------------------------------------------- /frontend/src/views/ProfilesView/components/RouteRulesConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/ProfilesView/components/RouteRulesConfig.vue -------------------------------------------------------------------------------- /frontend/src/views/ProfilesView/components/RouteRulesetConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/ProfilesView/components/RouteRulesetConfig.vue -------------------------------------------------------------------------------- /frontend/src/views/ProfilesView/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/ProfilesView/index.vue -------------------------------------------------------------------------------- /frontend/src/views/RulesetsView/components/RulesetForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/RulesetsView/components/RulesetForm.vue -------------------------------------------------------------------------------- /frontend/src/views/RulesetsView/components/RulesetHub.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/RulesetsView/components/RulesetHub.vue -------------------------------------------------------------------------------- /frontend/src/views/RulesetsView/components/RulesetView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/RulesetsView/components/RulesetView.vue -------------------------------------------------------------------------------- /frontend/src/views/RulesetsView/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/RulesetsView/index.vue -------------------------------------------------------------------------------- /frontend/src/views/ScheduledTasksView/components/ScheduledTaskForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/ScheduledTasksView/components/ScheduledTaskForm.vue -------------------------------------------------------------------------------- /frontend/src/views/ScheduledTasksView/components/ScheduledTasksLogs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/ScheduledTasksView/components/ScheduledTasksLogs.vue -------------------------------------------------------------------------------- /frontend/src/views/ScheduledTasksView/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/ScheduledTasksView/index.vue -------------------------------------------------------------------------------- /frontend/src/views/SettingsView/components/CoreSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/SettingsView/components/CoreSettings.vue -------------------------------------------------------------------------------- /frontend/src/views/SettingsView/components/GeneralSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/SettingsView/components/GeneralSettings.vue -------------------------------------------------------------------------------- /frontend/src/views/SettingsView/components/PluginSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/SettingsView/components/PluginSettings.vue -------------------------------------------------------------------------------- /frontend/src/views/SettingsView/components/components/BranchDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/SettingsView/components/components/BranchDetail.vue -------------------------------------------------------------------------------- /frontend/src/views/SettingsView/components/components/CoreConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/SettingsView/components/components/CoreConfig.vue -------------------------------------------------------------------------------- /frontend/src/views/SettingsView/components/components/SwitchBranch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/SettingsView/components/components/SwitchBranch.vue -------------------------------------------------------------------------------- /frontend/src/views/SettingsView/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/SettingsView/index.vue -------------------------------------------------------------------------------- /frontend/src/views/SplashView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/SplashView.vue -------------------------------------------------------------------------------- /frontend/src/views/SubscribesView/components/ProxiesEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/SubscribesView/components/ProxiesEditor.vue -------------------------------------------------------------------------------- /frontend/src/views/SubscribesView/components/ProxiesView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/SubscribesView/components/ProxiesView.vue -------------------------------------------------------------------------------- /frontend/src/views/SubscribesView/components/SubscribeForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/SubscribesView/components/SubscribeForm.vue -------------------------------------------------------------------------------- /frontend/src/views/SubscribesView/components/SubscribeScript.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/SubscribesView/components/SubscribeScript.vue -------------------------------------------------------------------------------- /frontend/src/views/SubscribesView/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/src/views/SubscribesView/index.vue -------------------------------------------------------------------------------- /frontend/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/tsconfig.app.json -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/frontend/vite.config.ts -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/main.go -------------------------------------------------------------------------------- /wails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GUI-for-Cores/GUI.for.SingBox/HEAD/wails.json --------------------------------------------------------------------------------