mirror of
https://github.com/libretro/pcsx2.git
synced 2025-01-30 05:52:31 +00:00
6d691b63f5
- Removed vcredist 2008-sp1 and 2010, added vcredist 2010 sp1. - GSdx DLLs rename (+"32"), added avx. - Version to 1.0.0. - Uninstaller: bios removal now has own checkbox (can now remove everything and keep bios). - Uninstaller: registry is cleaned first (better for next install in case uninstall fails for some reason). TODO/ToTest: - Test upgrade from 0.98, 0.97. - Got few crashes and/or errors if files/folders were in use while uninstalling. Look into that. - First install on a clean system: test that first-time-wizard appears (i didn't get the ftw, I possibly had stuff from previous incomplete uninstall). - Add an option to run pcsx2 when the installer completes? - readme/faq have "0.9.8" in filename, but the installer refers to <version>, check if/when it's used. - Cheats folder created at program files. consider at mydocs? - Cheats folder contains what appears to be a valid pnach file for personas 4 (inf health etc). do we want that packaged? - Do we want to mirror vcredist 2010sp1 on pcsx2.code.google/files? (older redists are mirrored). - Change the installer logo to the one used everywhere else? - See if we can use the best gsdx version selected initially (my system supports sse4, but it selects the sse2 dll by default at ftw). - Default KB config for lilypad? all other plugins can work without configuring manually, but without a controller configured, it's very meh. See what we can do about it. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@5271 96395faa-99c1-11dd-bbfe-3dabce05a288
59 lines
1.9 KiB
NSIS
59 lines
1.9 KiB
NSIS
; =======================================================================
|
|
; Un.Installer Sections
|
|
; =======================================================================
|
|
; (currently web and main installers share the same uninstaller behavior. This
|
|
; may change in the future, though I doubt it.)
|
|
|
|
; -----------------------------------------------------------------------
|
|
Section "Un.Program and Plugins ${APP_NAME}"
|
|
|
|
SetShellVarContext all
|
|
; First thing, remove the registry entry in case uninstall doesn't complete successfully
|
|
; otherwise, pcsx2 will be "confused" if it's re-installed later.
|
|
DeleteRegKey HKCU Software\PCSX2
|
|
|
|
!insertmacro UNINSTALL.LOG_UNINSTALL "$INSTDIR"
|
|
|
|
; Remove uninstaller info reg key ( Wow6432Node on 64bit Windows! )
|
|
DeleteRegKey HKLM "${INSTDIR_REG_KEY}"
|
|
|
|
Call un.removeShorties
|
|
|
|
!insertmacro UNINSTALL.LOG_UNINSTALL "$INSTDIR\Langs"
|
|
!insertmacro UNINSTALL.LOG_UNINSTALL "$INSTDIR\Plugins"
|
|
!insertmacro UNINSTALL.LOG_UNINSTALL "$INSTDIR\Docs"
|
|
!insertmacro UNINSTALL.LOG_UNINSTALL "$INSTDIR\Cheats"
|
|
|
|
; Remove files and registry key that store PCSX2 paths configurations
|
|
SetShellVarContext current
|
|
Delete $DOCUMENTS\PCSX2\inis\PCSX2_ui.ini
|
|
|
|
SectionEnd
|
|
|
|
; /o for optional and unticked by default
|
|
Section /o "Un.Configuration files (Program and Plugins)"
|
|
|
|
SetShellVarContext current
|
|
RMDir /r "$DOCUMENTS\PCSX2\inis\"
|
|
|
|
SectionEnd
|
|
|
|
; /o for optional and unticked by default
|
|
Section /o "Un.User files (Memory Cards, Savestates, etc)"
|
|
|
|
SetShellVarContext current
|
|
RMDir /r "$DOCUMENTS\PCSX2\inis\"
|
|
RMDir /r "$DOCUMENTS\PCSX2\logs\"
|
|
RMDir /r "$DOCUMENTS\PCSX2\memcards\"
|
|
RMDir /r "$DOCUMENTS\PCSX2\snaps\"
|
|
RMDir /r "$DOCUMENTS\PCSX2\sstates\"
|
|
|
|
SectionEnd
|
|
|
|
; /o for optional and unticked by default
|
|
Section /o "Un.BIOS files"
|
|
|
|
SetShellVarContext current
|
|
RMDir /r "$DOCUMENTS\PCSX2\bios\"
|
|
|
|
SectionEnd |