* Some stuff with changing the Dink HD menu key to F1 from Shift-Escape

* Added Dan's .png loading patch (untested)

git-svn-id: svn://rtsoft.com/rtsvn/projects/RTDink@1522 353e56fe-9613-0410-8469-b96ad8e6f29c
This commit is contained in:
seth 2017-10-17 04:33:21 +00:00
parent 20f8a6a856
commit e0b2d2e5f0
17 changed files with 353 additions and 36 deletions

34
script/FTPToSiteWin.bat Normal file
View file

@ -0,0 +1,34 @@
REM This will FTP the latest build into the correct dir at RTSOFT
if "%d_fname%" == "" (
echo d_fname not set.
beeper.exe /p
exit
)
REM get our ftp logon info
call ../../../SetFTPLogonInfo.bat
REM create script for the FTP process
if exist ftp.tmp del ftp.tmp
echo user %_FTP_USER_% %_FTP_PASS_% >> ftp.tmp
echo cd www >> ftp.tmp
echo cd dink >> ftp.tmp
echo binary >> ftp.tmp
echo put %d_fname% >> ftp.tmp
echo quit >> ftp.tmp
echo http://www.rtsoft.com/dink/%d_fname%
ftp -n -i -d -s:ftp.tmp %_FTP_SITE_%
del ftp.tmp
REM remove environmental vars we used
set C_FILENAME=
call ../../../KillFTPLogonInfo.bat