Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/codeql/codeql-config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Rust UDS Client Workspace Analysis"
name: "Rust UDS Launcher Workspace Analysis"
paths:
- crates
paths-ignore:
Expand Down
6 changes: 3 additions & 3 deletions building/windows/build.ps1
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion crates/crypt/src/verify.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<()> {
Expand Down
2 changes: 1 addition & 1 deletion crates/gui/src/windows/about.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions doc/environment.md
Original file line number Diff line number Diff line change
@@ -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.

---

Expand Down
Loading