2025-12-25 upload

This commit is contained in:
“shengyudong”
2025-12-25 11:16:59 +08:00
commit 322ac74336
2241 changed files with 639966 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1 @@
2.2.2

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,34 @@
from pathlib import Path
def executable_path() -> Path:
"""
Return the Path for windows-redirector.exe.
For shipped wheels this is just the file in the package,
for development setups this may invoke cargo to build it.
"""
here = Path(__file__).parent.absolute()
exe = here / "windows-redirector.exe"
# Development path: This should never happen with precompiled wheels.
if not exe.exists() and (here / "../Cargo.toml").exists():
import logging
import shutil
import subprocess
logger = logging.getLogger(__name__)
logger.warning("Development mode: Compiling windows-redirector.exe...")
# Build Redirector
subprocess.run(["cargo", "build"], cwd=here.parent / "redirector", check=True)
# Copy WinDivert to target/debug/
target_debug = here.parent.parent / "target/debug"
for f in ["WinDivert.dll", "WinDivert.lib", "WinDivert64.sys"]:
if not (target_debug / f).exists():
shutil.copy(here / f, target_debug / f)
logger.warning("Development mode: Using target/debug/windows-redirector.exe...")
exe = target_debug / "windows-redirector.exe"
return exe