# make sure to use the bundled JNA library

-Djna.nosys=true
-Djna.nounpack=true
This commit is contained in:
Reinhard Pointner 2016-11-07 15:04:31 +08:00
parent 2d21a1dce0
commit ad09eb8ae7
5 changed files with 34 additions and 9 deletions

View File

@ -1,6 +1,7 @@
# FileBot launch4j runtime config
-Dapplication.deployment=appx
-Dapplication.dir="%APPDATA%\FileBot"
-Dapplication.deployment=appx
-Dapplication.update=skip
# put all temporary files here
-Djava.io.tmpdir="%APPDATA%\FileBot\tmp"
@ -23,6 +24,10 @@
-Djna.boot.library.path="%EXEDIR%"
-Djava.library.path="%EXEDIR%"
# make sure to use the bundled JNA library
-Djna.nosys=true
-Djna.nounpack=true
# reduce default logging
-Djava.util.logging.config.file="%EXEDIR%\logging.properties"

View File

@ -1,6 +1,7 @@
# FileBot launch4j runtime config
-Dapplication.deployment=appx
-Dapplication.dir="%APPDATA%\FileBot"
-Dapplication.deployment=appx
-Dapplication.update=skip
# put all temporary files here
-Djava.io.tmpdir="%APPDATA%\FileBot\tmp"
@ -23,6 +24,10 @@
-Djna.boot.library.path="%EXEDIR%"
-Djava.library.path="%EXEDIR%"
# make sure to use the bundled JNA library
-Djna.nosys=true
-Djna.nounpack=true
# reduce default logging
-Djava.util.logging.config.file="%EXEDIR%\logging.properties"

View File

@ -1,6 +1,6 @@
# FileBot launch4j runtime config
-Dapplication.deployment=msi
-Dapplication.dir="%APPDATA%\FileBot"
-Dapplication.deployment=msi
# put all temporary files here
-Djava.io.tmpdir="%APPDATA%\FileBot\tmp"
@ -23,5 +23,9 @@
-Djna.boot.library.path="%EXEDIR%"
-Djava.library.path="%EXEDIR%"
# make sure to use the bundled JNA library
-Djna.nosys=true
-Djna.nounpack=true
# reduce default logging
-Djava.util.logging.config.file="%EXEDIR%\logging.properties"

View File

@ -1,6 +1,6 @@
# FileBot launch4j runtime config
-Dapplication.deployment=msi
-Dapplication.dir="%APPDATA%\FileBot"
-Dapplication.deployment=msi
# put all temporary files here
-Djava.io.tmpdir="%APPDATA%\FileBot\tmp"
@ -23,5 +23,9 @@
-Djna.boot.library.path="%EXEDIR%"
-Djava.library.path="%EXEDIR%"
# make sure to use the bundled JNA library
-Djna.nosys=true
-Djna.nounpack=true
# reduce default logging
-Djava.util.logging.config.file="%EXEDIR%\logging.properties"

View File

@ -1,10 +1,10 @@
# FileBot launch4j runtime config
-Dapplication.deployment=msi
-Dapplication.dir="%APPDATA%\FileBot"
-Dapplication.deployment=msi
-Dapplication.help=skip
# put all temporary files here
-Djava.io.tmpdir="%APPDATA%\FileBot\temp"
-Djava.io.tmpdir="%APPDATA%\FileBot\tmp"
# FileBot system properties
-DthreadPool=32
@ -19,13 +19,20 @@
-DuseExtendedFileAttributes=false
-DuseCreationDate=false
# look for native libs here
# look for executables in the application folder
-Dnet.filebot.AcoustID.fpcalc="%EXEDIR%\fpcalc.exe"
# look for native libraries in the application folder
-Djna.library.path="%EXEDIR%"
-Djna.boot.library.path="%EXEDIR%"
-Djava.library.path="%EXEDIR%"
# look for fpcalc here
-Dnet.filebot.AcoustID.fpcalc="%EXEDIR%\fpcalc.exe"
# make sure to use the bundled JNA library
-Djna.nosys=true
-Djna.nounpack=true
# reduce default logging
-Djava.util.logging.config.file="%EXEDIR%\logging.properties"
# use Java implementation for extracting archives
-Dnet.filebot.Archive.extractor="ApacheVFS"