From 90ff183b22dfb46ce870e153ef4d7c5a99d8e8a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Janier=20Rodr=C3=ADguez?= Date: Fri, 4 Sep 2026 16:16:03 +0200 Subject: [PATCH 1/3] fix(gui): drop the client wording from the about box --- crates/gui/src/windows/about.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/gui/src/windows/about.rs b/crates/gui/src/windows/about.rs index 226de15..2eede7a 100644 --- a/crates/gui/src/windows/about.rs +++ b/crates/gui/src/windows/about.rs @@ -19,7 +19,7 @@ use crate::wgpu_render::{OverlayParams, WgpuRenderer}; const ABOUT_LINES: &[&str] = &[ "UDS Launcher", "Version: 5.0.0", - "UDS Client Launcher", + "UDS Connection Launcher", "", "Developed by Virtual Cable S.L.", "https://www.udsenterprise.com", From 8057e3a0f8ef6720335e59b7a1797ab09b36fdb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Janier=20Rodr=C3=ADguez?= Date: Fri, 4 Sep 2026 16:20:19 +0200 Subject: [PATCH 2/3] chore: rename the remaining UDS Client mentions to UDS Launcher Covers the public-key comment in the crypt crate, the CodeQL workspace name and the environment variables document. Comments and metadata only, no behaviour change. --- .github/codeql/codeql-config.yml | 2 +- crates/crypt/src/verify.rs | 2 +- doc/environment.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/codeql/codeql-config.yml b/.github/codeql/codeql-config.yml index e4cfccb..fd790b5 100644 --- a/.github/codeql/codeql-config.yml +++ b/.github/codeql/codeql-config.yml @@ -1,4 +1,4 @@ -name: "Rust UDS Client Workspace Analysis" +name: "Rust UDS Launcher Workspace Analysis" paths: - crates paths-ignore: diff --git a/crates/crypt/src/verify.rs b/crates/crypt/src/verify.rs index 2145556..3be1877 100644 --- a/crates/crypt/src/verify.rs +++ b/crates/crypt/src/verify.rs @@ -8,7 +8,7 @@ use base64::engine::{Engine as _, general_purpose::STANDARD}; use libcrux_ml_dsa::ml_dsa_65; -// UDS Client ML-DSA Public Key +// UDS Launcher ML-DSA Public Key static PUBLIC_KEY: &[u8] = include_bytes!("../public-key.bin"); pub fn verify_signature(message: &[u8], signature_b64: &str) -> Result<()> { diff --git a/doc/environment.md b/doc/environment.md index 7cecdd5..65930b5 100644 --- a/doc/environment.md +++ b/doc/environment.md @@ -1,6 +1,6 @@ -# UDS Client Environment Variables +# UDS Launcher Environment Variables -This document details the environment variables supported by the UDS client, classified by their functionality. +This document details the environment variables supported by the UDS launcher, classified by their functionality. --- From bf8450496e132eab646a72f445e7c5c6525c6c91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Janier=20Rodr=C3=ADguez?= Date: Fri, 4 Sep 2026 16:23:39 +0200 Subject: [PATCH 3/3] chore(build): rename the Windows builder image to udslauncher-builder Local Docker image tag only, no change to the produced binary. --- building/windows/build.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/building/windows/build.ps1 b/building/windows/build.ps1 index a17efa5..3a7d5bc 100644 --- a/building/windows/build.ps1 +++ b/building/windows/build.ps1 @@ -1,9 +1,9 @@ -# Ensure udsclient-builder is up up date +# Ensure udslauncher-builder is up up date # To be executed on building/windows/ directory -docker build -t udsclient-builder . +docker build -t udslauncher-builder . # Get full path of the ../.. directory (i.e., the root of the project) $projectDir = Convert-Path ../.. # Run the container with the current directory mounted -docker run --rm -v ${projectDir}:c:\crate -w /crate udsclient-builder cargo build --release +docker run --rm -v ${projectDir}:c:\crate -w /crate udslauncher-builder cargo build --release # Note: the target/release/launcher.exe binary will be created \ No newline at end of file