edvin / fxlauncher

Auto updating launcher for JavaFX Applications
Apache License 2.0
714 stars 110 forks source link

USERLIB and Windows #52

Closed imario42 closed 7 years ago

imario42 commented 7 years ago

Hi!

I wonder if the Windows path construction in FXManifest for the USERLIB is fully correct. Shouldn't there be a Local/LocalLow or Roaming in the path? I'd prefer "Local" for now.

` case win:

                replacement = Paths.get(System.getProperty("user.home"))
                        .resolve("AppData")
                        .resolve("Local")
                        .resolve(cacheDir.substring(8))
                        .toString();
                break;

`

What do you think?

edvin commented 7 years ago

I think you're correct :) I'll change it right away.