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
(4) |
3
(2) |
4
(1) |
5
|
6
|
7
|
|
8
(2) |
9
|
10
|
11
|
12
(1) |
13
|
14
|
|
15
(4) |
16
|
17
|
18
|
19
|
20
(3) |
21
|
|
22
|
23
|
24
(1) |
25
|
26
(1) |
27
|
28
|
|
29
|
30
|
|
|
|
|
|
|
From: <ma...@us...> - 2009-11-26 22:44:31
|
Revision: 3255
http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3255&view=rev
Author: matzon
Date: 2009-11-26 22:44:17 +0000 (Thu, 26 Nov 2009)
Log Message:
-----------
stop updating cursor all the time and only continue animation if mouse is inside window
Modified Paths:
--------------
trunk/LWJGL/src/java/org/lwjgl/input/Mouse.java
trunk/LWJGL/src/java/org/lwjgl/opengl/WindowsDisplay.java
Modified: trunk/LWJGL/src/java/org/lwjgl/input/Mouse.java
===================================================================
--- trunk/LWJGL/src/java/org/lwjgl/input/Mouse.java 2009-11-24 20:13:12 UTC (rev 3254)
+++ trunk/LWJGL/src/java/org/lwjgl/input/Mouse.java 2009-11-26 22:44:17 UTC (rev 3255)
@@ -630,7 +630,7 @@
*/
public static void updateCursor() {
synchronized (OpenGLPackageAccess.global_lock) {
- if (emulateCursorAnimation && currentCursor != null && currentCursor.hasTimedOut()) {
+ if (emulateCursorAnimation && currentCursor != null && currentCursor.hasTimedOut() && Mouse.isInsideWindow()) {
currentCursor.nextCursor();
try {
setNativeCursor(currentCursor);
Modified: trunk/LWJGL/src/java/org/lwjgl/opengl/WindowsDisplay.java
===================================================================
--- trunk/LWJGL/src/java/org/lwjgl/opengl/WindowsDisplay.java 2009-11-24 20:13:12 UTC (rev 3254)
+++ trunk/LWJGL/src/java/org/lwjgl/opengl/WindowsDisplay.java 2009-11-26 22:44:17 UTC (rev 3255)
@@ -761,7 +761,6 @@
private static native int defWindowProc(long hwnd, int msg, long wParam, long lParam);
private void checkCursorState() {
- updateCursor();
updateClipping();
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ka...@us...> - 2009-11-24 20:13:19
|
Revision: 3254
http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3254&view=rev
Author: kappa1
Date: 2009-11-24 20:13:12 +0000 (Tue, 24 Nov 2009)
Log Message:
-----------
Mouse Grab Bug on Linux Fixed when LWJGL is run as an applet.
Modified Paths:
--------------
trunk/LWJGL/src/java/org/lwjgl/opengl/LinuxDisplay.java
Modified: trunk/LWJGL/src/java/org/lwjgl/opengl/LinuxDisplay.java
===================================================================
--- trunk/LWJGL/src/java/org/lwjgl/opengl/LinuxDisplay.java 2009-11-20 23:28:37 UTC (rev 3253)
+++ trunk/LWJGL/src/java/org/lwjgl/opengl/LinuxDisplay.java 2009-11-24 20:13:12 UTC (rev 3254)
@@ -871,13 +871,15 @@
return;
focused = got_focus;
+ if (focused) {
+ acquireInput();
+ }
+
if (parent != null && xembedded && focused != parent.hasFocus()) {
return;
}
- if (focused) {
- acquireInput();
- } else {
+ if (!focused) {
releaseInput();
if (parent != null && xembedded) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ma...@us...> - 2009-11-20 23:28:48
|
Revision: 3253
http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3253&view=rev
Author: matzon
Date: 2009-11-20 23:28:37 +0000 (Fri, 20 Nov 2009)
Log Message:
-----------
cleanup imports
Modified Paths:
--------------
trunk/LWJGL/src/java/org/lwjgl/util/applet/AppletLoader.java
Modified: trunk/LWJGL/src/java/org/lwjgl/util/applet/AppletLoader.java
===================================================================
--- trunk/LWJGL/src/java/org/lwjgl/util/applet/AppletLoader.java 2009-11-20 23:26:26 UTC (rev 3252)
+++ trunk/LWJGL/src/java/org/lwjgl/util/applet/AppletLoader.java 2009-11-20 23:28:37 UTC (rev 3253)
@@ -73,8 +73,6 @@
import java.util.jar.JarOutputStream;
import java.util.jar.Pack200;
-import com.sun.net.ssl.HttpsURLConnection;
-
import sun.security.util.SecurityConstants;
/**
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ma...@us...> - 2009-11-20 23:26:35
|
Revision: 3252
http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3252&view=rev
Author: matzon
Date: 2009-11-20 23:26:26 +0000 (Fri, 20 Nov 2009)
Log Message:
-----------
use HEAD request when determening file size
Modified Paths:
--------------
trunk/LWJGL/src/java/org/lwjgl/util/applet/AppletLoader.java
Modified: trunk/LWJGL/src/java/org/lwjgl/util/applet/AppletLoader.java
===================================================================
--- trunk/LWJGL/src/java/org/lwjgl/util/applet/AppletLoader.java 2009-11-20 23:06:24 UTC (rev 3251)
+++ trunk/LWJGL/src/java/org/lwjgl/util/applet/AppletLoader.java 2009-11-20 23:26:26 UTC (rev 3252)
@@ -73,6 +73,8 @@
import java.util.jar.JarOutputStream;
import java.util.jar.Pack200;
+import com.sun.net.ssl.HttpsURLConnection;
+
import sun.security.util.SecurityConstants;
/**
@@ -789,6 +791,9 @@
for (int i = 0; i < urlList.length; i++) {
urlconnection = urlList[i].openConnection();
urlconnection.setDefaultUseCaches(false);
+ if (urlconnection instanceof HttpURLConnection) {
+ ((HttpURLConnection) urlconnection).setRequestMethod("HEAD");
+ }
fileSizes[i] = urlconnection.getContentLength();
totalSizeDownload += fileSizes[i];
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ma...@us...> - 2009-11-20 23:06:32
|
Revision: 3251
http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3251&view=rev
Author: matzon
Date: 2009-11-20 23:06:24 +0000 (Fri, 20 Nov 2009)
Log Message:
-----------
workaround for missing certificate for AppletLoader if cached
Modified Paths:
--------------
trunk/LWJGL/src/java/org/lwjgl/util/applet/AppletLoader.java
Modified: trunk/LWJGL/src/java/org/lwjgl/util/applet/AppletLoader.java
===================================================================
--- trunk/LWJGL/src/java/org/lwjgl/util/applet/AppletLoader.java 2009-11-15 21:36:49 UTC (rev 3250)
+++ trunk/LWJGL/src/java/org/lwjgl/util/applet/AppletLoader.java 2009-11-20 23:06:24 UTC (rev 3251)
@@ -54,6 +54,7 @@
import java.lang.reflect.Constructor;
import java.lang.reflect.Method;
import java.net.HttpURLConnection;
+import java.net.JarURLConnection;
import java.net.SocketPermission;
import java.net.URL;
import java.net.URLClassLoader;
@@ -1045,6 +1046,16 @@
// get the current certificate to compare against native files
Certificate[] certificate = AppletLoader.class.getProtectionDomain().getCodeSource().getCertificates();
+
+ // workaround for bug where cached applet loader does not have certificates!?
+ if (certificate == null) {
+ URL location = AppletLoader.class.getProtectionDomain().getCodeSource().getLocation();
+
+ // manually load the certificate
+ JarURLConnection jurl = (JarURLConnection) (new URL("jar:" + location.toString() + "!/org/lwjgl/util/applet/AppletLoader.class").openConnection());
+ jurl.setDefaultUseCaches(true);
+ certificate = jurl.getCertificates();
+ }
// create native folder
File nativeFolder = new File(path + "natives");
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ma...@us...> - 2009-11-15 21:37:01
|
Revision: 3250
http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3250&view=rev
Author: matzon
Date: 2009-11-15 21:36:49 +0000 (Sun, 15 Nov 2009)
Log Message:
-----------
sync with online
Modified Paths:
--------------
trunk/LWJGL/www/_include/header.php
trunk/LWJGL/www/changelog.php
trunk/LWJGL/www/changelogs/full-changelog.txt
trunk/LWJGL/www/documentation.php
trunk/LWJGL/www/donations.php
trunk/LWJGL/www/download.php
trunk/LWJGL/www/index.php
trunk/LWJGL/www/installation.php
trunk/LWJGL/www/irclog_browse.php
trunk/LWJGL/www/jnlp/logo.png
trunk/LWJGL/www/jnlp/lwjgl-demo.php
trunk/LWJGL/www/jnlp/source.php
trunk/LWJGL/www/license.php
trunk/LWJGL/www/links.php
trunk/LWJGL/www/projects.php
trunk/LWJGL/www/shop.php
Added Paths:
-----------
trunk/LWJGL/www/_gfx/projects/arcade_1.gif
trunk/LWJGL/www/_gfx/projects/arcade_2.jpg
trunk/LWJGL/www/_gfx/projects/arcade_3.jpg
trunk/LWJGL/www/_gfx/projects/arcade_small_1.gif
trunk/LWJGL/www/_gfx/projects/arcade_small_2.gif
trunk/LWJGL/www/_gfx/projects/arcade_small_3.gif
trunk/LWJGL/www/_gfx/projects/devastro_1.jpg
trunk/LWJGL/www/_gfx/projects/devastro_2.jpg
trunk/LWJGL/www/_gfx/projects/devastro_3.jpg
trunk/LWJGL/www/_gfx/projects/devastro_small_1.jpg
trunk/LWJGL/www/_gfx/projects/devastro_small_2.jpg
trunk/LWJGL/www/_gfx/projects/devastro_small_3.jpg
trunk/LWJGL/www/_gfx/projects/droid_assault_1.jpg
trunk/LWJGL/www/_gfx/projects/droid_assault_2.jpg
trunk/LWJGL/www/_gfx/projects/droid_assault_3.jpg
trunk/LWJGL/www/_gfx/projects/droid_assault_small_1.jpg
trunk/LWJGL/www/_gfx/projects/droid_assault_small_2.jpg
trunk/LWJGL/www/_gfx/projects/droid_assault_small_3.jpg
trunk/LWJGL/www/_gfx/projects/ds4_1.png
trunk/LWJGL/www/_gfx/projects/ds4_1_small.png
trunk/LWJGL/www/_gfx/projects/ds4_2.png
trunk/LWJGL/www/_gfx/projects/ds4_2_small.png
trunk/LWJGL/www/_gfx/projects/ds4_3.png
trunk/LWJGL/www/_gfx/projects/ds4_3_small.png
trunk/LWJGL/www/_gfx/projects/fenggui_1.png
trunk/LWJGL/www/_gfx/projects/fenggui_2.png
trunk/LWJGL/www/_gfx/projects/fenggui_3.png
trunk/LWJGL/www/_gfx/projects/fenggui_small_1.png
trunk/LWJGL/www/_gfx/projects/fenggui_small_2.png
trunk/LWJGL/www/_gfx/projects/fenggui_small_3.png
trunk/LWJGL/www/_gfx/projects/grappling_hook_1.jpg
trunk/LWJGL/www/_gfx/projects/grappling_hook_2.jpg
trunk/LWJGL/www/_gfx/projects/grappling_hook_3.jpg
trunk/LWJGL/www/_gfx/projects/grappling_hook_small_1.jpg
trunk/LWJGL/www/_gfx/projects/grappling_hook_small_2.jpg
trunk/LWJGL/www/_gfx/projects/grappling_hook_small_3.jpg
trunk/LWJGL/www/_gfx/projects/illarion_1.png
trunk/LWJGL/www/_gfx/projects/illarion_2.png
trunk/LWJGL/www/_gfx/projects/illarion_3.png
trunk/LWJGL/www/_gfx/projects/illarion_small_1.png
trunk/LWJGL/www/_gfx/projects/illarion_small_2.png
trunk/LWJGL/www/_gfx/projects/illarion_small_3.png
trunk/LWJGL/www/_gfx/projects/lavirinto3d_1.jpg
trunk/LWJGL/www/_gfx/projects/lavirinto3d_2.jpg
trunk/LWJGL/www/_gfx/projects/lavirinto3d_3.jpg
trunk/LWJGL/www/_gfx/projects/lavirinto3d_small_1.jpg
trunk/LWJGL/www/_gfx/projects/lavirinto3d_small_2.jpg
trunk/LWJGL/www/_gfx/projects/lavirinto3d_small_3.jpg
trunk/LWJGL/www/_gfx/projects/monstrumo_small_3.jpg
trunk/LWJGL/www/_gfx/projects/mso_1.jpg
trunk/LWJGL/www/_gfx/projects/mso_2.jpg
trunk/LWJGL/www/_gfx/projects/mso_3.jpg
trunk/LWJGL/www/_gfx/projects/mso_small_1.jpg
trunk/LWJGL/www/_gfx/projects/mso_small_2.jpg
trunk/LWJGL/www/_gfx/projects/mso_small_3.jpg
trunk/LWJGL/www/_gfx/projects/ranaremake_1.png
trunk/LWJGL/www/_gfx/projects/ranaremake_2.png
trunk/LWJGL/www/_gfx/projects/ranaremake_3.png
trunk/LWJGL/www/_gfx/projects/ranaremake_small_1.png
trunk/LWJGL/www/_gfx/projects/ranaremake_small_2.png
trunk/LWJGL/www/_gfx/projects/ranaremake_small_3.png
trunk/LWJGL/www/_gfx/projects/riders_1.png
trunk/LWJGL/www/_gfx/projects/riders_2.png
trunk/LWJGL/www/_gfx/projects/riders_3.png
trunk/LWJGL/www/_gfx/projects/riders_small_1.png
trunk/LWJGL/www/_gfx/projects/riders_small_2.png
trunk/LWJGL/www/_gfx/projects/riders_small_3.png
trunk/LWJGL/www/_gfx/projects/sokobano_1.png
trunk/LWJGL/www/_gfx/projects/sokobano_2.png
trunk/LWJGL/www/_gfx/projects/sokobano_3.png
trunk/LWJGL/www/_gfx/projects/sokobano_small_1.jpg
trunk/LWJGL/www/_gfx/projects/sokobano_small_2.jpg
trunk/LWJGL/www/_gfx/projects/sokobano_small_3.jpg
trunk/LWJGL/www/_gfx/projects/swc_1.png
trunk/LWJGL/www/_gfx/projects/swc_2.png
trunk/LWJGL/www/_gfx/projects/swc_3.png
trunk/LWJGL/www/_gfx/projects/swc_small_1.png
trunk/LWJGL/www/_gfx/projects/swc_small_2.png
trunk/LWJGL/www/_gfx/projects/swc_small_3.png
trunk/LWJGL/www/_gfx/projects/visspace_1.jpg
trunk/LWJGL/www/_gfx/projects/visspace_2.jpg
trunk/LWJGL/www/_gfx/projects/visspace_3.jpg
trunk/LWJGL/www/_gfx/projects/visspace_small_1.jpg
trunk/LWJGL/www/_gfx/projects/visspace_small_2.jpg
trunk/LWJGL/www/_gfx/projects/visspace_small_3.jpg
trunk/LWJGL/www/_gfx/projects/waterstorm_1.png
trunk/LWJGL/www/_gfx/projects/waterstorm_2.png
trunk/LWJGL/www/_gfx/projects/waterstorm_3.png
trunk/LWJGL/www/_gfx/projects/waterstorm_small_1.png
trunk/LWJGL/www/_gfx/projects/waterstorm_small_2.png
trunk/LWJGL/www/_gfx/projects/waterstorm_small_3.png
trunk/LWJGL/www/changelogs/2.0-changelog.txt
trunk/LWJGL/www/changelogs/2.0-rc1-changelog.txt
trunk/LWJGL/www/changelogs/2.0-rc2-changelog.txt
trunk/LWJGL/www/changelogs/2.0.1-changelog.txt
trunk/LWJGL/www/changelogs/2.1.0-changelog.txt
trunk/LWJGL/www/changelogs/2.2.0-changelog.txt
trunk/LWJGL/www/changelogs/2.2.1-changelog.txt
trunk/LWJGL/www/jnlp/extension.php
Added: trunk/LWJGL/www/_gfx/projects/arcade_1.gif
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/arcade_1.gif
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/arcade_2.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/arcade_2.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/arcade_3.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/arcade_3.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/arcade_small_1.gif
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/arcade_small_1.gif
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/arcade_small_2.gif
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/arcade_small_2.gif
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/arcade_small_3.gif
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/arcade_small_3.gif
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/devastro_1.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/devastro_1.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/devastro_2.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/devastro_2.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/devastro_3.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/devastro_3.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/devastro_small_1.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/devastro_small_1.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/devastro_small_2.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/devastro_small_2.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/devastro_small_3.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/devastro_small_3.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/droid_assault_1.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/droid_assault_1.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/droid_assault_2.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/droid_assault_2.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/droid_assault_3.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/droid_assault_3.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/droid_assault_small_1.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/droid_assault_small_1.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/droid_assault_small_2.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/droid_assault_small_2.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/droid_assault_small_3.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/droid_assault_small_3.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/ds4_1.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/ds4_1.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/ds4_1_small.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/ds4_1_small.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/ds4_2.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/ds4_2.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/ds4_2_small.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/ds4_2_small.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/ds4_3.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/ds4_3.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/ds4_3_small.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/ds4_3_small.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/fenggui_1.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/fenggui_1.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/fenggui_2.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/fenggui_2.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/fenggui_3.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/fenggui_3.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/fenggui_small_1.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/fenggui_small_1.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/fenggui_small_2.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/fenggui_small_2.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/fenggui_small_3.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/fenggui_small_3.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/grappling_hook_1.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/grappling_hook_1.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/grappling_hook_2.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/grappling_hook_2.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/grappling_hook_3.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/grappling_hook_3.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/grappling_hook_small_1.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/grappling_hook_small_1.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/grappling_hook_small_2.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/grappling_hook_small_2.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/grappling_hook_small_3.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/grappling_hook_small_3.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/illarion_1.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/illarion_1.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/illarion_2.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/illarion_2.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/illarion_3.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/illarion_3.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/illarion_small_1.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/illarion_small_1.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/illarion_small_2.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/illarion_small_2.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/illarion_small_3.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/illarion_small_3.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/lavirinto3d_1.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/lavirinto3d_1.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/lavirinto3d_2.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/lavirinto3d_2.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/lavirinto3d_3.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/lavirinto3d_3.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/lavirinto3d_small_1.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/lavirinto3d_small_1.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/lavirinto3d_small_2.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/lavirinto3d_small_2.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/lavirinto3d_small_3.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/lavirinto3d_small_3.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/monstrumo_small_3.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/monstrumo_small_3.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/mso_1.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/mso_1.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/mso_2.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/mso_2.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/mso_3.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/mso_3.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/mso_small_1.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/mso_small_1.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/mso_small_2.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/mso_small_2.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/mso_small_3.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/mso_small_3.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/ranaremake_1.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/ranaremake_1.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/ranaremake_2.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/ranaremake_2.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/ranaremake_3.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/ranaremake_3.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/ranaremake_small_1.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/ranaremake_small_1.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/ranaremake_small_2.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/ranaremake_small_2.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/ranaremake_small_3.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/ranaremake_small_3.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/riders_1.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/riders_1.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/riders_2.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/riders_2.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/riders_3.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/riders_3.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/riders_small_1.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/riders_small_1.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/riders_small_2.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/riders_small_2.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/riders_small_3.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/riders_small_3.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/sokobano_1.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/sokobano_1.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/sokobano_2.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/sokobano_2.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/sokobano_3.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/sokobano_3.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/sokobano_small_1.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/sokobano_small_1.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/sokobano_small_2.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/sokobano_small_2.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/sokobano_small_3.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/sokobano_small_3.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/swc_1.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/swc_1.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/swc_2.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/swc_2.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/swc_3.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/swc_3.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/swc_small_1.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/swc_small_1.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/swc_small_2.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/swc_small_2.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/swc_small_3.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/swc_small_3.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/visspace_1.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/visspace_1.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/visspace_2.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/visspace_2.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/visspace_3.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/visspace_3.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/visspace_small_1.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/visspace_small_1.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/visspace_small_2.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/visspace_small_2.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/visspace_small_3.jpg
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/visspace_small_3.jpg
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/waterstorm_1.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/waterstorm_1.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/waterstorm_2.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/waterstorm_2.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/waterstorm_3.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/waterstorm_3.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/waterstorm_small_1.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/waterstorm_small_1.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/waterstorm_small_2.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/waterstorm_small_2.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/LWJGL/www/_gfx/projects/waterstorm_small_3.png
===================================================================
(Binary files differ)
Property changes on: trunk/LWJGL/www/_gfx/projects/waterstorm_small_3.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Modified: trunk/LWJGL/www/_include/header.php
===================================================================
--- trunk/LWJGL/www/_include/header.php 2009-11-15 21:10:49 UTC (rev 3249)
+++ trunk/LWJGL/www/_include/header.php 2009-11-15 21:36:49 UTC (rev 3250)
@@ -59,15 +59,15 @@
<h2>Developers</h2>
<p>
<a href="http://cia.lwjgl.org" target="_blank">Commit logs</a><br/>
- <a href="http://svn.sourceforge.net/viewcvs.cgi/java-game-lib/" target="_blank">Source Tree</a><br/>
+ <a href="http://java-game-lib.svn.sourceforge.net/viewvc/java-game-lib/" target="_blank">Source Tree</a><br/>
<a href="http://sourceforge.net/projects/java-game-lib" target="_blank">Project Home</a><br/>
</p>
<h2>Miscellaneous</h2>
<p>
<a href="links.php"<?=((strpos($_SERVER['SCRIPT_NAME'], 'links.php') !== false) ? ' class="activeItem"' : '');?>>Links</a><br/>
<a href="changelog.php"<?=((strpos($_SERVER['SCRIPT_NAME'], 'changelog.php') !== false) ? ' class="activeItem"' : '');?>>Changelog</a><br/>
- <a href="irclog_browse.php"<?=((strpos($_SERVER['SCRIPT_NAME'], 'irclog.php') !== false) ? ' class="activeItem"' : '');?>>IRC Chatlog</a><br/>
- <a href="http://irc-stats.lwjgl.org" target="_blank">IRC Stats</a><br/>
+ <a href="http://echelog.matzon.dk/logs/browse/lwjgl/" target="_blank">IRC Chatlog</a><br/>
+ <a href="http://echelog.matzon.dk/stats/lwjgl.html" target="_blank">IRC Stats</a><br/>
</p>
<p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
@@ -85,7 +85,7 @@
<a href="http://www.opengl.org" target="_blank"><img src="_gfx/button_opengl.png" alt="OpenGL" border="0"></a><br/><br/>
<a href="http://www.openal.org" target="_blank"><img src="_gfx/button_openal.png" alt="OpenAL" border="0"></a><br/><br/>
<a href="http://java.net" target="_blank"><img src="_gfx/button_javanet.png" alt="java.net" border="0"></a><br/><br/>
- <a href="http://sourceforge.net" target="_blank"><img src="_gfx/button_sourceforge.png" alt="SourceForge.net" border="0"></a><br/><br/>
+ <a href="http://sourceforge.net/projects/java-game-lib"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=58488&type=8" width="80" height="15" border="0" alt="Get Lightweight Java Game Library at SourceForge.net. Fast, secure and Free Open Source software downloads" /></a><br/><br/>
</p>
</div>
<div class="content">
\ No newline at end of file
Modified: trunk/LWJGL/www/changelog.php
===================================================================
--- trunk/LWJGL/www/changelog.php 2009-11-15 21:10:49 UTC (rev 3249)
+++ trunk/LWJGL/www/changelog.php 2009-11-15 21:36:49 UTC (rev 3250)
@@ -17,7 +17,14 @@
</p>
<ul>
<li><a href="http://www.lwjgl.org/changelogs/full-changelog.txt" target="_blank">Full changelog</a></li>
- <li><a href="#1.1.4">LWJGL 1.1.4</a></li>
+ <li><a href="#2.2.1">LWJGL 2.2.1</a></li>
+ <li><a href="http://www.lwjgl.org/changelogs/2.2.0-changelog.txt" target="_blank">LWJGL 2.2.0</a></li>
+ <li><a href="http://www.lwjgl.org/changelogs/2.1.0-changelog.txt" target="_blank">LWJGL 2.1.0</a></li>
+ <li><a href="http://www.lwjgl.org/changelogs/2.0.1-changelog.txt" target="_blank">LWJGL 2.0.1</a></li>
+ <li><a href="http://www.lwjgl.org/changelogs/2.0-changelog.txt" target="_blank">LWJGL 2.0</a></li>
+ <li><a href="http://www.lwjgl.org/changelogs/2.0-rc2-changelog.txt" target="_blank">LWJGL 2.0-rc2</a></li>
+ <li><a href="http://www.lwjgl.org/changelogs/2.0-rc1-changelog.txt" target="_blank">LWJGL 2.0-rc1</a></li>
+ <li><a href="http://www.lwjgl.org/changelogs/1.1.4-changelog.txt" target="_blank">LWJGL 1.1.4</a></li>
<li><a href="http://www.lwjgl.org/changelogs/1.1.3-changelog.txt" target="_blank">LWJGL 1.1.3</a></li>
<li><a href="http://www.lwjgl.org/changelogs/1.1.2-changelog.txt" target="_blank">LWJGL 1.1.2</a></li>
<li><a href="http://www.lwjgl.org/changelogs/1.1.1-changelog.txt" target="_blank">LWJGL 1.1.1</a></li>
@@ -49,6 +56,6 @@
</ul>
<?
-displayChangelog('1.1.4');
+displayChangelog('2.2.1');
require('_include/footer.php');
?>
Added: trunk/LWJGL/www/changelogs/2.0-changelog.txt
===================================================================
--- trunk/LWJGL/www/changelogs/2.0-changelog.txt (rev 0)
+++ trunk/LWJGL/www/changelogs/2.0-changelog.txt 2009-11-15 21:36:49 UTC (rev 3250)
@@ -0,0 +1,31 @@
+2008-10-11 20:35 elias_naur
+
+ * platform_build/build-generator.xml: really enable openal checks
+
+2008-10-11 20:12 elias_naur
+
+ * platform_build/build-generator.xml: enabled openal checks
+
+2008-10-02 08:10 elias_naur
+
+ * src/java/org/lwjgl/opengl/Display.java: Properly handle
+ non-fullscreen DisplayModes
+
+2008-10-02 07:34 elias_naur
+
+ * src/java/org/lwjgl/opengl/Display.java: Added
+ Display.getDesktopDisplayMode()
+
+2008-09-24 18:02 matzon
+
+ * libs/win32/OpenAL32.dll: statically linked (against vc runtime 8)
+ 1.5.304
+
+2008-09-23 11:49 spasi
+
+ * src/native/windows/context.c: Fixed missing braces
+
+2008-09-17 11:27 spasi
+
+ * src/native/windows/context.c: Potential fix for PixelFormat
+ choice on ATI cards.
\ No newline at end of file
Property changes on: trunk/LWJGL/www/changelogs/2.0-changelog.txt
___________________________________________________________________
Added: svn:eol-style
+ native
Added: trunk/LWJGL/www/changelogs/2.0-rc1-changelog.txt
===================================================================
--- trunk/LWJGL/www/changelogs/2.0-rc1-changelog.txt (rev 0)
+++ trunk/LWJGL/www/changelogs/2.0-rc1-changelog.txt 2009-11-15 21:36:49 UTC (rev 3250)
@@ -0,0 +1,377 @@
+2008-06-06 17:18 matzon
+
+ * libs/linux/libopenal.so: updated to openal-soft-1.4.272 - with
+ oss and alsa backend
+
+2008-06-06 17:11 matzon
+
+ * libs/win32/OpenAL32.dll: now using openal-soft-1.4.272
+
+2008-06-05 13:36 matzon
+
+ * src/java/org/lwjgl/MacOSXSysImplementation.java,
+ src/java/org/lwjgl/opengl/AWTUtil.java,
+ src/java/org/lwjgl/opengl/MacOSXCanvasListener.java,
+ src/java/org/lwjgl/opengl/MacOSXDisplay.java,
+ src/java/org/lwjgl/opengl/MacOSXGLCanvas.java,
+ src/java/org/lwjgl/test/opengl/awt/DisplayParentTest.java,
+ src/java/org/lwjgl/util/glu/GLU.java: cleanup of imports
+
+2008-06-05 13:35 matzon
+
+ * src/java/org/lwjgl/opengl/KeyboardEventQueue.java,
+ src/java/org/lwjgl/opengl/WindowsKeycodes.java,
+ src/java/org/lwjgl/util/jinput/KeyMap.java: fixed internal use of
+ deprecated keys
+
+2008-06-05 13:12 matzon
+
+ * platform_build/windows_ant/build.xml: removed references to
+ directx
+
+2008-06-05 13:11 elias_naur
+
+ * src/native/windows/dinputhelper.c,
+ src/native/windows/dinputhelper.h: Windows: Removed unused
+ dinputhelper.c/h
+
+2008-06-05 08:12 matzon
+
+ * src/native/common/org_lwjgl_openal_ALC10.c: missing special
+ handler for ALC_ALL_DEVICES_SPECIFIER
+
+2008-06-05 08:11 matzon
+
+ * src/java/org/lwjgl/test/openal/OpenALInfo.java: missing destroy
+
+2008-06-04 21:36 matzon
+
+ * src/java/org/lwjgl/test/openal/OpenALInfo.java: dont use
+ String.format *grumble*
+
+2008-06-04 21:31 matzon
+
+ * src/java/org/lwjgl/test/openal/OpenALInfo.java: OpenAL info
+ program a la openal-soft's openal-info
+
+2008-06-04 21:31 matzon
+
+ * src/java/org/lwjgl/openal/ALC11.java: support for
+ ALC_ENUMERATE_ALL_EXT
+
+2008-06-04 19:40 matzon
+
+ * platform_build/build-definitions.xml,
+ src/java/org/lwjgl/Sys.java: rc1 identifier string
+
+2008-05-30 07:08 elias_naur
+
+ * src/java/org/lwjgl/opengl/Display.java: Removed dead code from
+ Display
+
+2008-05-30 06:53 elias_naur
+
+ * src/java/org/lwjgl/opengl/Display.java: Removed Display.sync2 and
+ Display.sync3
+
+2008-05-28 18:09 matzon
+
+ * doc/README: updated, removing references to devil & fmod
+
+2008-05-28 18:06 matzon
+
+ * www/_gfx/projects/night_squad_2_1.jpg,
+ www/_gfx/projects/night_squad_2_2.jpg,
+ www/_gfx/projects/night_squad_2_3.jpg,
+ www/_gfx/projects/night_squad_2_small_1.jpg,
+ www/_gfx/projects/night_squad_2_small_2.jpg,
+ www/_gfx/projects/night_squad_2_small_3.jpg: night squad2 added
+
+2008-05-28 18:05 matzon
+
+ * www/index.php, www/installation.php, www/license.php,
+ www/projects.php: syncing with online
+
+2008-05-28 18:04 matzon
+
+ * www/faq.php: syncing with online
+
+2008-05-28 18:04 matzon
+
+ * www/download.php: syncing with online
+
+2008-05-28 18:04 matzon
+
+ * www/donations.php: syncing with online
+
+2008-05-28 18:03 matzon
+
+ * www/demos.php: added applet demo
+
+2008-05-28 18:03 matzon
+
+ * www/credits.php: updated
+
+2008-05-28 18:02 matzon
+
+ * www/changelog.php: syncing with online
+
+2008-05-28 18:01 matzon
+
+ * www/about.php: spelling
+
+2008-05-28 18:00 matzon
+
+ * www/changelogs/1.1.2-changelog.txt,
+ www/changelogs/1.1.3-changelog.txt,
+ www/changelogs/1.1.4-changelog.txt,
+ www/changelogs/2.0beta1-changelog.txt,
+ www/changelogs/full-changelog.txt: syncing with online
+
+2008-05-28 17:59 matzon
+
+ * www/_gfx/projects/cotwl2_1.jpg, www/_gfx/projects/cotwl2_2.jpg,
+ www/_gfx/projects/cotwl2_3.jpg,
+ www/_gfx/projects/cotwl2_small_1.jpg,
+ www/_gfx/projects/cotwl2_small_2.jpg,
+ www/_gfx/projects/cotwl2_small_3.jpg,
+ www/_gfx/projects/jmugen_1.jpg, www/_gfx/projects/jmugen_2.jpg,
+ www/_gfx/projects/jmugen_3.jpg,
+ www/_gfx/projects/jmugen_small_1.jpg,
+ www/_gfx/projects/jmugen_small_2.jpg,
+ www/_gfx/projects/jmugen_small_3.jpg,
+ www/_gfx/projects/joge_1.jpg, www/_gfx/projects/joge_2.jpg,
+ www/_gfx/projects/joge_3.jpg, www/_gfx/projects/joge_small_1.jpg,
+ www/_gfx/projects/joge_small_2.jpg,
+ www/_gfx/projects/joge_small_3.jpg,
+ www/_gfx/projects/jscrabble_1.jpg,
+ www/_gfx/projects/jscrabble_2.jpg,
+ www/_gfx/projects/jscrabble_3.jpg,
+ www/_gfx/projects/jscrabble_small_1.jpg,
+ www/_gfx/projects/jscrabble_small_2.jpg,
+ www/_gfx/projects/jscrabble_small_3.jpg: syncing
+
+2008-05-28 08:40 elias_naur
+
+ * platform_build/macosx_ant/build.xml: Mac OS X: Restore Mac OS X
+ 10.3 compatibility
+
+2008-05-23 11:03 elias_naur
+
+ * src/java/org/lwjgl/opengl/MacOSXFrame.java: Mac OS X: Call
+ setFocusTraversalKeysEnabled(false) on LWJGL created
+ MacOSXGLCanvases
+
+2008-05-22 00:04 kappa1
+
+ * src/java/org/lwjgl/util/applet/AppletLoader.java: added support
+ for displaying the current download speed
+
+2008-05-11 14:41 kappa1
+
+ * src/java/org/lwjgl/util/applet/AppletLoader.java: removed
+ repaint() which had no effect.
+
+2008-05-06 21:47 kappa1
+
+ * src/java/org/lwjgl/util/applet/AppletLoader.java: workaround no
+ longer needed for paint() and switchApplet(), removes blank
+ screen delay between java2d and lwjgl switch.
+
+2008-05-05 17:24 elias_naur
+
+ * src/java/org/lwjgl/opengl/WindowsDisplay.java,
+ src/native/windows/org_lwjgl_opengl_Display.c: Windows: Split
+ WindowsDisplay.nDestroyWindow into nReleaseDC and nDestroyWindow
+
+2008-05-05 16:46 elias_naur
+
+ * src/java/org/lwjgl/WindowsSysImplementation.java,
+ src/java/org/lwjgl/opengl/WindowsDisplay.java,
+ src/native/windows/org_lwjgl_opengl_Display.c: Windows:
+ Generalized WindowsDispaly.nCreateWindow
+
+2008-05-02 11:05 elias_naur
+
+ * src/java/org/lwjgl/opengl/WindowsDisplay.java: Windows: Clean up
+ window in case of exception thrown from
+ WindowsDisplay.createWindow
+
+2008-05-01 09:55 elias_naur
+
+ * src/java/org/lwjgl/opengl/WindowsDisplay.java,
+ src/java/org/lwjgl/opengl/WindowsDisplayPeerInfo.java: Windows:
+ Moved pixel format logic from WindowsDisplayPeerInfo.initDC to
+ WindowsDisplay.createWindow
+
+2008-05-01 09:44 elias_naur
+
+ * src/java/org/lwjgl/opengl/WindowsAWTGLCanvasPeerInfo.java,
+ src/java/org/lwjgl/opengl/WindowsDisplayPeerInfo.java,
+ src/java/org/lwjgl/opengl/WindowsPeerInfo.java: Windows: Made
+ WindowsPeerInfo.choosePixelFormat static and let
+ WindowsPeerInfo.setPixelFormat be called seperately
+
+2008-05-01 09:37 elias_naur
+
+ * src/java/org/lwjgl/opengl/WindowsPeerInfo.java,
+ src/native/windows/org_lwjgl_opengl_WindowsPeerInfo.c: Windows:
+ Split nChoosePixelFormat's applyPixelFormat() out in a seperate
+ function
+
+2008-05-01 09:20 elias_naur
+
+ * src/java/org/lwjgl/WindowsSysImplementation.java,
+ src/java/org/lwjgl/opengl/WindowsDisplay.java,
+ src/native/windows/org_lwjgl_opengl_Display.c: Windows: Moved
+ icon handles to java
+
+2008-04-30 19:00 elias_naur
+
+ * src/java/org/lwjgl/WindowsSysImplementation.java: Windows: Check
+ for Display.isCreated in Sys.getHwnd()
+
+2008-04-30 16:40 elias_naur
+
+ * src/java/org/lwjgl/WindowsSysImplementation.java,
+ src/java/org/lwjgl/opengl/WindowsDisplay.java,
+ src/native/windows/Window.h, src/native/windows/org_lwjgl_Sys.c,
+ src/native/windows/org_lwjgl_opengl_Display.c: Windows: Moved
+ hwnd and hdc to java
+
+2008-04-30 16:01 elias_naur
+
+ * src/java/org/lwjgl/opengl/WindowsDisplay.java,
+ src/java/org/lwjgl/opengl/WindowsDisplayPeerInfo.java,
+ src/native/windows/org_lwjgl_opengl_Display.c,
+ src/native/windows/org_lwjgl_opengl_WindowsDisplayPeerInfo.c:
+ Windows: Made WindowsDisplayPeerInfo take hwnd and hdc arguments
+
+2008-04-30 15:29 elias_naur
+
+ * src/java/org/lwjgl/opengl/WindowsDisplay.java,
+ src/native/windows/context.c, src/native/windows/context.h,
+ src/native/windows/org_lwjgl_opengl_Display.c: Windows: Moved
+ child window style selection to java
+
+2008-04-30 14:58 elias_naur
+
+ * build.xml, src/java/org/lwjgl/DefaultSysImplementation.java,
+ src/java/org/lwjgl/LinuxSysImplementation.java,
+ src/java/org/lwjgl/MacOSXSysImplementation.java,
+ src/java/org/lwjgl/WindowsSysImplementation.java,
+ src/native/common/common_tools.c,
+ src/native/linux/org_lwjgl_opengl_Display.c,
+ src/native/macosx/org_lwjgl_opengl_Display.m,
+ src/native/windows/org_lwjgl_opengl_Display.c: Added platform
+ specific getJNIVersion implementations
+
+2008-04-30 14:34 elias_naur
+
+ * src/java/org/lwjgl/LinuxSysImplementation.java,
+ src/java/org/lwjgl/MacOSXSysImplementation.java,
+ src/java/org/lwjgl/Sys.java,
+ src/java/org/lwjgl/SysImplementation.java,
+ src/java/org/lwjgl/WindowsSysImplementation.java: Moved
+ Sys.JNI_VERSION to SysImplementation.getRequiredJNIVersion() to
+ enable platform specific native library versions.
+
+2008-04-30 13:47 elias_naur
+
+ * src/java/org/lwjgl/opengl/MacOSXCanvasListener.java,
+ src/java/org/lwjgl/opengl/MacOSXDisplay.java: Mac OS X: Worked
+ around another Display.destroy hang when parented to an applet
+
+2008-04-30 13:16 elias_naur
+
+ * src/java/org/lwjgl/opengl/MacOSXDisplay.java,
+ src/java/org/lwjgl/opengl/MacOSXMouseEventQueue.java: Mac OS X:
+ Fixed a hang on Display.destroy in applets
+
+2008-04-30 12:46 elias_naur
+
+ * src/java/org/lwjgl/opengl/AWTUtil.java: Don't use reflection for
+ AWTUtil.getPointerLocation
+
+2008-04-29 18:56 elias_naur
+
+ * src/native/windows/context.c: Windows: Improved error messages
+ for nChoosePixelFormat
+
+2008-04-29 18:37 elias_naur
+
+ * src/native/windows/org_lwjgl_opengl_Display.c: Windows: Fixed
+ compile error
+
+2008-04-29 18:32 elias_naur
+
+ * src/native/windows/org_lwjgl_opengl_Display.c: Windows: Added
+ error handling to nCreateWindow
+
+2008-04-27 13:37 kappa1
+
+ * src/java/org/lwjgl/util/applet/AppletLoader.java: switch caching
+ off globally instead of on a per connection bases.
+
+2008-04-25 17:21 elias_naur
+
+ * src/native/common/common_tools.c: NewStringNativeUnsigned should
+ return NULL if argument string is NULL
+
+2008-04-25 02:18 kappa1
+
+ * src/java/org/lwjgl/util/applet/AppletLoader.java: Fix for caching
+ problem, now ensures latest jars are downloaded when using the
+ appletloader caching tag, also no longer fails on receiving
+ incorrect content-type from server.
+
+2008-04-24 20:43 kappa1
+
+ * src/java/org/lwjgl/util/applet/AppletLoader.java: Firefox
+ workaround no longer needed to get applet going.
+
+2008-04-24 17:45 elias_naur
+
+ * platform_build/macosx_ant/build-symbol-list: Mac OS X: Added
+ JNI_* methods to exported symbol list
+
+2008-04-22 21:26 elias_naur
+
+ * src/java/org/lwjgl/test/input/KeyboardTest.java: Fixed
+ KeyboardTest
+
+2008-04-22 20:32 kappa1
+
+ * src/java/org/lwjgl/util/applet/AppletLoader.java: added check to
+ prevent multiple applet instances starting.
+
+2008-04-22 19:59 elias_naur
+
+ * src/java/org/lwjgl/MacOSXSysImplementation.java: Mac OS X:
+ Removed reflection from MacOSXSysImplementation
+
+2008-04-22 18:09 elias_naur
+
+ * applet/appletloader.html,
+ src/java/org/lwjgl/test/applet/GearsApplet.java: Added
+ GearsApplet test
+
+2008-04-22 17:56 spasi
+
+ * src/templates/org/lwjgl/opengl/NV_transform_feedback.java: Added
+ GL_LAYER_NV
+
+2008-04-22 16:52 elias_naur
+
+ * build.xml, libs/AppleJavaExtensions.jar,
+ src/java/org/lwjgl/opengl/MacOSXDisplay.java: Added
+ ApplejavaExtensions.jar to be able to use apple extensions
+ without reflection
+
+2008-04-21 20:53 matzon
+
+ * applet/appletloader.html: correct mac native
+
+2008-04-21 20:51 matzon
+
+ * libs/lzma.jar: compiled using target 1.5
\ No newline at end of file
Property changes on: trunk/LWJGL/www/changelogs/2.0-rc1-changelog.txt
___________________________________________________________________
Added: svn:eol-style
+ native
Added: trunk/LWJGL/www/changelogs/2.0-rc2-changelog.txt
===================================================================
--- trunk/LWJGL/www/changelogs/2.0-rc2-changelog.txt (rev 0)
+++ trunk/LWJGL/www/changelogs/2.0-rc2-changelog.txt 2009-11-15 21:36:49 UTC (rev 3250)
@@ -0,0 +1,238 @@
+2008-09-15 18:34 matzon
+
+ * applet/appletloader.html: solaris support
+
+2008-09-15 18:28 matzon
+
+ * build.xml, platform_build/build-applet.xml,
+ platform_build/build-definitions.xml,
+ platform_build/build-webstart.xml: solaris package support
+ rc2 version string
+
+2008-09-11 09:52 elias_naur
+
+ * src/java/org/lwjgl/opengl/MacOSXDisplay.java,
+ src/java/org/lwjgl/opengl/MacOSXFrame.java,
+ src/java/org/lwjgl/opengl/MacOSXMouseEventQueue.java: Mac OS X:
+ Be less aggressive when grabbing mouse to allow dragging of lwjgl
+ windows with grabbed mouse
+
+2008-09-09 17:58 matzon
+
+ * libs/solaris/libopenal.so: release build
+
+2008-09-09 17:55 matzon
+
+ * libs/solaris, libs/solaris/libopenal.so: openal-soft 1.5.304 with
+ native solaris backend
+
+2008-09-07 18:59 matzon
+
+ * libs/linux/libopenal.so: release build
+
+2008-09-07 08:21 elias_naur
+
+ * src/java/org/lwjgl/LinuxSysImplementation.java,
+ src/java/org/lwjgl/MacOSXSysImplementation.java,
+ src/java/org/lwjgl/WindowsSysImplementation.java: Bumped all jni
+ versions
+
+2008-09-07 08:16 elias_naur
+
+ * libs/linux/libopenal64.so, src/java/org/lwjgl/openal/AL.java:
+ Added support for loading libopenal64.so. Added libopenal64.so
+ compiled from openal soft 1.5.304.
+
+2008-09-07 07:49 matzon
+
+ * libs/win32/OpenAL32.dll: 1.5.304
+
+2008-09-07 07:39 matzon
+
+ * libs/linux/libopenal.so: 1.5.304
+
+2008-08-24 12:35 spasi
+
+ * src/templates/org/lwjgl/opengl/GL11.java: (Get)TexEnv calls are
+ not deprecated (TEXTURE_ENV target is)
+
+2008-08-19 17:47 spasi
+
+ * src/java/org/lwjgl/opengl/Context.java,
+ src/java/org/lwjgl/opengl/ContextAttribs.java,
+ src/java/org/lwjgl/opengl/ContextAttribsImplementation.java,
+ src/java/org/lwjgl/opengl/GLContext.java,
+ src/java/org/lwjgl/opengl/LinuxContextAttribs.java,
+ src/java/org/lwjgl/opengl/MacOSXContextAttribs.java,
+ src/java/org/lwjgl/opengl/WindowsContextAttribs.java,
+ src/java/org/lwjgl/util/generator/ContextCapabilitiesGenerator.java,
+ src/java/org/lwjgl/util/generator/DeprecatedGL.java,
+ src/native/windows/org_lwjgl_opengl_Pbuffer.c: ContextAttribs:
+ changed factory to constructor initialization
+ Fixed compatible spelling
+ Small pbuffer fix
+
+2008-08-19 16:46 spasi
+
+ * src/java/org/lwjgl/BufferChecks.java,
+ src/java/org/lwjgl/NondirectBufferWrapper.java,
+ src/java/org/lwjgl/opengl/AWTGLCanvas.java,
+ src/java/org/lwjgl/opengl/AWTSurfaceLock.java,
+ src/java/org/lwjgl/opengl/AWTUtil.java,
+ src/java/org/lwjgl/opengl/Context.java,
+ src/java/org/lwjgl/opengl/ContextAttribs.java,
+ src/java/org/lwjgl/opengl/ContextImplementation.java,
+ src/java/org/lwjgl/opengl/Display.java,
+ src/java/org/lwjgl/opengl/DisplayImplementation.java,
+ src/java/org/lwjgl/opengl/GLChecks.java,
+ src/java/org/lwjgl/opengl/GLContext.java,
+ src/java/org/lwjgl/opengl/KeyboardEventQueue.java,
+ src/java/org/lwjgl/opengl/LinuxAWTGLCanvasPeerInfo.java,
+ src/java/org/lwjgl/opengl/LinuxContextAttribs.java,
+ src/java/org/lwjgl/opengl/LinuxContextImplementation.java,
+ src/java/org/lwjgl/opengl/LinuxDisplay.java,
+ src/java/org/lwjgl/opengl/LinuxDisplayPeerInfo.java,
+ src/java/org/lwjgl/opengl/LinuxEvent.java,
+ src/java/org/lwjgl/opengl/LinuxKeyboard.java,
+ src/java/org/lwjgl/opengl/LinuxMouse.java,
+ src/java/org/lwjgl/opengl/LinuxPbufferPeerInfo.java,
+ src/java/org/lwjgl/opengl/LinuxPeerInfo.java,
+ src/java/org/lwjgl/opengl/MacOSXAWTGLCanvasPeerInfo.java,
+ src/java/org/lwjgl/opengl/MacOSXCanvasListener.java,
+ src/java/org/lwjgl/opengl/MacOSXCanvasPeerInfo.java,
+ src/java/org/lwjgl/opengl/MacOSXContextAttribs.java,
+ src/java/org/lwjgl/opengl/MacOSXContextImplementation.java,
+ src/java/org/lwjgl/opengl/MacOSXDisplayPeerInfo.java,
+ src/java/org/lwjgl/opengl/MacOSXPbufferPeerInfo.java,
+ src/java/org/lwjgl/opengl/MacOSXPeerInfo.java,
+ src/java/org/lwjgl/opengl/Pbuffer.java,
+ src/java/org/lwjgl/opengl/PeerInfo.java,
+ src/java/org/lwjgl/opengl/PixelFormat.java,
+ src/java/org/lwjgl/opengl/WindowsAWTGLCanvasPeerInfo.java,
+ src/java/org/lwjgl/opengl/WindowsContextAttribs.java,
+ src/java/org/lwjgl/opengl/WindowsContextImplementation.java,
+ src/java/org/lwjgl/opengl/WindowsDisplay.java,
+ src/java/org/lwjgl/opengl/WindowsDisplayPeerInfo.java,
+ src/java/org/lwjgl/opengl/WindowsFileVersion.java,
+ src/java/org/lwjgl/opengl/WindowsKeyboard.java,
+ src/java/org/lwjgl/opengl/WindowsMouse.java,
+ src/java/org/lwjgl/opengl/WindowsPbufferPeerInfo.java,
+ src/java/org/lwjgl/opengl/WindowsPeerInfo.java,
+ src/java/org/lwjgl/util/generator/ContextCapabilitiesGenerator.java,
+ src/java/org/lwjgl/util/generator/ContextGeneratorProcessorFactory.java,
+ src/java/org/lwjgl/util/generator/Dependent.java,
+ src/java/org/lwjgl/util/generator/DeprecatedGL.java,
+ src/java/org/lwjgl/util/generator/GLtime.java,
+ src/java/org/lwjgl/util/generator/JavaMethodsGenerator.java,
+ src/native/linux/context.c, src/native/linux/extgl_glx.c,
+ src/native/linux/extgl_glx.h,
+ src/native/linux/org_lwjgl_opengl_LinuxContextImplementation.c,
+ src/native/macosx/context.m,
+ src/native/macosx/org_lwjgl_opengl_MacOSXContextImplementation.m,
+ src/native/windows/context.c, src/native/windows/context.h,
+ src/native/windows/extgl_wgl.c, src/native/windows/extgl_wgl.h,
+ src/native/windows/org_lwjgl_opengl_WindowsContextImplementation.c,
+ src/native/windows/org_lwjgl_opengl_WindowsPeerInfo.c,
+ src/templates/org/lwjgl/opengl/ARB_imaging.java,
+ src/templates/org/lwjgl/opengl/ARB_window_pos.java,
+ src/templates/org/lwjgl/opengl/EXT_direct_state_access.java,
+ src/templates/org/lwjgl/opengl/EXT_secondary_color.java,
+ src/templates/org/lwjgl/opengl/EXT_transform_feedback.java,
+ src/templates/org/lwjgl/opengl/GL11.java,
+ src/templates/org/lwjgl/opengl/GL13.java,
+ src/templates/org/lwjgl/opengl/GL14.java,
+ src/templates/org/lwjgl/opengl/GL20.java,
+ src/templates/org/lwjgl/opengl/GL30.java,
+ src/templates/org/lwjgl/opengl/NV_conditional_render.java: Added
+ support for OpenGL 3.0 functionality
+ Added support for OpenGL 3.0 context creation (MAJOR/MINOR
+ versions, DEBUG mode, FORWARD_COMBATIBLE mode)
+ Added support for OpenGL 3.0 context sharing
+ Added support for ...
[truncated message content] |
|
From: <ma...@us...> - 2009-11-15 21:10:58
|
Revision: 3249
http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3249&view=rev
Author: matzon
Date: 2009-11-15 21:10:49 +0000 (Sun, 15 Nov 2009)
Log Message:
-----------
missing jogl license for GLU tesselation
Added Paths:
-----------
trunk/LWJGL/doc/3rdparty/jogl_license.txt
Added: trunk/LWJGL/doc/3rdparty/jogl_license.txt
===================================================================
--- trunk/LWJGL/doc/3rdparty/jogl_license.txt (rev 0)
+++ trunk/LWJGL/doc/3rdparty/jogl_license.txt 2009-11-15 21:10:49 UTC (rev 3249)
@@ -0,0 +1,152 @@
+JOGL is released under the BSD license. The full license terms follow:
+
+ Copyright (c) 2003-2009 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.
+
+The JOGL source tree contains code ported from the OpenGL sample
+implementation by Silicon Graphics, Inc. This code is licensed under
+the SGI Free Software License B (Sun is redistributing the modified code
+under a slightly modified, alternative license, which is described two
+paragraphs below after "NOTE:"):
+
+ License Applicability. Except to the extent portions of this file are
+ made subject to an alternative license as permitted in the SGI Free
+ Software License B, Version 1.1 (the "License"), the contents of this
+ file are subject only to the provisions of the License. You may not use
+ this file except in compliance with the License. You may obtain a copy
+ of the License at Silicon Graphics, Inc., attn: Legal Services, 1600
+ Amphitheatre Parkway, Mountain View, CA 94043-1351, or at:
+
+ http://oss.sgi.com/projects/FreeB
+
+ Note that, as provided in the License, the Software is distributed on an
+ "AS IS" basis, with ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS
+ DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND
+ CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
+ PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
+
+ NOTE: The Original Code (as defined below) has been licensed to Sun
+ Microsystems, Inc. ("Sun") under the SGI Free Software License B
+ (Version 1.1), shown above ("SGI License"). Pursuant to Section
+ 3.2(3) of the SGI License, Sun is distributing the Covered Code to
+ you under an alternative license ("Alternative License"). This
+ Alternative License includes all of the provisions of the SGI License
+ except that Section 2.2 and 11 are omitted. Any differences between
+ the Alternative License and the SGI License are offered solely by Sun
+ and not by SGI.
+
+ Original Code. The Original Code is: OpenGL Sample Implementation,
+ Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
+ Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
+ Copyright in any portions created by third parties is as indicated
+ elsewhere herein. All Rights Reserved.
+
+ Additional Notice Provisions: The application programming interfaces
+ established by SGI in conjunction with the Original Code are The
+ OpenGL(R) Graphics System: A Specification (Version 1.2.1), released
+ April 1, 1999; The OpenGL(R) Graphics System Utility Library (Version
+ 1.3), released November 4, 1998; and OpenGL(R) Graphics with the X
+ Window System(R) (Version 1.3), released October 19, 1998. This software
+ was created using the OpenGL(R) version 1.2.1 Sample Implementation
+ published by SGI, but has not been independently verified as being
+ compliant with the OpenGL(R) version 1.2.1 Specification.
+
+
+The JOGL source tree contains code from the LWJGL project which is
+similarly covered by the BSD license:
+
+ Copyright (c) 2002-2004 LWJGL Project
+ All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:
+
+ * Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+
+ * Redistributions 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 'LWJGL' nor the names of
+ its contributors may be used to endorse or promote products derived
+ from this software without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+ TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+The JOGL source tree also contains a Java port of Brian Paul's Tile
+Rendering library, used with permission of the author under the BSD
+license instead of the original LGPL:
+
+ Copyright (c) 1997-2005 Brian Paul. 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 Brian Paul 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. THE COPYRIGHT HOLDERS AND CONTRIBUTORS 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 THE COPYRIGHT HOLDERS OR CONTRIBUTORS 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 THE COPYRIGHT HOLDERS OR
+ CONTRIBUTORS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ma...@us...> - 2009-11-15 19:26:48
|
Revision: 3248
http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3248&view=rev
Author: matzon
Date: 2009-11-15 19:26:33 +0000 (Sun, 15 Nov 2009)
Log Message:
-----------
tagging 2.2.1
Added Paths:
-----------
tags/lwjgl2.2.1/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ma...@us...> - 2009-11-15 19:24:05
|
Revision: 3247
http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3247&view=rev
Author: matzon
Date: 2009-11-15 19:23:48 +0000 (Sun, 15 Nov 2009)
Log Message:
-----------
updating to 2.2.1
Modified Paths:
--------------
trunk/LWJGL/platform_build/build-definitions.xml
trunk/LWJGL/src/java/org/lwjgl/Sys.java
Modified: trunk/LWJGL/platform_build/build-definitions.xml
===================================================================
--- trunk/LWJGL/platform_build/build-definitions.xml 2009-11-12 22:12:49 UTC (rev 3246)
+++ trunk/LWJGL/platform_build/build-definitions.xml 2009-11-15 19:23:48 UTC (rev 3247)
@@ -12,7 +12,7 @@
<property name="lwjgl.docs" location="doc" />
<property name="lwjgl.temp" location="temp" />
<property name="lwjgl.res" location="res" />
- <property name="lwjgl.version" value="2.2.0" />
+ <property name="lwjgl.version" value="2.2.1" />
<property name="opengl-template-pattern" value="org/lwjgl/opengl/GL*.java,org/lwjgl/opengl/ARB*.java,org/lwjgl/opengl/ATI*.java,org/lwjgl/opengl/EXT*.java,org/lwjgl/opengl/NV*.java,org/lwjgl/opengl/HP*.java,org/lwjgl/opengl/IBM*.java,org/lwjgl/opengl/SUN*.java,org/lwjgl/opengl/SGIS*.java,org/lwjgl/opengl/GREMEDY*.java"/>
<!-- ================================================================== -->
Modified: trunk/LWJGL/src/java/org/lwjgl/Sys.java
===================================================================
--- trunk/LWJGL/src/java/org/lwjgl/Sys.java 2009-11-12 22:12:49 UTC (rev 3246)
+++ trunk/LWJGL/src/java/org/lwjgl/Sys.java 2009-11-15 19:23:48 UTC (rev 3247)
@@ -54,7 +54,7 @@
private static final String JNI_LIBRARY_NAME = "lwjgl";
/** Current version of library */
- private static final String VERSION = "2.2.0";
+ private static final String VERSION = "2.2.1";
/** The implementation instance to delegate platform specific behavior to */
private final static SysImplementation implementation;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ka...@us...> - 2009-11-12 22:13:07
|
Revision: 3246
http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3246&view=rev
Author: kappa1
Date: 2009-11-12 22:12:49 +0000 (Thu, 12 Nov 2009)
Log Message:
-----------
FIX: Mouse Grab should now work on Windows when using Display.setParent()
Modified Paths:
--------------
trunk/LWJGL/src/java/org/lwjgl/opengl/WindowsDisplay.java
Modified: trunk/LWJGL/src/java/org/lwjgl/opengl/WindowsDisplay.java
===================================================================
--- trunk/LWJGL/src/java/org/lwjgl/opengl/WindowsDisplay.java 2009-10-12 11:56:46 UTC (rev 3245)
+++ trunk/LWJGL/src/java/org/lwjgl/opengl/WindowsDisplay.java 2009-11-12 22:12:49 UTC (rev 3246)
@@ -131,6 +131,7 @@
private WindowsDisplayPeerInfo peer_info;
private Object current_cursor;
private Canvas parent;
+ private static boolean hasParent = false;
private WindowsKeyboard keyboard;
private WindowsMouse mouse;
@@ -169,6 +170,7 @@
isFocused = false;
did_maximize = false;
this.parent = parent;
+ hasParent = parent != null;
long parent_hwnd = parent != null ? getHwnd(parent) : 0;
this.hwnd = nCreateWindow(x, y, mode.getWidth(), mode.getHeight(), Display.isFullscreen() || isUndecorated(), parent != null, parent_hwnd);
if (hwnd == 0) {
@@ -519,7 +521,7 @@
private static native long getForegroundWindow();
static void centerCursor(long hwnd) {
- if (getForegroundWindow() != hwnd)
+ if (getForegroundWindow() != hwnd && !hasParent)
return;
getGlobalClientRect(hwnd, rect);
int local_offset_x = rect.left;
@@ -764,7 +766,7 @@
}
private void updateClipping() {
- if ((Display.isFullscreen() || (mouse != null && mouse.isGrabbed())) && !isMinimized && isFocused && getForegroundWindow() == getHwnd()) {
+ if ((Display.isFullscreen() || (mouse != null && mouse.isGrabbed())) && !isMinimized && isFocused && (getForegroundWindow() == getHwnd() || hasParent)) {
try {
setupCursorClipping(getHwnd());
} catch (LWJGLException e) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|