Using jpackage 24 with WiX Toolset 5 or 6, how can I start the app automatically after installation is complete?

2025-06-23 Thread Davide Perini
FireflyLuciferin-jar-with-dependencies.jar --win-menu --win-menu-group Luciferin --copyright "Davide Perini" --name "Firefly Luciferin"  --vendor DPsoftware --win-dir-chooser --win-shortcut --win-per-user-install --win-upgrade-uuid 33c82dc4-e0e0-11ea-87d0-0242ac130003

Re: jpackage and Wix 5

2025-03-19 Thread Davide Perini
./data/img/luciferin_logo.ico  --win-menu --win-menu-group Ambilight --copyright "Davide Perini" --name "Firefly Luciferin"  --vendor DPsoftware --win-dir-chooser --win-shortcut --win-per-user-install --win-shortcut --win-shortcut-prompt --java-options "-XX:

jpackage and Wix 5

2025-03-19 Thread Davide Perini
o.ico --win-menu --win-menu-group Luciferin --copyright "Davide Perini" --name "Firefly Luciferin" --vendor DPsoftware --win-dir-chooser --win-shortcut --win-per-user-install --win-upgrade-uuid myuuid --app-version "${{steps.get-id.outputs.id}}" --win-shortcut --win-s

jpackage and dependencies...

2024-12-22 Thread Davide Perini
Hi all, is it normal that the .deb files created with jpackage "knows something" about OS dependencies? Some of my users are complaining that my deb files uses some deps... sudo dpkg -i FireflyLuciferinLinux.deb . dpkg: dependency problems prevent configuration of fireflyluciferin:  firefl

Re: [External] : Re: JPackage does very weird things and it doesn't work with SNAP

2024-12-14 Thread Davide Perini
/github.com/openjdk/jdk/blob/master/src/jdk.jpackage/linux/native/libapplauncher/LinuxLauncherLib.cpp [2] https://github.com/openjdk/jdk/blob/master/src/jdk.jpackage/linux/native/applauncher/LinuxLauncher.c - Alexey On 12/11/2024 2:46 PM, Davide Perini wrote: Hi, thanks for the answer, I really apprecia

Re: Will jpackage support WixTools v4 or v5 with Java 24?

2024-12-12 Thread Davide Perini
o see this in the early access release notes: https://jdk.java.net/24/release-notes (bottom of the page) -- Kevin On 12/11/2024 12:28 PM, Davide Perini wrote: As subject. Current wix v3 is deprecated. Will jpackage support WixTools v4 or v5 with Java 24? Thanks

Will jpackage support WixTools v4 or v5 with Java 24?

2024-12-11 Thread Davide Perini
As subject. Current wix v3 is deprecated. Will jpackage support WixTools v4 or v5 with Java 24? Thanks

Re: JPackage does very weird things and it doesn't work with SNAP

2024-12-11 Thread Davide Perini
That is why it runs `rpm` and `dpkg` queries at startup. Try running your app with JPACKAGE_DEBUG env variable set to "true": &> env JPACKAGE_DEBUG=true ... It logs the launcher's activity, which can give a clue as to what is going on. - Alexey On 12/8/2024 1:56 PM, Dav

Re: JPackage does very weird things and it doesn't work with SNAP

2024-12-09 Thread Davide Perini
, Dec 8, 2024, 3:46 PM Kim Barrett <mailto:kim.barr...@oracle.com>> wrote:     On 12/8/24 1:56 PM, Davide Perini wrote: > I tried attaching gdb, but it’s clear that jvm doesn’t like     debuggers > attached. Right from the start it got sigstop handlers invoked, and

JPackage does very weird things and it doesn't work with SNAP

2024-12-08 Thread Davide Perini
Hi there... I have a JDK23 app that is packaged with jpackage. I am running this app in Snapcraft. It works well but I cannot restart it for a very weird problem. When I try to restart it with a simple code like this: ``` ArrayList cmdOutput = new ArrayList<>();     try {     **_Pro

Re: RFR: 8325203: System.exit(0) kills the launched 3rd party application

2024-11-09 Thread Davide Perini
On Thu, 8 Feb 2024 21:03:26 GMT, Alexey Semenyuk wrote: >> Tested with the use case from the CR. >> >> The idea of the fix is to prevent grandchildren processes from being >> automatically attached to the job killing all processes attached to it when >> the job object is destroyed. >> >> File