Skip to content

Commit 0485b4b

Browse files
author
XrayFluent Dev
committed
вапвап
1 parent 7f8982f commit 0485b4b

24 files changed

Lines changed: 571 additions & 68407 deletions

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

.gitignore

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,39 @@
1+
# Python
12
__pycache__/
23
*.pyc
4+
*.pyo
35
.venv/
6+
7+
# PyInstaller
48
build/
59
dist/
610
dist2/
711
dist3/
812
*.spec
13+
14+
# Binaries (core/)
15+
core/*.exe
16+
core/*.dll
17+
core/*.dat
18+
core/*.ps1
19+
core/*.vbs
20+
21+
# App data
22+
data/
23+
24+
# IDE
25+
.idea/
26+
.vscode/
27+
*.swp
28+
*.swo
29+
30+
# OS
31+
Thumbs.db
32+
desktop.ini
33+
.DS_Store
34+
35+
# Logs
36+
*.log
37+
38+
# Archives
39+
*.zip

build.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@
2222
VENV_PYTHON = VENV_DIR / "Scripts" / "python.exe"
2323
VENV_PIP = VENV_DIR / "Scripts" / "pip.exe"
2424

25+
APP_NAME = "ZapretKVN"
26+
DEBUG_LAUNCHER_NAME = "Run ZapretKVN Debug.bat"
27+
2528
DIST_DIR = ROOT / "dist"
2629
BUILD_DIR = ROOT / "build"
27-
APP_DIR = DIST_DIR / "XrayFluent"
28-
ZIP_PATH = DIST_DIR / "XrayFluent-portable.zip"
30+
APP_DIR = DIST_DIR / APP_NAME
31+
ZIP_PATH = DIST_DIR / f"{APP_NAME}-portable.zip"
2932

3033
MANIFEST = ROOT / "uac_admin.manifest"
3134
CORE_DIR = ROOT / "core"
3235

33-
APP_NAME = "XrayFluent"
34-
DEBUG_LAUNCHER_NAME = "Run XrayFluent Debug.bat"
35-
3636

3737
def _print(msg: str) -> None:
3838
print(f"[build] {msg}", flush=True)
@@ -49,10 +49,10 @@ def write_debug_launcher() -> None:
4949
"@echo off\r\n"
5050
"setlocal\r\n"
5151
"set XRAY_FLUENT_SHOW_CONSOLE=1\r\n"
52-
"echo Launching Xray Fluent in debug mode...\r\n"
52+
"echo Launching zapret kvn in debug mode...\r\n"
5353
"echo Startup log: %~dp0data\\logs\\startup.log\r\n"
5454
"echo.\r\n"
55-
'"%~dp0XrayFluent.exe" --show-console\r\n'
55+
'"%~dp0ZapretKVN.exe" --show-console\r\n'
5656
"set EXIT_CODE=%ERRORLEVEL%\r\n"
5757
"echo.\r\n"
5858
"echo Exit code: %EXIT_CODE%\r\n"

core/geoip.dat

-19.3 MB
Binary file not shown.

core/geosite.dat

Lines changed: 0 additions & 68363 deletions
This file was deleted.

core/libcronet.dll

-8.2 MB
Binary file not shown.

core/sing-box.exe

-42.6 MB
Binary file not shown.

core/tun2socks.exe

-10.1 MB
Binary file not shown.

core/wintun.dll

-418 KB
Binary file not shown.

core/xray.exe

-33.1 MB
Binary file not shown.

0 commit comments

Comments
 (0)