Skip to content

Commit

Permalink
--Updated CHANGELOG.TXT to release 1.1.1a.
Browse files Browse the repository at this point in the history
--Added some batch tools to deploy.
  • Loading branch information
diautilio committed Jan 26, 2012
1 parent 64290b4 commit 7f8b910
Show file tree
Hide file tree
Showing 3 changed files with 133 additions and 4 deletions.
15 changes: 11 additions & 4 deletions CHANGELOG.TXT
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
Version MOD 1.1.1a
-----------------
-Added: some Strangelove fixes.
-Updated: zlib 1.2.5
-Fixed: oslLoadImageFilePNG.c


Version MOD 1.1.1
-----------------
-Added net functions (from PGE LUA)
-Added oslDrawStringLimited (limit a string blit to a fixed width)
-Fixed loading an intraFont using Virtual fileSystem
-Fixed bugs by STAS (many thanks)
-Added: net functions (from PGE LUA)
-Added: oslDrawStringLimited (limit a string blit to a fixed width)
-Fixed: loading an intraFont using Virtual fileSystem
-Fixed: bugs by STAS (many thanks)


Version MOD 1.1.0
Expand Down
59 changes: 59 additions & 0 deletions install.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
@echo off

rem This defines the installation directory, please change it:
set PSPSDKDIR=C:\PSPSDKDIR\psp\sdk

echo Files will be copied to the following directory:
echo %PSPSDKDIR%
echo Please verify that it's correct, or edit this batch file.
pause

echo
echo "---------------"
echo "OSLib installer"
echo "---------------"
echo "Creating directories...."
mkdir %PSPSDKDIR%\include\oslib
mkdir %PSPSDKDIR%\include\oslib\intraFont
mkdir %PSPSDKDIR%\include\oslib\libpspmath
mkdir %PSPSDKDIR%\include\oslib\adhoc

echo "Copying lib...."
xcopy libosl.a %PSPSDKDIR%\lib\
IF ERRORLEVEL 1 GOTO ERROR

echo "Copying header files...."
xcopy intraFont\intraFont.h %PSPSDKDIR%\include\oslib\intraFont\
xcopy intraFont\libccc.h %PSPSDKDIR%\include\oslib\intraFont\
xcopy libpspmath\pspmath.h %PSPSDKDIR%\include\oslib\libpspmath\
xcopy adhoc\pspadhoc.h %PSPSDKDIR%\include\oslib\adhoc\
xcopy oslmath.h %PSPSDKDIR%\include\oslib\
xcopy net.h %PSPSDKDIR%\include\oslib\
xcopy browser.h %PSPSDKDIR%\include\oslib\
xcopy audio.h %PSPSDKDIR%\include\oslib\
xcopy bgm.h %PSPSDKDIR%\include\oslib\
xcopy dialog.h %PSPSDKDIR%\include\oslib\
xcopy drawing.h %PSPSDKDIR%\include\oslib\
xcopy keys.h %PSPSDKDIR%\include\oslib\
xcopy map.h %PSPSDKDIR%\include\oslib\
xcopy messagebox.h %PSPSDKDIR%\include\oslib\
xcopy osk.h %PSPSDKDIR%\include\oslib\
xcopy saveload.h %PSPSDKDIR%\include\oslib\
xcopy oslib.h %PSPSDKDIR%\include\oslib\
xcopy text.h %PSPSDKDIR%\include\oslib\
xcopy usb.h %PSPSDKDIR%\include\oslib\
xcopy vfpu_ops.h %PSPSDKDIR%\include\oslib\
xcopy VirtualFile.h %PSPSDKDIR%\include\oslib\
xcopy vram_mgr.h %PSPSDKDIR%\include\oslib\
xcopy ccc.h %PSPSDKDIR%\include\oslib\
xcopy sfont.h %PSPSDKDIR%\include\oslib\

IF ERRORLEVEL 1 GOTO ERROR
echo Installation completed successfully.
pause
exit

:ERROR
color c
echo Installation failed. Please verify the installation path!
pause
63 changes: 63 additions & 0 deletions release.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
set TARGET=..\Distrib

echo
echo "-------------------"
echo "OSLib release maker"
echo "-------------------"
echo "Deleting target directory...."
rmdir /s /q %TARGET%

echo "Creating target directories...."
mkdir %TARGET%
mkdir %TARGET%\Install
mkdir %TARGET%\Install\oslib
mkdir %TARGET%\Install\oslib\intraFont
mkdir %TARGET%\Install\oslib\libpspmath
mkdir %TARGET%\Install\oslib\adhoc
mkdir %TARGET%\Install\tools
mkdir %TARGET%\Install\samples

echo "xcopying lib...."
xcopy libosl.a %TARGET%\Install

echo "xcopying header files...."
xcopy intraFont\intraFont.h %TARGET%\Install\oslib\intraFont\
xcopy intraFont\libccc.h %TARGET%\Install\oslib\intraFont\
xcopy libpspmath\pspmath.h %TARGET%\Install\oslib\libpspmath\
xcopy adhoc\pspadhoc.h %TARGET%\Install\oslib\adhoc\
xcopy oslmath.h %TARGET%\Install\oslib\
xcopy net.h %TARGET%\Install\oslib\
xcopy browser.h %TARGET%\Install\oslib\
xcopy audio.h %TARGET%\Install\oslib\
xcopy bgm.h %TARGET%\Install\oslib\
xcopy dialog.h %TARGET%\Install\oslib\
xcopy drawing.h %TARGET%\Install\oslib\
xcopy keys.h %TARGET%\Install\oslib\
xcopy map.h %TARGET%\Install\oslib\
xcopy messagebox.h %TARGET%\Install\oslib\
xcopy osk.h %TARGET%\Install\oslib\
xcopy saveload.h %TARGET%\Install\oslib\
xcopy oslib.h %TARGET%\Install\oslib\
xcopy text.h %TARGET%\Install\oslib\
xcopy usb.h %TARGET%\Install\oslib\
xcopy vfpu_ops.h %TARGET%\Install\oslib\
xcopy VirtualFile.h %TARGET%\Install\oslib\
xcopy vram_mgr.h %TARGET%\Install\oslib\
xcopy ccc.h %TARGET%\Install\oslib\
xcopy sfont.h %TARGET%\Install\oslib\

echo "xcopying other files...."
xcopy README.TXT %TARGET%
xcopy CHANGELOG.TXT %TARGET%

echo "xcopying DOC...."
xcopy OSLib_MOD_Documentation %TARGET%\Doc

echo "xcopying Samples...."
xcopy samples /e %TARGET%\Install\samples

echo "xcopying Tools...."
xcopy tools /e %TARGET%\Install\tools

echo "Done!"
pause

0 comments on commit 7f8b910

Please sign in to comment.