Skip to content

Commit 94b2e45

Browse files
committed
bump ver to 0.4.9
1 parent 464e3f6 commit 94b2e45

File tree

6 files changed

+14
-35
lines changed

6 files changed

+14
-35
lines changed

.cargo/config.toml

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
# Windows 64 bit programs
22
[target.x86_64-pc-windows-msvc]
3-
rustflags = [
4-
"-C", "link-arg=libvcruntime.lib"
5-
]
3+
rustflags = ["-C", "link-arg=libvcruntime.lib"]
64

75
# Windows 32 bit programs
86
[target.i686-pc-windows-msvc]
9-
rustflags = [
10-
"-C", "link-arg=libvcruntime.lib"
11-
]
7+
rustflags = ["-C", "link-arg=libvcruntime.lib"]

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
authors = ["rusty-bits <[email protected]>"]
33
edition = "2021"
44
name = "octool"
5-
version = "0.4.8"
5+
version = "0.4.9"
66

77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[build-dependencies]
10-
chrono ="0.4.22"
10+
chrono = "0.4.22"
1111

1212
[dependencies]
1313
crossterm = "0.23.2"
@@ -27,4 +27,3 @@ lto = true
2727
opt-level = "z"
2828
panic = "abort"
2929
strip = true
30-

src/res.rs

+9-3
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,8 @@ pub fn show_res_info(resources: &mut Resources, settings: &mut Settings, stdout:
425425
.into_iter()
426426
.filter_map(Result::ok)
427427
{
428-
if entry.path().to_string_lossy().contains("_MAC") { //ignore
428+
if entry.path().to_string_lossy().contains("_MAC") {
429+
//ignore
429430
continue;
430431
}
431432
let f_name = String::from(entry.file_name().to_string_lossy());
@@ -698,7 +699,8 @@ pub fn get_res_path(
698699
.into_iter()
699700
.filter_map(Result::ok)
700701
{
701-
if entry.path().to_string_lossy().contains("_MAC") { //ignore
702+
if entry.path().to_string_lossy().contains("_MAC") {
703+
//ignore
702704
continue;
703705
}
704706
let f_name = String::from(entry.file_name().to_string_lossy());
@@ -1167,7 +1169,11 @@ pub fn check_order(
11671169
.unwrap()
11681170
.as_boolean()
11691171
.unwrap_or(false);
1170-
let mut new_res = (bundle_path.split('/').last().unwrap_or("").to_string(), "Unknown".to_owned(), res_enabled);
1172+
let mut new_res = (
1173+
bundle_path.split('/').last().unwrap_or("").to_string(),
1174+
"Unknown".to_owned(),
1175+
res_enabled,
1176+
);
11711177
if kext_list.contains(&new_res) && res_enabled {
11721178
write!(
11731179
stdout,

tool_config_files/other.json

-19
Original file line numberDiff line numberDiff line change
@@ -110,24 +110,5 @@
110110
}
111111
}
112112
]
113-
},
114-
"VoodooSMBus": {
115-
"versions": [
116-
{
117-
"version": "2.2",
118-
"links": {
119-
"debug": "https://github.com/VoodooSMBus/VoodooSMBus/releases/download/v2.2/VoodooSMBus-v2.2.zip",
120-
"release": "https://github.com/VoodooSMBus/VoodooSMBus/releases/download/v2.2/VoodooSMBus-v2.2.zip"
121-
},
122-
"hashes": {
123-
"debug": {
124-
"sha256": "a65d68b112ef89e262cb713af1f821d7eaa5978d3ef1a47f9d4d2338cbc6aa8e"
125-
},
126-
"release": {
127-
"sha256": "a65d68b112ef89e262cb713af1f821d7eaa5978d3ef1a47f9d4d2338cbc6aa8e"
128-
}
129-
}
130-
}
131-
]
132113
}
133114
}

tool_config_files/resource_list.json

-3
Original file line numberDiff line numberDiff line change
@@ -451,9 +451,6 @@
451451
"VoodooRMI.kext": {
452452
"parent": "VoodooRMI"
453453
},
454-
"VoodooSMBus.kext": {
455-
"parent": "VoodooSMBus"
456-
},
457454
"RMII2C.kext": {
458455
"parent": "VoodooRMI"
459456
},

0 commit comments

Comments
 (0)