mirror of
https://github.com/MetaCubeX/metacubexd.git
synced 2025-01-12 12:29:28 +08:00
Michelle Rodriguez
29ed55cf50
feat: support to set icon color to the theme color when proxy icon starts with
data:image/svg+xml
(#1166)
* feat: support to set icon color to the theme color when proxy icon starts with `data:image/svg+xml` * fix: errors related to set icon color to the theme color 1. remove incorrect CSS properties 2. rearrange these properties 3. use `fallback` property in `Show` component insead of using multiple `Show` components 4. Add reference link above `encodeSvg` function * fix:replace optional attributes with non-null assertions Co-authored-by: kunish <17328586+kunish@users.noreply.github.com> Signed-off-by: Michelle Rodriguez <2316892579@qq.com> --------- Signed-off-by: Michelle Rodriguez <2316892579@qq.com> Co-authored-by: kunish <17328586+kunish@users.noreply.github.com>
feat: support to set icon color to the theme color when proxy icon starts with
data:image/svg+xml
(#1166)
metacubexd
Mihomo Dashboard, The Official One, XD
Preview
Published Official Links
GH Pages: https://metacubex.github.io/metacubexd
Cloudflare Pages: https://metacubexd.pages.dev
Usage
Enable external-controller in your config file
external-controller: 0.0.0.0:9090
Use pre-built assets from gh-pages branch
First time setup
git clone https://github.com/metacubex/metacubexd.git -b gh-pages /etc/mihomo/ui
Make sure you have external-ui directory set correctly in your config file
external-ui: /etc/mihomo/ui
Update
git -C /etc/mihomo/ui pull -r
Run inside Docker
docker cli
Running
docker run -d --restart always -p 80:80 --name metacubexd ghcr.io/metacubex/metacubexd
Update and Restart
docker pull ghcr.io/metacubex/metacubexd && docker restart metacubexd
docker-compose.yml
version: '3'
services:
metacubexd:
container_name: metacubexd
image: ghcr.io/metacubex/metacubexd
restart: always
ports:
- '80:80'
# optional
meta:
container_name: meta
image: docker.io/metacubex/mihomo:Alpha
restart: always
pid: host
ipc: host
network_mode: host
cap_add:
- ALL
volumes:
- ./config.yaml:/root/.config/mihomo
- /dev/net/tun:/dev/net/tun
Running
docker compose up -d
Update and Restart
docker compose pull && docker compose up -d
Build locally
Install npm dependencies
pnpm install
Build artifacts
pnpm build
Serve static files
pnpm serve
Credits
Languages
TypeScript
98.3%
JavaScript
0.8%
CSS
0.4%
HTML
0.3%
Dockerfile
0.2%