[Plib-cvs] plib ChangeLog,1.3,1.4 configure.in,1.56,1.57 transferCvs2WebSite,1.6,1.7
Brought to you by:
sjbaker
From: Steve B. <sj...@us...> - 2004-03-20 04:32:06
|
Update of /cvsroot/plib/plib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21092/plib Modified Files: ChangeLog configure.in transferCvs2WebSite Log Message: Added a puAux.dsp (although I know it's not right). Updated transferCvs2WebSite to include new libraries. Index: ChangeLog =================================================================== RCS file: /cvsroot/plib/plib/ChangeLog,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- ChangeLog 2 Sep 2002 05:40:51 -0000 1.3 +++ ChangeLog 20 Mar 2004 04:22:04 -0000 1.4 @@ -2,6 +2,48 @@ PLIB Change Log. ================ +PLIB v1.8.0 (March 19th 2004) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + * puAux library added to provide a place for the + more obscure PUI widgets. + + * PW (PLIB Windowing) library added to provide a + built-in alternative to windowing libraries such + as GLUT and SDL. Applications that only need a + single window, mouse and keyboard (and no other + features of GLUT) can now have no dependencies + whatever outside of PLIB and OpenGL. + + * PLIB is now completely independent of GLUT. You + can even build it without GLUT being installed. + Modules to allow PUI to work with GLUT, freeglut, + SDL, FLTK and our own PW windowing library are + provided. + + * ssgAux now includes a relatively simple sky model + kindly donated by the SimGear project. Now you + can have sun, moon, stars and clouds with just + a handful of function calls. + + * PSL - a C-like interpreted scripting language + is now bundled into PLIB. It's a byte-code + interpreter - and it has some useful properties + for games and other interactive packages in + that it allows the application much finer control + over the running of the script(s) than traditional + scripting engines. + + * In the demos area, we added the 'simon' package + which provides a simple framework for PSL scripts + to be loaded - and they may in turn load 3D models, + move them around, etc. Astropong.psl (a simple 3D + 'Pong' game in PSL) is provided as a demo. + +And of course, many bugs have been slain and numerous +other smaller features have been added. + + PLIB v1.6.0 (Sept 2nd 2002) ~~~~~~~~~~~~~~~~~~~~~~~~~~~ Index: configure.in =================================================================== RCS file: /cvsroot/plib/plib/configure.in,v retrieving revision 1.56 retrieving revision 1.57 diff -u -d -r1.56 -r1.57 --- configure.in 28 Feb 2004 00:54:02 -0000 1.56 +++ configure.in 20 Mar 2004 04:22:04 -0000 1.57 @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(src/js/js.h) -AM_INIT_AUTOMAKE(plib, 1.7.0) +AM_INIT_AUTOMAKE(plib, 1.8.0) # This AC_PREFIX_DEFAULT will place the library files # into /usr/lib - but will put the include files into @@ -382,14 +382,14 @@ src/Makefile \ src/js/Makefile \ src/util/Makefile \ - src/pui/Makefile \ - src/puAux/Makefile \ src/sg/Makefile \ src/sl/Makefile \ src/psl/Makefile \ src/ssg/Makefile \ src/ssgAux/Makefile \ src/fnt/Makefile \ + src/pui/Makefile \ + src/puAux/Makefile \ src/pw/Makefile \ src/net/Makefile ) Index: transferCvs2WebSite =================================================================== RCS file: /cvsroot/plib/plib/transferCvs2WebSite,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- transferCvs2WebSite 14 Jun 2001 18:14:24 -0000 1.6 +++ transferCvs2WebSite 20 Mar 2004 04:22:04 -0000 1.7 @@ -30,6 +30,18 @@ rm -R fnt cvs -d:pserver:anonymous@cvs1:/cvsroot/plib export -Dtoday -d fnt plib/doc/fnt >/dev/null 2>&1 +echo handling "pw" +rm -R pw +cvs -d:pserver:anonymous@cvs1:/cvsroot/plib export -Dtoday -d pw plib/doc/pw >/dev/null 2>&1 + +echo handling "psl" +rm -R psl +cvs -d:pserver:anonymous@cvs1:/cvsroot/plib export -Dtoday -d psl plib/doc/psl >/dev/null 2>&1 + +echo handling "puAux" +rm -R puAux +cvs -d:pserver:anonymous@cvs1:/cvsroot/plib export -Dtoday -d puAux plib/doc/puAux >/dev/null 2>&1 + echo handling "ssgAux" rm -R ssgAux cvs -d:pserver:anonymous@cvs1:/cvsroot/plib export -Dtoday -d ssgAux plib/doc/ssgAux >/dev/null 2>&1 @@ -51,9 +63,12 @@ chmod -R u=rwX,g=rwX,o=rX /home/groups/p/pl/plib/htdocs/sl chmod -R u=rwX,g=rwX,o=rX /home/groups/p/pl/plib/htdocs/js chmod -R u=rwX,g=rwX,o=rX /home/groups/p/pl/plib/htdocs/fnt +chmod -R u=rwX,g=rwX,o=rX /home/groups/p/pl/plib/htdocs/puAux chmod -R u=rwX,g=rwX,o=rX /home/groups/p/pl/plib/htdocs/ssgAux chmod -R u=rwX,g=rwX,o=rX /home/groups/p/pl/plib/htdocs/util chmod -R u=rwX,g=rwX,o=rX /home/groups/p/pl/plib/htdocs/pui +chmod -R u=rwX,g=rwX,o=rX /home/groups/p/pl/plib/htdocs/psl +chmod -R u=rwX,g=rwX,o=rX /home/groups/p/pl/plib/htdocs/pw chmod -R u=rwX,g=rwX,o=rX /home/groups/p/pl/plib/htdocs/net echo done. |