You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(134) |
Sep
(52) |
Oct
(13) |
Nov
(342) |
Dec
(163) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
(44) |
Feb
(62) |
Mar
(158) |
Apr
(38) |
May
(70) |
Jun
(58) |
Jul
(104) |
Aug
(207) |
Sep
(83) |
Oct
(122) |
Nov
(23) |
Dec
(49) |
| 2004 |
Jan
(119) |
Feb
(132) |
Mar
(192) |
Apr
(140) |
May
(77) |
Jun
(74) |
Jul
(201) |
Aug
(63) |
Sep
(102) |
Oct
(70) |
Nov
(173) |
Dec
(78) |
| 2005 |
Jan
(174) |
Feb
(197) |
Mar
(105) |
Apr
(59) |
May
(77) |
Jun
(43) |
Jul
(21) |
Aug
(18) |
Sep
(47) |
Oct
(37) |
Nov
(74) |
Dec
(50) |
| 2006 |
Jan
(44) |
Feb
(19) |
Mar
(32) |
Apr
(24) |
May
(31) |
Jun
(55) |
Jul
(138) |
Aug
(28) |
Sep
(12) |
Oct
(41) |
Nov
(58) |
Dec
(24) |
| 2007 |
Jan
(28) |
Feb
(14) |
Mar
(10) |
Apr
(68) |
May
(30) |
Jun
(26) |
Jul
(18) |
Aug
(63) |
Sep
(19) |
Oct
(29) |
Nov
(20) |
Dec
(10) |
| 2008 |
Jan
(38) |
Feb
(7) |
Mar
(37) |
Apr
(120) |
May
(41) |
Jun
(36) |
Jul
(39) |
Aug
(24) |
Sep
(28) |
Oct
(30) |
Nov
(36) |
Dec
(75) |
| 2009 |
Jan
(46) |
Feb
(22) |
Mar
(50) |
Apr
(70) |
May
(134) |
Jun
(105) |
Jul
(75) |
Aug
(34) |
Sep
(38) |
Oct
(34) |
Nov
(19) |
Dec
(20) |
| 2010 |
Jan
(11) |
Feb
(20) |
Mar
(65) |
Apr
(83) |
May
(104) |
Jun
(73) |
Jul
(78) |
Aug
(57) |
Sep
(43) |
Oct
(35) |
Nov
(9) |
Dec
(4) |
| 2011 |
Jan
(21) |
Feb
(11) |
Mar
(18) |
Apr
(10) |
May
(18) |
Jun
(15) |
Jul
(48) |
Aug
(25) |
Sep
(17) |
Oct
(45) |
Nov
(15) |
Dec
(12) |
| 2012 |
Jan
(21) |
Feb
(9) |
Mar
(12) |
Apr
(9) |
May
(9) |
Jun
(5) |
Jul
(1) |
Aug
(10) |
Sep
(12) |
Oct
(1) |
Nov
(28) |
Dec
(5) |
| 2013 |
Jan
(4) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2014 |
Jan
|
Feb
(1) |
Mar
(1) |
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
| 2015 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
| 2016 |
Jan
(2) |
Feb
(1) |
Mar
(1) |
Apr
(1) |
May
(2) |
Jun
|
Jul
(1) |
Aug
(2) |
Sep
|
Oct
|
Nov
(1) |
Dec
|
| 2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
|
|
|
|
|
|
1
|
|
2
|
3
(2) |
4
|
5
|
6
(8) |
7
|
8
|
|
9
(8) |
10
(7) |
11
(11) |
12
(7) |
13
(8) |
14
(8) |
15
(5) |
|
16
(3) |
17
|
18
(51) |
19
(9) |
20
(6) |
21
(3) |
22
(3) |
|
23
(2) |
24
|
25
(17) |
26
(1) |
27
(4) |
28
(5) |
29
(4) |
|
30
(1) |
31
(1) |
|
|
|
|
|
|
From: Elias N. <eli...@us...> - 2005-01-28 22:42:46
|
Update of /cvsroot/java-game-lib/LWJGL/src/native/win32 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14141/src/native/win32 Modified Files: org_lwjgl_Sys.c Log Message: Win32: Fixed Sys.alert() Index: org_lwjgl_Sys.c =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/native/win32/org_lwjgl_Sys.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- org_lwjgl_Sys.c 20 Jan 2005 22:51:28 -0000 1.6 +++ org_lwjgl_Sys.c 28 Jan 2005 22:42:23 -0000 1.7 @@ -82,7 +82,7 @@ { char * eMessageText = GetStringNativeChars(env, message); char * cTitleBarText = GetStringNativeChars(env, title); - MessageBox(getCurrentHWND(), eMessageText, cTitleBarText, MB_OK | MB_TOPMOST); + MessageBox(NULL, eMessageText, cTitleBarText, MB_OK | MB_TOPMOST); printfDebug("*** Alert ***%s\n%s\n", cTitleBarText, eMessageText); |
|
From: Elias N. <eli...@us...> - 2005-01-28 21:08:36
|
Update of /cvsroot/java-game-lib/LWJGL/src/native/common In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26045/common Modified Files: checkALerror.h Log Message: OpenAL: Enable error checking unconditionally, not only when debug is enabled Index: checkALerror.h =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/native/common/checkALerror.h,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- checkALerror.h 10 Sep 2004 08:13:47 -0000 1.12 +++ checkALerror.h 28 Jan 2005 21:08:16 -0000 1.13 @@ -39,25 +39,21 @@ #define CHECK_AL_ERROR \ { \ - if (isDebugEnabled()) { \ - int err = alGetError(); \ - if (err != AL_NO_ERROR) { \ - jclass cls = (*env)->FindClass(env, "org/lwjgl/openal/OpenALException"); \ - (*env)->ThrowNew(env, cls, (const char*) alGetString(err)); \ - (*env)->DeleteLocalRef(env, cls); \ - } \ + int err = alGetError(); \ + if (err != AL_NO_ERROR) { \ + jclass cls = (*env)->FindClass(env, "org/lwjgl/openal/OpenALException"); \ + (*env)->ThrowNew(env, cls, (const char*) alGetString(err)); \ + (*env)->DeleteLocalRef(env, cls); \ } \ } /* only available if deviceaddress is specified in method */ #define CHECK_ALC_ERROR \ { \ - if (isDebugEnabled()) { \ - int err = alcGetError((ALCdevice*) deviceaddress); \ - if (err != AL_NO_ERROR) { \ - jclass cls = (*env)->FindClass(env, "org/lwjgl/openal/OpenALException"); \ - (*env)->ThrowNew(env, cls, (const char*) alcGetString((ALCdevice*) deviceaddress, err)); \ - (*env)->DeleteLocalRef(env, cls); \ - } \ + int err = alcGetError((ALCdevice*) deviceaddress); \ + if (err != AL_NO_ERROR) { \ + jclass cls = (*env)->FindClass(env, "org/lwjgl/openal/OpenALException"); \ + (*env)->ThrowNew(env, cls, (const char*) alcGetString((ALCdevice*) deviceaddress, err)); \ + (*env)->DeleteLocalRef(env, cls); \ } \ } |
|
From: Elias N. <eli...@us...> - 2005-01-28 21:03:10
|
Update of /cvsroot/java-game-lib/LWJGL/src/native/common In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24917/src/native/common Modified Files: org_lwjgl_openal_ALC.c Log Message: OpenAL: Don't call CHECK_ALC_ERROR after alcCloseDevice Index: org_lwjgl_openal_ALC.c =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/native/common/org_lwjgl_openal_ALC.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- org_lwjgl_openal_ALC.c 14 Nov 2004 10:42:16 -0000 1.5 +++ org_lwjgl_openal_ALC.c 28 Jan 2005 21:02:48 -0000 1.6 @@ -163,7 +163,6 @@ */ static void JNICALL Java_org_lwjgl_openal_ALC_alcCloseDevice (JNIEnv *env, jclass clazz, jint deviceaddress) { alcCloseDevice((ALCdevice*) deviceaddress); - CHECK_ALC_ERROR } /** |
|
From: Elias N. <eli...@us...> - 2005-01-28 15:48:04
|
Update of /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/openal In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8244/src/java/org/lwjgl/openal Modified Files: AL.java Log Message: Renamed AL.getPathFromJWS to AL.getPathFromClassLoader and made it access protected methods too Index: AL.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/openal/AL.java,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- AL.java 22 Nov 2004 09:43:52 -0000 1.34 +++ AL.java 28 Jan 2005 15:47:29 -0000 1.35 @@ -145,15 +145,15 @@ throw new LWJGLException("Unknown platform: "+osName); } - String jwsPath = getPathFromJWS(jwsLibname); + String jwsPath = getPathFromClassLoader(jwsLibname); if (jwsPath != null) { - Sys.log("getPathFromJWS: Path found: " + jwsPath); + Sys.log("getPathFromClassLoader: Path found: " + jwsPath); libpath += seperator + jwsPath.substring(0, jwsPath.lastIndexOf(File.separator)); } - String lwjgl_jws_path = getPathFromJWS("lwjgl"); + String lwjgl_jws_path = getPathFromClassLoader("lwjgl"); if (lwjgl_jws_path != null) { - Sys.log("getPathFromJWS: Path found: " + lwjgl_jws_path); + Sys.log("getPathFromClassLoader: Path found: " + lwjgl_jws_path); libpath += seperator + lwjgl_jws_path.substring(0, lwjgl_jws_path.lastIndexOf(File.separator)); } @@ -237,25 +237,29 @@ } /** - * Tries to locate OpenAL from the JWS Library path + * Tries to locate OpenAL from the current ClassLoader * This method exists because OpenAL is loaded from native code, and as such - * is exempt from JWS library loading rutines. OpenAL therefore always fails. - * We therefore invoke the protected method of the JWS classloader to see if it can + * is exempt from ClassLoader library loading rutines. OpenAL therefore always fails. + * We therefore invoke the protected method of the ClassLoader to see if it can * locate it. * * @param libname Name of library to search for * @return Absolute path to library if found, otherwise null */ - private static String getPathFromJWS(String libname) { + private static String getPathFromClassLoader(String libname) { try { - Sys.log("getPathFromJWS: searching for: " + libname); + Sys.log("getPathFromClassLoader: searching for: " + libname); Object o = AL.class.getClassLoader(); Class c = o.getClass(); - Method findLibrary = - c.getMethod("findLibrary", new Class[] { String.class }); - Object[] arguments = new Object[] { libname }; - return (String) findLibrary.invoke(o, arguments); - + while (c != null) { + try { + Method findLibrary = c.getDeclaredMethod("findLibrary", new Class[] { String.class }); + Object[] arguments = new Object[] { libname }; + return (String)findLibrary.invoke(o, arguments); + } catch (NoSuchMethodException e) { + c = c.getSuperclass(); + } + } } catch (Exception e) { Sys.log("Failure locating OpenAL using classloader:" + e); } |
|
From: Gregory P. <gre...@us...> - 2005-01-28 02:10:02
|
Update of /cvsroot/java-game-lib/LWJGL In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29859 Modified Files: build.xml Log Message: Update to fix a problem with openal environmental problem in the OSX version Index: build.xml =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/build.xml,v retrieving revision 1.56 retrieving revision 1.57 diff -u -d -r1.56 -r1.57 --- build.xml 25 Jan 2005 21:26:18 -0000 1.56 +++ build.xml 28 Jan 2005 02:09:51 -0000 1.57 @@ -311,7 +311,7 @@ <echo>Compiling Mac OS X LWJGL version</echo> <exec dir="${lwjgl.src.native}/macosx" executable="make" failonerror="true"> - <env key="AL" path="${openal.home}/include/AL/" /> + <env key="AL" path="${openal.home}" /> </exec> <move file="${lwjgl.src.native}/macosx/liblwjgl.jnilib" tofile="${lwjgl.lib}/liblwjgl.jnilib" /> |