├── .gitattributes ├── .gitignore ├── .gitmodules ├── Clash-meta.xml ├── Clash.Meta服务管理.bat ├── README.md ├── WinSW.exe ├── clash.exe ├── clash核心防火墙打开.bat ├── config.yaml.example ├── logs └── .gitignore ├── resources └── .gitignore ├── 下载最新alpha核心并重启服务.bat ├── 切换系统代理或Tun模式.bat ├── 更新yacd.bat └── 更新配置文件.bat /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kogekiplay/Clash-Core-Service-Windows/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | config.yaml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kogekiplay/Clash-Core-Service-Windows/HEAD/.gitmodules -------------------------------------------------------------------------------- /Clash-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kogekiplay/Clash-Core-Service-Windows/HEAD/Clash-meta.xml -------------------------------------------------------------------------------- /Clash.Meta服务管理.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kogekiplay/Clash-Core-Service-Windows/HEAD/Clash.Meta服务管理.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kogekiplay/Clash-Core-Service-Windows/HEAD/README.md -------------------------------------------------------------------------------- /WinSW.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kogekiplay/Clash-Core-Service-Windows/HEAD/WinSW.exe -------------------------------------------------------------------------------- /clash.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kogekiplay/Clash-Core-Service-Windows/HEAD/clash.exe -------------------------------------------------------------------------------- /clash核心防火墙打开.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kogekiplay/Clash-Core-Service-Windows/HEAD/clash核心防火墙打开.bat -------------------------------------------------------------------------------- /config.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kogekiplay/Clash-Core-Service-Windows/HEAD/config.yaml.example -------------------------------------------------------------------------------- /logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /resources/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /下载最新alpha核心并重启服务.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kogekiplay/Clash-Core-Service-Windows/HEAD/下载最新alpha核心并重启服务.bat -------------------------------------------------------------------------------- /切换系统代理或Tun模式.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kogekiplay/Clash-Core-Service-Windows/HEAD/切换系统代理或Tun模式.bat -------------------------------------------------------------------------------- /更新yacd.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kogekiplay/Clash-Core-Service-Windows/HEAD/更新yacd.bat -------------------------------------------------------------------------------- /更新配置文件.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kogekiplay/Clash-Core-Service-Windows/HEAD/更新配置文件.bat --------------------------------------------------------------------------------