diff options
| author | David Lönnhager <david.l@mullvad.net> | 2025-04-28 15:05:36 +0200 |
|---|---|---|
| committer | David Lönnhager <david.l@mullvad.net> | 2025-04-28 15:05:36 +0200 |
| commit | f1dec970bc43daaf14aef102bcc48b3d6667461d (patch) | |
| tree | 6c3ed0d86b259033ef9f472225bb23f3682b9965 | |
| parent | 0768ae9f080eadb12ee193ac34b291a1dd5591be (diff) | |
| parent | fc3f78bd98038561dcf58903146eb455f7c920a4 (diff) | |
| download | mullvadvpn-f1dec970bc43daaf14aef102bcc48b3d6667461d.tar.xz mullvadvpn-f1dec970bc43daaf14aef102bcc48b3d6667461d.zip | |
Merge branch 'rename-downloader'
| -rw-r--r-- | installer-downloader/CHANGELOG.md | 2 | ||||
| -rwxr-xr-x | installer-downloader/build.sh | 4 | ||||
| -rw-r--r-- | installer-downloader/loader.manifest | 4 | ||||
| -rw-r--r-- | installer-downloader/src/cacao_impl/mod.rs | 2 | ||||
| -rw-r--r-- | installer-downloader/src/log.rs | 2 | ||||
| -rw-r--r-- | installer-downloader/src/resource.rs | 2 |
6 files changed, 9 insertions, 7 deletions
diff --git a/installer-downloader/CHANGELOG.md b/installer-downloader/CHANGELOG.md index c9aefe3ba2..5749bffa2a 100644 --- a/installer-downloader/CHANGELOG.md +++ b/installer-downloader/CHANGELOG.md @@ -20,6 +20,8 @@ Line wrap the file at 100 chars. Th * **Security**: in case of vulnerabilities. ## [Unreleased] +### Changed +- Changed title to "Mullvad VPN loader". ## [0.2.0] - 2025-04-08 - Initial support for downloading and installing the latest version of the Mullvad VPN app on diff --git a/installer-downloader/build.sh b/installer-downloader/build.sh index 08a4d28d74..727180f2a0 100755 --- a/installer-downloader/build.sh +++ b/installer-downloader/build.sh @@ -32,7 +32,7 @@ BUILD_DIR="$SCRIPT_DIR/build" # Successfully built (and signed) artifacts DIST_DIR="$SCRIPT_DIR/../dist" -BUNDLE_NAME="MullvadVPNInstaller" +BUNDLE_NAME="MullvadVPNLoader" BUNDLE_ID="net.mullvad.$BUNDLE_NAME" FILENAME="Install Mullvad VPN" @@ -296,7 +296,7 @@ function sign_win { log_info "Signing $binary..." if signtool sign \ -tr http://timestamp.digicert.com -td sha256 \ - -fd sha256 -d "Mullvad VPN installer" \ + -fd sha256 -d "Mullvad VPN loader" \ -du "https://github.com/mullvad/mullvadvpn-app#readme" \ -sha1 "$CERT_HASH" "$binary" then diff --git a/installer-downloader/loader.manifest b/installer-downloader/loader.manifest index feedbf9bc0..1de93198da 100644 --- a/installer-downloader/loader.manifest +++ b/installer-downloader/loader.manifest @@ -12,10 +12,10 @@ <assemblyIdentity version="1.0.0.0" processorArchitecture="*" - name="Mullvad.MullvadVPN.Installer" + name="Mullvad.MullvadVPN.Loader" type="win32" /> -<description>Web installer</description> +<description>Mullvad VPN app downloader</description> <dependency> <dependentAssembly> <assemblyIdentity diff --git a/installer-downloader/src/cacao_impl/mod.rs b/installer-downloader/src/cacao_impl/mod.rs index 9bd044d5fa..5695049609 100644 --- a/installer-downloader/src/cacao_impl/mod.rs +++ b/installer-downloader/src/cacao_impl/mod.rs @@ -8,7 +8,7 @@ mod delegate; mod ui; pub fn main() { - let app = App::new("net.mullvad.MullvadVPNInstaller", AppImpl::default()); + let app = App::new("net.mullvad.MullvadVPNLoader", AppImpl::default()); // Load "global" values and resources let environment = match Environment::load() { diff --git a/installer-downloader/src/log.rs b/installer-downloader/src/log.rs index 5e1cd8c861..c20804bc5f 100644 --- a/installer-downloader/src/log.rs +++ b/installer-downloader/src/log.rs @@ -3,7 +3,7 @@ use fern::Dispatch; use log::LevelFilter; use std::{io, path::PathBuf}; -const LOG_FILENAME: &str = "mullvad-installer.log"; +const LOG_FILENAME: &str = "mullvad-loader.log"; pub fn init() -> Result<(), fern::InitError> { Dispatch::new() diff --git a/installer-downloader/src/resource.rs b/installer-downloader/src/resource.rs index 69c1e95e0f..393218b5b1 100644 --- a/installer-downloader/src/resource.rs +++ b/installer-downloader/src/resource.rs @@ -4,7 +4,7 @@ pub const VERSION: &str = env!("CARGO_PKG_VERSION"); /// Window title -pub const WINDOW_TITLE: &str = "Mullvad VPN installer"; +pub const WINDOW_TITLE: &str = "Mullvad VPN loader"; /// Window width pub const WINDOW_WIDTH: usize = 600; /// Window height |
