diff --git a/LICENSE.txt b/LICENSE.txt index c8402a7..118dac6 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -3,6 +3,7 @@ MIT License Copyright (c) 2017 chaeplin Copyright (c) 2017 Bertrand256 Copyright (c) 2017-2019 Random.Zebra (https://github.com/random-zebra/) +Copyright (c) 2019-2024 The PIVX Core developers Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/img/nsis-header.bmp b/img/nsis-header.bmp new file mode 100644 index 0000000..91fd570 Binary files /dev/null and b/img/nsis-header.bmp differ diff --git a/img/nsis-wizard.bmp b/img/nsis-wizard.bmp new file mode 100644 index 0000000..c22d781 Binary files /dev/null and b/img/nsis-wizard.bmp differ diff --git a/img/spmt.ico b/img/spmt.ico index 65023c6..c043bd9 100644 Binary files a/img/spmt.ico and b/img/spmt.ico differ diff --git a/setup.nsi b/setup.nsi index 1184242..a0ea10c 100644 --- a/setup.nsi +++ b/setup.nsi @@ -1,4 +1,5 @@ ; Helper defines. PRODUCT_VERSION is parsed by reading src/version.txt. +Unicode True !searchparse /file src/version.txt `"number": "` VER_MAJOR `.` VER_MINOR `.` VER_REV `"` !searchparse /file src/version.txt `"tag": "` VER_TAG `"` !define PRODUCT_NAME "SPMT" @@ -18,7 +19,12 @@ SetCompressor /SOLID lzma ; MUI Settings !define MUI_ABORTWARNING !define MUI_ICON "img\spmt.ico" +!define MUI_WELCOMEFINISHPAGE_BITMAP "img\nsis-wizard.bmp" +!define MUI_HEADERIMAGE +!define MUI_HEADERIMAGE_RIGHT +!define MUI_HEADERIMAGE_BITMAP "img\nsis-header.bmp" !define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\modern-uninstall.ico" +!define MUI_UNWELCOMEFINISHPAGE_BITMAP "img\nsis-wizard.bmp" !insertmacro MUI_PAGE_WELCOME !insertmacro MUI_PAGE_LICENSE "LICENSE.txt" @@ -110,4 +116,4 @@ Function .onInit MessageBox MB_OK|MB_ICONSTOP "Cannot install SPMT on a 32-bit system." Abort ${EndIf} -FunctionEnd \ No newline at end of file +FunctionEnd