20 lines
660 B
Plaintext
Executable File
20 lines
660 B
Plaintext
Executable File
# SPDX-FileCopyrightText: Florian Bruhin (The Compiler) <mail@qutebrowser.org>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
# NSIS pages header. Uses NsisMultiUser plugin and contains portions of
|
|
# its demo code, copyright 2017 Richard Drizin, Alex Mitev.
|
|
|
|
|
|
; Pages
|
|
!define MUI_UNABORTWARNING ; Show a confirmation when cancelling the installation
|
|
|
|
!define MULTIUSER_INSTALLMODE_CHANGE_MODE_FUNCTION un.PageInstallModeChangeMode
|
|
!insertmacro MULTIUSER_UNPAGE_INSTALLMODE
|
|
|
|
!define MUI_PAGE_CUSTOMFUNCTION_PRE un.PageComponentsPre
|
|
!define MUI_PAGE_CUSTOMFUNCTION_SHOW un.PageComponentsShow
|
|
!insertmacro MUI_UNPAGE_COMPONENTS
|
|
|
|
!insertmacro MUI_UNPAGE_INSTFILES
|