mirror of https://github.com/PCSX2/pcsx2.git
Cleanup part 2: Renamed the readme and faq where they're referred and upped the trunk version to 1.1.0
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@5355 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
e60db5cba6
commit
b40682155a
Binary file not shown.
Binary file not shown.
|
@ -11,9 +11,9 @@ Section "Start Menu Shortcuts" SEC_STARTMENU
|
||||||
CreateShortCut "$SMPROGRAMS\PCSX2\Uninstall ${APP_NAME}.lnk" "${UNINST_EXE}" "" "${UNINST_EXE}" 0
|
CreateShortCut "$SMPROGRAMS\PCSX2\Uninstall ${APP_NAME}.lnk" "${UNINST_EXE}" "" "${UNINST_EXE}" 0
|
||||||
CreateShortCut "$SMPROGRAMS\PCSX2\${APP_NAME}.lnk" "${APP_EXE}" "" "${APP_EXE}" 0
|
CreateShortCut "$SMPROGRAMS\PCSX2\${APP_NAME}.lnk" "${APP_EXE}" "" "${APP_EXE}" 0
|
||||||
|
|
||||||
CreateShortCut "$SMPROGRAMS\PCSX2\Readme ${APP_VERSION}.lnk" "$INSTDIR\docs\${PCSX2_README}" \
|
CreateShortCut "$SMPROGRAMS\PCSX2\Readme.lnk" "$INSTDIR\docs\${PCSX2_README}" \
|
||||||
"" "" 0 "" "" "Typical usage overview and background information for PCSX2."
|
"" "" 0 "" "" "Typical usage overview and background information for PCSX2."
|
||||||
CreateShortCut "$SMPROGRAMS\PCSX2\Frequently Asked Questions ${APP_VERSION}.lnk" "$INSTDIR\docs\${PCSX2_FAQ}" \
|
CreateShortCut "$SMPROGRAMS\PCSX2\Frequently Asked Questions.lnk" "$INSTDIR\docs\${PCSX2_FAQ}" \
|
||||||
"" "" 0 "" "" "Common answers to common problems and inquiries."
|
"" "" 0 "" "" "Common answers to common problems and inquiries."
|
||||||
|
|
||||||
;IfFileExists ..\bin\pcsx2-dev.exe 0 +2
|
;IfFileExists ..\bin\pcsx2-dev.exe 0 +2
|
||||||
|
|
|
@ -74,8 +74,8 @@ InstallDir "$PROGRAMFILES\PCSX2 ${APP_VERSION}"
|
||||||
!define APP_EXE "$INSTDIR\${APP_FILENAME}.exe"
|
!define APP_EXE "$INSTDIR\${APP_FILENAME}.exe"
|
||||||
!define INSTDIR_REG_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_FILENAME}"
|
!define INSTDIR_REG_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_FILENAME}"
|
||||||
|
|
||||||
!define PCSX2_README "PCSX2_Readme_${APP_VERSION}.pdf"
|
!define PCSX2_README "PCSX2_Readme.pdf"
|
||||||
!define PCSX2_FAQ "PCSX2_FAQ_${APP_VERSION}.pdf"
|
!define PCSX2_FAQ "PCSX2_FAQ.pdf"
|
||||||
|
|
||||||
|
|
||||||
Var DirectXSetupError
|
Var DirectXSetupError
|
||||||
|
|
|
@ -83,8 +83,8 @@ Function un.removeShorties
|
||||||
Delete "$SMPROGRAMS\PCSX2\${APP_NAME}.lnk"
|
Delete "$SMPROGRAMS\PCSX2\${APP_NAME}.lnk"
|
||||||
;Delete "$SMPROGRAMS\PCSX2\pcsx2-dev-r${SVNREV}.lnk"
|
;Delete "$SMPROGRAMS\PCSX2\pcsx2-dev-r${SVNREV}.lnk"
|
||||||
|
|
||||||
Delete "$SMPROGRAMS\PCSX2\Readme ${APP_VERSION}.lnk"
|
Delete "$SMPROGRAMS\PCSX2\Readme.lnk"
|
||||||
Delete "$SMPROGRAMS\PCSX2\Frequently Asked Questions ${APP_VERSION}.lnk"
|
Delete "$SMPROGRAMS\PCSX2\Frequently Asked Questions.lnk"
|
||||||
|
|
||||||
StrCpy $0 "$SMPROGRAMS\PCSX2"
|
StrCpy $0 "$SMPROGRAMS\PCSX2"
|
||||||
Call un.DeleteDirIfEmpty
|
Call un.DeleteDirIfEmpty
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -15,9 +15,9 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
static const int PCSX2_VersionHi = 0;
|
static const int PCSX2_VersionHi = 1;
|
||||||
static const int PCSX2_VersionMid = 9;
|
static const int PCSX2_VersionMid = 1;
|
||||||
static const int PCSX2_VersionLo = 9;
|
static const int PCSX2_VersionLo = 0;
|
||||||
|
|
||||||
class SysCoreThread;
|
class SysCoreThread;
|
||||||
class CpuInitializerSet;
|
class CpuInitializerSet;
|
||||||
|
|
|
@ -74,9 +74,8 @@ Panels::FirstTimeIntroPanel::FirstTimeIntroPanel( wxWindow* parent )
|
||||||
SetMinWidth( 600 );
|
SetMinWidth( 600 );
|
||||||
|
|
||||||
FastFormatUnicode faqFile;
|
FastFormatUnicode faqFile;
|
||||||
faqFile.Write( L"file:///%s/Docs/PCSX2_FAQ_%u.%u.%u.pdf",
|
faqFile.Write( L"file:///%s/Docs/PCSX2_FAQ.pdf",
|
||||||
InstallFolder.ToString().c_str(), PCSX2_VersionHi, PCSX2_VersionMid, PCSX2_VersionLo
|
InstallFolder.ToString().c_str() );
|
||||||
);
|
|
||||||
|
|
||||||
wxStaticBoxSizer& langSel = *new wxStaticBoxSizer( wxVERTICAL, this, _("Language selector") );
|
wxStaticBoxSizer& langSel = *new wxStaticBoxSizer( wxVERTICAL, this, _("Language selector") );
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue