blob: e76a3609c46c6bce24b256401939b729876cd460 (
plain) (
blame)
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
|
; ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~
; UltraStar Deluxe Uninstaller: Main components
; ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~ ~+~
; Delete created Icons in startmenu
SetShellVarContext all
RMDir /r "$SMPROGRAMS\$ICONS_GROUP\"
; Delete created Icon on Desktop
Delete "$Desktop\Play UltraStar Deluxe.lnk"
Delete "$Desktop\UltraStar Deluxe spielen.lnk"
; Remove dirs
RMDir /r "$INSTDIR\plugins"
RMDir /r "$INSTDIR\themes"
RMDir /r "$INSTDIR\fonts"
RMDir /r "$INSTDIR\languages"
RMDir /r "$INSTDIR\visuals"
RMDir /r "$INSTDIR\resources"
RMDir /r "$INSTDIR\sounds"
; Remove old files from previous versions
IfFileExists $INSTDIR\ScoreConverter.exe 0 +2
Delete "$INSTDIR\ScoreConverter.exe"
IfFileExists $INSTDIR\USdx.exe 0 +2
Delete "$INSTDIR\USdx.exe"
IfFileExists $INSTDIR\covers.cache 0 +2
Delete "$INSTDIR\covers.cache"
; Delete remaining files
Delete "$INSTDIR\ScoreConverter.exe"
Delete "$INSTDIR\${exe}.exe"
Delete "$INSTDIR\ChangeLog.GERMAN.txt"
Delete "$INSTDIR\ChangeLog.txt"
Delete "$INSTDIR\LuaCommands.odt"
Delete "$INSTDIR\documentation.pdf"
Delete "$INSTDIR\license.txt"
Delete "$INSTDIR\README.txt"
Delete "$INSTDIR\screenshots.lnk"
Delete "$INSTDIR\playlists.lnk"
Delete "$INSTDIR\config.ini.lnk"
Delete "$INSTDIR\Error.log"
Delete "$INSTDIR\cover.db"
Delete "$INSTDIR\avcodec-52.dll"
Delete "$INSTDIR\avformat-52.dll"
Delete "$INSTDIR\avdevice-52.dll"
Delete "$INSTDIR\avutil-50.dll"
Delete "$INSTDIR\bass.dll"
Delete "$INSTDIR\freetype6.dll"
Delete "$INSTDIR\glew32.dll"
Delete "$INSTDIR\jpeg.dll"
Delete "$INSTDIR\libpng12-0.dll"
Delete "$INSTDIR\libprojectM.dll"
Delete "$INSTDIR\libtiff-3.dll"
Delete "$INSTDIR\lua5.1.dll"
Delete "$INSTDIR\lua51.dll"
Delete "$INSTDIR\pcre3.dll"
Delete "$INSTDIR\portaudio_x86.dll"
Delete "$INSTDIR\portmixer.dll"
Delete "$INSTDIR\projectM-cwrapper.dll"
Delete "$INSTDIR\SDL.dll"
Delete "$INSTDIR\SDL_image.dll"
Delete "$INSTDIR\SDL_ttf.dll"
Delete "$INSTDIR\sqlite3.dll"
Delete "$INSTDIR\swscale-0.dll"
Delete "$INSTDIR\zlib1.dll"
StrCpy $0 "$INSTDIR\songs"
Call un.DeleteIfEmpty
StrCpy $0 "$INSTDIR\covers"
Call un.DeleteIfEmpty
StrCpy $0 "$INSTDIR\screenshots"
Call un.DeleteIfEmpty
StrCpy $0 "$INSTDIR\playlists"
Call un.DeleteIfEmpty
; Clean up AppData
SetShellVarContext current
Delete "$APPDATA\ultrastardx\Error.log"
Delete "$APPDATA\ultrastardx\cover.db"
StrCpy $0 "$APPDATA\ultrastardx\covers"
Call un.DeleteIfEmpty
StrCpy $0 "$APPDATA\ultrastardx\songs"
Call un.DeleteIfEmpty
StrCpy $0 "$APPDATA\ultrastardx\screenshots"
Call un.DeleteIfEmpty
StrCpy $0 "$APPDATA\ultrastardx\playlists"
Call un.DeleteIfEmpty
StrCpy $0 "$APPDATA\ultrastardx"
Call un.DeleteIfEmpty
SetShellVarContext all
; Self delete:
Delete "$INSTDIR\Uninstall.exe"
StrCpy $0 "$INSTDIR"
Call un.DeleteIfEmpty
|