Edvin Syse

Results 153 comments of Edvin Syse

Do you expect us to be able to help you in any meaningful way after describing the issue with a single word, "trouble"? :) What's the issue you're having, what...

Thanks @mordechaim - I agree. We could have added a feature to delete old artifacts, but that's a bit dangerous, and since we can remove the need for it by...

You can include a version number in your app perhaps? I agree, this could absolutely be added as a new feature :)

We'd have to have a designated artifacts-folder so it would be safe for FXLauncher to delete any files not mentioned in the manifest. This could be done after the new...

Sorry for the late reply. I don't have a linux machine to test on right now, and I must admit I'm not able to prioritize this right now, but I'll...

You have to reinstall on the client for now. We plan to have fxlauncher update itself as well for 2.0, but no work is being done on that right now....

Honestly I don't feel that much friction from deployment, sure you need to set it up once, but after that it's a matter of running a build and it's done....

That sounds like a good idea. Gradle will be a little less involved anyways, and I can probably port it to Maven myself when things cool down a little here.

You can wrap a shell script or batch file around your build invocation and call whatever deploy command you need from there :)

That could be as easy as: ```bash #!/bin/bash mvn clean package scp -rv target/app/* username@somehost:some/path ``` The `scp` command could be changed out for whatever command you need to run...