From c9dbba0d288becb7f05cebe526be25c76e5a850a Mon Sep 17 00:00:00 2001 From: "1992414357@qq.com" <1992414357@qq.com> Date: Thu, 29 May 2025 16:06:11 +0800 Subject: 增加客户端部分 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- export/Cargo.toml | 2 +- export/dev/bin/nogpadc.exe | Bin 2235392 -> 2235392 bytes export/src/bin/export_project.rs | 3 ++- 3 files changed, 3 insertions(+), 2 deletions(-) (limited to 'export') diff --git a/export/Cargo.toml b/export/Cargo.toml index 2a0cc4f..5ddc6ca 100644 --- a/export/Cargo.toml +++ b/export/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "nogamepads_export" +name = "nogamepads-export" authors = [ "CatilGrass" ] workspace = "../../NoGamepads" diff --git a/export/dev/bin/nogpadc.exe b/export/dev/bin/nogpadc.exe index e3f04ca..7795720 100644 Binary files a/export/dev/bin/nogpadc.exe and b/export/dev/bin/nogpadc.exe differ diff --git a/export/src/bin/export_project.rs b/export/src/bin/export_project.rs index f5e34eb..95b3fbe 100644 --- a/export/src/bin/export_project.rs +++ b/export/src/bin/export_project.rs @@ -24,6 +24,7 @@ pub struct ReleaseItem { } pub fn main() { + let version = env!("PROJECT_VERSION"); let root = PathBuf::from(env!("CARGO_MANIFEST_DIR")).parent().unwrap().to_path_buf(); let toml_config = root.join("./Config_Export.toml"); @@ -34,7 +35,7 @@ pub fn main() { root.join("export"); let export_version_dir = - export_root.join(env!("PROJECT_VERSION")); + export_root.join(version); let target_dir = root.join(".cargo").join("shared").join("target").join("release").join("deps"); -- cgit