You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(52) |
Aug
(34) |
Sep
(99) |
Oct
(110) |
Nov
(21) |
Dec
(69) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(117) |
Feb
(90) |
Mar
(1) |
Apr
(22) |
May
(96) |
Jun
(25) |
Jul
(22) |
Aug
|
Sep
|
Oct
(18) |
Nov
(43) |
Dec
(71) |
2006 |
Jan
(20) |
Feb
(10) |
Mar
|
Apr
(4) |
May
(2) |
Jun
|
Jul
|
Aug
(3) |
Sep
|
Oct
(60) |
Nov
(63) |
Dec
(35) |
2007 |
Jan
(18) |
Feb
(40) |
Mar
(14) |
Apr
(18) |
May
(33) |
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2008 |
Jan
|
Feb
(1) |
Mar
(25) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(5) |
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(15) |
Aug
|
Sep
|
Oct
|
Nov
(3) |
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
(3) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Carsten W. <ca...@us...> - 2007-05-11 20:34:00
|
Update of /cvsroot/jake2/jake2/lib/lwjgl/osx In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv3231/lib/lwjgl/osx Modified Files: liblwjgl.jnilib Log Message: update to lwjgl 1.1 (bugfix release) Index: liblwjgl.jnilib =================================================================== RCS file: /cvsroot/jake2/jake2/lib/lwjgl/osx/liblwjgl.jnilib,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 Binary files /tmp/cvsmPwrLA and /tmp/cvsFxDjTJ differ |
From: Carsten W. <ca...@us...> - 2007-05-06 21:02:23
|
Update of /cvsroot/jake2/jake2/src/net/java/games/joal/eax In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv22731/src/net/java/games/joal/eax Removed Files: EAX.java Log Message: remove EAX patch and wait for a bugfix (it doesn't work for webstart because of jar signing) https://joal.dev.java.net/issues/show_bug.cgi?id=17 --- EAX.java DELETED --- |
From: Carsten W. <ca...@us...> - 2007-05-06 21:02:23
|
Update of /cvsroot/jake2/jake2 In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv22731 Modified Files: build.xml Log Message: remove EAX patch and wait for a bugfix (it doesn't work for webstart because of jar signing) https://joal.dev.java.net/issues/show_bug.cgi?id=17 Index: build.xml =================================================================== RCS file: /cvsroot/jake2/jake2/build.xml,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -d -r1.37 -r1.38 *** build.xml 6 May 2007 20:13:07 -0000 1.37 --- build.xml 6 May 2007 21:02:19 -0000 1.38 *************** *** 54,58 **** <src path="${src}"/> <include name="jake2/**"/> - <include name="net/java/games/joal/eax/*"/> <classpath refid="build.class.path"/> </javac> --- 54,57 ---- *************** *** 150,154 **** <jar destfile="${dist}/lib/jake2.jar" basedir="${build}"> <include name="jake2/**"/> - <include name="net/java/games/joal/eax/*"/> <include name="*.png"/> <include name="mirrors"/> --- 149,152 ---- |
From: Carsten W. <ca...@us...> - 2007-05-06 20:55:08
|
Update of /cvsroot/jake2/jake2/src/jake2/sound/joal In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv19533/src/jake2/sound/joal Modified Files: JOALSoundImpl.java Log Message: use println Index: JOALSoundImpl.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/sound/joal/JOALSoundImpl.java,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** JOALSoundImpl.java 6 May 2007 20:52:54 -0000 1.27 --- JOALSoundImpl.java 6 May 2007 20:55:02 -0000 1.28 *************** *** 97,104 **** num_sfx = 0; ! Com.Printf("sound sampling rate: 44100Hz\n"); StopAllSounds(); ! Com.Printf("------------------------------------\n"); return true; } --- 97,104 ---- num_sfx = 0; ! Com.Println("sound sampling rate: 44100Hz"); StopAllSounds(); ! Com.Println("------------------------------------"); return true; } *************** *** 108,119 **** try { eax = EAXFactory.getEAX(); ! Com.Printf("... using EAX2.0\n"); } catch (Throwable e) { ! Com.Printf(e.getMessage()); ! Com.Printf("... EAX2.0 not initialized\n"); eax = null; } } else { ! Com.Printf("... EAX2.0 not found\n"); eax = null; } --- 108,119 ---- try { eax = EAXFactory.getEAX(); ! Com.Println("... using EAX2.0"); } catch (Throwable e) { ! Com.Println(e.getMessage()); ! Com.Println("... EAX2.0 not initialized"); eax = null; } } else { ! Com.Println("... EAX2.0 not found"); eax = null; } |
From: Carsten W. <ca...@us...> - 2007-05-06 20:52:58
|
Update of /cvsroot/jake2/jake2/src/jake2/sound/joal In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv18733/src/jake2/sound/joal Modified Files: JOALSoundImpl.java Log Message: print the the message if EAX fails Index: JOALSoundImpl.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/sound/joal/JOALSoundImpl.java,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** JOALSoundImpl.java 6 May 2007 19:33:53 -0000 1.26 --- JOALSoundImpl.java 6 May 2007 20:52:54 -0000 1.27 *************** *** 110,113 **** --- 110,114 ---- Com.Printf("... using EAX2.0\n"); } catch (Throwable e) { + Com.Printf(e.getMessage()); Com.Printf("... EAX2.0 not initialized\n"); eax = null; |
From: Carsten W. <ca...@us...> - 2007-05-06 20:13:10
|
Update of /cvsroot/jake2/jake2 In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv2971 Modified Files: build.xml Log Message: include the joal EAX patch in build and jar task Index: build.xml =================================================================== RCS file: /cvsroot/jake2/jake2/build.xml,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -d -r1.36 -r1.37 *** build.xml 6 May 2007 19:55:07 -0000 1.36 --- build.xml 6 May 2007 20:13:07 -0000 1.37 *************** *** 54,58 **** <src path="${src}"/> <include name="jake2/**"/> ! <include name="net/java/games/joal/eax/EAX.java"/> <classpath refid="build.class.path"/> </javac> --- 54,58 ---- <src path="${src}"/> <include name="jake2/**"/> ! <include name="net/java/games/joal/eax/*"/> <classpath refid="build.class.path"/> </javac> *************** *** 150,153 **** --- 150,154 ---- <jar destfile="${dist}/lib/jake2.jar" basedir="${build}"> <include name="jake2/**"/> + <include name="net/java/games/joal/eax/*"/> <include name="*.png"/> <include name="mirrors"/> |
From: Carsten W. <ca...@us...> - 2007-05-06 19:55:14
|
Update of /cvsroot/jake2/jake2 In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv28210 Modified Files: build.xml Log Message: include the joal EAX patch Index: build.xml =================================================================== RCS file: /cvsroot/jake2/jake2/build.xml,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** build.xml 28 Apr 2007 18:47:15 -0000 1.35 --- build.xml 6 May 2007 19:55:07 -0000 1.36 *************** *** 54,57 **** --- 54,58 ---- <src path="${src}"/> <include name="jake2/**"/> + <include name="net/java/games/joal/eax/EAX.java"/> <classpath refid="build.class.path"/> </javac> |
From: Carsten W. <ca...@us...> - 2007-05-06 19:54:48
|
Update of /cvsroot/jake2/jake2/src/net/java/games/joal/eax In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv28031/src/net/java/games/joal/eax Modified Files: EAX.java Log Message: bugfix: remove the wrong library loading, joal_native is the right library name but this library loading is never needed because EAXFactory does this job Index: EAX.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/net/java/games/joal/eax/EAX.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** EAX.java 6 May 2007 19:52:21 -0000 1.1 --- EAX.java 6 May 2007 19:54:35 -0000 1.2 *************** *** 42,49 **** */ public class EAX implements EAXConstants { - static { - System.loadLibrary("joal"); - } - public static final int SOURCE = 0; public static final int LISTENER = 1; --- 42,45 ---- |
From: Carsten W. <ca...@us...> - 2007-05-06 19:52:40
|
Update of /cvsroot/jake2/jake2/src/net/java/games/joal/eax In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv27271/src/net/java/games/joal/eax Added Files: EAX.java Log Message: this is the current and wrong joal EAX implementation --- NEW FILE: EAX.java --- /** * Copyright (c) 2003 Sun Microsystems, Inc. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * -Redistribution of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * -Redistribution in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * Neither the name of Sun Microsystems, Inc. or the names of contributors may * be used to endorse or promote products derived from this software without * specific prior written permission. * * This software is provided "AS IS," without a warranty of any kind. * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING * ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR * NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN") AND ITS * LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A * RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. * IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT * OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, * ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS * BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. * * You acknowledge that this software is not designed or intended for use in the * design, construction, operation or maintenance of any nuclear facility. */ package net.java.games.joal.eax; import java.nio.Buffer; /** * @author Athomas Goldberg * */ public class EAX implements EAXConstants { static { System.loadLibrary("joal"); } public static final int SOURCE = 0; public static final int LISTENER = 1; private final int sourceGUID = SOURCE; private final int listenerGUID = LISTENER; /** * @param sourceGUID * @param listenerGUID */ EAX(int sourceGUID, int listenerGUID) { // this.sourceGUID = sourceGUID; // this.listenerGUID = listenerGUID; } /** * This method sets an EAX property value. <br> * <br> * <b>Interface to C Language function:</b> * <pre>ALenum EAXSet(const struct _GUID *propertySetID, ALuint property, ALuint source, ALvoid *value, ALuint size)</pre> * * @param objectFlag a flag indicating a LISTENER or a SOURCE * @param pname the property being set * @param source the ID of the source, or 0 for Listener properties * @param value a direct Buffer to hold the value retrieved * @param size the size of the Buffer */ public native void EAXSet( int objectFlag, int pname, int source, Buffer value, int size ); /** * This method retrieves an EAX property value. <br> * <br> * <b>Interface to C Language function:</b> * <pre>ALenum EAXGet(const struct _GUID *propertySetID, ALuint property, ALuint source, ALvoid *value, ALuint size)</pre> * * @param objectFlag a flag indicating a LISTENER or a SOURCE * @param pname the property being queried * @param source the ID of the source, or 0 for Listener properties * @param value a direct Buffer to hold the value retrieved * @param size the size of the Buffer */ public native void EAXGet( int objectFlag, int pname, int source, Buffer value, int size ); /** * This method sets a source property. * @param sourceID the ID of the source whose property is being set. * @param pname the name of the property being set * @param value a direct Buffer containing the value to be set */ public void setSourceProperty(int sourceID, int pname, Buffer value) { EAXSet(sourceGUID, pname, sourceID, value, value.capacity()); } /** * This method retrieves a source property. * @param sourceID the ID of the source whose property is being retrieved. * @param pname the name of the property being retrieved * @param value a direct Buffer to hold the value to be retrieved */ public void getSourceProperty(int pname, int sourceID, Buffer value) { EAXGet(sourceGUID, pname, sourceID, value, value.capacity()); } /** * This method sets a Listener property. * @param pname the name of the property being set * @param value a direct Buffer containing the value to be set */ public void setListenerProperty(int pname, Buffer value) { EAXSet(listenerGUID, pname, 0, value, value.capacity()); } /** * This method retrieves a Listener property. * @param pname the name of the property being retrieved * @param value a direct Buffer to hold the value to be retrieved */ public void getListenerProperty(int pname, Buffer value) { EAXGet(listenerGUID, pname, 0, value, value.capacity()); } } |
From: Carsten W. <ca...@us...> - 2007-05-06 19:52:40
|
Update of /cvsroot/jake2/jake2/src/net/java/games/joal/eax In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv27260/src/net/java/games/joal/eax Log Message: Directory /cvsroot/jake2/jake2/src/net/java/games/joal/eax added to the repository |
From: Carsten W. <ca...@us...> - 2007-05-06 19:33:56
|
Update of /cvsroot/jake2/jake2/src/jake2/sound/joal In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv19843/src/jake2/sound/joal Modified Files: JOALSoundImpl.java Log Message: go back to previous version, handler is ok, but EAX class is not Index: JOALSoundImpl.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/sound/joal/JOALSoundImpl.java,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** JOALSoundImpl.java 6 May 2007 17:56:36 -0000 1.25 --- JOALSoundImpl.java 6 May 2007 19:33:53 -0000 1.26 *************** *** 105,115 **** private void initOpenALExtensions() { ! try { ! eax = EAXFactory.getEAX(); ! Com.Printf("... using EAX2.0\n"); ! } catch (Throwable e) { ! Com.Printf("... EAX2.0 not found\n"); ! eax = null; ! } } --- 105,120 ---- private void initOpenALExtensions() { ! if (al.alIsExtensionPresent("EAX2.0")) { ! try { ! eax = EAXFactory.getEAX(); ! Com.Printf("... using EAX2.0\n"); ! } catch (Throwable e) { ! Com.Printf("... EAX2.0 not initialized\n"); ! eax = null; ! } ! } else { ! Com.Printf("... EAX2.0 not found\n"); ! eax = null; ! } } |
From: Carsten W. <ca...@us...> - 2007-05-06 17:56:42
|
Update of /cvsroot/jake2/jake2/src/jake2/sound/joal In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv10300/src/jake2/sound/joal Modified Files: JOALSoundImpl.java Log Message: try to use EAX instead of checking extension Strings Index: JOALSoundImpl.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/sound/joal/JOALSoundImpl.java,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** JOALSoundImpl.java 27 Feb 2007 13:44:17 -0000 1.24 --- JOALSoundImpl.java 6 May 2007 17:56:36 -0000 1.25 *************** *** 105,120 **** private void initOpenALExtensions() { ! if (al.alIsExtensionPresent("EAX2.0")) { ! try { ! eax = EAXFactory.getEAX(); ! Com.Printf("... using EAX2.0\n"); ! } catch (Throwable e) { ! Com.Printf("... EAX2.0 not initialized\n"); ! eax = null; ! } ! } else { ! Com.Printf("... EAX2.0 not found\n"); ! eax = null; ! } } --- 105,115 ---- private void initOpenALExtensions() { ! try { ! eax = EAXFactory.getEAX(); ! Com.Printf("... using EAX2.0\n"); ! } catch (Throwable e) { ! Com.Printf("... EAX2.0 not found\n"); ! eax = null; ! } } |
From: Carsten W. <ca...@us...> - 2007-05-06 12:38:18
|
Update of /cvsroot/jake2/jake2 In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv12156 Modified Files: Jake2.sh Log Message: use new jogl libs alias jsr231 Index: Jake2.sh =================================================================== RCS file: /cvsroot/jake2/jake2/Jake2.sh,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Jake2.sh 28 Apr 2007 18:48:46 -0000 1.7 --- Jake2.sh 6 May 2007 12:38:13 -0000 1.8 *************** *** 8,13 **** # for jogl and joal ! LIB=lib/jogl/linux:lib/joal/linux ! CP=build:resources:lib/jogl/jogl.jar:lib/joal/joal.jar:lib/jsr231/gluegen-rt.jar ! exec java -Xmx100M -Djava.library.path=$LIB -cp $CP jake2.Jake2 $* \ No newline at end of file --- 8,13 ---- # for jogl and joal ! LIB=lib/jsr231/linux:lib/joal/linux ! CP=build:resources:lib/jsr231/jogl.jar:lib/joal/joal.jar:lib/jsr231/gluegen-rt.jar ! exec java -Xmx100M -Djava.library.path=$LIB -cp $CP jake2.Jake2 $* |
From: Carsten W. <ca...@us...> - 2007-04-28 18:48:49
|
Update of /cvsroot/jake2/jake2 In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv9897 Modified Files: Jake2.sh Jake2.bat Log Message: use gluegen-rt from jsr231 alias jogl Index: Jake2.bat =================================================================== RCS file: /cvsroot/jake2/jake2/Jake2.bat,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Jake2.bat 22 Nov 2006 17:10:36 -0000 1.5 --- Jake2.bat 28 Apr 2007 18:48:46 -0000 1.6 *************** *** 7,10 **** REM for jogl and joal SET LIB=lib/jsr231/windows;lib/joal/windows ! SET CP=build;resources;lib/jsr231/jogl.jar;lib/joal/joal.jar;lib/joal/gluegen-rt.jar java -Xmx100M -Dsun.java2d.noddraw=true -Djava.library.path=%LIB% -cp %CP% jake2.Jake2 \ No newline at end of file --- 7,10 ---- REM for jogl and joal SET LIB=lib/jsr231/windows;lib/joal/windows ! SET CP=build;resources;lib/jsr231/jogl.jar;lib/joal/joal.jar;lib/jsr231/gluegen-rt.jar java -Xmx100M -Dsun.java2d.noddraw=true -Djava.library.path=%LIB% -cp %CP% jake2.Jake2 \ No newline at end of file Index: Jake2.sh =================================================================== RCS file: /cvsroot/jake2/jake2/Jake2.sh,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Jake2.sh 14 Nov 2006 20:49:08 -0000 1.6 --- Jake2.sh 28 Apr 2007 18:48:46 -0000 1.7 *************** *** 9,13 **** # for jogl and joal LIB=lib/jogl/linux:lib/joal/linux ! CP=build:resources:lib/jogl/jogl.jar:lib/joal/joal.jar:lib/joal/gluegen-rt.jar exec java -Xmx100M -Djava.library.path=$LIB -cp $CP jake2.Jake2 $* \ No newline at end of file --- 9,13 ---- # for jogl and joal LIB=lib/jogl/linux:lib/joal/linux ! CP=build:resources:lib/jogl/jogl.jar:lib/joal/joal.jar:lib/jsr231/gluegen-rt.jar exec java -Xmx100M -Djava.library.path=$LIB -cp $CP jake2.Jake2 $* \ No newline at end of file |
From: Carsten W. <ca...@us...> - 2007-04-28 18:47:18
|
Update of /cvsroot/jake2/jake2 In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv9437 Modified Files: build.xml Log Message: use gluegen-rt from jsr231 alias jogl Index: build.xml =================================================================== RCS file: /cvsroot/jake2/jake2/build.xml,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** build.xml 17 Mar 2007 16:11:59 -0000 1.34 --- build.xml 28 Apr 2007 18:47:15 -0000 1.35 *************** *** 23,26 **** --- 23,27 ---- <pathelement location="lib/jogl/jogl.jar"/> <pathelement location="lib/jsr231/jogl.jar"/> + <pathelement location="lib/jsr231/gluegen-rt.jar"/> <pathelement location="lib/joal/joal.jar"/> <pathelement location="lib/lwjgl/lwjgl.jar"/> |
From: Carsten W. <ca...@us...> - 2007-04-28 18:44:59
|
Update of /cvsroot/jake2/jake2/lib/joal/windows In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv8117/lib/joal/windows Removed Files: gluegen-rt.dll Log Message: remove gluegen from joal; use it from jsr231 instead --- gluegen-rt.dll DELETED --- |
From: Carsten W. <ca...@us...> - 2007-04-28 18:44:59
|
Update of /cvsroot/jake2/jake2/lib/joal/linux In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv8117/lib/joal/linux Removed Files: libgluegen-rt.so Log Message: remove gluegen from joal; use it from jsr231 instead --- libgluegen-rt.so DELETED --- |
From: Carsten W. <ca...@us...> - 2007-04-28 18:43:51
|
Update of /cvsroot/jake2/jake2 In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv7650 Modified Files: .classpath Log Message: use gluegen-rt from jsr231 alias jogl Index: .classpath =================================================================== RCS file: /cvsroot/jake2/jake2/.classpath,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** .classpath 21 Nov 2006 00:47:52 -0000 1.8 --- .classpath 28 Apr 2007 18:43:48 -0000 1.9 *************** *** 5,11 **** <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry kind="lib" path="lib/joal/joal.jar"/> - <classpathentry kind="lib" path="lib/joal/gluegen-rt.jar"/> <classpathentry kind="lib" path="lib/jogl/jogl.jar"/> <classpathentry kind="lib" path="lib/jsr231/jogl.jar"/> <classpathentry kind="lib" path="lib/lwjgl/lwjgl_util.jar"/> <classpathentry kind="lib" path="lib/lwjgl/lwjgl.jar"/> --- 5,11 ---- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry kind="lib" path="lib/joal/joal.jar"/> <classpathentry kind="lib" path="lib/jogl/jogl.jar"/> <classpathentry kind="lib" path="lib/jsr231/jogl.jar"/> + <classpathentry kind="lib" path="lib/jsr231/gluegen-rt.jar"/> <classpathentry kind="lib" path="lib/lwjgl/lwjgl_util.jar"/> <classpathentry kind="lib" path="lib/lwjgl/lwjgl.jar"/> |
From: Carsten W. <ca...@us...> - 2007-04-28 18:37:34
|
Update of /cvsroot/jake2/jake2/lib/jsr231/windows In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv3073/lib/jsr231/windows Modified Files: jogl_cg.dll jogl.dll jogl_awt.dll Added Files: gluegen-rt.dll Log Message: upgrade jogl to jsr231 1.1.0 release --- NEW FILE: gluegen-rt.dll --- (This appears to be a binary file; contents omitted.) Index: jogl_awt.dll =================================================================== RCS file: /cvsroot/jake2/jake2/lib/jsr231/windows/jogl_awt.dll,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvszawRoD and /tmp/cvsZjoQCP differ Index: jogl_cg.dll =================================================================== RCS file: /cvsroot/jake2/jake2/lib/jsr231/windows/jogl_cg.dll,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsUYwsPF and /tmp/cvs617T7R differ Index: jogl.dll =================================================================== RCS file: /cvsroot/jake2/jake2/lib/jsr231/windows/jogl.dll,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsaT3kmI and /tmp/cvs5uQvKU differ |
From: Carsten W. <ca...@us...> - 2007-04-28 18:37:09
|
Update of /cvsroot/jake2/jake2/lib/jsr231/linux In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv3073/lib/jsr231/linux Modified Files: libjogl.so libjogl_cg.so libjogl_awt.so Added Files: libgluegen-rt.so Removed Files: libjogl_drihack.so Log Message: upgrade jogl to jsr231 1.1.0 release Index: libjogl.so =================================================================== RCS file: /cvsroot/jake2/jake2/lib/jsr231/linux/libjogl.so,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsxg0eCe and /tmp/cvseadKGw differ Index: libjogl_cg.so =================================================================== RCS file: /cvsroot/jake2/jake2/lib/jsr231/linux/libjogl_cg.so,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsiNH8NC and /tmp/cvscSNmMV differ Index: libjogl_awt.so =================================================================== RCS file: /cvsroot/jake2/jake2/lib/jsr231/linux/libjogl_awt.so,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvs2yYAvK and /tmp/cvsFt12A3 differ --- libjogl_drihack.so DELETED --- --- NEW FILE: libgluegen-rt.so --- (This appears to be a binary file; contents omitted.) |
From: Carsten W. <ca...@us...> - 2007-04-28 18:37:08
|
Update of /cvsroot/jake2/jake2/lib/jsr231 In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv3073/lib/jsr231 Modified Files: jogl.jar Added Files: gluegen-rt.jar Log Message: upgrade jogl to jsr231 1.1.0 release Index: jogl.jar =================================================================== RCS file: /cvsroot/jake2/jake2/lib/jsr231/jogl.jar,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsqcr3YH and /tmp/cvsEaHA32 differ --- NEW FILE: gluegen-rt.jar --- (This appears to be a binary file; contents omitted.) |
From: Carsten W. <ca...@us...> - 2007-04-28 18:37:08
|
Update of /cvsroot/jake2/jake2/lib/jsr231/osx In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv3073/lib/jsr231/osx Modified Files: libjogl.jnilib libjogl_cg.jnilib libjogl_awt.jnilib Added Files: libgluegen-rt.jnilib Log Message: upgrade jogl to jsr231 1.1.0 release Index: libjogl.jnilib =================================================================== RCS file: /cvsroot/jake2/jake2/lib/jsr231/osx/libjogl.jnilib,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsEb0NgA and /tmp/cvsVs52hT differ --- NEW FILE: libgluegen-rt.jnilib --- (This appears to be a binary file; contents omitted.) Index: libjogl_awt.jnilib =================================================================== RCS file: /cvsroot/jake2/jake2/lib/jsr231/osx/libjogl_awt.jnilib,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsLIaII0 and /tmp/cvsxqWmfk differ Index: libjogl_cg.jnilib =================================================================== RCS file: /cvsroot/jake2/jake2/lib/jsr231/osx/libjogl_cg.jnilib,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 Binary files /tmp/cvsT74Pf9 and /tmp/cvsm7oH3s differ |
From: Carsten W. <ca...@us...> - 2007-04-28 18:32:19
|
Update of /cvsroot/jake2/jake2/lib/joal In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv2555/lib/joal Removed Files: gluegen-rt.jar Log Message: rove gluegen from joal; use from jsr231 instead --- gluegen-rt.jar DELETED --- |
From: Carsten W. <ca...@us...> - 2007-04-28 18:32:19
|
Update of /cvsroot/jake2/jake2/lib/joal/osx In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv2555/lib/joal/osx Removed Files: libgluegen-rt.jnilib Log Message: rove gluegen from joal; use from jsr231 instead --- libgluegen-rt.jnilib DELETED --- |
From: Carsten W. <ca...@us...> - 2007-04-16 22:14:55
|
Update of /cvsroot/jake2/jake2/src/jake2/sys In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv22115/src/jake2/sys Modified Files: NET.java Log Message: clean up Index: NET.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/sys/NET.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** NET.java 15 Apr 2007 20:12:33 -0000 1.11 --- NET.java 16 Apr 2007 22:14:52 -0000 1.12 *************** *** 1,6 **** /* * NET.java Copyright (C) 2003 - * - * $Id$ */ /* --- 1,4 ---- |