Administrator
|
v2.0-rc3 released ..
As described earlier, v2.0-rc3 follows the new FHS <http://forum.jogamp.org/New-Deployment-FHS-Filesystem-Hierarchy-Standard-td3334675.html>. Persistent URL - http://jogamp.org/deployment/v2.0-rc3/ Currently linked to - http://jogamp.org/deployment/jogamp-current/ - http://jogamp.org/deployment/jogamp-next/ Developer 7z Archives - http://jogamp.org/deployment/v2.0-rc3/archive/ JOGL Test Applets - http://jogamp.org/deployment/jogamp-next/jogl-test-applets.html Yes, most of these are NEWT unit tests, launched via JOGLNewtApplet1Run <http://jogamp.org/deployment/jogamp-next/javadoc/jogl/javadoc/com/jogamp/newt/awt/applet/JOGLNewtApplet1Run.html> JOGL-Demos Tests: - http://jogamp.org/deployment/jogamp-next/jogl-demos/test.html ... time for the Linux/ARM & Android release :) Cheers, Sven |
Thanks for this release :)
Just to let you know, all applets does not work with chrome (14.0.835.126 beta-m windows). The applets still using the deprecated applet tag, which the chrome browser ignore. You should use the object and embed tags instead to work properly on all browsers (see Using applet, object and embed Tags / Deploying Applets in a Mixed-Browser Environment).
Jérôme
|
Administrator
|
On Saturday, September 17, 2011 09:43:35 AM jouvieje [via jogamp] wrote:
> > Thanks for this release :) > > Just to let you know, all applets does not work with chrome /(14.0.835.126 > beta-m windows)/. The applets still using the deprecated *applet* tag, > chrome the chrome browser ignore. > You should use the *object* and *embed* tags instead to work properly on all > browsers (see > http://download.oracle.com/javase/7/docs/technotes/guides/plugin/developer_guide/using_tags.html#mixed > Using applet, object and embed Tags / Deploying Applets in a Mixed-Browser > Environment ). oops :) Thank you for reminding me to change these things. Will do in a bit .. will send an update here later. ~Sven |
Administrator
|
In reply to this post by jouvieje
On Saturday, September 17, 2011 09:43:35 AM jouvieje [via jogamp] wrote:
> > Thanks for this release :) > > Just to let you know, all applets does not work with chrome /(14.0.835.126 > beta-m windows)/. The applets still using the deprecated *applet* tag, > chrome the chrome browser ignore. hmm, I have tested the latest and beta chrome version on windows, and it accepts the old applet tag .. however, I guess it's ok to change to the following: (quite uglyish long though) +++ <object classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" width="200" height="200"> <param name="code" value="org.jdesktop.applet.util.JNLPAppletLauncher"> <param name="archive" value="jar/applet-launcher.jar, jar/gluegen-rt.jar, jar/jogl.all.jar, jar/junit.jar, jar/jogl.test.jar"> <param name="codebase_lookup" value="false"> <param name="subapplet.classname" value="com.jogamp.newt.awt.applet.JOGLNewtApplet1Run"> <param name="subapplet.displayname" value="JOGL GearsES2 Applet"> <param name="noddraw.check" value="true"> <param name="progressbar" value="true"> <param name="jnlpNumExtensions" value="1"> <param name="jnlpExtension1" value="jogl-all-awt.jnlp"> <param name="java_arguments" value="-Dsun.java2d.noddraw=true"> <param name="gl_event_listener_class" value="com.jogamp.opengl.test.junit.jogl.demos.es2.GearsES2"> <param name="gl_profile" value="GL2ES2"> <param name="gl_swap_interval" value="1"> <param name="gl_debug" value="false"> <param name="gl_trace" value="false"> <param name="jnlp_href" value="jogl-applet-runner-newt.jnlp"> <comment> <embed code="org.jdesktop.applet.util.JNLPAppletLauncher" width="200" height="200" type="application/x-java-applet;version=1.6" pluginspage="http://java.sun.com/javase/downloads/ea.jsp" archive="jar/applet-launcher.jar, jar/gluegen-rt.jar, jar/jogl.all.jar, jar/junit.jar, jar/jogl.test.jar" codebase_lookup" value="false" subapplet.classname="com.jogamp.newt.awt.applet.JOGLNewtApplet1Run" subapplet.displayname="JOGL GearsES2 Applet" noddraw.check="true" progressbar="true" jnlpNumExtensions="1" jnlpExtension1="jogl-all-awt.jnlp" java_arguments="-Dsun.java2d.noddraw=true" gl_event_listener_class="com.jogamp.opengl.test.junit.jogl.demos.es2.GearsES2" gl_profile="GL2ES2" gl_swap_interval="1" gl_debug="false" gl_trace="false" jnlp_href="jogl-applet-runner-newt.jnlp"> <noembed>Sorry, no Java Support.</noembed> </embed> </comment> </object> +++ Cheers, Sven |
Administrator
|
In reply to this post by jouvieje
On Saturday, September 17, 2011 09:19:59 PM Sven Gothel wrote:
> On Saturday, September 17, 2011 09:43:35 AM jouvieje [via jogamp] wrote: > > > > Thanks for this release :) > > > > Just to let you know, all applets does not work with chrome /(14.0.835.126 > > beta-m windows)/. The applets still using the deprecated *applet* tag, > > chrome the chrome browser ignore. > > hmm, I have tested the latest and beta chrome version on windows, > and it accepts the old applet tag .. > > however, I guess it's ok to change to the following: > > (quite uglyish long though) Ok .. done, please verify ! ~Sven |
I've not found the applet you've updated. After testing other applets, it seems only a few won't work with chrome so the problem is probably not due to the applet tag.
Here's listed the applet that won't start at all with chrome (but plays fine with firefox on the same pc): http://jogamp.org/deployment/jogamp-next/jogl-demos/jogl-newt-applet-runner-gears.html http://jogamp.org/deployment/jogamp-next/jogl-demos/jogl-newt-applet-runner-cube.html http://jogamp.org/deployment/jogamp-next/jogl-demos/jogl-newt-applet-runner-fbcubes.html http://jogamp.org/deployment/jogamp-next/jogl-demos/jogl-newt-applet-runner-angelesgl2es1.html This is all applets from "AWT JNLP Applet's using native NEWT", sorry for pointing you in the wrong direction as I was interest only about them. EDIT: Please add code="org.jdesktop.applet.util.JNLPAppletLauncher" in the applet tag of those applet, this will fix them for chrome browser.
Jérôme
|
Free forum by Nabble | Edit this page |