Re: Touch Events, Scrolling, and Windows Pen

2013-05-28 Thread Danno Ferrin
it should generally work and the synthesized flag really seems to be misused here. Pavel On 28.5.2013 16:09, Danno Ferrin wrote: On Tue, May 28, 2013 at 2:44 AM, Anthony Petrov anthony.pet...@oracle.com**wrote: Hi Danno, On 05/27/2013 07:27 PM, Danno Ferrin wrote: My next problem

Re: When will JFX be fully open sourced?

2013-06-04 Thread Danno Ferrin
I just need to set up a Jenkins build to publish poems on the cloud bees server. I should have the free time by the end of the week. I am also going to publish the ant-javafx jars as well so our build plugins can pull those. Getting the native jars built automatically will be the tricky part, I

Re: Preloaders

2013-06-05 Thread Danno Ferrin
For me the biggest add would be for some form of runtime configuration of the packager, as well as the bundler params. this would allow outside contributors to cerate an APK bundler or an iOS bundler of many forms without having to adjust the core code, and allowing them to be brought in at

Re: Preloaders

2013-06-06 Thread Danno Ferrin
On Wed, Jun 5, 2013 at 9:47 PM, Daniel Zwolenski zon...@gmail.com wrote: To sum up my previous major suggestions for a better world: - web deploy code should be separate module from native, and jar separate again. Each native module (win, Linux, Mac) should be separate and I should be able

Re: OpenJFX and iOS

2013-06-26 Thread Danno Ferrin
RoboVM + libs is the goal here, on iOS. The ant based libs worked before. My brief read of the scripts indicates to me it is mostly a question of modifying some of the guard conditions in the build, but making it work for the supported platforms first is more of a priority. On Wed, Jun 26, 2013

Re: iOS: missing native font lib (a) in SDK directory

2013-07-02 Thread Danno Ferrin
Try this patch: https://bitbucket.org/narya/jfx78/commits/e69d574206cf59ed25e215cfd2479c9aae2ab296 It allows most libs to have varients transparently handled. On Tue, Jul 2, 2013 at 6:49 PM, Daniel Zwolenski zon...@gmail.com wrote: Niklas has RoboVM ready and waiting for this. I have the

Re: JavaFX8 on iPhone! It works!

2013-07-03 Thread Danno Ferrin
JavaFX 8? Does RoboVM support invokedynamic? That is a big deal if so. On Wed, Jul 3, 2013 at 10:07 AM, Niklas Therning nik...@therning.orgwrote: Awesome! Can you please post the build instructions somewhere? I'm not getting a long with gradle at all. :-( On Wed, Jul 3, 2013 at 6:03 PM,

Re: [API Review]: Add 'fxml.version' to System Properties (Was: FXML version number)

2013-07-05 Thread Danno Ferrin
I may be coming into this a little late, but I have concerns about using the default namespace for version identification. I feel a namespaced attribute in a namespace fixed across versions to identify the semantics would be a better choice, i.e.: ?import javafx.scene.control.*? Button

Re: JavaFX8 on iPhone! It works!

2013-07-05 Thread Danno Ferrin
Zwolenski zon...@gmail.com: Tobi, this is awesome! But you've left us hanging :) Did you use the 78 backport for this or just straight out J8? What are the steps to reproduce your working build? Very darn exciting! On 04/07/2013, at 2:50 AM, Danno Ferrin

Re: [API Review]: Add 'fxml.version' to System Properties (Was: FXML version number)

2013-07-09 Thread Danno Ferrin
I think mixing FXML versions in one FXML document is a bad idea, so my proposal of a version attribute would only show at the root of the document applying to all elements of that document, seeing the fx:version attribute anywhere else should be considered a strict validation error, so the

Re: Raspberry Pi + JavaFX 3D demo

2013-07-12 Thread Danno Ferrin
Here's my acid test, put a square grid of circles in a scroll pane. Scale up until pain is felt. GridPane gp = new GridPane(); //int size = 3; int size = 10; //int size = 32; // int size = 100; //int size = 317; for (int x = 0; x size; x++)

Re: Can JavaFX do CAD?

2013-07-27 Thread Danno Ferrin
So in this sense Scene Builder should be on this list, even though it is Oracle provided. It shows the promise of the complexity that I think you are asking for. On Sat, Jul 27, 2013 at 7:16 AM, Fabrizio Giudici fabrizio.giud...@tidalwave.it wrote: On Sat, 27 Jul 2013 09:12:35 +0200, Yennick

Re: JavaFX and iOS - it will remain a dream

2013-07-31 Thread Danno Ferrin
Where is the code base for this converter? Done properly it can also be written to spit out the generated stubs, as well as output in any language the user may prefer. A top grade implementation could integrate with FXMLLoader for a seamless experience ala .bss files. On Tuesday, July 30, 2013,

Re: current state of gradle script for Android?

2013-08-08 Thread Danno Ferrin
Summer vacation stuff with my family is sucking up all my free time. School starts in two weeks so I should be off the hook soon. On Aug 8, 2013 5:14 AM, tomas.brandalik tomas.branda...@oracle.com wrote: Hi, I have hardly any info about the project jfx78 backport and its status. I've just had

Re: JavaFX applications turning to black screen after some time

2013-09-10 Thread Danno Ferrin
While we are playing guess the bug I'de like to jump in on the bandwagon. Sometimes I see a white screen lockup on FX 2.2 on 7u25 (and all 7u for that matter) when I dock and undock my laptop. I've got one of those dell laptops with a separate more powerful graphics chips in the dock. It's only

Re: Default methods in JFX-8

2013-10-03 Thread Danno Ferrin
On Thu, Oct 3, 2013 at 12:24 PM, Petr Pchelko petr.pche...@oracle.comwrote: Hello, OpenJFX Community. There's a question about using Java 8 features in FX. I've been working on the support for InputMethods in JFXPanel which is an important feature for many users who speak hieroglyphic

Re: Lambdafication (was Re: Default methods in JFX-8)

2013-10-07 Thread Danno Ferrin
IntelliJ at least has a decent de-lamba assistant, not sure about NetBeans since it isn't my daily driver. So I am not concerned about the backporting impact if (and this is the big if) there is demonstrable improvement in either jar size, execution speed, or runtime memory impact. Ideally all

Re: Lambdafication (was Re: Default methods in JFX-8)

2013-10-07 Thread Danno Ferrin
at this point, otherwise in a couple months when we get a 9 / 8u workspace opened we can start putting the work in there (since in my mind there is no question but that for 9 we need to complete lamdafication). Richard On Oct 7, 2013, at 8:19 AM, Danno Ferrin danno.fer...@shemnon.com wrote

Re: Reenable webkit on jfx78?

2013-10-30 Thread Danno Ferrin
For a historical perspective my principal reason for disabling was that it wasn't compiling. So if it is now compiling, I have no problem with it. On Wed, Oct 30, 2013 at 4:29 PM, Stephen F Northover steve.x.northo...@oracle.com wrote: My vote: enable it. Steve On 2013-10-30 6:07 PM,

Re: Reenable webkit on jfx78?

2013-10-30 Thread Danno Ferrin
Also, if anyone wants on this list wants commit access to jfx78 to commit patches, just ask. On Wed, Oct 30, 2013 at 7:56 PM, Danno Ferrin danno.fer...@shemnon.comwrote: For a historical perspective my principal reason for disabling was that it wasn't compiling. So if it is now compiling, I

Re: CFV: New OpenJFX Committer: Mark Howe

2013-11-14 Thread Danno Ferrin
Yes On Thu, Nov 14, 2013 at 7:10 PM, David DeHaven david.deha...@oracle.comwrote: Vote: Yes! -DrD- I hereby nominate Mark Howe (OpenJDK user name: mhowe) to OpenJFX Committer. Mark is a member of JavaFX deployment team at Oracle. Most of Mark's changes are in the JavaFX pacakager:

Re: javafxpackager and launcher

2014-01-10 Thread Danno Ferrin
I came on board working on the packager stuff last month. Nearly all of the design decisions for this were made before I came on board, but I will do my best to explain it. On Wed, Jan 8, 2014 at 8:20 PM, Scott Palmer swpal...@gmail.com wrote: The Java 8 java.exe launcher is now JavaFX aware

Re: Error running JAVAFX using WinLauncher.exe

2014-01-23 Thread Danno Ferrin
Unfortunately there is no way to trap that output with the current code, it is from the JVM to a console Also, with that flag there should be a message box with the title Exiting application that should keep the console from closing. in this case, in addition to bringing up the console. Are

[8u] Review Request: RT-35629 Provide support so IDE's can include packaging tools

2014-02-06 Thread Danno Ferrin
Mark, Kevin, please review the following. Also, let me know if there is any co-ordination needed for the build server. Webrev: http://cr.openjdk.java.net/~shemnon/RT-35629/webrev.00/ JIRA: https://javafx-jira.kenai.com/browse/RT-35629 thanks, Danno

[8u] review RT-35778 - duplicate dtjava.js files

2014-02-12 Thread Danno Ferrin
Kevin, Thomas, please review: webrev: http://cr.openjdk.java.net/~shemnon/RT-35778/webrev.00/ jira: https://javafx-jira.kenai.com/browse/RT-35778 thanks, —Danno

Re: 8u20 review request: RT-35635: new bundlers for fxpackager

2014-03-14 Thread Danno Ferrin
in advance. -- best regards, Anthony On 3/14/2014 3:21 PM, Dmitry Cherepanov wrote: Looks good to me. Thanks Dmitry On 3/13/14 11:08 PM, Danno Ferrin wrote: Kevin, Chris, Dmitry Please review. These are the new bundlers for the 8u20 packager, the daemon/services stuff Dmitry has

Re: Using JavaFX deploy and having signing issues...

2014-03-24 Thread Danno Ferrin
Mac app store signing is a bit more cranky. The line Jeff gives is fine for Gatekeeper. Here's what we do (in order) for the app store bundler coming in 8u20 -

Re: Using JavaFX deploy and having signing issues...

2014-03-24 Thread Danno Ferrin
You can still deploy apps to the app store using JavaFX. You just cannot use the media library at the moment. You can do it also via non app store distribution and sign it via gatekeeper as well and keep the media libraries in. And it shouldn't matter what version of Mac OSX you use to build

Re: ACTION REQUIRED: check your openjfx/8u-dev/rt repo

2014-03-31 Thread Danno Ferrin
This was my fault, and I would like to apologize for the inconvenience it has caused Kevin and anyone who accidentally downloaded the changes. As a consequence, I have changed my twitter icon to that of a dunce. (@shemnon) —Danno On Mar 31, 2014, at 2:50 PM, Kevin Rushforth

Re: Building OpenJFX on Mac OS X 10.9.2 / XCode 5.1 / XCode 4.3.3

2014-04-04 Thread Danno Ferrin
I use XCodeLegacy http://devernay.free.fr/hacks/xcodelegacy/ The problem is that Xcode 5 doesn’t include the tools to build for 10.7 Lion anymore, and if you are like me and rebuilt a dev env on a clean 10.9 Mavericks mac, you don’t have those old SDKs. The script will install them for you

Re: Deployment documentation/questions

2014-04-10 Thread Danno Ferrin
This forum is a fine place to talk about it. The code lives in the openjfx repo so this looks to be the best place. The JavaFX 2 documentation is still valid for the JavaFX 8 FCS release, as only minor bug fixes went in. For the 8u20 release the documentation should all still be valid, since

Re: Using JavaFX deploy and having signing issues...

2014-04-10 Thread Danno Ferrin
codesign fails also. Do you have a working example of codesign the jdk in the bundle? Thanks, -Tony On Monday, March 24, 2014 11:48 AM, Danno Ferrin danno.fer...@oracle.com wrote: You can still deploy apps to the app store using JavaFX. You just cannot use the media library

Re: Javafxpackager and splash screen

2014-04-18 Thread Danno Ferrin
Currently the launcher used by the packager does not support ally he flags that the command line java launcher does. One of these is the splash screen option, so you won’t be able to do this with the current Java 8 code. The Inifinite kind launcher has the same restrictions because of the way

Re: Javafx deploy ant task question...

2014-04-30 Thread Danno Ferrin
After reading the code I am surprised by the answer I am going to give. You can’t. Not with the current code. The arguments passed into the java main class are the arguments passed into the executable launching it. So if you launch the win app via command line with arguments you get the

Code Review Request For RT-37122: Css2Bin cannot overwrite existing writable field

2014-05-14 Thread Danno Ferrin
David, Kevin, Please review the proposed fix JIRA: https://javafx-jira.kenai.com/browse/RT-37122 Webrev: http://cr.openjdk.java.net/~shemnon/RT-37122/webrev.00/ —Danno

Re: Roadmap for javafxpackager?

2014-05-14 Thread Danno Ferrin
The icon can be customized prior to the 8u20 release via magic file locations: http://docs.oracle.com/javafx/2/deployment/self-contained-packaging.htm#BCGICFDB You can customize both the app icon as well as the DMG icon, and the backing image. The main issue is you need to create an icns

Re: Extending a Region to create a JUNG Layout

2014-05-30 Thread Danno Ferrin
You may find this class valuable, it is a pane that listens to zoom and mouse scroll events in a group, essential for large graphs: https://github.com/shemnon/FollowTheBitcoin/blob/master/src/main/groovy/com/shemnon/btc/view/ZoomPane.java I haven't had time to harden it and componentize it into

Re: Extending a Region to create a JUNG Layout

2014-05-31 Thread Danno Ferrin
! If I use the class in my JUNG work, I need a BSD license. The rest of that codebase is BSD already. I’ll contact you off list if I go that direction. Right now, I’m trying to get my head wrapped around what it would take to modernize JUNG. On May 30, 2014, at 4:20 PM, Danno Ferrin danno.fer

Re: Extending a Region to create a JUNG Layout

2014-06-02 Thread Danno Ferrin
of awkwardly worded for individual contributors. On Sun, Jun 1, 2014 at 10:49 PM, Jeffrey Guenther guenther.jeff...@gmail.com wrote: BSD - 3 Clause - http://jung.sourceforge.net/license.txt On Sat, May 31, 2014 at 6:17 PM, Danno Ferrin danno.fer...@shemnon.com wrote: The new matrix classes

Re: Bundler question for Mac OS X...

2014-06-11 Thread Danno Ferrin
This will be upgraded in the 8u20 release. For pre8u20 in the ant script the menu bar name is the name attribute from the application element. fx:deploy … !-- … -- fx:application id=“com.example.your.mac.App” name=“Your App”/ !-- … -- /fx:deploy (This will still work in 8u20, if it

Re: Bundler question for Mac OS X...

2014-06-11 Thread Danno Ferrin
everywhere on the app including the sub-menu item names. Thanks, -Tony On Wednesday, June 11, 2014 7:50 AM, Danno Ferrin danno.fer...@oracle.com wrote: This will be upgraded in the 8u20 release. For pre8u20 in the ant script the menu bar name is the name attribute from

Large Image Export

2014-06-13 Thread Danno Ferrin
While working on a fun project I discovered that the Image Export limits the size of the export textures, mostly depending on your graphics stack. Here's one example: java.lang.RuntimeException: Requested texture dimensions (20581x245) require dimensions (0x245) that exceed maximum texture size

Re: Large Image Export

2014-06-13 Thread Danno Ferrin
, and render the tiles in a loop specifying the appropriate viewport and translation via ShapshotParams. -- Kevin Danno Ferrin wrote: While working on a fun project I discovered that the Image Export limits the size of the export textures, mostly depending on your graphics stack. Here's one

Re: New bundler in 8u20 question...

2014-06-15 Thread Danno Ferrin
Now that ramp down phase 2 is upon us I was going to post a blog post about it this week, but looks like there are some burning questions... On Jun 14, 2014, at 8:52 PM, Tony Anecito adanec...@yahoo.com wrote: Hi All, The new bundler in 8u20 seems to create a .pkg file. It can create two

Re: New bundler in 8u20 question...

2014-06-15 Thread Danno Ferrin
On Jun 15, 2014, at 9:48 AM, Mike Hearn m...@plan99.net wrote: Does the new bundler still create DMGs as well? Yes. AppName-version-MAS.pkg where the -MAS variant is for Mac App Store, this will show up in next weeks build. Could I suggest -AppStore instead of -MAS, which is a rather

Re: New bundler in 8u20 question...

2014-06-15 Thread Danno Ferrin
On Jun 15, 2014, at 11:32 AM, Tony Anecito adanec...@yahoo.com wrote: Thanks Danno I figured there might be new arguments. And also thanks for working on making it easier for all of us. I did notice that the pkg file created did not install into the applications folder. How does one get it

Re: New bundler in 8u20 question...

2014-06-15 Thread Danno Ferrin
just Ant script for my build. So any way to set the javaFX Deploy ant script to tell the pkg file to deploy to the applications folder? Thanks Again, -Tony On Sunday, June 15, 2014 3:36 PM, Danno Ferrin danno.fer...@oracle.com wrote: On Jun 15, 2014, at 11:32 AM, Tony Anecito

hg: openjfx/8u-dev/rt: RT-37599: Creation of a DMG from an APP is broken (scpt fails)

2014-06-25 Thread danno . ferrin
Changeset: 296d878c295d Author:shemnon Date: 2014-06-25 14:25 -0600 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/296d878c295d RT-37599: Creation of a DMG from an APP is broken (scpt fails) Summary: Re-work script to depend on posix file name instead of finder presented

hg: openjfx/8u-dev/rt: RT-37732:[packager] Default argument lambdas should be well behaved

2014-06-26 Thread danno . ferrin
Changeset: bc10f48ef71f Author:shemnon Date: 2014-06-26 13:30 -0600 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/bc10f48ef71f RT-37732:[packager] Default argument lambdas should be well behaved Summary: Deal with the case of a null identifier. Add unit tests as well. !

[8u20] Review Request for RT-37732

2014-06-26 Thread Danno Ferrin
Hello Steve, Kevin: I’de like to get this fix pushed into 8u20. mercurial: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/bc10f48ef71f jira: https://javafx-jira.kenai.com/browse/RT-37732 Small, self contained, limited impact, code new to 8u20, and it will make a huge difference for the

Re: Is Bundler now working for command line parameters?

2014-07-02 Thread Danno Ferrin
This won’t be fixed until 8u40. What platforms are you targeting? Mac, Linux, Windows? On Jul 2, 2014, at 2:35 PM, Tony Anecito adanec...@yahoo.com wrote: Hi Danno, Is b20 have the fix for command line parameters that should get passed to the args for the static main method? And if so

Review Request: RT-37788

2014-07-02 Thread Danno Ferrin
Chris, Kevin, Steve, Please review this fix for RT-37788. Since I am not an objective C any comments are welcome. Also, please consider if this is too much for an 8u20 fix (the diff is against the current 8u40 codebase). Webrev: http://cr.openjdk.java.net/~shemnon/RT-37788/webrev.00/ JIRA:

Re: Review Request: RT-37788

2014-07-02 Thread Danno Ferrin
[dictPath removeObjectAtIndex: 1]; } Make sense? Clear as mud? Chris On Jul 2, 2014, at 2:15 PM, Danno Ferrin danno.fer...@oracle.com wrote: Chris, Kevin, Steve, Please review this fix for RT-37788. Since I am not an objective C any comments are welcome. Also, please

Re: Review Request: RT-37788

2014-07-03 Thread Danno Ferrin
]; 366 [dictPath removeObjectAtIndex: 1]; } Make sense? Clear as mud? Chris On Jul 2, 2014, at 2:15 PM, Danno Ferrin danno.fer...@oracle.com wrote: Chris, Kevin, Steve, Please review this fix for RT-37788. Since I am not an objective C any comments are welcome. Also

hg: openjfx/8u-dev/rt: 3 new changesets

2014-07-07 Thread danno . ferrin
Changeset: 56985c535d7a Author:shemnon Date: 2014-07-02 14:55 -0600 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/56985c535d7a RT-37788: MacOSX Does not respect JVMUserOptions Summary: Some tweaks to test code first !

Review Request: RT-37832

2014-07-07 Thread Danno Ferrin
Kevin, Steve, Marty, Please review the following. I consider this critical for 8u20 and request promotion to critical review. Webrev: http://cr.openjdk.java.net/~shemnon/RT-37832/webrev.00/ Jira: https://javafx-jira.kenai.com/browse/RT-37832 Thanks, —Danno

Re: hg: openjfx/8u-dev/rt: RT-37832: [packager] Mac App Store Bundler fails to strip jfxmedia.dylib and strips Info.plist

2014-07-08 Thread Danno Ferrin
:59 PM, Danno Ferrin danno.fer...@oracle.com wrote: The Info.plist in the plugins dir. i.e. app/Contents/PlugIns/jdk_name/Contents/Info.plist - we should be preserving this as I believe apple checks the meta-data for it. I still haven’t been able to sign it in a way

hg: openjfx/8u-dev/rt: 2 new changesets

2014-07-09 Thread danno . ferrin
Changeset: 815b29fce85f Author:shemnon Date: 2014-07-09 14:41 -0600 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/815b29fce85f RT-37833: [packager] Allow for easier configuration of CFBundleVersion for Mac/Mac App Store Summary: Add a mac.CFBundlerVersion bundler argument.

Re: OT: Netbeans ported to JFX?

2014-07-09 Thread Danno Ferrin
On Jul 9, 2014, at 8:14 AM, Jeff Martin j...@reportmill.com wrote: We need something like a JavaFX Playground Something like this? https://www.youtube.com/watch?v=g2DJb58at10 Looks like Carl will also be presenting this at JavaOne this year. —Danno

hg: openjfx/8u-dev/rt: RT-37769: Simple DMG Generation

2014-07-10 Thread danno . ferrin
Changeset: 22be6271b7d3 Author:shemnon Date: 2014-07-10 12:32 -0600 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/22be6271b7d3 RT-37769: Simple DMG Generation Summary: Add a bundler argument, and skip the applescript step if it is set. If it is simple and system wide add

Re: hg: openjfx/8u-dev/rt: RT-37832: [packager] Mac App Store Bundler fails to strip jfxmedia.dylib and strips Info.plist

2014-07-17 Thread Danno Ferrin
seen before and acts like issue might be with Info.pList in the pkg file. The app file works just fine. -Tony On Tuesday, July 8, 2014 2:59 PM, Danno Ferrin danno.fer...@oracle.com wrote: The Info.plist in the plugins dir. i.e. app/Contents/PlugIns/jdk_name/Contents/Info.plist

Re: Bundle native libraries for Mac for JNA JNI...

2014-08-12 Thread Danno Ferrin
I think that is right. We set java.library.path in the launcher to be bundle/Contents/Java/ prior to launch. So I would include the libraries in the same way the jars and other assets are listed. On Aug 10, 2014, at 9:20 PM, Tony Anecito adanec...@yahoo.com wrote: Ok. I think the native

hg: openjfx/8u-dev/rt: RT-38129 - mac.dmg.simple hangs

2014-08-13 Thread danno . ferrin
Changeset: 4f273765662a Author:shemnon Date: 2014-08-13 09:01 -0600 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/4f273765662a RT-38129 - mac.dmg.simple hangs Summary: remove all fancy linkage. DMG is now very simple: .app only. !

hg: openjfx/8u-dev/rt: RT-38312: Modify Packager to remove QT Kit platform when creating Mac App Store bundles

2014-08-14 Thread danno . ferrin
Changeset: f7cf21c9e487 Author:shemnon Date: 2014-08-14 10:48 -0600 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/f7cf21c9e487 RT-38312: Modify Packager to remove QT Kit platform when creating Mac App Store bundles Summary: update the part of the MacAppBundler where the

hg: openjfx/8u-dev/rt: RT-38312: Modify Packager to remove QT Kit platform when creating Mac App Store bundles

2014-08-14 Thread danno . ferrin
Changeset: 7e5faca81800 Author:shemnon Date: 2014-08-14 15:27 -0600 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/7e5faca81800 RT-38312: Modify Packager to remove QT Kit platform when creating Mac App Store bundles Summary: The runtime check caused problems when run on

hg: openjfx/8u-dev/rt: 2 new changesets

2014-08-20 Thread danno . ferrin
Changeset: a4ba2aff078e Author:shemnon Date: 2014-08-20 10:49 -0600 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/a4ba2aff078e RT-38129 - mac.dmg.simple hangs Summary: fix logic error ! modules/fxpackager/src/main/java/com/oracle/tools/packager/mac/MacDmgBundler.java

hg: openjfx/8u-dev/rt: RT-37439: Install packaged JDK and JRE on Mac Build Servers

2014-08-21 Thread danno . ferrin
Changeset: 946598c40f55 Author:shemnon Date: 2014-08-21 12:41 -0600 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/946598c40f55 RT-37439: Install packaged JDK and JRE on Mac Build Servers Summary: update tests to respect the new environmental parameters when present. !

hg: openjfx/8u-dev/rt: [test only] RT-37439: Install packaged JDK and JRE on Mac Build Servers

2014-08-22 Thread danno . ferrin
Changeset: eeb8252d3fed Author:shemnon Date: 2014-08-22 10:03 -0600 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/eeb8252d3fed [test only] RT-37439: Install packaged JDK and JRE on Mac Build Servers Summary: three more missed values !

Re: How to set CFBundleVersion?

2014-08-25 Thread Danno Ferrin
Do you mean CFBundleVersion? (no r). This is a bug for 8u40: https://javafx-jira.kenai.com/browse/RT-37833 In the mean time I took the info.plist, used the drop-in-resource facility, and provided my own template. Then I hand incremented the CFBundle. If you run with verbose set the

Re: How to set CFBundleVersion?

2014-08-25 Thread Danno Ferrin
that info.plist. Thanks, -Tony On Monday, August 25, 2014 8:47 AM, Danno Ferrin danno.fer...@oracle.com wrote: Do you mean CFBundleVersion? (no r). This is a bug for 8u40: https://javafx-jira.kenai.com/browse/RT-37833 In the mean time I took the info.plist, used the drop-in-resource

Re: How to set CFBundleVersion?

2014-08-25 Thread Danno Ferrin
On Monday, August 25, 2014 10:53 AM, Danno Ferrin danno.fer...@oracle.com wrote: Not at the moment. This is a task I hope to get to in 8u40. It needs to be in the classpath of the ant-javafx.jar in a specific place, which I believe is package/macosx/Info.plist. IIRC the verbose output tells

hg: openjfx/8u-dev/rt: RT-38442: [packager] Java FX Packaging options can cause Windows Packager to fail.

2014-08-26 Thread danno . ferrin
Changeset: e4cfda6bac5a Author:shemnon Date: 2014-08-26 14:28 -0600 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/e4cfda6bac5a RT-38442: [packager] Java FX Packaging options can cause Windows Packager to fail. Summary: regexp needs double backslash, so that means quadruple

8u40 API Review: RT-37767 Provide friendly APIs to access User JVM Preferences

2014-08-27 Thread Danno Ferrin
webrev: http://cr.openjdk.java.net/~shemnon/RT-37767/webrev.0/ Jira: https://javafx-jira.kenai.com/browse/RT-37767 This is the proposed API to allow the friendly access tot eh User JVM Options. Here are some snippets from demo code on my machine showing how they may interact: // get

Re: Javapackager not calling MyApp-post-image.sh on MacOSX

2014-09-03 Thread Danno Ferrin
PM, Danno Ferrin danno.fer...@oracle.com wrote: What mac package format? DMG or PKG? On Sep 3, 2014, at 12:38 PM, Jeff Martin j...@reportmill.com wrote: I’m glad to see that javafxpackager is now javapackager. So my question should be - what is the proper forum to post a javapackger

Re: Javapackager not calling MyApp-post-image.sh on MacOSX

2014-09-03 Thread Danno Ferrin
...@reportmill.com wrote: Done: RT-38521 - Javapackager not calling post-image script on MacOSX for PKG and IMAGE jeff On Sep 3, 2014, at 4:15 PM, Danno Ferrin danno.fer...@oracle.com wrote: A quick code inspection shows that the post image script is only called for DMG packaging. Looks

hg: openjfx/8u-dev/rt: [test-only] change to simple DMG

2014-09-03 Thread danno . ferrin
Changeset: 613a8ae3a0f4 Author:shemnon Date: 2014-09-03 19:59 -0600 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/613a8ae3a0f4 [test-only] change to simple DMG When running tests, only do a full DMG if the build is configured to retain the intermediate packaging artifacts

Review for JDK-8043060 - First Impl for JEP-208 Packager Imrpovments

2014-09-09 Thread Danno Ferrin
Kevin, Steve, Please review this first implementation of the features for JEP-208, tracked on bugs.openjdk.java.net as JDK-8043060. There are some changes to the build support classes to support compiling Mac .mm files as well as some platform specific flags added tot he platform .gradles in

[8u40] Review of JEP-208 / RT-38576 - Java Packager Improvements

2014-09-09 Thread Danno Ferrin
Kevin, Stephen: Please review. There is a new bug ID for previous reviews, discuss it on the javafx-jira site instead of on the JEP bug. Also a windows build tpyo was fixed, other than that the webrev is teh same. Child bugs linked in the umbrella bug. JIRA:

Re: IOS support?

2014-09-09 Thread Danno Ferrin
There's a JavaOne session for that: Java on iOS? Yes, You Can! [CON3698] • Henric Müller - CEO, Trillian Mobile AB • Niklas Therning - Head Geek, RoboVM / Trillian Mobile AB Tuesday, Sep 30, 11:00 AM - 12:00 PM - Hilton - Yosemite B/C

hg: openjfx/8u-dev/rt: [test-only] RT-38575: Java FX 8u40 build got stuck because hdiutil is hanging when it receives a message will sleep received

2014-09-09 Thread danno . ferrin
Changeset: bace5fdce0fe Author:shemnon Date: 2014-09-09 18:46 -0600 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/bace5fdce0fe [test-only] RT-38575: Java FX 8u40 build got stuck because hdiutil is hanging when it receives a message will sleep received Summary: Only run DMG

hg: openjfx/8u-dev/rt: RT-38567: Umbrella for Changes for JEP-208 - Java Packager Improvements

2014-09-10 Thread danno . ferrin
Changeset: 8335da240a33 Author:shemnon Date: 2014-09-10 11:31 -0600 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/8335da240a33 RT-38567: Umbrella for Changes for JEP-208 - Java Packager Improvements Reviewed-By: kcr Summary: Initial implementation for JEP-208, including

hg: openjfx/8u-dev/rt: RT-37996: [packager] RPM Builder can't find rpmbuild in non-english locales

2014-09-10 Thread danno . ferrin
Changeset: ee31427caf20 Author:shemnon Date: 2014-09-10 13:06 -0600 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/ee31427caf20 RT-37996: [packager] RPM Builder can't find rpmbuild in non-english locales Summary: Just look for a version number, don't depend on language

hg: openjfx/8u-dev/rt: [test-only] need to check for Hand Crafted JDKs in build server tests.

2014-09-11 Thread danno . ferrin
Changeset: 6dea37f368c8 Author:shemnon Date: 2014-09-11 08:02 -0600 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/6dea37f368c8 [test-only] need to check for Hand Crafted JDKs in build server tests. !

hg: openjfx/8u-dev/rt: support multiple file registrations on windows, and normalize the exe/msi names

2014-09-11 Thread danno . ferrin
Changeset: 554c4bdd3c5f Author:shemnon Date: 2014-09-11 11:04 -0600 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/554c4bdd3c5f support multiple file registrations on windows, and normalize the exe/msi names !

Re: hg: openjfx/8u-dev/rt: support multiple file registrations on windows, and normalize the exe/msi names

2014-09-11 Thread Danno Ferrin
My bad, still in sandbox mode. RT-38626: [Bundlers] content type is not set for Windows when specifying file associations Summary: support multiple file registrations on windows, and normalize the exe/msi names On Sep 11, 2014, at 11:05 AM, danno.fer...@shemnon.com wrote: Changeset:

hg: openjfx/8u-dev/rt: RT-38665: [packager] LauncherUserJVMOptions native headers incorrect

2014-09-15 Thread danno . ferrin
Changeset: 8501205d226c Author:shemnon Date: 2014-09-15 16:00 -0600 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/8501205d226c RT-38665: [packager] LauncherUserJVMOptions native headers incorrect Summary: re-generate JNI headers and impls !

hg: openjfx/8u-dev/rt: RT-38312: Modify Packager to remove QT Kit platform when creating Mac App Store bundles

2014-09-19 Thread danno . ferrin
Changeset: ac413b6468e9 Author:shemnon Date: 2014-09-18 23:07 -0600 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/ac413b6468e9 RT-38312: Modify Packager to remove QT Kit platform when creating Mac App Store bundles Summary: Remove unneeded debugging code !

Review for RT-38725

2014-10-06 Thread Danno Ferrin
Kevin, Stephen, and anyone running Mac OSX 10.8 (Mountain Lion) with XCode 5.1.1 This patch should get the new launcher building on 10.7, 10.8, and 10.9 (and 10.10 maybe when it is released). However, we don't have anyone running Mountain Lion and/or XCode 5.1.1. The XCode issue is the more

Re: javapackager native windows bundle non empty app.classpath (package.cfg)

2014-10-06 Thread Danno Ferrin
This looks to be a bug. Can you post what version of the jdk you are using? Also, can you post a JIRA for this at javafx-jira.kenai.com? On Oct 6, 2014, at 2:13 PM, Stefan Kreutter openjfx-...@kreutter.de wrote: Hoping to address my question to the appropriate list... Is it possible to

Review for RT-38968

2014-10-13 Thread Danno Ferrin
Chris, Kevin, Please review this patch. More info in the JIRA Webrev: http://cr.openjdk.java.net/~shemnon/RT-38968/webrev.00/ JIRA: https://javafx-jira.kenai.com/browse/RT-38968

Review Request: RT-36851 - preloaders don't work in packaged applicaitons

2014-10-23 Thread Danno Ferrin
Kevin, Stephen, Please review RT-36851. There is one file in graphics in the application model affected by this change, and it is the most important change. My rational is in the JIRA. JIRA: https://javafx-jira.kenai.com/browse/RT-36851 WebRev:

Review Request

2014-12-10 Thread Danno Ferrin
Kevin, please review: Jira: https://javafx-jira.kenai.com/browse/RT-39634 Webrev: http://cr.openjdk.java.net/~shemnon/RT-39634/webrev.01/ Even though the impact is strictly cosmetic, I consider this critical for 8u40. The code added is seen elsewhere in other bundlers and is being replicated

[8u40] review request: RT-39733 - Packaging with a JRE as installed fails codesign on OSX 10.9.5 or 10.10

2014-12-23 Thread Danno Ferrin
Kevin, David, please review JIRA: https://javafx-jira.kenai.com/browse/RT-39733 Webrev: http://cr.openjdk.java.net/~shemnon/RT-39733/webrev.00/ Current Webrev is against 8u-dev , I'll get one against 8u40 soonish.

Re: Error creating bundle for MacOSX using u40 b23

2015-02-02 Thread Danno Ferrin
Sorry for the late response. Comcast decided monday at 2pm was the correct time to upgrade some cable hardware for the whole neighborhood. Because comcast cares. My guess is it's failing to find a key for one reason or another. Perhaps the keys aren't unlocked, or they are named slightly

Re: Why do the Linux packages go into /opt?

2015-01-27 Thread Danno Ferrin
I'm not sure why it goes into /opt (that decision predates my tenure), but since the JRE is included it may be considered a large software package unsuitable for the /usr directory, and since it is an add-on application software packages opt seems to be a sensible place. It may also be a

Re: How to handle file open requests on MacOS

2015-01-05 Thread Danno Ferrin
Oh, yes. Mac has it's own Applicaiton class. Here's the imports for the second file... import com.apple.eawt.AppEvent; import com.apple.eawt.Application; import java.io.File; import java.util.List; import javax.swing.SwingUtilities; The com.apple.eawt stuff is shipped with Oracle JRE and JDK,

Re: How to handle file open requests on MacOS

2015-01-05 Thread Danno Ferrin
it this way - AFAICT you're only allowed to have one such event handler registered with the OS and JavaFX already registers one ... it just doesn't expose the resulting Java events via public API. On Mon, Jan 5, 2015 at 6:50 PM, Danno Ferrin danno.fer...@oracle.com wrote: Oh, yes. Mac has it's

Re: How to handle file open requests on MacOS

2015-01-05 Thread Danno Ferrin
. The current installer setup runs just fine with lowest privs, so it'd be perhaps nicer to put the registry entries under HKEY_CURRENT_USER\SOFTWARE\Classes instead: http://support.microsoft.com/kb/257592 On Mon, Jan 5, 2015 at 8:59 PM, Danno Ferrin danno.fer...@oracle.com wrote: This code

Re: Packaging a JFX app in a gradle build system

2015-03-30 Thread Danno Ferrin
Yes, bitbucket is the main repo, github is a mirror (currently out of date). (sorry for the late response, just got back from a long spring break). On Mar 28, 2015, at 9:30 AM, Scott Palmer swpal...@gmail.com wrote: I believe the bitbucket repo is the main page. At least the bintray page

Review Request: RT-39975 - AppCDS support for packager

2015-03-30 Thread Danno Ferrin
Kevin, Chris, please review jira: https://javafx-jira.kenai.com/browse/RT-39975 webrev: http://cr.openjdk.java.net/~shemnon/RT-39975/webrev.00/

  1   2   >