aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/main.go (unfollow)
Commit message (Collapse)AuthorFilesLines
2024-10-17build: make code signing method configurableSimon Rozman4-9/+9
Existing code signing was hard-coded to use a locally installed certificate (hardware security dongles included). However, signtool.exe is extensible to allow any kind of digest signing plugin with /dlib and /dmdf switches. This is used for cloud-based code signing (e.g. Microsoft Trusted Signing). Signed-off-by: Simon Rozman <simon@rozman.si>
2024-09-04installer: update WiX Toolset download URL and versionSimon Rozman1-1/+1
The version 3.14.0.4118 we were using is no longer available for download. Signed-off-by: Simon Rozman <simon@rozman.si>
2024-09-04locales: sync with crowdinSimon Rozman23-3571/+18916
Signed-off-by: Simon Rozman <simon@rozman.si>
2023-01-23fetcher: add /noprompt switchSimon Rozman1-2/+18
Deploying WireGuard MSI using Microsoft Endpoint Manager (aka MS Intune) falls short with poor Microsoft Endpoint Manager support: no ARM64 support, requires multiple per-architecture deployments... Fetcher proves super-useful for automating WireGuard install. It contains platform selection logic, MSI download, integrity check... However, automated installation is an unattended process and the wireguard-installer.exe must not block the process for any user prompts. Signed-off-by: Simon Rozman <simon@rozman.si>