LWJGL Forum

Programming => Lightweight Java Gaming Library => Topic started by: Matzon on November 13, 2011, 21:28:26

Title: LWJGL 2.8.2
Post by: Matzon on November 13, 2011, 21:28:26
The LWJGL team is proud to present the latest release of the fabulous LWJGL: 2.8.2

This release is a bugfix release for all the stuff reported from the 2.8.1 release.

LWJGL 2.8.2

General:

OpenGL:

OpenAL

Linux

MacOSX

Download: https://sourceforge.net/projects/java-game-lib/files/
Changelog: http://www.lwjgl.org/changelogs/2.8.2-changelog.txt

Remember to donate (http://lwjgl.org/donations.php) ;)

Notice: We'd like to remind people to include the copyright, conditions and disclaimer statement for LWJGL in their products, as required by the license. Though we are not about to claim foul in any way, it would be nice to see a link back to lwjgl.org in the credits or documentation at the very minimum.
Title: Re: LWJGL 2.8.2
Post by: Simon Felix on November 14, 2011, 02:22:53
You guys are awesome! Thanks a lot, once more!
Title: Re: LWJGL 2.8.2
Post by: Fool Running on November 14, 2011, 13:45:12
Keep up the good work. 8)
Title: Re: LWJGL 2.8.2
Post by: AcidSikeO on November 16, 2011, 04:22:50
You broke Minecraft. Logging into a server results in immediate escape to pause screen, clicking the 'back to game' button results in the escape button being pressed.
Title: Re: LWJGL 2.8.2
Post by: Matzon on November 16, 2011, 06:38:25
Quote from: AcidSikeO on November 16, 2011, 04:22:50
You broke Minecraft. Logging into a server results in immediate escape to pause screen, clicking the 'back to game' button results in the escape button being pressed.
You created an account for that?  ::)
Title: Re: LWJGL 2.8.2
Post by: CodeBunny on November 16, 2011, 11:54:43
You know, it's funny. We get people asking us about bugs in Minecraft, but at least they're usually legitimate graphical issues. Questions like this are cute.
Title: Re: LWJGL 2.8.2
Post by: AcidSikeO on November 16, 2011, 17:40:50
Yes, yes I did. It's a legitimate issue. An issue that would not just stop with minecraft. Perhaps, instead of being snobs about it you could point me to the right source file, but I doubt you will. So now, I will have to read and compare every line of source between 2.8.1 and 2.8.2 to find the changes that were made so I may possibly revert this.
Title: Re: LWJGL 2.8.2
Post by: HumanMan on November 16, 2011, 17:53:18
hi,

im just starting to pick up lwjgl and have a problem and cant find the HELP I CANT DO XYZ" topic so heres my problem :P

im using eclipse i have added the complete lwjgl to the project and can access the methods/classes but any time i compile any code i get this runtime error


Exception in thread "main" java.lang.UnsatisfiedLinkError: no lwjgl in java.library.path
at java.lang.ClassLoader.loadLibrary(Unknown Source)
at java.lang.Runtime.loadLibrary0(Unknown Source)
at java.lang.System.loadLibrary(Unknown Source)
at org.lwjgl.Sys$1.run(Sys.java:73)
at java.security.AccessController.doPrivileged(Native Method)
at org.lwjgl.Sys.doLoadLibrary(Sys.java:66)
at org.lwjgl.Sys.loadLibrary(Sys.java:95)
at org.lwjgl.Sys.<clinit>(Sys.java:112)
at org.lwjgl.opengl.Display.<clinit>(Display.java:135)
at MouseTest.setDisplayMode(MouseTest.java:138)
at MouseTest.setupDisplay(MouseTest.java:117)
at MouseTest.initialize(MouseTest.java:106)
at MouseTest.executeTest(MouseTest.java:165)
at MouseTest.main(MouseTest.java:427)

however i did once get a different error about not finding plugins folder but cant replicate it again :(

i am using the source code from thuis demo 1:1 :http://java-game-lib.svn.sourceforge.net/viewvc/java-game-lib/trunk/LWJGL/src/java/org/lwjgl/test/input/MouseTest.java?view=markup&content-type=text%2Fvnd.viewcvs-markup&pathrev=HEAD


can anyone help im desperate to get making games with java

any help appreciated and sorry for the wrong post placement :(

-James
Title: Re: LWJGL 2.8.2
Post by: xolotl on November 16, 2011, 17:59:00
Quote from: AcidSikeO on November 16, 2011, 04:22:50You broke Minecraft.
You don't think it's you who broke Minecraft, by overriding its bundled version of LWJGL with a newer version that Minecraft doesn't yet support?

Quote from: AcidSikeO on November 16, 2011, 17:40:50So now, I will have to read and compare every line of source between 2.8.1 and 2.8.2 to find the changes that were made so I may possibly revert this.
http://lwjgl.org/changelog.php#2.8.2 perhaps?

Or:
svn diff https://java-game-lib.svn.sourceforge.net/svnroot/java-game-lib/tags/lwjgl2.8.1 https://java-game-lib.svn.sourceforge.net/svnroot/java-game-lib/tags/lwjgl2.8.2?
Title: Re: LWJGL 2.8.2
Post by: kappa on November 16, 2011, 18:08:27
Quote from: HumanMan on November 16, 2011, 17:53:18
hi,

im just starting to pick up lwjgl and have a problem and cant find the HELP I CANT DO XYZ" topic so heres my problem :P

im using eclipse i have added the complete lwjgl to the project and can access the methods/classes but any time i compile any code i get this runtime error


Exception in thread "main" java.lang.UnsatisfiedLinkError: no lwjgl in java.library.path
at java.lang.ClassLoader.loadLibrary(Unknown Source)
at java.lang.Runtime.loadLibrary0(Unknown Source)
at java.lang.System.loadLibrary(Unknown Source)
at org.lwjgl.Sys$1.run(Sys.java:73)
at java.security.AccessController.doPrivileged(Native Method)
at org.lwjgl.Sys.doLoadLibrary(Sys.java:66)
at org.lwjgl.Sys.loadLibrary(Sys.java:95)
at org.lwjgl.Sys.<clinit>(Sys.java:112)
at org.lwjgl.opengl.Display.<clinit>(Display.java:135)
at MouseTest.setDisplayMode(MouseTest.java:138)
at MouseTest.setupDisplay(MouseTest.java:117)
at MouseTest.initialize(MouseTest.java:106)
at MouseTest.executeTest(MouseTest.java:165)
at MouseTest.main(MouseTest.java:427)

however i did once get a different error about not finding plugins folder but cant replicate it again :(

i am using the source code from thuis demo 1:1 :http://java-game-lib.svn.sourceforge.net/viewvc/java-game-lib/trunk/LWJGL/src/java/org/lwjgl/test/input/MouseTest.java?view=markup&content-type=text%2Fvnd.viewcvs-markup&pathrev=HEAD


can anyone help im desperate to get making games with java

any help appreciated and sorry for the wrong post placement :(

-James

You have not set it up correctly in eclipse, have a read of this (http://www.lwjgl.org/wiki/index.php?title=Setting_Up_LWJGL_with_Eclipse).
Title: Re: LWJGL 2.8.2
Post by: HumanMan on November 16, 2011, 18:57:35
thanks  ::) :-*


-James