feat: use bigger icon for windows installer

This commit is contained in:
Tien Do Nam
2024-07-24 11:58:32 +02:00
parent d01481b138
commit b67b96680b
5 changed files with 4 additions and 3 deletions
+2 -1
View File
@@ -1,8 +1,9 @@
## 1.15.2 (unreleased)
- feat: extract network scanning to separate threads, scanning should not cause UI lags anymore (@Tienisto)
- feat(windows): use bigger icon for the installer (@Tienisto)
- fix: memory leak when receiving files, properly receive files that exceed available RAM (@Tienisto)
- fix(android): save files outside Download folder (@Tienisto)
- fix(android): save files outside of Download folder (@Tienisto)
- fix(windows): make installer work on arm64 (@Tienisto)
## 1.15.1 (2024-07-18)
Binary file not shown.

Before

Width:  |  Height:  |  Size: 102 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

+1 -1
View File
@@ -27,7 +27,7 @@ DisableProgramGroupPage=yes
PrivilegesRequiredOverridesAllowed=dialog
OutputDir=D:\inno-result
OutputBaseFilename=localsend
SetupIconFile=D:\inno\logo-256.ico
SetupIconFile=D:\inno\logo.ico
Compression=lzma
SolidCompression=yes
WizardStyle=modern
+1 -1
View File
@@ -7,7 +7,7 @@ fvm flutter build windows
Remove-Item "D:\inno" -Force -Recurse -ErrorAction SilentlyContinue
New-Item -ItemType Directory -Force -Path "D:\inno"
Copy-Item -Path "build\windows\runner\Release\*" -Destination "D:\inno" -Recurse
Copy-Item -Path "assets\packaging\logo-256.ico" -Destination "D:\inno"
Copy-Item -Path "assets\packaging\logo.ico" -Destination "D:\inno"
cd ..