Desktop: Update metadata for compiled application binaries (#3453)

* change bin names

* set win product name

* Update Windows metadata

---------

Co-authored-by: Keavon Chambers <keavon@keavon.com>
This commit is contained in:
Timon
2025-12-08 01:57:55 +00:00
committed by GitHub
co-authored by Keavon Chambers
parent bba771bd08
commit 68a9bbced0
8 changed files with 43 additions and 13 deletions
+2 -3
View File
@@ -4,11 +4,10 @@ use std::path::{Path, PathBuf};
use crate::common::*;
const PACKAGE: &str = "graphite-desktop-platform-win";
const EXECUTABLE: &str = "graphite.exe";
const EXECUTABLE: &str = "Graphite.exe";
pub fn main() -> Result<(), Box<dyn Error>> {
let app_bin = build_bin(PACKAGE, None)?;
let app_bin = build_bin("graphite-desktop-platform-win", None)?;
let executable = bundle(&profile_path(), &app_bin);