v1.0.1: fix start menu and shortcut bug

also, change default password, make file explorer last modified sane
This commit is contained in:
stjet
2025-03-17 02:49:30 +00:00
parent 668ce2ea6c
commit cdb35767ac
5 changed files with 15 additions and 4 deletions

View File

@@ -49,7 +49,7 @@ fn font_chars_to_alphas(dir: &str) {
fn main() {
//hash + "salt" password and add to build
let password = read_to_string("password.env").unwrap_or("incorrect mule lightbulb niche".to_string()).replace("\n", "") + "salt?sorrycryptographers";
let password = read_to_string("password.env").unwrap_or("password".to_string()).replace("\n", "") + "salt?sorrycryptographers";
let mut hasher = Blake2b512::new();
hasher.update(password.as_bytes());
let out_dir = env::var_os("OUT_DIR").unwrap();