forked from navossoc/FileBot-No-Donate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
filebot.platform.launcher.l4j.ini
63 lines (46 loc) · 1.56 KB
/
filebot.platform.launcher.l4j.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# FileBot launch4j runtime config
-Dapplication.dir="%APPDATA%\FileBot"
-Dapplication.deployment=msi
-Dapplication.help=skip
# put all temporary files here
-Djava.io.tmpdir="%APPDATA%\FileBot\tmp"
# FileBot system properties
-DthreadPool=32
# network settings
-Djava.net.useSystemProxies=true
# do not use native shell for move/copy operations
-DuseNativeShell=false
# do not use NTFS extended attributes for storing metadata
-DuseExtendedFileAttributes=false
-DuseCreationDate=false
# 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%"
# 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"
# force english locale
-Dfile.encoding=UTF-8
-Duser.country=US
-Duser.country.format=US
-Duser.language=en
-Duser.language.format=en
# disable HW acceleration
-Dsun.java2d.d3d=false
# force platform L&F
-Dswing.systemlaf=javax.swing.plaf.nimbus.NimbusLookAndFeel
# force HTTP for OpenSubtitles API calls (useful for debugging requests with Fiddler)
-Dnet.filebot.OpenSubtitlesXmlRpc.url="http://api.opensubtitles.org/xml-rpc"
# skip annoying donate message
-Dos.name="Windows 11"
# disable update check
-Dapplication.update="skip"
# support JAVA_OPTS environment variable
%JAVA_OPTS%