Skip to content

Commit

Permalink
fix: Correct package name in build script for Windows and bump versio…
Browse files Browse the repository at this point in the history
…n to 1.3.1
  • Loading branch information
CoffeSiberian committed Dec 31, 2024
1 parent 920ced1 commit 2c9ed72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
fn main() {
if cfg!(target_os = "windows") && std::env::var("CARGO_PKG_NAME").unwrap() == "DecryptTruck" {
if cfg!(target_os = "windows") && std::env::var("CARGO_PKG_NAME").unwrap() == "decrypt_truck" {
let mut res = winres::WindowsResource::new();
res.set("FileDescription", env!("CARGO_PKG_DESCRIPTION"));
res.set("ProductName", env!("CARGO_PKG_NAME"));
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.0
1.3.1

0 comments on commit 2c9ed72

Please sign in to comment.