mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-11-28 03:47:37 +03:00
chore(cli/deps): update nsis-tauri-utils
to 0.3
(#9604)
This commit is contained in:
parent
3f08054885
commit
128c580009
5
.changes/bundler-nsis-tauri-utils.md
Normal file
5
.changes/bundler-nsis-tauri-utils.md
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
'tauri-bundler': 'patch:enhance'
|
||||||
|
---
|
||||||
|
|
||||||
|
Update `nsis_tauri_utils` plugin to `0.3` and use the built-in NSIS download plugin, which reduces the NSIS installer size by 775kb.
|
@ -2,4 +2,4 @@
|
|||||||
'tauri-bundler': 'patch:enhance'
|
'tauri-bundler': 'patch:enhance'
|
||||||
---
|
---
|
||||||
|
|
||||||
Use nsis's built-in com plugin instead of ApplicationID plugin, this reduces the installer size by 150-200 KB, and also fixes pinned shortcut not getting cleaned up on uninstall
|
Use nsis's built-in COM plugin instead of `ApplicationID` plugin, this reduces the installer size by 100 KB, and also fixes pinned shortcut not getting cleaned up on uninstall.
|
||||||
|
@ -34,8 +34,8 @@ const NSIS_URL: &str =
|
|||||||
#[cfg(target_os = "windows")]
|
#[cfg(target_os = "windows")]
|
||||||
const NSIS_SHA1: &str = "057e83c7d82462ec394af76c87d06733605543d4";
|
const NSIS_SHA1: &str = "057e83c7d82462ec394af76c87d06733605543d4";
|
||||||
const NSIS_TAURI_UTILS_URL: &str =
|
const NSIS_TAURI_UTILS_URL: &str =
|
||||||
"https://github.com/tauri-apps/nsis-tauri-utils/releases/download/nsis_tauri_utils-v0.2.2/nsis_tauri_utils.dll";
|
"https://github.com/tauri-apps/nsis-tauri-utils/releases/download/nsis_tauri_utils-v0.3.0/nsis_tauri_utils.dll";
|
||||||
const NSIS_TAURI_UTILS_SHA1: &str = "16DF1D1A5B4D5DF3859447279C55BE36D4109DFB";
|
const NSIS_TAURI_UTILS_SHA1: &str = "01E48D6429B48B640230C6CE8F257C84758943AA";
|
||||||
|
|
||||||
#[cfg(target_os = "windows")]
|
#[cfg(target_os = "windows")]
|
||||||
const NSIS_REQUIRED_FILES: &[&str] = &[
|
const NSIS_REQUIRED_FILES: &[&str] = &[
|
||||||
|
@ -459,7 +459,7 @@ Section WebView2
|
|||||||
!if "${INSTALLWEBVIEW2MODE}" == "downloadBootstrapper"
|
!if "${INSTALLWEBVIEW2MODE}" == "downloadBootstrapper"
|
||||||
Delete "$TEMP\MicrosoftEdgeWebview2Setup.exe"
|
Delete "$TEMP\MicrosoftEdgeWebview2Setup.exe"
|
||||||
DetailPrint "$(webview2Downloading)"
|
DetailPrint "$(webview2Downloading)"
|
||||||
nsis_tauri_utils::download "https://go.microsoft.com/fwlink/p/?LinkId=2124703" "$TEMP\MicrosoftEdgeWebview2Setup.exe"
|
NSISdl::download "https://go.microsoft.com/fwlink/p/?LinkId=2124703" "$TEMP\MicrosoftEdgeWebview2Setup.exe"
|
||||||
Pop $0
|
Pop $0
|
||||||
${If} $0 == 0
|
${If} $0 == 0
|
||||||
DetailPrint "$(webview2DownloadSuccess)"
|
DetailPrint "$(webview2DownloadSuccess)"
|
||||||
|
Loading…
Reference in New Issue
Block a user