Skip to content

Commit

Permalink
nsis
Browse files Browse the repository at this point in the history
  • Loading branch information
FabianLars committed Sep 12, 2024
1 parent fc783ff commit 65c9f03
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .changes/fix-tauri-build-filedescription.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
tauri-build: 'patch:bug'
tauri-bundler: 'patch:bug'
---

The executable on Windows will now use the `productName` config for the `FileDescription` property instead of `shortDescription`.
The executable and NSIS installer on Windows will now use the `productName` config for the `FileDescription` property instead of `shortDescription`.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ ${StrLoc}
!define PRODUCTNAME "{{product_name}}"
!define VERSION "{{version}}"
!define VERSIONWITHBUILD "{{version_with_build}}"
!define SHORTDESCRIPTION "{{short_description}}"
!define HOMEPAGE "{{homepage}}"
!define INSTALLMODE "{{install_mode}}"
!define LICENSE "{{license}}"
Expand Down Expand Up @@ -78,7 +77,7 @@ InstallDir "${PLACEHOLDER_INSTALL_DIR}"

VIProductVersion "${VERSIONWITHBUILD}"
VIAddVersionKey "ProductName" "${PRODUCTNAME}"
VIAddVersionKey "FileDescription" "${SHORTDESCRIPTION}"
VIAddVersionKey "FileDescription" "${PRODUCTNAME}"
VIAddVersionKey "LegalCopyright" "${COPYRIGHT}"
VIAddVersionKey "FileVersion" "${VERSION}"
VIAddVersionKey "ProductVersion" "${VERSION}"
Expand Down

0 comments on commit 65c9f03

Please sign in to comment.