aboutsummaryrefslogtreecommitdiff
path: root/program_info/win_install.nsi
blob: 18a1b64ec63a5314f6c4d9c363d26405f019bdb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
!include "FileFunc.nsh"
!include "MUI2.nsh"

Name "PolyMC"
InstallDir "$LOCALAPPDATA\PolyMC"
InstallDirRegKey HKCU "Software\PolyMC" "InstallDir"
RequestExecutionLevel user

;--------------------------------

; Pages

!insertmacro MUI_PAGE_WELCOME
!define MUI_COMPONENTSPAGE_NODESC
!insertmacro MUI_PAGE_COMPONENTS
!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_INSTFILES
!define MUI_FINISHPAGE_RUN "$InstDir\polymc.exe"
!insertmacro MUI_PAGE_FINISH

!insertmacro MUI_UNPAGE_CONFIRM
!insertmacro MUI_UNPAGE_INSTFILES

;--------------------------------

; Languages

!insertmacro MUI_LANGUAGE "English"

;--------------------------------

; The stuff to install
Section "PolyMC"

  SectionIn RO

  nsExec::Exec /TIMEOUT=2000 'TaskKill /IM polymc.exe /F'

  SetOutPath $INSTDIR

  File "polymc.exe"
  File "qt.conf"
  File *.dll
  File /r "iconengines"
  File /r "imageformats"
  File /r "jars"
  File /r "platforms"
  File /r "styles"

  ; Write the installation path into the registry
  WriteRegStr HKCU Software\PolyMC "InstallDir" "$INSTDIR"

  ; Write the uninstall keys for Windows
  !define UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\PolyMC"
  WriteRegStr HKCU "${UNINST_KEY}" "DisplayName" "PolyMC"
  WriteRegStr HKCU "${UNINST_KEY}" "DisplayIcon" "$INSTDIR\polymc.exe"
  WriteRegStr HKCU "${UNINST_KEY}" "UninstallString" '"$INSTDIR\uninstall.exe"'
  WriteRegStr HKCU "${UNINST_KEY}" "QuietUninstallString" '"$INSTDIR\uninstall.exe" /S'
  WriteRegStr HKCU "${UNINST_KEY}" "InstallLocation" "$INSTDIR"
  WriteRegStr HKCU "${UNINST_KEY}" "Publisher" "PolyMC Contributors"
  WriteRegStr HKCU "${UNINST_KEY}" "ProductVersion" "${VERSION}"
  ${GetSize} "$INSTDIR" "/S=0K" $0 $1 $2
  IntFmt $0 "0x%08X" $0
  WriteRegDWORD HKCU "${UNINST_KEY}" "EstimatedSize" "$0"
  WriteRegDWORD HKCU "${UNINST_KEY}" "NoModify" 1
  WriteRegDWORD HKCU "${UNINST_KEY}" "NoRepair" 1
  WriteUninstaller "$INSTDIR\uninstall.exe"

SectionEnd

Section "Start Menu Shortcuts"

  CreateShortcut "$SMPROGRAMS\PolyMC.lnk" "$INSTDIR\polymc.exe" "" "$INSTDIR\polymc.exe" 0

SectionEnd

Section /o "Portable"

  SetOutPath $INSTDIR
  File "portable.txt"

SectionEnd

;--------------------------------

; Uninstaller

Section "Uninstall"

  nsExec::Exec /TIMEOUT=2000 'TaskKill /IM polymc.exe /F'

  DeleteRegKey HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\PolyMC"
  DeleteRegKey HKCU SOFTWARE\PolyMC

  Delete $INSTDIR\polymc.exe
  Delete $INSTDIR\uninstall.exe
  Delete $INSTDIR\portable.txt

  Delete $INSTDIR\libbrotlicommon.dll
  Delete $INSTDIR\libbrotlidec.dll
  Delete $INSTDIR\libbz2-1.dll
  Delete $INSTDIR\libcrypto-1_1-x64.dll
  Delete $INSTDIR\libcrypto-1_1.dll
  Delete $INSTDIR\libdouble-conversion.dll
  Delete $INSTDIR\libfreetype-6.dll
  Delete $INSTDIR\libgcc_s_seh-1.dll
  Delete $INSTDIR\libgcc_s_dw2-1.dll
  Delete $INSTDIR\libglib-2.0-0.dll
  Delete $INSTDIR\libgraphite2.dll
  Delete $INSTDIR\libharfbuzz-0.dll
  Delete $INSTDIR\libiconv-2.dll
  Delete $INSTDIR\libicudt69.dll
  Delete $INSTDIR\libicuin69.dll
  Delete $INSTDIR\libicuuc69.dll
  Delete $INSTDIR\libintl-8.dll
  Delete $INSTDIR\libjasper-4.dll
  Delete $INSTDIR\libjpeg-8.dll
  Delete $INSTDIR\libmd4c.dll
  Delete $INSTDIR\libpcre-1.dll
  Delete $INSTDIR\libpcre2-16-0.dll
  Delete $INSTDIR\libpng16-16.dll
  Delete $INSTDIR\libssl-1_1-x64.dll
  Delete $INSTDIR\libssl-1_1.dll
  Delete $INSTDIR\libssp-0.dll
  Delete $INSTDIR\libstdc++-6.dll
  Delete $INSTDIR\libwebp-7.dll
  Delete $INSTDIR\libwebpdemux-2.dll
  Delete $INSTDIR\libwebpmux-3.dll
  Delete $INSTDIR\libwinpthread-1.dll
  Delete $INSTDIR\libzstd.dll
  Delete $INSTDIR\Qt5Core.dll
  Delete $INSTDIR\Qt5Gui.dll
  Delete $INSTDIR\Qt5Network.dll
  Delete $INSTDIR\Qt5Qml.dll
  Delete $INSTDIR\Qt5QmlModels.dll
  Delete $INSTDIR\Qt5Quick.dll
  Delete $INSTDIR\Qt5Svg.dll
  Delete $INSTDIR\Qt5WebSockets.dll
  Delete $INSTDIR\Qt5Widgets.dll
  Delete $INSTDIR\Qt5Xml.dll
  Delete $INSTDIR\zlib1.dll

  Delete $INSTDIR\qt.conf

  RMDir /r $INSTDIR\iconengines
  RMDir /r $INSTDIR\imageformats
  RMDir /r $INSTDIR\jars
  RMDir /r $INSTDIR\platforms
  RMDir /r $INSTDIR\styles

  Delete "$SMPROGRAMS\PolyMC.lnk"

  RMDir "$INSTDIR"

SectionEnd