change exe name

This commit is contained in:
armv9
2024-07-05 11:16:05 +09:00
parent be0eae662b
commit 6f81ba7773
20 changed files with 47 additions and 64 deletions

View File

@@ -22,7 +22,7 @@ namespace NekoGui {
}
QString genTunName() {
auto tun_name = "nekoray-tun";
auto tun_name = "nekobox-tun";
#ifdef Q_OS_MACOS
tun_name = "utun9";
#endif
@@ -725,8 +725,8 @@ namespace NekoGui {
QString WriteVPNSingBoxConfig() {
// tun user rule
auto match_out = dataStore->vpn_rule_white ? "nekoray-socks" : "direct";
auto no_match_out = dataStore->vpn_rule_white ? "direct" : "nekoray-socks";
auto match_out = dataStore->vpn_rule_white ? "nekobox-socks" : "direct";
auto no_match_out = dataStore->vpn_rule_white ? "direct" : "nekobox-socks";
QString process_name_rule = dataStore->vpn_rule_process.trimmed();
if (!process_name_rule.isEmpty()) {