Edvin Syse
Edvin Syse
I agree with @ruckustboom - the changelistener order should be maintained if we add this. Not sure of the value if we do though, as the example illustrates.
I'll use the following two simple fragments in my discussion below: ```kotlin class F1 : Fragment("F1") { override val root = label(title) } class F2 : Fragment("F2") { override val...
Absolutely, that will remove some confusion I guess, as one would most probably assume that the function was available on the UIComponent itself.
I've often tried to hide that fact, by making UIComponents integrate just like they would if they were actual Nodes, so that's my fault :) It's convenient to be able...
I'm not sure I understand what you mean. You don't need to run the deploy step to build the native installer?
If you embed the password with the application I'm not sure it has the desired security effect you're after. Maybe you could ask the user for the password on first...
If you include the username/password that sounds like the same as not having a username/password at all. You could either remove, hard code, or simply include a property file with...
FXLauncher itself has no problems with those arguments, as they are just parameters passed to `javapackager`. If you look at the Maven example it should be trivial as you just...
Yes, that's literally what it does - package your app and wrap it in an executable. Please see one of the example projects (maven or gradle). You will need to...
Yes, there is a generate-installer step in the example projects which builds installers. On windows, it has a prerequisite on a third party installer framework, which it will prompt you...