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
|
4
(1) |
5
|
6
(4) |
7
|
8
|
|
9
|
10
(3) |
11
|
12
|
13
|
14
|
15
(5) |
|
16
|
17
|
18
|
19
|
20
(9) |
21
(4) |
22
|
|
23
(3) |
24
|
25
|
26
|
27
(2) |
28
(3) |
29
|
|
30
(2) |
31
(1) |
|
|
|
|
|
|
From: Brian M. <ma...@us...> - 2005-10-20 21:46:33
|
Update of /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/openal In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28269/src/java/org/lwjgl/openal Modified Files: AL.java Log Message: using OpenAL32.dll name Index: AL.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/openal/AL.java,v retrieving revision 1.46 retrieving revision 1.47 diff -u -d -r1.46 -r1.47 --- AL.java 16 Sep 2005 06:50:34 -0000 1.46 +++ AL.java 20 Oct 2005 21:46:20 -0000 1.47 @@ -95,7 +95,7 @@ if (created) throw new IllegalStateException("Only one OpenAL context may be instantiated at any one time."); String[] oalPaths = LWJGLUtil.getLibraryPaths(new String[]{ - "lwjglaudio", "lwjglaudio.dll", + "OpenAL32", "OpenAL32.dll", "openal", "libopenal.so", "openal", "openal.dylib"}, AL.class.getClassLoader()); LWJGLUtil.log("Found " + oalPaths.length + " OpenAL paths"); |
|
From: Brian M. <ma...@us...> - 2005-10-20 21:32:48
|
Update of /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25011/src/java/org/lwjgl Modified Files: LWJGLUtil.java Log Message: changed search order to: 1) Library path 2) Current dir 3) OS search Index: LWJGLUtil.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/LWJGLUtil.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- LWJGLUtil.java 30 May 2005 16:21:03 -0000 1.6 +++ LWJGLUtil.java 20 Oct 2005 21:32:33 -0000 1.7 @@ -120,21 +120,31 @@ + File.separator + platform_lib_name); } - //add cwd path - possible_paths.add(platform_lib_name); - // Add all possible paths from java.library.path String java_library_path = (String)AccessController.doPrivileged(new PrivilegedAction() { public Object run() { return System.getProperty("java.library.path"); } }); + StringTokenizer st = new StringTokenizer(java_library_path, File.pathSeparator); while (st.hasMoreTokens()) { String path = st.nextToken(); possible_paths.add(path + File.separator + platform_lib_name); } + //add current path + String current_dir = (String)AccessController.doPrivileged(new PrivilegedAction() { + public Object run() { + return System.getProperty("user.dir"); + } + }); + possible_paths.add(current_dir + File.separator + platform_lib_name); + + + //add pure library (no path, let OS search) + possible_paths.add(platform_lib_name); + //create needed string array String[] paths = new String[possible_paths.size()]; possible_paths.toArray(paths); |
|
From: Brian M. <ma...@us...> - 2005-10-20 21:31:27
|
Update of /cvsroot/java-game-lib/LWJGL In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24372 Modified Files: build.xml Log Message: using OpenAL32.dll as name now (renamed wrap_oal.dll still, due to proxy issues) Index: build.xml =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/build.xml,v retrieving revision 1.91 retrieving revision 1.92 diff -u -d -r1.91 -r1.92 --- build.xml 20 Oct 2005 16:56:11 -0000 1.91 +++ build.xml 20 Oct 2005 21:31:00 -0000 1.92 @@ -91,7 +91,7 @@ <include name="lwjgl-fmod3.dll" /> <include name="lwjgl-devil.dll" /> - <include name="lwjglaudio.dll" /> + <include name="OpenAL32.dll" /> <include name="DevIL.dll" /> <include name="ILU.dll" /> <include name="ILUT.dll" /> |
|
From: Brian M. <ma...@us...> - 2005-10-20 21:29:03
|
Update of /cvsroot/java-game-lib/LWJGL/libs/win32 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23949 Added Files: OpenAL32.dll Removed Files: lwjglaudio.dll Log Message: using OpenAL32.dll as name now (renamed wrap_oal.dll still, due to proxy issues) --- NEW FILE: OpenAL32.dll --- (This appears to be a binary file; contents omitted.) --- lwjglaudio.dll DELETED --- |
|
From: Brian M. <ma...@us...> - 2005-10-20 17:03:01
|
Update of /cvsroot/java-game-lib/LWJGL/www/_gfx/projects In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25374 Added Files: drommi_small_1.jpg drommi_small_2.jpg drommi_small_3.jpg Log Message: added drommi racing --- NEW FILE: drommi_small_2.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: drommi_small_1.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: drommi_small_3.jpg --- (This appears to be a binary file; contents omitted.) |
|
From: Brian M. <ma...@us...> - 2005-10-20 17:02:12
|
Update of /cvsroot/java-game-lib/LWJGL/www In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25148 Added Files: favicon.ico Log Message: icon! - WE'VE GOT ICON! :D --- NEW FILE: favicon.ico --- (This appears to be a binary file; contents omitted.) |
|
From: Brian M. <ma...@us...> - 2005-10-20 17:01:51
|
Update of /cvsroot/java-game-lib/LWJGL/www In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24869 Modified Files: projects.php Log Message: added drommi racing Index: projects.php =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/www/projects.php,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- projects.php 15 Oct 2005 08:54:40 -0000 1.11 +++ projects.php 20 Oct 2005 17:01:17 -0000 1.12 @@ -164,7 +164,23 @@ 'big' => 'jglmark_2.jpg'), 2 => array( 'small' => 'jglmark_small_3.jpg', - 'big' => 'jglmark_3.jpg'))); + 'big' => 'jglmark_3.jpg'))); + + $projects[] = array( + 'name' => 'Drommi Race', + 'url' => 'http://www.drommiracing.com/', + 'type' => 'Commercial TV-Game', + 'desc' => 'Bet on your favorite Camelus dromedarius to win the race for you. And then send some SMS to shoot some whips, spurs or even flying carpets to enliven your drommi. The more items you collect the faster your drommi will go. But be aware that you play with or agains all others watching the race! Others may have bet on the same drommi and help you. But most will bet on one of the other eight drommies in the race, so you\'ll have though competition. The game runs on SuperRTL in Germany and in Cairos Tasliya TV. It is using UTF-16 and therefore multilingual.', + 'screens' => array( + 0 => array( + 'small' => 'drommi_small_1.jpg', + 'big' => ''), + 1 => array( + 'small' => 'drommi_small_2.jpg', + 'big' => ''), + 2 => array( + 'small' => 'drommi_small_3.jpg', + 'big' => ''))); function displayProjects() { @@ -192,7 +208,12 @@ echo " <td colspan=\"2\"><br/>\n"; for ($i = 0; $i < count($project['screens']); $i++) { - echo " <a href=\"javascript: openPopUp('".urlencode($project['screens'][$i]['big'])."');\"><img src=\"_gfx/projects/".$project['screens'][$i]['small']."\" border=\"0\" alt=\"\"/></a>\n"; + echo " "; + if($project['screens'][$i]['big'] != "") { + echo "<a href=\"javascript: openPopUp('".urlencode($project['screens'][$i]['big'])."');\"><img src=\"_gfx/projects/".$project['screens'][$i]['small']."\" border=\"0\" alt=\"\"/></a>\n"; + } else { + echo "<img src=\"_gfx/projects/".$project['screens'][$i]['small']."\" border=\"0\" alt=\"\"/>\n"; + } } echo " <br/><br/></td>\n"; |
|
From: Brian M. <ma...@us...> - 2005-10-20 16:59:19
|
Update of /cvsroot/java-game-lib/LWJGL/www In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24043 Modified Files: credits.php Log Message: changed ø to proper html entity Index: credits.php =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/www/credits.php,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- credits.php 27 Nov 2004 16:02:05 -0000 1.4 +++ credits.php 20 Oct 2005 16:59:12 -0000 1.5 @@ -17,7 +17,7 @@ <b>Contributors</b> </p> <ul> - <li>Niels Jørgensen</li> + <li>Niels Jørgensen</li> <li>Tristan Campbell</li> <li>Gregory Pierce</li> <li>Luke Holden</li> |
|
From: Brian M. <ma...@us...> - 2005-10-20 16:56:20
|
Update of /cvsroot/java-game-lib/LWJGL In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23355 Modified Files: build.xml Log Message: update to generated dir Index: build.xml =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/build.xml,v retrieving revision 1.90 retrieving revision 1.91 diff -u -d -r1.90 -r1.91 --- build.xml 29 Sep 2005 18:12:19 -0000 1.90 +++ build.xml 20 Oct 2005 16:56:11 -0000 1.91 @@ -136,10 +136,7 @@ <uptodate property="lwjgl.main.built" targetfile="${lwjgl.lib}/win32/lwjgl.dll" > <srcfiles dir= "${lwjgl.src.native}/common" includes="*.c*"/> - <srcfiles dir= "${lwjgl.src.native}/common/arb" includes="*.c"/> - <srcfiles dir= "${lwjgl.src.native}/common/nv" includes="*.c"/> - <srcfiles dir= "${lwjgl.src.native}/common/ext" includes="*.c"/> - <srcfiles dir= "${lwjgl.src.native}/common/ati" includes="*.c"/> + <srcfiles dir= "${lwjgl.src.native}/generated" includes="*.c"/> <srcfiles dir= "${lwjgl.src.native}/win32" includes="*.cpp"/> </uptodate> |