mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-19 05:59:16 -04:00
* fix `spacedrive://` custom protocol on Windows (hopefully) * custom protocol using `http::Response` + fix broken web * import patches before App on web * use `http::Request` for input to `handle_custom_uri` * break into dedicated file + error handling * serving files via custom protocol * cargo fmt because vscode did cringe * lru cache to reduce video chunk request time * add helper to JS * clippy be like * remove duplicate Open buttons in context menu * fix Linux 🙏 * no shot * fix Windows custom URI passing (hopefully) * better fix for custom uri on Linux * upgrade Tauri for feature * switch url replacement order * prevent React dev tools script being added in prod to desktop * remove React devtools from html * upgrade Tauri; required upgrading rspc, Axum, PCR * pass typecheck + less cringe bigint * clippy is love, clippy is life * Typecheck plz * fix bigint to number conversion * use httpz + localhost server for Linux * clippy be right * Remove console.log * [wip] proper auth * fix Linux sidebar padding * Secure Axum server with random * Extracting app setup specific to linux to a different file * remove outdated comment * Some tweaks on cursom_uri.rs * file_path_with_location doesn't need to be a named include * fix typo * factually wrong comment * Change `unwrap` to `expect` * bruh --------- Co-authored-by: Ericson Soares <ericson.ds999@gmail.com>
12 lines
382 B
Rust
12 lines
382 B
Rust
use std::process::Command;
|
|
|
|
fn main() {
|
|
let output = Command::new("git")
|
|
.args(["rev-parse", "--short", "HEAD"])
|
|
.output()
|
|
.expect("error getting git hash. Does `git rev-parse --short HEAD` work for you?");
|
|
let git_hash = String::from_utf8(output.stdout)
|
|
.expect("Error passing output of `git rev-parse --short HEAD`");
|
|
println!("cargo:rustc-env=GIT_HASH={git_hash}");
|
|
}
|