mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-02 00:15:02 -04:00
Experiment with appx packages
This commit is contained in:
parent
5f734c14b2
commit
934b397369
40
installer/appx/AppxManifest.xml
Normal file
40
installer/appx/AppxManifest.xml
Normal file
@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Package
|
||||
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
|
||||
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
|
||||
xmlns:cap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities">
|
||||
|
||||
<Identity
|
||||
Name="FileBot"
|
||||
ProcessorArchitecture="x64"
|
||||
Publisher="CN=761A0D2B-9B86-4FE4-B664-18E4E0AFC3F1"
|
||||
Version="4.7.2.0"
|
||||
/>
|
||||
|
||||
<Properties>
|
||||
<DisplayName>FileBot</DisplayName>
|
||||
<PublisherDisplayName>Point Planck Limited</PublisherDisplayName>
|
||||
<Description>FileBot is the ultimate tool for organizing and renaming Movies, TV Shows, Anime or Music. It's smart, highly customizable, and just works.</Description>
|
||||
<Logo>icon.png</Logo>
|
||||
</Properties>
|
||||
<Resources>
|
||||
<Resource Language="en-us" />
|
||||
</Resources>
|
||||
<Dependencies>
|
||||
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14316.0" MaxVersionTested="10.0.14316.0" />
|
||||
</Dependencies>
|
||||
<Capabilities>
|
||||
<cap:Capability Name="runFullTrust" />
|
||||
</Capabilities>
|
||||
<Applications>
|
||||
<Application Id="app" Executable="filebot.launcher.exe" EntryPoint="Windows.FullTrustApplication">
|
||||
<uap:VisualElements
|
||||
BackgroundColor="transparent"
|
||||
DisplayName="FileBot"
|
||||
Square150x150Logo="icon150.png"
|
||||
Square44x44Logo="icon44.png"
|
||||
Description="FileBot is the ultimate tool for organizing and renaming Movies, TV Shows, Anime or Music."
|
||||
/>
|
||||
</Application>
|
||||
</Applications>
|
||||
</Package>
|
BIN
installer/appx/filebot.launcher.exe
Normal file
BIN
installer/appx/filebot.launcher.exe
Normal file
Binary file not shown.
24
installer/appx/filebot.launcher.l4j.ini
Normal file
24
installer/appx/filebot.launcher.l4j.ini
Normal file
@ -0,0 +1,24 @@
|
||||
# FileBot launch4j runtime config
|
||||
-Dapplication.deployment=msi
|
||||
-Dapplication.dir="%APPDATA%\FileBot"
|
||||
|
||||
# put all temporary files here
|
||||
-Djava.io.tmpdir="%APPDATA%\FileBot\temp"
|
||||
|
||||
# network settings
|
||||
-Djava.net.useSystemProxies=true
|
||||
|
||||
# use native shell for move/copy operations
|
||||
-DuseNativeShell=true
|
||||
|
||||
# use NTFS extended attributes for storing metadata
|
||||
-DuseExtendedFileAttributes=true
|
||||
-DuseCreationDate=false
|
||||
|
||||
# look for native libs here
|
||||
-Djna.library.path="%EXEDIR%"
|
||||
-Djna.boot.library.path="%EXEDIR%"
|
||||
-Djava.library.path="%EXEDIR%"
|
||||
|
||||
# look for fpcalc here
|
||||
-Dnet.filebot.AcoustID.fpcalc="%EXEDIR%\fpcalc.exe"
|
26
installer/appx/filebot.launcher.l4j.xml
Normal file
26
installer/appx/filebot.launcher.l4j.xml
Normal file
@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<launch4jConfig>
|
||||
<dontWrapJar>true</dontWrapJar>
|
||||
<headerType>gui</headerType>
|
||||
<jar>FileBot.jar</jar>
|
||||
<outfile>filebot.launcher.exe</outfile>
|
||||
<errTitle></errTitle>
|
||||
<cmdLine></cmdLine>
|
||||
<chdir></chdir>
|
||||
<priority>normal</priority>
|
||||
<downloadUrl></downloadUrl>
|
||||
<supportUrl></supportUrl>
|
||||
<stayAlive>false</stayAlive>
|
||||
<restartOnCrash>false</restartOnCrash>
|
||||
<manifest></manifest>
|
||||
<icon>..\icons\shortcut.ico</icon>
|
||||
<jre>
|
||||
<path>jre</path>
|
||||
<bundledJre64Bit>true</bundledJre64Bit>
|
||||
<bundledJreAsFallback>false</bundledJreAsFallback>
|
||||
<minVersion></minVersion>
|
||||
<maxVersion></maxVersion>
|
||||
<jdkPreference>jreOnly</jdkPreference>
|
||||
<runtimeBits>64</runtimeBits>
|
||||
</jre>
|
||||
</launch4jConfig>
|
BIN
installer/appx/icon.png
Normal file
BIN
installer/appx/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 10 KiB |
BIN
installer/appx/icon150.png
Normal file
BIN
installer/appx/icon150.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.2 KiB |
BIN
installer/appx/icon44.png
Normal file
BIN
installer/appx/icon44.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.9 KiB |
Loading…
Reference in New Issue
Block a user