We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a433ca4 commit 2c3c695Copy full SHA for 2c3c695
build.rs
@@ -8,13 +8,14 @@ fn main() {
8
9
let mut fh = fs::File::create(&outfile).unwrap();
10
11
+ let now = chrono::Local::now();
12
write!(
13
fh,
14
r#""v{} {}-{:02}-{:02}""#,
15
env!("CARGO_PKG_VERSION"),
- chrono::Local::now().year(),
16
- chrono::Local::now().month(),
17
- chrono::Local::now().day()
+ now.year(),
+ now.month(),
18
+ now.day()
19
)
20
.ok();
21
}
tool_config_files/dyn_res_list.zip
21 Bytes
tool_config_files/resource_list.json
@@ -448,6 +448,15 @@
448
"VoodooPS2Trackpad.kext": {
449
"parent": "VoodooPS2"
450
},
451
+ "VoodooRMI.kext": {
452
+ "parent": "VoodooRMI"
453
+ },
454
+ "RMII2C.kext": {
455
456
457
+ "RMISMBus.kext": {
458
459
460
"WhateverGreen.kext": {
461
"parent": "WhateverGreen"
462
0 commit comments