mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Merge pull request #2283 from EraYaN/nsis-create-speedup
Change NSIS log verbosity and use lesser but faster compression.
This commit is contained in:
commit
884c3e5614
@ -15,6 +15,8 @@ param(
|
|||||||
[ValidateSet('x64','x86', 'arm', 'arm64')][string]$Architecture = 'x64'
|
[ValidateSet('x64','x86', 'arm', 'arm64')][string]$Architecture = 'x64'
|
||||||
)
|
)
|
||||||
|
|
||||||
|
$ProgressPreference = 'SilentlyContinue' # Speedup all downloads by hiding progress bars.
|
||||||
|
|
||||||
#PowershellCore and *nix check to make determine which temp dir to use.
|
#PowershellCore and *nix check to make determine which temp dir to use.
|
||||||
if(($PSVersionTable.PSEdition -eq 'Core') -and (-not $IsWindows)){
|
if(($PSVersionTable.PSEdition -eq 'Core') -and (-not $IsWindows)){
|
||||||
$TempDir = mktemp -d
|
$TempDir = mktemp -d
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
; Shows a lot of debug information while compiling
|
!verbose 3
|
||||||
; This can be removed once stable.
|
SetCompressor /SOLID bzip2
|
||||||
!verbose 4
|
|
||||||
SetCompressor lzma
|
|
||||||
ShowInstDetails show
|
ShowInstDetails show
|
||||||
ShowUninstDetails show
|
ShowUninstDetails show
|
||||||
|
Unicode True
|
||||||
|
|
||||||
;--------------------------------
|
;--------------------------------
|
||||||
!define SF_USELECTED 0 ; used to check selected options status, rest are inherited from Sections.nsh
|
!define SF_USELECTED 0 ; used to check selected options status, rest are inherited from Sections.nsh
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user