Made updating the Interim version also include the revision and data of that revision. Updated the changelog for something else. Run \fceu\vc\defaultconfig\MakeDownloadHTML.bat to enable/disable download.html updating when compiling a Release version.
[[Split portion of a mixed commit.]]
This commit is contained in:
parent
a5a1af821a
commit
81e4c919bf
|
@ -1,3 +1,4 @@
|
|||
08-may-2010 - ugetab - Added emu.addgamegenie() and emu.delgamegenie() LUA functions.
|
||||
07-may-2010 - ugetab - Win32 - Added context menu to Cheat Dialog Cheat Listbox, populated list with Toggle Cheat, Poke Cheat Value, and Goto In Hex Editor
|
||||
07-may-2010 - ugetab - Win32 - Made enabling/disabling cheats no longer deselect the selected cheat.
|
||||
06-may-2010 - ugetab - win32 - Add Cheat buttons for Ram Search and Ram Watch
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
del /s fceux.zip
|
||||
copy ..\output\fceux.exe .
|
||||
upx ..\output\fceux.exe
|
||||
IF ERRORLEVEL 1 GOTO UPXFailed
|
||||
IF ERRORLEVEL 1 IF NOT ERRORLEVEL 2 GOTO UPXFailed
|
||||
cd ..\output
|
||||
..\vc\zip -X -9 -r ..\vc\fceux.zip fceux.exe fceux.chm 7z.dll *.dll palettes luaScripts
|
||||
move /y ..\vc\fceux.exe .
|
||||
|
|
|
@ -0,0 +1,19 @@
|
|||
@ECHO OFF
|
||||
CLS
|
||||
ECHO.
|
||||
IF EXIST makedownload goto delfile
|
||||
IF NOT EXIST makedownload goto makefile
|
||||
|
||||
:delfile
|
||||
del makedownload
|
||||
ECHO DISABLED download.html file generation(for the web page)
|
||||
GOTO end
|
||||
|
||||
:makefile
|
||||
echo. > makedownload
|
||||
ECHO ENABLED download.html file generation(for the web page)
|
||||
:end
|
||||
ECHO.
|
||||
ECHO This is used to show the interim revision number on the website.
|
||||
ECHO If enabled, it will be kept up-to-date whenever a release version is compiled.
|
||||
PAUSE
|
|
@ -1,2 +1,4 @@
|
|||
defaultconfig\SubWCRev.exe ..\.. ".\defaultconfig\svnrev_template.h" ".\userconfig\svnrev.h"
|
||||
IF NOT EXIST defaultconfig\makedownload exit 0
|
||||
defaultconfig\SubWCWeb.exe ..\.. "..\..\web\download.html" ".\userconfig\download.html"
|
||||
exit 0
|
Binary file not shown.
|
@ -1 +1,5 @@
|
|||
pscp -pw %1 fceux.zip fceux@www.pi-r-squared.com:web/zip/fceux.zip
|
||||
pscp -pw %1 fceux.zip fceux@www.pi-r-squared.com:web/zip/fceux.zip
|
||||
IF NOT EXIST fceux.zip GOTO end
|
||||
IF NOT EXIST defaultconfig\makedownload GOTO end
|
||||
pscp -pw %1 .\userconfig\download.html fceux@www.pi-r-squared.com:web/web/download.html
|
||||
:end
|
Loading…
Reference in New Issue