diff --git a/Makefile b/Makefile index 18cf3716..ec906c1c 100644 --- a/Makefile +++ b/Makefile @@ -146,6 +146,8 @@ windows-libs: $(MKDIR) $(DESKTOP_OUT) || echo Folder already exists. Skipping... curl -L $(CORE_URL)/$(CORE_NAME)-windows-amd64.tar.gz | tar xz -C $(DESKTOP_OUT)$(SEP) ls $(DESKTOP_OUT) || dir $(DESKTOP_OUT)$(SEP) + $(RM) $(DESKTOP_OUT)$(SEP)HiddifyService.exe + #temporary disable windows service linux-libs: mkdir -p $(DESKTOP_OUT) diff --git a/lib/features/config_option/model/config_option_entity.dart b/lib/features/config_option/model/config_option_entity.dart index 2df83309..a42858ad 100644 --- a/lib/features/config_option/model/config_option_entity.dart +++ b/lib/features/config_option/model/config_option_entity.dart @@ -173,7 +173,7 @@ class ConfigOptionEntity with _$ConfigOptionEntity { enableClashApi: enableClashApi, clashApiPort: clashApiPort, enableTun: serviceMode == ServiceMode.tun, - enableTunService: serviceMode == ServiceMode.tunService, + enableTunService: false && serviceMode == ServiceMode.tunService, setSystemProxy: serviceMode == ServiceMode.systemProxy, bypassLan: bypassLan, allowConnectionFromLan: allowConnectionFromLan,