From e81e2430dfcade3fdc18b06b364dc2d15b625807 Mon Sep 17 00:00:00 2001 From: DuckSoft Date: Mon, 14 Oct 2019 08:01:53 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=94=B9=20v2ray=20=E5=86=85=E6=A0=B8?= =?UTF-8?q?=E6=94=BE=E7=BD=AE=E6=8F=90=E7=A4=BA=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index e8910836..068d912c 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -24,9 +24,9 @@ bool initQv() if (!QDir(QV2RAY_V2RAY_CORE_DIR_PATH).exists()) { QDir().mkdir(QV2RAY_V2RAY_CORE_DIR_PATH); LOG(MODULE_INIT, "Created dir for v2ray core and assets.") - QFile _readmeFile(QV2RAY_V2RAY_CORE_DIR_PATH + "Put your v2ray.exe here.txt"); + QFile _readmeFile(QV2RAY_V2RAY_CORE_DIR_PATH + "Put your v2ray core here.txt"); _readmeFile.open(QIODevice::WriteOnly); - _readmeFile.write("Please put your v2ray.exe and assets here!"); + _readmeFile.write("Please put your v2ray core and assets here!"); _readmeFile.close(); LOG(MODULE_INIT, "Done generating readme.") }