diff options
author | Jacek Antonelli | 2008-08-15 23:46:01 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:46:01 -0500 |
commit | ae88605f72ef43be7b619b8c1c11a508ebae5057 (patch) | |
tree | f27474fe2d1186124211e2a5b2ad31927a3ab5bc /linden/indra/newview/installers | |
parent | Second Life viewer sources 1.20.13 (diff) | |
download | meta-impy-ae88605f72ef43be7b619b8c1c11a508ebae5057.zip meta-impy-ae88605f72ef43be7b619b8c1c11a508ebae5057.tar.gz meta-impy-ae88605f72ef43be7b619b8c1c11a508ebae5057.tar.bz2 meta-impy-ae88605f72ef43be7b619b8c1c11a508ebae5057.tar.xz |
Second Life viewer sources 1.20.14
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/installers/windows/installer_template.nsi | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/linden/indra/newview/installers/windows/installer_template.nsi b/linden/indra/newview/installers/windows/installer_template.nsi index 836780d..d1c8d0c 100644 --- a/linden/indra/newview/installers/windows/installer_template.nsi +++ b/linden/indra/newview/installers/windows/installer_template.nsi | |||
@@ -111,6 +111,10 @@ Call RemoveNSIS ; Check for old NSIS install to remove | |||
111 | Call RemoveOldShaders | 111 | Call RemoveOldShaders |
112 | 112 | ||
113 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 113 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
114 | ;;; Need to clean out old XUI files that predate skinning | ||
115 | Call RemoveOldXUI | ||
116 | |||
117 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
114 | ;;; Files | 118 | ;;; Files |
115 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 119 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
116 | ;; This placeholder is replaced by the complete list of all the files in the installer, by viewer_manifest.py | 120 | ;; This placeholder is replaced by the complete list of all the files in the installer, by viewer_manifest.py |
@@ -489,6 +493,22 @@ RMDir /r "$INSTDIR\app_settings\shaders\*" | |||
489 | FunctionEnd | 493 | FunctionEnd |
490 | 494 | ||
491 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 495 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
496 | ;;; Delete the installed XUI files | ||
497 | ;;; We've changed the directory hierarchy for skins, putting all XUI and texture | ||
498 | ;;; files under a specific skin directory, i.e. skins/default/xui/en-us as opposed | ||
499 | ;;; to skins/xui/en-us. Need to clean up the old path when upgrading | ||
500 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
501 | Function RemoveOldXUI | ||
502 | |||
503 | ;; remove old XUI and texture files | ||
504 | RmDir /r "$INSTDIR\skins\html" | ||
505 | RmDir /r "$INSTDIR\skins\xui" | ||
506 | RmDir /r "$INSTDIR\skins\textures" | ||
507 | Delete "$INSTDIR\skins\*.txt" | ||
508 | |||
509 | FunctionEnd | ||
510 | |||
511 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
492 | ; Delete files in Documents and Settings\<user>\SecondLife | 512 | ; Delete files in Documents and Settings\<user>\SecondLife |
493 | ; Delete files in Documents and Settings\All Users\SecondLife | 513 | ; Delete files in Documents and Settings\All Users\SecondLife |
494 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 514 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |