JavaFX 1.3 soon?

By looking at http://javafx-jira.kenai.com/browse/RT/fixforversion/10237?selected=com.atlassian.jira.plugin.system.project:version-summary-panel

479/500 issues done. Does that mean we will soon be seeing JavaFX 1.3? is there a set release date?

JavaFX in its current state is horrid and really shouldn’t have been released until it was done.

I’m really hoping they get this version right especially as its been in the works for a while. If they just nail two things

  1. the performance
  2. the user experience

Then it might be cool.

A shame the JRE team are so intent on breaking the user experience at the moment.

Cas :slight_smile:

Come on, you know it’s not true. The JRE team is working within the restrictions of the current framework.

Are you saying you didn’t see any improvement in deployment (I assume this is what you’re alluding to) in the last few 6 update releases? Or is this just a knee-jerk reaction anytime you hear “JavaFX”?

Are you implying that the recent changes in webstart deployment provide an improved user experience? ::slight_smile:

JRE6.0u19 broke everyone’s applets. In a point release. Sack whoever it was thought that was a good idea and then quietly patch it back so that it doesn’t do that any more. Save that sort of change for 7.0 eh?

Cas :slight_smile:

Backwards-compatibility is often an argument not to fix obscure Swing bugs.

Recently (both in 6u14 and 6u19), the JRE team has showed they don’t give a damn about backwards-compatibility of basic functionality.

Reminds me, I should have moaned about that byte order change in images in u17.

Cas :slight_smile:

But all that changed was really just the timing of when the security cert was shown. Not really a big deal. The technique of delaying the security cert was just a dodgy workaround for the real problem which is that java security is not fine-grained enough - it’s all or nothing (like windows vista security which MS have fixed in windows 7 and Sun should fix in java 7!)

Sun probably only just realised the existence of the ingenious technique of delaying the security cert dreamed up by DzzD and thijs. Doesn’t seem like a feature Sun planned to have in the API.

I hope I haven’t fanned the flames lol ;D

Not really. Class.forName(String) from one JAR to another stopped working. You have to modify the manifest to make it work again. There are zillions of applets / webstart apps broken now.

Gee, didn’t know about that one. I wonder why that didn’t come through on Sun’s pre-release tests

yup Class.forName(String) was the reason LWJGL applets broke too. As a signed jar used that to access resources in an unsigned jar. Really odd thing to change.

It was allegedly a massive security hole. Somehow. Maybe I should read up on that… :persecutioncomplex:

I dont understand why java is trying to self distruct the end user experience. ??? is it to impress the server side users, and up the security rating of java??? seriously alot of bad choices.

On a side note, flash is accessing resources like webcam with no problems. Yet QuickTime for java is now depricated, and no decent bindings have yet been developed for Mac’s QTKit (even though it should be released as part of the JRE).

edit: to think if it, JMF was just to ahead of its time, before people had the internet speeds, or enough webcams to go around. And even then, there was no Mac binding.

Given you keep the list of things-to-not-use(like in the early(er) days of java) performace hasn’t been bad to me.

Sure developing using netbeans misses polish to put it gently, the bit of code that handles code formatting was it programmed by a first year student or something? I mean at the end of the day you might get used to just about anything…

As far as user experience, so stuff broke… can’t care that much in the light of the very much improved startup time. I mean I’ve visited pages and I actually had to look at the source to figure out that there was actually an applet on the page. As sad as it is, it still kinda surprises me.

No all in all Javafx has been pleasant

That all being said it does seem that there no drive from management to actually polish the user experience or developers with that as a primary role/responsibility, just some developers doing the good work in some spare time. - if I’m off base here please tell me, otherwise I’m going to presume that I’m right.

WOW!!! :o :o :o
That is truly unusually amazingly idiotic >:(
I use a framework for all my games, and want to use the very same jar for all the different game applets. I guess that is no longer possible, and already broken everywhere! I even get a version of this where one applet simply doesn’t start, no threatening pop-up, and nothing in the console!!! >:( Just tested it from a work laptop, that had some MS security patch update, so I have to test with other HW to find out what the culprit is…

Do you guys have links on how to fix this? (just add “lazy” jars to boot jar manifest?)
Is there an issue to vote on, to fix this?
Who do I send angry mails to about this?

Sorry for derail…

apart from breaking tons of existing applets and making some things now impossible (even for signed jars), its not particularly hard to fix, just add a

Trusted-Library: true

or a

Trusted-Only: true

to the manifest file of your jars

see following page for full explanation
http://java.sun.com/javase/6/docs/technotes/guides/jweb/mixed_code.html

might be related to http://www.theregister.co.uk/2010/04/09/critical_java_vulnerability/
probably why a fix was rushed out.

I love that article. Typical that Sun/Oracle responded with “we don’t give a damn” and then wrote some dirty patch that screwed over everybody.

“I uninstalled Java more than a year ago and haven’t had a single problem with any website,” he wrote. “Why are people still running Java in the browser?”

ah lovely, its hit slashdot too now

:slight_smile:

however some more details on the actual bug in the comments and when it was fixed.