mirror of
https://github.com/developersu/ns-usbloader.git
synced 2025-05-17 16:45:11 -04:00
Switch to Java 11. Add win installer
This commit is contained in:
parent
ffa9c6903f
commit
c408f70b79
12 changed files with 1301 additions and 25 deletions
158
misc/windows/NSIS/installer.nsi
Normal file
158
misc/windows/NSIS/installer.nsi
Normal file
|
@ -0,0 +1,158 @@
|
|||
;Include Modern UI
|
||||
!include "MUI.nsh"
|
||||
Unicode true
|
||||
;Name and file
|
||||
|
||||
!define APPNAME "NS-USBloader"
|
||||
!define COMPANYNAME "Dmitry Isaenko"
|
||||
!define VERSIONMAJOR 0
|
||||
!define VERSIONMINOR 0
|
||||
!define VERSIONBUILD 0
|
||||
|
||||
Name "NS-USBloader"
|
||||
OutFile "Installer.exe"
|
||||
|
||||
;Default installation folder
|
||||
InstallDir "$PROGRAMFILES\${APPNAME}"
|
||||
|
||||
;Get installation folder from registry if available
|
||||
InstallDirRegKey HKCU "Software\${APPNAME}" ""
|
||||
|
||||
;Request application privileges for Windows Vista
|
||||
RequestExecutionLevel admin
|
||||
|
||||
!define MUI_ICON installer_logo.ico
|
||||
!define MUI_UNICON uninstaller_logo.ico
|
||||
; !define MUI_FINISHPAGE_NOAUTOCLOSE
|
||||
|
||||
!define MUI_WELCOMEFINISHPAGE_BITMAP "leftbar.bmp"
|
||||
!define MUI_UNWELCOMEFINISHPAGE_BITMAP "leftbar_uninstall.bmp"
|
||||
|
||||
!define MUI_FINISHPAGE_LINK "NS-USBloader at GitHub"
|
||||
!define MUI_FINISHPAGE_LINK_LOCATION https://github.com/developersu/NS-USBloader/
|
||||
|
||||
!define MUI_FINISHPAGE_RUN "$INSTDIR\NS-USBloader.exe"
|
||||
!define MUI_FINISHPAGE_SHOWREADME
|
||||
!define MUI_FINISHPAGE_SHOWREADME_TEXT $(l10n_CreateShortcut)
|
||||
!define MUI_FINISHPAGE_SHOWREADME_FUNCTION CreateDesktopShortCut
|
||||
!define MUI_FINISHPAGE_SHOWREADME_NOTCHECKED
|
||||
;--------------------------------
|
||||
;Interface Settings
|
||||
|
||||
!define MUI_ABORTWARNING
|
||||
;--------------------------------
|
||||
;Language Selection Dialog Settings
|
||||
|
||||
;Remember the installer language
|
||||
!define MUI_LANGDLL_REGISTRY_ROOT "HKCU"
|
||||
!define MUI_LANGDLL_REGISTRY_KEY "Software\${APPNAME}"
|
||||
!define MUI_LANGDLL_REGISTRY_VALUENAME "Installer Language"
|
||||
|
||||
;--------------------------------
|
||||
;Pages
|
||||
;!define MUI_HEADERIMAGE
|
||||
;!define MUI_HEADERIMAGE_RIGHTi
|
||||
;!define MUI_HEADERIMAGE_BITMAP "install_header.bmp"
|
||||
;!define MUI_HEADERIMAGE_UNBITMAP "install_header.bmp"
|
||||
|
||||
!insertmacro MUI_PAGE_WELCOME
|
||||
!insertmacro MUI_PAGE_LICENSE "license.txt"
|
||||
!insertmacro MUI_PAGE_DIRECTORY
|
||||
!insertmacro MUI_PAGE_INSTFILES
|
||||
!insertmacro MUI_PAGE_FINISH
|
||||
|
||||
!insertmacro MUI_UNPAGE_CONFIRM
|
||||
!insertmacro MUI_UNPAGE_INSTFILES
|
||||
!insertmacro MUI_UNPAGE_FINISH
|
||||
|
||||
;--------------------------------
|
||||
;Languages
|
||||
!insertmacro MUI_LANGUAGE "English"
|
||||
!insertmacro MUI_LANGUAGE "Russian"
|
||||
!insertmacro MUI_LANGUAGE "SpanishInternational"
|
||||
!insertmacro MUI_LANGUAGE "SimpChinese"
|
||||
!insertmacro MUI_LANGUAGE "TradChinese"
|
||||
!insertmacro MUI_LANGUAGE "Japanese"
|
||||
!insertmacro MUI_LANGUAGE "Korean"
|
||||
!insertmacro MUI_LANGUAGE "Italian"
|
||||
!insertmacro MUI_LANGUAGE "PortugueseBR"
|
||||
!insertmacro MUI_LANGUAGE "Vietnamese"
|
||||
!insertmacro MUI_LANGUAGE "Arabic"
|
||||
!insertmacro MUI_LANGUAGE "Czech"
|
||||
!insertmacro MUI_LANGUAGE "Romanian"
|
||||
!insertmacro MUI_LANGUAGE "French"
|
||||
!insertmacro MUI_LANGUAGE "Swedish"
|
||||
|
||||
;Language strings
|
||||
LangString l10n_CreateShortcut ${LANG_ENGLISH} "Create Desktop Shortcut"
|
||||
LangString l10n_CreateShortcut ${LANG_RUSSIAN} "Создать ярлык на Рабочем столе"
|
||||
|
||||
;--------------------------------
|
||||
Section "NS-USBloader" Install
|
||||
|
||||
SetOutPath "$INSTDIR"
|
||||
file /r jdk
|
||||
file NS-USBloader.exe
|
||||
file logo.ico
|
||||
|
||||
; Registry information for add/remove programs
|
||||
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "DisplayName" "${APPNAME}"
|
||||
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "UninstallString" "$\"$INSTDIR\uninstall.exe$\""
|
||||
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "DisplayIcon" "$\"$INSTDIR\logo.ico$\""
|
||||
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}" "Publisher" "$\"${COMPANYNAME}$\""
|
||||
|
||||
; Start Menu
|
||||
CreateDirectory "$SMPROGRAMS\${APPNAME}"
|
||||
CreateShortCut "$SMPROGRAMS\${APPNAME}\${APPNAME}.lnk" "$INSTDIR\NS-USBloader.exe" "" "$INSTDIR\logo.ico"
|
||||
CreateShortCut "$SMPROGRAMS\${APPNAME}\Uninstall.lnk" "$INSTDIR\Uninstall.exe"
|
||||
|
||||
;Store installation folder
|
||||
WriteRegStr HKCU "Software\${APPNAME}" "" $INSTDIR
|
||||
|
||||
;Create uninstaller
|
||||
WriteUninstaller "$INSTDIR\Uninstall.exe"
|
||||
|
||||
SectionEnd
|
||||
;--------------------------------
|
||||
;Installer Functions
|
||||
|
||||
Function .onInit
|
||||
; set mandatory installation rule to section
|
||||
SectionSetFlags ${Install} 17
|
||||
FunctionEnd
|
||||
|
||||
Function un.onInit
|
||||
!insertmacro MUI_UNGETLANGUAGE
|
||||
FunctionEnd
|
||||
|
||||
|
||||
Function CreateDesktopShortCut
|
||||
CreateShortcut "$DESKTOP\NS-USBloader.lnk" "$INSTDIR\NS-USBloader.exe"
|
||||
FunctionEnd
|
||||
|
||||
;--------------------------------
|
||||
;Uninstaller Section
|
||||
|
||||
Section "Uninstall"
|
||||
|
||||
; Start Menu
|
||||
Delete "$SMPROGRAMS\${APPNAME}\${APPNAME}.lnk"
|
||||
Delete "$SMPROGRAMS\${APPNAME}\Uninstall.lnk"
|
||||
Delete "$DESKTOP\NS-USBloader.lnk"
|
||||
rmDir "$SMPROGRAMS\${APPNAME}"
|
||||
|
||||
;Delete installed files
|
||||
RMDir /r "$INSTDIR\jdk\*"
|
||||
Delete "$INSTDIR\NS-USBloader.exe"
|
||||
Delete "$INSTDIR\logo.ico"
|
||||
Delete "$SMPROGRAMS\Uninstall.exe"
|
||||
|
||||
RMDir "$INSTDIR"
|
||||
|
||||
DeleteRegKey /ifempty HKCU "Software\${APPNAME}"
|
||||
; Cleanup records stored for uninstaller from the registry
|
||||
DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APPNAME}"
|
||||
|
||||
SectionEnd
|
||||
;--------------------------------
|
||||
;Uninstaller Functions
|
BIN
misc/windows/NSIS/installer_logo.ico
Normal file
BIN
misc/windows/NSIS/installer_logo.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 125 KiB |
BIN
misc/windows/NSIS/leftbar.bmp
Normal file
BIN
misc/windows/NSIS/leftbar.bmp
Normal file
Binary file not shown.
After Width: | Height: | Size: 151 KiB |
BIN
misc/windows/NSIS/leftbar_uninstall.bmp
Normal file
BIN
misc/windows/NSIS/leftbar_uninstall.bmp
Normal file
Binary file not shown.
After Width: | Height: | Size: 151 KiB |
1070
misc/windows/NSIS/license.txt
Normal file
1070
misc/windows/NSIS/license.txt
Normal file
File diff suppressed because it is too large
Load diff
BIN
misc/windows/NSIS/logo.ico
Normal file
BIN
misc/windows/NSIS/logo.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 105 KiB |
BIN
misc/windows/NSIS/uninstaller_logo.ico
Normal file
BIN
misc/windows/NSIS/uninstaller_logo.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 114 KiB |
Loading…
Add table
Add a link
Reference in a new issue