├── .classpath
├── .gitignore
├── .project
├── COMPILING.md
├── LICENSE
├── README.md
├── build-data
├── BuildData.groovy
└── Discover.groovy
├── build.bat
├── build.xml
├── installer
├── ant
│ ├── ant.properties
│ ├── digest.head.md
│ └── digest.tail.md
├── appbundle
│ ├── FileBot.entitlements
│ ├── MacOS
│ │ └── filebot.sh
│ ├── filebot.icns
│ ├── filebot.iconset
│ │ ├── icon_128x128.png
│ │ ├── icon_128x128@2x.png
│ │ ├── icon_16x16.png
│ │ ├── icon_16x16@2x.png
│ │ ├── icon_256x256.png
│ │ ├── icon_256x256@2x.png
│ │ ├── icon_32x32.png
│ │ ├── icon_32x32@2x.png
│ │ ├── icon_512x512.png
│ │ └── icon_512x512@2x.png
│ ├── inherit.entitlements
│ ├── store.url
│ ├── subtitles.icns
│ └── subtitles.iconset
│ │ ├── icon_128x128.png
│ │ ├── icon_128x128@2x.png
│ │ ├── icon_16x16.png
│ │ ├── icon_16x16@2x.png
│ │ ├── icon_256x256.png
│ │ ├── icon_256x256@2x.png
│ │ ├── icon_32x32.png
│ │ ├── icon_32x32@2x.png
│ │ ├── icon_512x512.png
│ │ └── icon_512x512@2x.png
├── appx
│ ├── AppxManifest.xml
│ ├── Assets
│ │ ├── Square150x150Logo.png
│ │ ├── Square150x150Logo.scale-100.png
│ │ ├── Square150x150Logo.scale-125.png
│ │ ├── Square150x150Logo.scale-150.png
│ │ ├── Square150x150Logo.scale-200.png
│ │ ├── Square150x150Logo.scale-400.png
│ │ ├── Square310x310Logo.png
│ │ ├── Square310x310Logo.scale-100.png
│ │ ├── Square310x310Logo.scale-125.png
│ │ ├── Square310x310Logo.scale-150.png
│ │ ├── Square310x310Logo.scale-200.png
│ │ ├── Square310x310Logo.scale-400.png
│ │ ├── Square44x44Logo.png
│ │ ├── Square44x44Logo.scale-100.png
│ │ ├── Square44x44Logo.scale-125.png
│ │ ├── Square44x44Logo.scale-150.png
│ │ ├── Square44x44Logo.scale-200.png
│ │ ├── Square44x44Logo.scale-400.png
│ │ ├── Square44x44Logo.targetsize-16.png
│ │ ├── Square44x44Logo.targetsize-16_altform-unplated.png
│ │ ├── Square44x44Logo.targetsize-24.png
│ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png
│ │ ├── Square44x44Logo.targetsize-256.png
│ │ ├── Square44x44Logo.targetsize-256_altform-unplated.png
│ │ ├── Square44x44Logo.targetsize-32.png
│ │ ├── Square44x44Logo.targetsize-32_altform-unplated.png
│ │ ├── Square44x44Logo.targetsize-44.png
│ │ ├── Square44x44Logo.targetsize-44_altform-unplated.png
│ │ ├── Square44x44Logo.targetsize-48.png
│ │ ├── Square44x44Logo.targetsize-48_altform-unplated.png
│ │ ├── Square71x71Logo.png
│ │ ├── Square71x71Logo.scale-100.png
│ │ ├── Square71x71Logo.scale-125.png
│ │ ├── Square71x71Logo.scale-150.png
│ │ ├── Square71x71Logo.scale-200.png
│ │ ├── Square71x71Logo.scale-400.png
│ │ ├── StoreLogo.png
│ │ ├── StoreLogo.scale-100.png
│ │ ├── StoreLogo.scale-125.png
│ │ ├── StoreLogo.scale-150.png
│ │ ├── StoreLogo.scale-200.png
│ │ ├── StoreLogo.scale-400.png
│ │ ├── Wide310x150Logo.png
│ │ ├── Wide310x150Logo.scale-100.png
│ │ ├── Wide310x150Logo.scale-125.png
│ │ ├── Wide310x150Logo.scale-150.png
│ │ ├── Wide310x150Logo.scale-200.png
│ │ └── Wide310x150Logo.scale-400.png
│ ├── filebot.exe
│ ├── filebot.l4j.ini
│ ├── filebot.l4j.xml
│ ├── filebot.launcher.exe
│ ├── filebot.launcher.l4j.ini
│ ├── filebot.launcher.l4j.xml
│ ├── icon.ico
│ ├── logging.properties
│ └── store.url
├── deb
│ ├── control
│ │ ├── control
│ │ ├── postinst
│ │ └── prerm
│ ├── filebot.sh
│ └── share
│ │ ├── applications
│ │ └── filebot.desktop
│ │ ├── file-manager
│ │ └── actions
│ │ │ ├── filebot-checksum.desktop
│ │ │ ├── filebot-import.desktop
│ │ │ ├── filebot-rename.desktop
│ │ │ ├── filebot-subtitles.desktop
│ │ │ └── menu-filebot.desktop
│ │ └── kservices5
│ │ └── ServiceMenus
│ │ └── filebot.desktop
├── gpg
│ ├── FileBot.pub
│ ├── maintainer.pub
│ ├── pubring.gpg
│ └── secring.gpg
├── icons
│ ├── artwork
│ │ ├── artwork_1440x2160.png
│ │ ├── artwork_150x150.png
│ │ ├── artwork_2160x2160.png
│ │ ├── artwork_300x300.png
│ │ ├── artwork_4096x4096.png
│ │ ├── artwork_71x71.png
│ │ └── build.sh
│ ├── filebot-round.png
│ ├── filebot-round.svg
│ ├── filebot-square.svg
│ ├── filebot.svg
│ ├── icon128.png
│ ├── icon16.png
│ ├── icon24.png
│ ├── icon256.png
│ ├── icon32.png
│ ├── icon48.png
│ ├── icon512.png
│ ├── icon64.png
│ ├── icon72.png
│ ├── icon96.png
│ ├── sfv.ico
│ ├── sfv16.png
│ ├── sfv32.png
│ ├── sfv48.png
│ ├── shortcut.ico
│ ├── splash.png
│ └── subtitles.svg
├── msi
│ ├── banner.bmp
│ ├── dialog.bmp
│ ├── filebot-cmd-launch4j.xml
│ ├── filebot-launch4j.xml
│ ├── filebot-platform-launch4j.xml
│ ├── filebot.exe
│ ├── filebot.l4j.ini
│ ├── filebot.launcher.exe
│ ├── filebot.launcher.l4j.ini
│ ├── filebot.platform.launcher.exe
│ ├── filebot.platform.launcher.l4j.ini
│ ├── filebot.wix
│ ├── license.rtf
│ ├── logging.properties
│ └── sign.cmd
├── portable
│ ├── filebot-portable-launch4j.xml
│ ├── filebot.cmd
│ ├── filebot.portable.launcher.exe
│ ├── filebot.portable.launcher.l4j.ini
│ ├── filebot.sh
│ ├── install-filebot.sh
│ └── update-filebot.sh
├── snap
│ ├── .gitignore
│ ├── filebot
│ │ └── filebot.sh
│ ├── snap
│ │ └── gui
│ │ │ ├── filebot.desktop
│ │ │ └── icon.svg
│ └── snapcraft.yaml
└── spk
│ ├── package
│ └── filebot.sh
│ └── scripts
│ ├── postinst
│ ├── postuninst
│ ├── postupgrade
│ ├── preinst
│ ├── preuninst
│ ├── preupgrade
│ └── start-stop-status
├── ivy.xml
├── lib
├── jars
│ ├── ObjCBridge.jar
│ ├── ant-compress.jar
│ ├── appbundler.jar
│ ├── jacksum.jar
│ ├── simmetrics.jar
│ └── xmlrpc.jar
├── native
│ ├── linux-amd64
│ │ ├── fpcalc
│ │ ├── lib7-Zip-JBinding.so
│ │ ├── libjnidispatch.so
│ │ ├── libmediainfo.so
│ │ └── libzen.so
│ ├── linux-armv7l
│ │ ├── fpcalc
│ │ ├── lib7-Zip-JBinding.so
│ │ ├── libjnidispatch.so
│ │ ├── libmediainfo.so
│ │ ├── libz.so
│ │ └── libzen.so
│ ├── linux-armv8
│ │ └── libjnidispatch.so
│ ├── linux-i686
│ │ ├── fpcalc
│ │ ├── lib7-Zip-JBinding.so
│ │ ├── libjnidispatch.so
│ │ ├── libmediainfo.so
│ │ └── libzen.so
│ ├── mac-x86_64
│ │ ├── fpcalc
│ │ ├── lib7-Zip-JBinding.dylib
│ │ ├── libjcocoa.dylib
│ │ ├── libjnidispatch.dylib
│ │ └── libmediainfo.dylib
│ ├── update-mediainfo.sh
│ ├── win32-x64
│ │ ├── 7-Zip-JBinding.dll
│ │ ├── MediaInfo.dll
│ │ ├── fpcalc.exe
│ │ ├── gcc_s_seh-1.dll
│ │ └── jnidispatch.dll
│ └── win32-x86
│ │ ├── 7-Zip-JBinding.dll
│ │ ├── MediaInfo.dll
│ │ ├── fpcalc.exe
│ │ └── jnidispatch.dll
└── resources
│ ├── action.match.xcf
│ ├── button.checksum.fw.png
│ ├── button.checksum.selected.fw.png
│ ├── opensubtitles.xcf
│ ├── panel.rename.fw.png
│ ├── panel.rename.xcf
│ ├── panel.sfv.fw.png
│ ├── panel.sfv.xcf
│ ├── panel.subtitle.fw.png
│ ├── panel.subtitles.xcf
│ ├── subtitle.exact.download.fw.png
│ ├── subtitle.exact.upload.fw.png
│ ├── thetvdb-round.png
│ └── thetvdb.png
├── reviews.tsv
├── source
├── META-INF
│ ├── services
│ │ └── org.codehaus.groovy.runtime.ExtensionModule
│ └── vfs-providers.xml
├── ehcache.xml
└── net
│ └── filebot
│ ├── ApplicationFolder.java
│ ├── Cache.java
│ ├── CacheManager.java
│ ├── CacheType.java
│ ├── CachedResource.java
│ ├── History.java
│ ├── HistorySpooler.java
│ ├── InvalidResponseException.java
│ ├── Language.java
│ ├── Language.properties
│ ├── Logging.java
│ ├── Main.java
│ ├── MediaTypes.java
│ ├── MediaTypes.properties
│ ├── MetaAttributeView.java
│ ├── NativeRenameAction.java
│ ├── RenameAction.java
│ ├── Resource.java
│ ├── ResourceManager.java
│ ├── Settings.java
│ ├── Settings.properties
│ ├── StandardRenameAction.java
│ ├── UserFiles.java
│ ├── WebServices.java
│ ├── archive
│ ├── ApacheVFS.java
│ ├── Archive.java
│ ├── ArchiveExtractor.java
│ ├── ArchiveOpenVolumeCallback.java
│ ├── ExtractCallback.java
│ ├── ExtractOutProvider.java
│ ├── ExtractOutStream.java
│ ├── FileMapper.java
│ ├── SevenZipExecutable.java
│ ├── SevenZipLoader.java
│ └── SevenZipNativeBindings.java
│ ├── cli
│ ├── ArgumentBean.java
│ ├── ArgumentProcessor.java
│ ├── BindingsHandler.java
│ ├── CmdlineException.java
│ ├── CmdlineInterface.java
│ ├── CmdlineOperations.java
│ ├── CmdlineOperationsTextUI.java
│ ├── ConflictAction.java
│ ├── ExecCommand.java
│ ├── ExecutableRenameAction.java
│ ├── FolderWatchService.java
│ ├── GroovyPad.java
│ ├── GroovyRenameAction.java
│ ├── PseudoConsole.java
│ ├── ScriptBundle.java
│ ├── ScriptDeath.java
│ ├── ScriptProvider.java
│ ├── ScriptShell.java
│ ├── ScriptShell.properties
│ ├── ScriptShellBaseClass.java
│ ├── ScriptShellMethods.java
│ ├── ScriptSource.java
│ └── repository.cer
│ ├── format
│ ├── AssociativeEnumObject.java
│ ├── AssociativeScriptObject.java
│ ├── BindingException.java
│ ├── Define.java
│ ├── DynamicBindings.java
│ ├── ExpressionBindings.java
│ ├── ExpressionException.java
│ ├── ExpressionFileFilter.java
│ ├── ExpressionFileFormat.java
│ ├── ExpressionFilter.java
│ ├── ExpressionFormat.java
│ ├── ExpressionFormatFunctions.java
│ ├── ExpressionFormatMethods.java
│ ├── MediaBindingBean.java
│ ├── PrivilegedInvocation.java
│ ├── PropertyBindings.java
│ ├── SecureCompiledScript.java
│ └── SuppressedThrowables.java
│ ├── hash
│ ├── ChecksumHash.java
│ ├── Hash.java
│ ├── HashType.java
│ ├── JacksumHash.java
│ ├── MessageDigestHash.java
│ ├── SfvFormat.java
│ ├── VerificationFileReader.java
│ ├── VerificationFileWriter.java
│ ├── VerificationFormat.java
│ └── VerificationUtilities.java
│ ├── media
│ ├── AutoDetection.java
│ ├── HighPerformanceMatcher.java
│ ├── IndexEntry.java
│ ├── MediaDetection.java
│ ├── MetaAttributes.java
│ ├── NamingStandard.java
│ ├── ReleaseInfo.java
│ ├── ReleaseInfo.properties
│ ├── SmartSeasonEpisodeMatcher.java
│ ├── VideoFormat.java
│ ├── VideoFormat.properties
│ ├── VideoQuality.java
│ ├── XattrMetaInfo.java
│ └── XattrMetaInfoProvider.java
│ ├── mediainfo
│ ├── ImageMetadata.java
│ ├── MediaDurationFilter.java
│ ├── MediaInfo.java
│ ├── MediaInfoException.java
│ └── MediaInfoLibrary.java
│ ├── platform
│ ├── gnome
│ │ ├── GVFS.java
│ │ ├── LibGIO.java
│ │ ├── NativeGVFS.java
│ │ └── PlatformGVFS.java
│ ├── mac
│ │ ├── DropToUnlock.java
│ │ ├── MacAppUtilities.java
│ │ └── MacXattrView.java
│ └── windows
│ │ └── WinAppUtilities.java
│ ├── resources
│ ├── action.auto.png
│ ├── action.auto@2x.png
│ ├── action.clear.png
│ ├── action.clear@2x.png
│ ├── action.clone.png
│ ├── action.clone@2x.png
│ ├── action.copy.png
│ ├── action.copy@2x.png
│ ├── action.down.png
│ ├── action.down@2x.png
│ ├── action.export.png
│ ├── action.export@2x.png
│ ├── action.extension.override.png
│ ├── action.extension.override@2x.png
│ ├── action.extension.preserve.png
│ ├── action.extension.preserve@2x.png
│ ├── action.fetch.png
│ ├── action.fetch@2x.png
│ ├── action.find.png
│ ├── action.find@2x.png
│ ├── action.format.png
│ ├── action.format@2x.png
│ ├── action.hardlink.png
│ ├── action.hardlink@2x.png
│ ├── action.keeplink.png
│ ├── action.keeplink@2x.png
│ ├── action.list.png
│ ├── action.load.png
│ ├── action.load@2x.png
│ ├── action.match.png
│ ├── action.match.small.png
│ ├── action.match.small@2x.png
│ ├── action.match.strict.png
│ ├── action.match.strict@2x.png
│ ├── action.match@2x.png
│ ├── action.menu.png
│ ├── action.preferences.png
│ ├── action.preferences@2x.png
│ ├── action.properties.png
│ ├── action.properties@2x.png
│ ├── action.rename.png
│ ├── action.rename@2x.png
│ ├── action.report.png
│ ├── action.report@2x.png
│ ├── action.revert.png
│ ├── action.revert@2x.png
│ ├── action.save.png
│ ├── action.save@2x.png
│ ├── action.script.png
│ ├── action.script@2x.png
│ ├── action.search.png
│ ├── action.search@2x.png
│ ├── action.select.png
│ ├── action.select@2x.png
│ ├── action.settings.png
│ ├── action.settings@2x.png
│ ├── action.symlink.png
│ ├── action.symlink@2x.png
│ ├── action.up.png
│ ├── action.up@2x.png
│ ├── action.user.png
│ ├── action.user@2x.png
│ ├── action.variables.png
│ ├── action.variables@2x.png
│ ├── bullet.green.png
│ ├── bullet.green@2x.png
│ ├── button.checksum.png
│ ├── button.checksum.selected.png
│ ├── button.checksum.selected@2x.png
│ ├── button.checksum@2x.png
│ ├── button.repeat.png
│ ├── button.repeat.selected.png
│ ├── button.repeat.selected@2x.png
│ ├── button.repeat@2x.png
│ ├── database.error.png
│ ├── database.error@2x.png
│ ├── database.go.png
│ ├── database.go@2x.png
│ ├── database.ok.png
│ ├── database.ok@2x.png
│ ├── dialog.cancel.png
│ ├── dialog.cancel@2x.png
│ ├── dialog.continue.invalid.png
│ ├── dialog.continue.invalid@2x.png
│ ├── dialog.continue.png
│ ├── dialog.continue@2x.png
│ ├── dialog.switch.png
│ ├── dialog.switch@2x.png
│ ├── edit.clear.png
│ ├── edit.clear@2x.png
│ ├── file.generic.png
│ ├── file.generic@2x.png
│ ├── file.lock.png
│ ├── file.lock@2x.png
│ ├── file.subtitle.png
│ ├── file.subtitle@2x.png
│ ├── file.video.png
│ ├── file.video@2x.png
│ ├── flags
│ │ ├── ar.png
│ │ ├── ar@2x.png
│ │ ├── bg.png
│ │ ├── bg@2x.png
│ │ ├── ca.png
│ │ ├── ca@2x.png
│ │ ├── cs.png
│ │ ├── cs@2x.png
│ │ ├── da.png
│ │ ├── da@2x.png
│ │ ├── de.png
│ │ ├── de@2x.png
│ │ ├── default.png
│ │ ├── default@2x.png
│ │ ├── el.png
│ │ ├── el@2x.png
│ │ ├── en.png
│ │ ├── en@2x.png
│ │ ├── es.png
│ │ ├── es@2x.png
│ │ ├── et.png
│ │ ├── et@2x.png
│ │ ├── fa.png
│ │ ├── fa@2x.png
│ │ ├── fi.png
│ │ ├── fi@2x.png
│ │ ├── fr.png
│ │ ├── fr@2x.png
│ │ ├── he.png
│ │ ├── he@2x.png
│ │ ├── hi.png
│ │ ├── hi@2x.png
│ │ ├── hk.png
│ │ ├── hk@2x.png
│ │ ├── hr.png
│ │ ├── hr@2x.png
│ │ ├── hu.png
│ │ ├── hu@2x.png
│ │ ├── hy.png
│ │ ├── hy@2x.png
│ │ ├── id.png
│ │ ├── id@2x.png
│ │ ├── is.png
│ │ ├── is@2x.png
│ │ ├── it.png
│ │ ├── it@2x.png
│ │ ├── ja.png
│ │ ├── ja@2x.png
│ │ ├── ko.png
│ │ ├── ko@2x.png
│ │ ├── lt.png
│ │ ├── lt@2x.png
│ │ ├── lv.png
│ │ ├── lv@2x.png
│ │ ├── mk.png
│ │ ├── mk@2x.png
│ │ ├── ms.png
│ │ ├── ms@2x.png
│ │ ├── mx.png
│ │ ├── mx@2x.png
│ │ ├── nl.png
│ │ ├── nl@2x.png
│ │ ├── no.png
│ │ ├── no@2x.png
│ │ ├── pb.png
│ │ ├── pb@2x.png
│ │ ├── pl.png
│ │ ├── pl@2x.png
│ │ ├── pt.png
│ │ ├── pt@2x.png
│ │ ├── qc.png
│ │ ├── qc@2x.png
│ │ ├── ro.png
│ │ ├── ro@2x.png
│ │ ├── ru.png
│ │ ├── ru@2x.png
│ │ ├── sk.png
│ │ ├── sk@2x.png
│ │ ├── sl.png
│ │ ├── sl@2x.png
│ │ ├── sq.png
│ │ ├── sq@2x.png
│ │ ├── sr.png
│ │ ├── sr@2x.png
│ │ ├── sv.png
│ │ ├── sv@2x.png
│ │ ├── th.png
│ │ ├── th@2x.png
│ │ ├── tr.png
│ │ ├── tr@2x.png
│ │ ├── tw.png
│ │ ├── tw@2x.png
│ │ ├── uk.png
│ │ ├── uk@2x.png
│ │ ├── undefined.png
│ │ ├── undefined@2x.png
│ │ ├── vi.png
│ │ ├── vi@2x.png
│ │ ├── x-jat.png
│ │ ├── x-jat@2x.png
│ │ ├── zh.png
│ │ └── zh@2x.png
│ ├── folder.locked.png
│ ├── folder.locked@2x.png
│ ├── folder.open.png
│ ├── folder.open@2x.png
│ ├── message.donate.png
│ ├── message.donate@2x.png
│ ├── message.error.png
│ ├── message.error@2x.png
│ ├── message.info.png
│ ├── message.info@2x.png
│ ├── message.warning.png
│ ├── message.warning@2x.png
│ ├── package.extract.png
│ ├── package.extract@2x.png
│ ├── package.fetch.png
│ ├── package.fetch@2x.png
│ ├── panel.analyze.png
│ ├── panel.analyze@2x.png
│ ├── panel.episodelist.png
│ ├── panel.episodelist@2x.png
│ ├── panel.list.png
│ ├── panel.list@2x.png
│ ├── panel.rename.png
│ ├── panel.rename@2x.png
│ ├── panel.sfv.png
│ ├── panel.sfv@2x.png
│ ├── panel.subtitle.png
│ ├── panel.subtitle@2x.png
│ ├── rename.action.clone.png
│ ├── rename.action.clone@2x.png
│ ├── rename.action.copy.png
│ ├── rename.action.copy@2x.png
│ ├── rename.action.hardlink.png
│ ├── rename.action.hardlink@2x.png
│ ├── rename.action.keeplink.png
│ ├── rename.action.keeplink@2x.png
│ ├── rename.action.move.png
│ ├── rename.action.move@2x.png
│ ├── rename.action.symlink.png
│ ├── rename.action.symlink@2x.png
│ ├── script.add.png
│ ├── script.add@2x.png
│ ├── script.cancel.png
│ ├── script.cancel@2x.png
│ ├── script.go.png
│ ├── script.go@2x.png
│ ├── search.acoustid.png
│ ├── search.acoustid@2x.png
│ ├── search.anidb.png
│ ├── search.anidb@2x.png
│ ├── search.exif.png
│ ├── search.exif@2x.png
│ ├── search.generic.png
│ ├── search.generic@2x.png
│ ├── search.mediainfo.png
│ ├── search.mediainfo@2x.png
│ ├── search.omdb.png
│ ├── search.omdb@2x.png
│ ├── search.opensubtitles.png
│ ├── search.opensubtitles@2x.png
│ ├── search.shooter.png
│ ├── search.shooter@2x.png
│ ├── search.themoviedb.png
│ ├── search.themoviedb@2x.png
│ ├── search.thetvdb.png
│ ├── search.thetvdb@2x.png
│ ├── search.tvmaze.png
│ ├── search.tvmaze@2x.png
│ ├── search.xattr.png
│ ├── search.xattr@2x.png
│ ├── status.error.png
│ ├── status.error@2x.png
│ ├── status.info.png
│ ├── status.info@2x.png
│ ├── status.link.broken.png
│ ├── status.link.broken@2x.png
│ ├── status.link.ok.png
│ ├── status.link.ok@2x.png
│ ├── status.ok.png
│ ├── status.ok@2x.png
│ ├── status.unknown.png
│ ├── status.unknown@2x.png
│ ├── status.warning.png
│ ├── status.warning@2x.png
│ ├── subtitle.exact.download.png
│ ├── subtitle.exact.download@2x.png
│ ├── subtitle.exact.upload.png
│ ├── subtitle.exact.upload@2x.png
│ ├── tab.close.hover.png
│ ├── tab.close.hover@2x.png
│ ├── tab.close.png
│ ├── tab.close@2x.png
│ ├── tree.closed.png
│ ├── tree.closed@2x.png
│ ├── tree.collapse.png
│ ├── tree.expand.png
│ ├── tree.open.png
│ ├── tree.open@2x.png
│ ├── window.icon.large.png
│ ├── window.icon.medium.png
│ ├── window.icon.small.png
│ ├── worker.pending.png
│ ├── worker.pending@2x.png
│ ├── worker.started.png
│ └── worker.started@2x.png
│ ├── similarity
│ ├── CommonSequenceMatcher.java
│ ├── CrossPropertyMetric.java
│ ├── DateMatcher.java
│ ├── DateMetric.java
│ ├── EpisodeMatcher.java
│ ├── EpisodeMetrics.java
│ ├── FileNameMetric.java
│ ├── FileSizeMetric.java
│ ├── Match.java
│ ├── Matcher.java
│ ├── MetricAvg.java
│ ├── MetricCascade.java
│ ├── MetricMin.java
│ ├── NameSimilarityMetric.java
│ ├── Normalization.java
│ ├── NumericSimilarityMetric.java
│ ├── SeasonEpisodeMatcher.java
│ ├── SeasonEpisodeMetric.java
│ ├── SequenceMatchSimilarity.java
│ ├── SeriesNameMatcher.java
│ ├── SimilarityComparator.java
│ ├── SimilarityMetric.java
│ ├── StringEqualsMetric.java
│ ├── SubstringMetric.java
│ └── TimeStampMetric.java
│ ├── subtitle
│ ├── MicroDVDReader.java
│ ├── SamiDecoder.java
│ ├── SubRipReader.java
│ ├── SubRipWriter.java
│ ├── SubStationAlphaReader.java
│ ├── SubViewerReader.java
│ ├── SubtitleDecoder.java
│ ├── SubtitleElement.java
│ ├── SubtitleFormat.java
│ ├── SubtitleMetrics.java
│ ├── SubtitleNaming.java
│ ├── SubtitleReader.java
│ ├── SubtitleTimeFormat.java
│ └── SubtitleUtilities.java
│ ├── torrent
│ ├── BDecoder.java
│ └── Torrent.java
│ ├── ui
│ ├── AbstractSearchPanel.java
│ ├── FileBotList.java
│ ├── FileBotListExportHandler.java
│ ├── FileBotMenuBar.java
│ ├── FileBotTab.java
│ ├── FileBotTabComponent.java
│ ├── GettingStartedStage.java
│ ├── HeaderPanel.java
│ ├── HistoryPanel.java
│ ├── LanguageComboBox.java
│ ├── LanguageComboBoxCellRenderer.java
│ ├── LanguageComboBoxModel.java
│ ├── MainFrame.java
│ ├── NotificationHandler.java
│ ├── PanelBuilder.java
│ ├── SelectButtonTextField.java
│ ├── SelectDialog.java
│ ├── SinglePanelFrame.java
│ ├── SupportDialog.java
│ ├── episodelist
│ │ ├── EpisodeListExportHandler.java
│ │ ├── EpisodeListPanel.java
│ │ ├── EpisodeListPanelBuilder.java
│ │ ├── SeasonSpinnerEditor.java
│ │ └── SeasonSpinnerModel.java
│ ├── filter
│ │ ├── AttributeTool.java
│ │ ├── ExtractTool.java
│ │ ├── FileTree.java
│ │ ├── FileTreeCellRenderer.java
│ │ ├── FileTreeExportHandler.java
│ │ ├── FileTreePanel.java
│ │ ├── FileTreeTransferablePolicy.java
│ │ ├── FilterPanel.java
│ │ ├── FilterPanelBuilder.java
│ │ ├── MediaInfoTool.java
│ │ ├── SplitTool.java
│ │ ├── Tool.java
│ │ └── TypeTool.java
│ ├── list
│ │ ├── FileListTransferablePolicy.java
│ │ ├── IndexedBindingBean.java
│ │ ├── ListItem.java
│ │ ├── ListPanel.java
│ │ └── ListPanelBuilder.java
│ ├── rename
│ │ ├── AutoCompleteMatcher.java
│ │ ├── AutoDetectMatcher.java
│ │ ├── BindingDialog.java
│ │ ├── BindingDialog.properties
│ │ ├── CharacterHighlightPainter.java
│ │ ├── ConflictDialog.java
│ │ ├── EpisodeListMatcher.java
│ │ ├── ExpressionFormatter.java
│ │ ├── FileNameFormat.java
│ │ ├── FileNameFormatter.java
│ │ ├── FilesListTransferablePolicy.java
│ │ ├── FormatDialog.java
│ │ ├── FormatDialog.properties
│ │ ├── HighlightListCellRenderer.java
│ │ ├── HistoryDialog.java
│ │ ├── MatchAction.java
│ │ ├── MatchFormatter.java
│ │ ├── MatchModel.java
│ │ ├── MovieFormatter.java
│ │ ├── MovieMatcher.java
│ │ ├── MusicMatcher.java
│ │ ├── NamesListTransferablePolicy.java
│ │ ├── OriginalOrder.java
│ │ ├── PhotoFileMatcher.java
│ │ ├── PlainFileMatcher.java
│ │ ├── Preset.java
│ │ ├── PresetEditor.java
│ │ ├── RenameAction.java
│ │ ├── RenameList.java
│ │ ├── RenameListCellRenderer.java
│ │ ├── RenameModel.java
│ │ ├── RenamePanel.java
│ │ ├── RenamePanelBuilder.java
│ │ ├── ScrollPaneSynchronizer.java
│ │ ├── TextColorizer.java
│ │ ├── ValidateDialog.java
│ │ └── XattrFileMatcher.java
│ ├── sfv
│ │ ├── ChecksumButton.java
│ │ ├── ChecksumCell.java
│ │ ├── ChecksumCellRenderer.java
│ │ ├── ChecksumComputationService.java
│ │ ├── ChecksumComputationTask.java
│ │ ├── ChecksumRow.java
│ │ ├── ChecksumTable.java
│ │ ├── ChecksumTableExportHandler.java
│ │ ├── ChecksumTableModel.java
│ │ ├── ChecksumTableTransferablePolicy.java
│ │ ├── HighlightPatternCellRenderer.java
│ │ ├── SfvPanel.java
│ │ ├── SfvPanelBuilder.java
│ │ ├── StateIconCellRenderer.java
│ │ ├── SwingWorkerCellRenderer.java
│ │ └── TotalProgressPanel.java
│ ├── subtitle
│ │ ├── MemoryFileListExportHandler.java
│ │ ├── SimpleComboBox.java
│ │ ├── SubtitleAutoMatchDialog.java
│ │ ├── SubtitleDownloadComponent.java
│ │ ├── SubtitleDropTarget.java
│ │ ├── SubtitleFileChooser.java
│ │ ├── SubtitlePackage.java
│ │ ├── SubtitlePackageCellRenderer.java
│ │ ├── SubtitlePanel.java
│ │ ├── SubtitlePanelBuilder.java
│ │ ├── SubtitleViewer.java
│ │ └── upload
│ │ │ ├── FileEditor.java
│ │ │ ├── FileRenderer.java
│ │ │ ├── LanguageEditor.java
│ │ │ ├── LanguageRenderer.java
│ │ │ ├── MovieEditor.java
│ │ │ ├── MovieRenderer.java
│ │ │ ├── Status.java
│ │ │ ├── StatusRenderer.java
│ │ │ ├── SubtitleGroup.java
│ │ │ ├── SubtitleMapping.java
│ │ │ ├── SubtitleMappingTableModel.java
│ │ │ └── SubtitleUploadDialog.java
│ └── transfer
│ │ ├── ArrayTransferable.java
│ │ ├── BackgroundFileTransferablePolicy.java
│ │ ├── ByteBufferTransferable.java
│ │ ├── ClipboardHandler.java
│ │ ├── CompositeTranserable.java
│ │ ├── DefaultClipboardHandler.java
│ │ ├── DefaultTransferHandler.java
│ │ ├── FileExportHandler.java
│ │ ├── FileTransferable.java
│ │ ├── FileTransferablePolicy.java
│ │ ├── LoadAction.java
│ │ ├── SaveAction.java
│ │ ├── TextFileExportHandler.java
│ │ ├── TextFileTransferable.java
│ │ ├── TransferableExportHandler.java
│ │ └── TransferablePolicy.java
│ ├── util
│ ├── AlphanumComparator.java
│ ├── BOM.java
│ ├── ByteBufferInputStream.java
│ ├── ByteBufferOutputStream.java
│ ├── DefaultThreadFactory.java
│ ├── DownloadTask.java
│ ├── EntryList.java
│ ├── ExceptionUtilities.java
│ ├── FastFile.java
│ ├── FileSet.java
│ ├── FileUtilities.java
│ ├── FilterIterator.java
│ ├── FunctionList.java
│ ├── JsonUtilities.java
│ ├── ListChangeSynchronizer.java
│ ├── PreferencesList.java
│ ├── PreferencesMap.java
│ ├── RegularExpressions.java
│ ├── StringUtilities.java
│ ├── SystemProperty.java
│ ├── TeePrintStream.java
│ ├── TemporaryFolder.java
│ ├── Timer.java
│ ├── TreeIterator.java
│ ├── WeakValueHashMap.java
│ ├── XPathUtilities.java
│ ├── prefs
│ │ ├── FilePreferences.java
│ │ ├── FilePreferencesFactory.java
│ │ └── PropertyFileBackingStore.java
│ └── ui
│ │ ├── AbstractBean.java
│ │ ├── AbstractFancyListCellRenderer.java
│ │ ├── ActionPopup.java
│ │ ├── ColorTintImageFilter.java
│ │ ├── DashedSeparator.java
│ │ ├── DefaultFancyListCellRenderer.java
│ │ ├── EmptySelectionModel.java
│ │ ├── FancyTreeCellRenderer.java
│ │ ├── GradientStyle.java
│ │ ├── LabelProvider.java
│ │ ├── LazyDocumentListener.java
│ │ ├── LinkButton.java
│ │ ├── ListView.java
│ │ ├── LoadingOverlayPane.java
│ │ ├── NullLabelProvider.java
│ │ ├── ProgressIndicator.java
│ │ ├── ProgressMonitor.java
│ │ ├── PrototypeCellValueUpdater.java
│ │ ├── RoundBorder.java
│ │ ├── SelectButton.java
│ │ ├── ShadowBorder.java
│ │ ├── SimpleLabelProvider.java
│ │ ├── SwingEventBus.java
│ │ ├── SwingUI.java
│ │ ├── SwingWorkerPropertyChangeAdapter.java
│ │ └── notification
│ │ ├── Direction.java
│ │ ├── MessageNotification.java
│ │ ├── NotificationLayout.java
│ │ ├── NotificationManager.java
│ │ ├── NotificationWindow.java
│ │ ├── QueueNotificationLayout.java
│ │ ├── SeparatorBorder.java
│ │ └── SimpleNotificationLayout.java
│ ├── vfs
│ ├── ArchiveType.java
│ ├── FileInfo.java
│ ├── MemoryFile.java
│ ├── SimpleFileInfo.java
│ └── ZipArchive.java
│ └── web
│ ├── AbstractEpisodeListProvider.java
│ ├── AcoustIDClient.java
│ ├── AnidbClient.java
│ ├── Artwork.java
│ ├── ArtworkProvider.java
│ ├── AudioTrack.java
│ ├── AudioTrackFormat.java
│ ├── Crew.java
│ ├── Datasource.java
│ ├── Episode.java
│ ├── EpisodeFormat.java
│ ├── EpisodeInfo.java
│ ├── EpisodeListProvider.java
│ ├── EpisodeUtilities.java
│ ├── FanartTVClient.java
│ ├── FloodLimit.java
│ ├── ID3Lookup.java
│ ├── LocalSearch.java
│ ├── Movie.java
│ ├── MovieFormat.java
│ ├── MovieIdentificationService.java
│ ├── MovieInfo.java
│ ├── MoviePart.java
│ ├── MultiEpisode.java
│ ├── MusicIdentificationService.java
│ ├── OMDbClient.java
│ ├── OpenSubtitlesClient.java
│ ├── OpenSubtitlesHasher.java
│ ├── OpenSubtitlesSubtitleDescriptor.java
│ ├── OpenSubtitlesXmlRpc.java
│ ├── Person.java
│ ├── SearchResult.java
│ ├── SeasonOutOfBoundsException.java
│ ├── SeriesInfo.java
│ ├── ShooterSubtitles.java
│ ├── SimpleDate.java
│ ├── SortOrder.java
│ ├── SubtitleDescriptor.java
│ ├── SubtitleProvider.java
│ ├── SubtitleSearchResult.java
│ ├── TMDbClient.java
│ ├── TMDbTVClient.java
│ ├── TVMazeClient.java
│ ├── TheTVDBClient.java
│ ├── TheTVDBClientV1.java
│ ├── TheTVDBSeriesInfo.java
│ ├── Trailer.java
│ ├── VideoHashSubtitleService.java
│ └── WebRequest.java
├── test
└── net
│ └── filebot
│ ├── AllTests.java
│ ├── format
│ └── ExpressionFormatTest.java
│ ├── gio
│ └── PlatformGVFSTest.java
│ ├── hash
│ └── VerificationFormatTest.java
│ ├── media
│ ├── MediaDetectionTest.java
│ ├── ReleaseInfoTest.java
│ └── VideoFormatTest.java
│ ├── mediainfo
│ └── MediaInfoTest.java
│ ├── similarity
│ ├── DateMatcherTest.java
│ ├── DateMetricTest.java
│ ├── EpisodeMetricsTest.java
│ ├── NameSimilarityMetricTest.java
│ ├── NumericSimilarityMetricTest.java
│ ├── SeasonEpisodeMatcherTest.java
│ ├── SeasonEpisodeMetricTest.java
│ ├── SeriesNameMatcherTest.java
│ ├── SimilarityComparatorTest.java
│ └── SimilarityTestSuite.java
│ ├── subtitle
│ ├── MicroDVDReaderTest.java
│ └── SubtitleReaderTestSuite.java
│ ├── ui
│ ├── SupportDialogTest.java
│ └── rename
│ │ └── MatchModelTest.java
│ ├── util
│ ├── ByteBufferOutputStreamTest.java
│ ├── FileUtilitiesTest.java
│ ├── FilterIteratorTest.java
│ ├── PreferencesListTest.java
│ ├── PreferencesMapTest.java
│ ├── StringUtilitiesTest.java
│ ├── TestUtil.java
│ ├── TreeIteratorTest.java
│ └── UtilTestSuite.java
│ └── web
│ ├── AcoustIDClientTest.java
│ ├── AnidbClientTest.java
│ ├── OMDbClientTest.java
│ ├── OpenSubtitlesHasherTest.java
│ ├── OpenSubtitlesXmlRpcTest.java
│ ├── SimpleDateTest.java
│ ├── TMDbClientTest.java
│ ├── TMDbTVClientTest.java
│ ├── TVMazeClientTest.java
│ ├── TheTVDBClientTest.java
│ ├── TheTVDBClientV1Test.java
│ └── WebTestSuite.java
└── website
├── .htaccess
├── base.css
├── cli.html
├── code.css
├── docs
└── includes.fileset
├── donate.php
├── favicon.ico
├── favicon.png
├── getting-started
├── embed.html
├── fullscreen.png
├── galleria
│ ├── LICENSE
│ ├── galleria-1.4.2.min.js
│ └── themes
│ │ └── classic
│ │ ├── classic-demo.html
│ │ ├── classic-loader.gif
│ │ ├── classic-map.png
│ │ ├── galleria.classic.css
│ │ ├── galleria.classic.js
│ │ └── galleria.classic.min.js
├── images
│ ├── cli.screenshot.png
│ ├── cli.screenshot.thumb.png
│ ├── episodes.png
│ ├── episodes.thumb.png
│ ├── format.screenshot.png
│ ├── format.screenshot.thumb.png
│ ├── node.screenshot.png
│ ├── node.screenshot.thumb.png
│ ├── permissions.png
│ ├── permissions.thumb.png
│ ├── rename.png
│ ├── rename.screenshot.png
│ ├── rename.screenshot.thumb.png
│ ├── rename.thumb.png
│ ├── sfv.png
│ ├── sfv.screenshot.png
│ ├── sfv.screenshot.thumb.png
│ ├── sfv.thumb.png
│ ├── subtitle-hash-lookup.png
│ ├── subtitle-hash-lookup.screenshot.png
│ ├── subtitle-hash-lookup.screenshot.thumb.png
│ ├── subtitle-hash-lookup.thumb.png
│ ├── subtitle-search.png
│ ├── subtitle-search.screenshot.png
│ ├── subtitle-search.screenshot.thumb.png
│ └── subtitle-search.thumb.png
├── index.css
├── index.html
├── index.js
└── videos
│ ├── episodes.mp4
│ ├── rename.mp4
│ ├── sfv.mp4
│ ├── subtitle-lookup.mp4
│ └── subtitle-search.mp4
├── gpg
└── maintainer.pub
├── icon.png
├── images
├── apple.logo.png
├── apple.logo.svg
├── asterisk.png
├── banner.png
├── contact.png
├── droparea.png
├── filebot-postcard.png
├── filebot.logo.png
├── filebot.logo.svg
├── information.png
├── lists.png
├── mac.button.svg
├── microsoft.logo.png
├── microsoft.logo.svg
├── money.png
├── package.png
├── play.png
├── plugin.png
├── script.png
├── starthere.png
├── support.donate.png
├── thumbs_up.png
├── ubuntu.button.png
├── ubuntu.logo.png
├── ubuntu.logo.svg
└── windows.button.png
├── index.html
├── naming.html
├── nav-a-bg-h.png
├── nav-a-bg.png
├── privacy.txt
├── reviews.json
├── reviews.php
├── robots.txt
├── screenshots
├── cli.png
├── format.png
├── rename.png
└── small
│ ├── dialog.format.png
│ ├── panel.rename.png
│ ├── panel.sfv.png
│ └── panel.subtitle.png
├── script.html
├── sitemap.xml
├── syno
├── acoustid-thumbnail.png
├── filebot-node-snapshot.png
├── filebot-node-thumbnail.png
├── filebot-snapshot.png
├── filebot-thumbnail.png
├── mediainfo-thumbnail.png
└── package-center-snapshot.png
└── update.xml
/.gitignore:
--------------------------------------------------------------------------------
1 | bin/
2 | build/
3 | build-data/
4 | dist/
5 | cache/
6 | lib/ivy/
7 |
8 | *.properties
9 | *.txt
10 |
11 | *.sh
12 | *.cmd
13 | *.groovy
14 |
15 | *.cer
16 | *.pfx
17 | *.pvk
18 |
19 | .DS_Store
20 |
--------------------------------------------------------------------------------
/COMPILING.md:
--------------------------------------------------------------------------------
1 | # Compiling on Windows
2 |
3 | ## Requirements
4 | * [JDK 8](http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html)
5 | * [Apache Ant](https://ant.apache.org/bindownload.cgi)
6 | * [Apache Ivy](https://ant.apache.org/ivy/download.cgi)
7 | * [WiX Toolset](https://github.com/wixtoolset/wix3/releases/latest)
8 |
9 | ## Compiling
10 | Simply run `build.bat`
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # No, I will not be updating this. go read the license/readme in the original repo, then stop fucking asking.
2 |
3 |
4 | This is a fork to provide up-to-date Windows installers and JARs.
5 | The only change to the FileBot code is removing the donate nag on quit.
6 |
7 | ---
8 |
9 | # FileBot
10 | 
11 | 
12 | 
13 |
--------------------------------------------------------------------------------
/build.bat:
--------------------------------------------------------------------------------
1 | @echo off
2 | cd /D %~dp0
3 | set PATH=%WIX%\bin;%PATH%
4 |
5 | if not defined JAVA_HOME (set JAVA_HOME=C:\Program Files\Java\jdk1.8.0_144)
6 |
7 | echo Downloading dependencies...
8 | call ant resolve
9 |
10 | echo:
11 |
12 | echo Compiling...
13 | call ant fatjar
14 |
15 | echo:
16 |
17 | echo Building MSI installer...
18 | call ant msi
19 |
20 | if not defined WORKSPACE pause
21 |
--------------------------------------------------------------------------------
/installer/ant/digest.head.md:
--------------------------------------------------------------------------------
1 | # Release Notes
2 | Please see [Announcements and Releases](https://www.filebot.net/forums/viewforum.php?f=7) in the [FileBot Forums](https://www.filebot.net/forums/).
3 |
4 | ## Windows 10
5 | __FileBot for Windows 10__ is available on the [Windows Store](https://get.filebot.net/windows/).
6 |
7 | ## macOS
8 | __FileBot for Mac__ is available on the [Mac App Store](https://get.filebot.net/mac/).
9 |
10 | # SHA-256 checksums
11 | ```
12 |
--------------------------------------------------------------------------------
/installer/ant/digest.tail.md:
--------------------------------------------------------------------------------
1 | ```
2 |
3 | # GPG signatures
4 | All release files are signed and can be verified with PGP Public Key [B0976E51E5C047AD0FD051294E402EBF7C3C6A71](https://pgp.mit.edu/pks/lookup?op=index&search=0xB0976E51E5C047AD0FD051294E402EBF7C3C6A71).
5 |
--------------------------------------------------------------------------------
/installer/appbundle/FileBot.entitlements:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | com.apple.security.app-sandbox
6 |
7 | com.apple.security.files.bookmarks.app-scope
8 |
9 | com.apple.security.files.user-selected.read-write
10 |
11 | com.apple.security.network.client
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/installer/appbundle/filebot.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appbundle/filebot.icns
--------------------------------------------------------------------------------
/installer/appbundle/filebot.iconset/icon_128x128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appbundle/filebot.iconset/icon_128x128.png
--------------------------------------------------------------------------------
/installer/appbundle/filebot.iconset/icon_128x128@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appbundle/filebot.iconset/icon_128x128@2x.png
--------------------------------------------------------------------------------
/installer/appbundle/filebot.iconset/icon_16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appbundle/filebot.iconset/icon_16x16.png
--------------------------------------------------------------------------------
/installer/appbundle/filebot.iconset/icon_16x16@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appbundle/filebot.iconset/icon_16x16@2x.png
--------------------------------------------------------------------------------
/installer/appbundle/filebot.iconset/icon_256x256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appbundle/filebot.iconset/icon_256x256.png
--------------------------------------------------------------------------------
/installer/appbundle/filebot.iconset/icon_256x256@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appbundle/filebot.iconset/icon_256x256@2x.png
--------------------------------------------------------------------------------
/installer/appbundle/filebot.iconset/icon_32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appbundle/filebot.iconset/icon_32x32.png
--------------------------------------------------------------------------------
/installer/appbundle/filebot.iconset/icon_32x32@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appbundle/filebot.iconset/icon_32x32@2x.png
--------------------------------------------------------------------------------
/installer/appbundle/filebot.iconset/icon_512x512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appbundle/filebot.iconset/icon_512x512.png
--------------------------------------------------------------------------------
/installer/appbundle/filebot.iconset/icon_512x512@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appbundle/filebot.iconset/icon_512x512@2x.png
--------------------------------------------------------------------------------
/installer/appbundle/inherit.entitlements:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | com.apple.security.app-sandbox
6 |
7 | com.apple.security.inherit
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/installer/appbundle/store.url:
--------------------------------------------------------------------------------
1 | [InternetShortcut]
2 | URL=macappstore://itunes.apple.com/app/id905384638
3 |
--------------------------------------------------------------------------------
/installer/appbundle/subtitles.icns:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appbundle/subtitles.icns
--------------------------------------------------------------------------------
/installer/appbundle/subtitles.iconset/icon_128x128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appbundle/subtitles.iconset/icon_128x128.png
--------------------------------------------------------------------------------
/installer/appbundle/subtitles.iconset/icon_128x128@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appbundle/subtitles.iconset/icon_128x128@2x.png
--------------------------------------------------------------------------------
/installer/appbundle/subtitles.iconset/icon_16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appbundle/subtitles.iconset/icon_16x16.png
--------------------------------------------------------------------------------
/installer/appbundle/subtitles.iconset/icon_16x16@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appbundle/subtitles.iconset/icon_16x16@2x.png
--------------------------------------------------------------------------------
/installer/appbundle/subtitles.iconset/icon_256x256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appbundle/subtitles.iconset/icon_256x256.png
--------------------------------------------------------------------------------
/installer/appbundle/subtitles.iconset/icon_256x256@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appbundle/subtitles.iconset/icon_256x256@2x.png
--------------------------------------------------------------------------------
/installer/appbundle/subtitles.iconset/icon_32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appbundle/subtitles.iconset/icon_32x32.png
--------------------------------------------------------------------------------
/installer/appbundle/subtitles.iconset/icon_32x32@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appbundle/subtitles.iconset/icon_32x32@2x.png
--------------------------------------------------------------------------------
/installer/appbundle/subtitles.iconset/icon_512x512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appbundle/subtitles.iconset/icon_512x512.png
--------------------------------------------------------------------------------
/installer/appbundle/subtitles.iconset/icon_512x512@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appbundle/subtitles.iconset/icon_512x512@2x.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square150x150Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square150x150Logo.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square150x150Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square150x150Logo.scale-100.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square150x150Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square150x150Logo.scale-125.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square150x150Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square150x150Logo.scale-150.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square150x150Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square150x150Logo.scale-200.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square150x150Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square150x150Logo.scale-400.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square310x310Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square310x310Logo.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square310x310Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square310x310Logo.scale-100.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square310x310Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square310x310Logo.scale-125.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square310x310Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square310x310Logo.scale-150.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square310x310Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square310x310Logo.scale-200.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square310x310Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square310x310Logo.scale-400.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square44x44Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square44x44Logo.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square44x44Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square44x44Logo.scale-100.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square44x44Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square44x44Logo.scale-125.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square44x44Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square44x44Logo.scale-150.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square44x44Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square44x44Logo.scale-200.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square44x44Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square44x44Logo.scale-400.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square44x44Logo.targetsize-16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square44x44Logo.targetsize-16.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square44x44Logo.targetsize-16_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square44x44Logo.targetsize-16_altform-unplated.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square44x44Logo.targetsize-24.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square44x44Logo.targetsize-24.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square44x44Logo.targetsize-24_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square44x44Logo.targetsize-24_altform-unplated.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square44x44Logo.targetsize-256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square44x44Logo.targetsize-256.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square44x44Logo.targetsize-256_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square44x44Logo.targetsize-256_altform-unplated.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square44x44Logo.targetsize-32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square44x44Logo.targetsize-32.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square44x44Logo.targetsize-32_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square44x44Logo.targetsize-32_altform-unplated.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square44x44Logo.targetsize-44.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square44x44Logo.targetsize-44.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square44x44Logo.targetsize-44_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square44x44Logo.targetsize-44_altform-unplated.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square44x44Logo.targetsize-48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square44x44Logo.targetsize-48.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square44x44Logo.targetsize-48_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square44x44Logo.targetsize-48_altform-unplated.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square71x71Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square71x71Logo.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square71x71Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square71x71Logo.scale-100.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square71x71Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square71x71Logo.scale-125.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square71x71Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square71x71Logo.scale-150.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square71x71Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square71x71Logo.scale-200.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Square71x71Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Square71x71Logo.scale-400.png
--------------------------------------------------------------------------------
/installer/appx/Assets/StoreLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/StoreLogo.png
--------------------------------------------------------------------------------
/installer/appx/Assets/StoreLogo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/StoreLogo.scale-100.png
--------------------------------------------------------------------------------
/installer/appx/Assets/StoreLogo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/StoreLogo.scale-125.png
--------------------------------------------------------------------------------
/installer/appx/Assets/StoreLogo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/StoreLogo.scale-150.png
--------------------------------------------------------------------------------
/installer/appx/Assets/StoreLogo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/StoreLogo.scale-200.png
--------------------------------------------------------------------------------
/installer/appx/Assets/StoreLogo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/StoreLogo.scale-400.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Wide310x150Logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Wide310x150Logo.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Wide310x150Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Wide310x150Logo.scale-100.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Wide310x150Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Wide310x150Logo.scale-125.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Wide310x150Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Wide310x150Logo.scale-150.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Wide310x150Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Wide310x150Logo.scale-200.png
--------------------------------------------------------------------------------
/installer/appx/Assets/Wide310x150Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/Assets/Wide310x150Logo.scale-400.png
--------------------------------------------------------------------------------
/installer/appx/filebot.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/filebot.exe
--------------------------------------------------------------------------------
/installer/appx/filebot.launcher.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/filebot.launcher.exe
--------------------------------------------------------------------------------
/installer/appx/icon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/appx/icon.ico
--------------------------------------------------------------------------------
/installer/appx/logging.properties:
--------------------------------------------------------------------------------
1 | # Default global handler
2 | handlers= java.util.logging.ConsoleHandler
3 |
4 | # Default global logging level
5 | .level= WARNING
6 |
7 | # Limit messages that printed on the console to WARNING and above
8 | java.util.logging.ConsoleHandler.level = WARNING
9 | java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
10 |
11 | # Suppress WindowsPreferences logging
12 | java.util.prefs.level = SEVERE
13 |
--------------------------------------------------------------------------------
/installer/appx/store.url:
--------------------------------------------------------------------------------
1 | [InternetShortcut]
2 | URL=ms-windows-store://pdp/?productid=9NBLGGH52T9X
3 |
--------------------------------------------------------------------------------
/installer/deb/control/control:
--------------------------------------------------------------------------------
1 | Package: @{package.name}
2 | Version: @{application.version}
3 | Architecture: @{deb.arch}
4 | Maintainer: @{package.developer} <@{package.maintainer}>
5 | Description: @{package.synopsis}
6 | @{package.description}
7 | Homepage: @{package.homepage}
8 | Section: utils
9 | Priority: extra
10 | Suggests: openjdk-8-jre, openjfx, mediainfo, libchromaprint-tools
11 | Enhances: nautilus-actions
12 |
--------------------------------------------------------------------------------
/installer/deb/control/postinst:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | ln -sf /usr/share/filebot/filebot.sh /usr/bin/filebot
3 |
--------------------------------------------------------------------------------
/installer/deb/control/prerm:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | rm -f /usr/bin/filebot
3 |
--------------------------------------------------------------------------------
/installer/deb/share/applications/filebot.desktop:
--------------------------------------------------------------------------------
1 | [Desktop Entry]
2 | Type=Application
3 | Name=@{application.name}
4 | Comment=@{package.synopsis}
5 | MimeType=@{deb.application.mimetype}
6 | Exec=filebot %F
7 | Icon=filebot
8 | Categories=@{deb.application.categories}
9 | Actions=Rename;Subtitles;Checksum;
10 | StartupNotify=true
11 | StartupWMClass=@{deb.application.class}
12 | X-Ubuntu-Gettext-Domain=@{package.name}
13 |
14 | [Desktop Action Rename]
15 | Name=Rename
16 | Exec=filebot --mode Rename %F
17 | OnlyShowIn=Unity;
18 |
19 | [Desktop Action Subtitles]
20 | Name=Subtitles
21 | Exec=filebot --mode Subtitles %F
22 | OnlyShowIn=Unity;
23 |
24 | [Desktop Action Checksum]
25 | Name=Checksum
26 | Exec=filebot --mode SFV %F
27 | OnlyShowIn=Unity;
28 |
--------------------------------------------------------------------------------
/installer/deb/share/file-manager/actions/filebot-checksum.desktop:
--------------------------------------------------------------------------------
1 | [Desktop Entry]
2 | Name=Checksum
3 | Tooltip=Calculate checksum with FileBot
4 | Profiles=Media;
5 |
6 | [X-Action-Profile Media]
7 | Name=Checksum
8 | MimeTypes=@{deb.application.mimetype}
9 | Exec=filebot --mode SFV %F
10 |
--------------------------------------------------------------------------------
/installer/deb/share/file-manager/actions/filebot-import.desktop:
--------------------------------------------------------------------------------
1 | [Desktop Entry]
2 | Name=Import to Media Library
3 | Tooltip=Import to Media Library with FileBot
4 | Profiles=Media;
5 |
6 | [X-Action-Profile Media]
7 | Name=Import to Media Library
8 | MimeTypes=@{deb.application.mimetype}
9 | ExecutionMode=DisplayOutput
10 | Exec=@{deb.application.action.import} %F
11 |
--------------------------------------------------------------------------------
/installer/deb/share/file-manager/actions/filebot-rename.desktop:
--------------------------------------------------------------------------------
1 | [Desktop Entry]
2 | Name=Rename
3 | Tooltip=Rename with FileBot
4 | Profiles=Media;
5 |
6 | [X-Action-Profile Media]
7 | Name=Rename
8 | MimeTypes=@{deb.application.mimetype}
9 | Exec=filebot --mode Rename %F
10 |
--------------------------------------------------------------------------------
/installer/deb/share/file-manager/actions/filebot-subtitles.desktop:
--------------------------------------------------------------------------------
1 | [Desktop Entry]
2 | Name=Subtitles
3 | Tooltip=Fetch subtitles with FileBot
4 | Profiles=Media;
5 |
6 | [X-Action-Profile Media]
7 | Name=Subtitles
8 | MimeTypes=@{deb.application.mimetype}
9 | Exec=filebot --mode Subtitles %F
10 |
--------------------------------------------------------------------------------
/installer/deb/share/file-manager/actions/menu-filebot.desktop:
--------------------------------------------------------------------------------
1 | [Desktop Entry]
2 | Type=Menu
3 | Name=@{application.name}
4 | Tooltip=Common FileBot Actions
5 | Icon=filebot
6 | ItemsList=filebot-rename;filebot-subtitles;filebot-checksum;filebot-import;
7 |
--------------------------------------------------------------------------------
/installer/gpg/pubring.gpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/gpg/pubring.gpg
--------------------------------------------------------------------------------
/installer/gpg/secring.gpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/gpg/secring.gpg
--------------------------------------------------------------------------------
/installer/icons/artwork/artwork_1440x2160.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/icons/artwork/artwork_1440x2160.png
--------------------------------------------------------------------------------
/installer/icons/artwork/artwork_150x150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/icons/artwork/artwork_150x150.png
--------------------------------------------------------------------------------
/installer/icons/artwork/artwork_2160x2160.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/icons/artwork/artwork_2160x2160.png
--------------------------------------------------------------------------------
/installer/icons/artwork/artwork_300x300.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/icons/artwork/artwork_300x300.png
--------------------------------------------------------------------------------
/installer/icons/artwork/artwork_4096x4096.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/icons/artwork/artwork_4096x4096.png
--------------------------------------------------------------------------------
/installer/icons/artwork/artwork_71x71.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/icons/artwork/artwork_71x71.png
--------------------------------------------------------------------------------
/installer/icons/artwork/build.sh:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | LOGO='artwork_4096x4096.png'
4 |
5 | for SIZE in 71x71 150x150 300x300 1440x2160 2160x2160; do
6 | convert -verbose $LOGO -resize $SIZE -gravity center -background transparent -extent $SIZE "artwork_$SIZE.png"
7 | done
8 |
--------------------------------------------------------------------------------
/installer/icons/filebot-round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/icons/filebot-round.png
--------------------------------------------------------------------------------
/installer/icons/icon128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/icons/icon128.png
--------------------------------------------------------------------------------
/installer/icons/icon16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/icons/icon16.png
--------------------------------------------------------------------------------
/installer/icons/icon24.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/icons/icon24.png
--------------------------------------------------------------------------------
/installer/icons/icon256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/icons/icon256.png
--------------------------------------------------------------------------------
/installer/icons/icon32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/icons/icon32.png
--------------------------------------------------------------------------------
/installer/icons/icon48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/icons/icon48.png
--------------------------------------------------------------------------------
/installer/icons/icon512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/icons/icon512.png
--------------------------------------------------------------------------------
/installer/icons/icon64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/icons/icon64.png
--------------------------------------------------------------------------------
/installer/icons/icon72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/icons/icon72.png
--------------------------------------------------------------------------------
/installer/icons/icon96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/icons/icon96.png
--------------------------------------------------------------------------------
/installer/icons/sfv.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/icons/sfv.ico
--------------------------------------------------------------------------------
/installer/icons/sfv16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/icons/sfv16.png
--------------------------------------------------------------------------------
/installer/icons/sfv32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/icons/sfv32.png
--------------------------------------------------------------------------------
/installer/icons/sfv48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/icons/sfv48.png
--------------------------------------------------------------------------------
/installer/icons/shortcut.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/icons/shortcut.ico
--------------------------------------------------------------------------------
/installer/icons/splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/icons/splash.png
--------------------------------------------------------------------------------
/installer/msi/banner.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/msi/banner.bmp
--------------------------------------------------------------------------------
/installer/msi/dialog.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/msi/dialog.bmp
--------------------------------------------------------------------------------
/installer/msi/filebot.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/msi/filebot.exe
--------------------------------------------------------------------------------
/installer/msi/filebot.launcher.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/msi/filebot.launcher.exe
--------------------------------------------------------------------------------
/installer/msi/filebot.platform.launcher.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/msi/filebot.platform.launcher.exe
--------------------------------------------------------------------------------
/installer/msi/logging.properties:
--------------------------------------------------------------------------------
1 | # Default global handler
2 | handlers= java.util.logging.ConsoleHandler
3 |
4 | # Default global logging level
5 | .level= WARNING
6 |
7 | # Limit messages that printed on the console to WARNING and above
8 | java.util.logging.ConsoleHandler.level = WARNING
9 | java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
10 |
11 | # Suppress WindowsPreferences logging
12 | java.util.prefs.level = SEVERE
13 |
--------------------------------------------------------------------------------
/installer/msi/sign.cmd:
--------------------------------------------------------------------------------
1 | signtool sign /fd SHA256 /t http://time.certum.pl/ /v /a *.exe ../portable/*.exe ../appx/*.exe
2 |
--------------------------------------------------------------------------------
/installer/portable/filebot.cmd:
--------------------------------------------------------------------------------
1 | @ECHO OFF
2 | java -DuseExtendedFileAttributes=true -DuseCreationDate=false -Djava.net.useSystemProxies=false -Dapplication.deployment=portable -Djna.nosys=true -Djna.nounpack=true -Dapplication.dir="%~dp0data" -Duser.home="%~dp0data" -Djava.io.tmpdir="%~dp0data\tmp" -Djna.library.path="%~dp0." -Djna.boot.library.path="%~dp0." -Djava.library.path="%~dp0." -Dnet.filebot.AcoustID.fpcalc="%~dp0fpcalc.exe" -Djava.util.prefs.PreferencesFactory=net.filebot.util.prefs.FilePreferencesFactory -Dnet.filebot.util.prefs.file="%~dp0data\prefs.properties" %JAVA_OPTS% -jar "%~dp0FileBot.jar" %*
3 |
--------------------------------------------------------------------------------
/installer/portable/filebot.portable.launcher.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/installer/portable/filebot.portable.launcher.exe
--------------------------------------------------------------------------------
/installer/portable/install-filebot.sh:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | sh -xu <<< "$(curl -fsSL https://raw.githubusercontent.com/filebot/plugins/master/installer/portable.sh)"
3 |
--------------------------------------------------------------------------------
/installer/snap/.gitignore:
--------------------------------------------------------------------------------
1 | parts
2 | stage
3 | prime
4 | snap
5 |
6 | oracle-java
7 |
8 | *.jar
9 | *.so
10 | *.snap
11 |
--------------------------------------------------------------------------------
/installer/snap/snap/gui/filebot.desktop:
--------------------------------------------------------------------------------
1 | [Desktop Entry]
2 | Type=Application
3 | Name=@{application.name}
4 | Comment=@{package.synopsis}
5 | MimeType=@{deb.application.mimetype}
6 | Exec=filebot %F
7 | Icon=${SNAP}/meta/gui/icon.svg
8 | Categories=@{deb.application.categories}
9 | Actions=Rename;Subtitles;Checksum;
10 | StartupNotify=true
11 | StartupWMClass=@{deb.application.class}
12 | X-Ubuntu-Gettext-Domain=@{package.name}
13 |
14 | [Desktop Action Rename]
15 | Name=Rename
16 | Exec=filebot --mode Rename %F
17 | OnlyShowIn=Unity;
18 |
19 | [Desktop Action Subtitles]
20 | Name=Subtitles
21 | Exec=filebot --mode Subtitles %F
22 | OnlyShowIn=Unity;
23 |
24 | [Desktop Action Checksum]
25 | Name=Checksum
26 | Exec=filebot --mode SFV %F
27 | OnlyShowIn=Unity;
28 |
--------------------------------------------------------------------------------
/installer/snap/snapcraft.yaml:
--------------------------------------------------------------------------------
1 | name: @{package.name}
2 | version: @{application.version}
3 | summary: @{package.synopsis}
4 | description: @{package.description}
5 |
6 | confinement: strict
7 | grade: stable
8 |
9 | architectures: [amd64]
10 |
11 | apps:
12 | filebot:
13 | command: desktop-launch $SNAP/filebot.sh
14 | plugs: [unity7, opengl, x11, home, removable-media, network, network-bind, pulseaudio, gsettings]
15 |
16 | parts:
17 | filebot:
18 | plugin: dump
19 | source: filebot
20 | java:
21 | plugin: nil
22 | stage-packages: [openjdk-8-jre, openjfx, jayatana]
23 | after: [desktop-gtk2]
24 | native:
25 | plugin: nil
26 | stage-packages: [libmediainfo0v5, libchromaprint-tools, curl]
27 |
--------------------------------------------------------------------------------
/installer/spk/scripts/postinst:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | # allow read/write in application home folder
4 | mkdir -m 777 "$SYNOPKG_PKGDEST/data"
5 | chown -R admin.users "$SYNOPKG_PKGDEST/data"
6 |
7 | # create /usr/local/bin/[package] program link
8 | mkdir -p "/usr/local/bin"
9 | ln -sf "$SYNOPKG_PKGDEST/$SYNOPKG_PKGNAME.sh" "/usr/local/bin/$SYNOPKG_PKGNAME"
10 |
11 | # create /usr/local/[package] link
12 | ln -sf "$SYNOPKG_PKGDEST" "/usr/local/$SYNOPKG_PKGNAME"
13 |
14 | # return successfully
15 | exit 0
16 |
--------------------------------------------------------------------------------
/installer/spk/scripts/postuninst:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | # remove /usr/local/bin/[package] program link
4 | rm "/usr/local/bin/$SYNOPKG_PKGNAME"
5 |
6 | # remove /usr/local/[package] link
7 | rm "/usr/local/$SYNOPKG_PKGNAME"
8 |
9 | exit 0
10 |
--------------------------------------------------------------------------------
/installer/spk/scripts/postupgrade:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | # import user data
4 | DATA_TAR="/tmp/$SYNOPKG_PKGNAME.data.tgz"
5 |
6 | cd "$SYNOPKG_PKGDEST" && tar -xvzf "$DATA_TAR" && rm "$DATA_TAR"
7 |
8 | exit 0
9 |
--------------------------------------------------------------------------------
/installer/spk/scripts/preinst:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | exit 0
3 |
--------------------------------------------------------------------------------
/installer/spk/scripts/preuninst:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | # remove /usr/local/[package] link
4 | rm "/usr/local/$SYNOPKG_PKGNAME"
5 |
6 | # return successfully
7 | exit 0
8 |
--------------------------------------------------------------------------------
/installer/spk/scripts/preupgrade:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | # export user data
4 | DATA_TAR="/tmp/$SYNOPKG_PKGNAME.data.tgz"
5 |
6 | cd "$SYNOPKG_PKGDEST" && tar -cvzf "$DATA_TAR" "data/"
7 |
8 | exit 0
9 |
--------------------------------------------------------------------------------
/installer/spk/scripts/start-stop-status:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | case "$1" in
4 | start)
5 | exit 0
6 | ;;
7 |
8 | stop)
9 | exit 0
10 | ;;
11 |
12 | status)
13 | if [ -x "/usr/local/bin/$SYNOPKG_PKGNAME" ] && [ -x "$SYNOPKG_PKGDEST/$SYNOPKG_PKGNAME.sh" ]; then
14 | exit 0
15 | else
16 | exit 150
17 | fi
18 | ;;
19 |
20 | log)
21 | exit 0
22 | ;;
23 | esac
24 |
--------------------------------------------------------------------------------
/lib/jars/ObjCBridge.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/jars/ObjCBridge.jar
--------------------------------------------------------------------------------
/lib/jars/ant-compress.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/jars/ant-compress.jar
--------------------------------------------------------------------------------
/lib/jars/appbundler.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/jars/appbundler.jar
--------------------------------------------------------------------------------
/lib/jars/jacksum.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/jars/jacksum.jar
--------------------------------------------------------------------------------
/lib/jars/simmetrics.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/jars/simmetrics.jar
--------------------------------------------------------------------------------
/lib/jars/xmlrpc.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/jars/xmlrpc.jar
--------------------------------------------------------------------------------
/lib/native/linux-amd64/fpcalc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/native/linux-amd64/fpcalc
--------------------------------------------------------------------------------
/lib/native/linux-amd64/lib7-Zip-JBinding.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/native/linux-amd64/lib7-Zip-JBinding.so
--------------------------------------------------------------------------------
/lib/native/linux-amd64/libjnidispatch.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/native/linux-amd64/libjnidispatch.so
--------------------------------------------------------------------------------
/lib/native/linux-amd64/libmediainfo.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/native/linux-amd64/libmediainfo.so
--------------------------------------------------------------------------------
/lib/native/linux-amd64/libzen.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/native/linux-amd64/libzen.so
--------------------------------------------------------------------------------
/lib/native/linux-armv7l/fpcalc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/native/linux-armv7l/fpcalc
--------------------------------------------------------------------------------
/lib/native/linux-armv7l/lib7-Zip-JBinding.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/native/linux-armv7l/lib7-Zip-JBinding.so
--------------------------------------------------------------------------------
/lib/native/linux-armv7l/libjnidispatch.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/native/linux-armv7l/libjnidispatch.so
--------------------------------------------------------------------------------
/lib/native/linux-armv7l/libmediainfo.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/native/linux-armv7l/libmediainfo.so
--------------------------------------------------------------------------------
/lib/native/linux-armv7l/libz.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/native/linux-armv7l/libz.so
--------------------------------------------------------------------------------
/lib/native/linux-armv7l/libzen.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/native/linux-armv7l/libzen.so
--------------------------------------------------------------------------------
/lib/native/linux-armv8/libjnidispatch.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/native/linux-armv8/libjnidispatch.so
--------------------------------------------------------------------------------
/lib/native/linux-i686/fpcalc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/native/linux-i686/fpcalc
--------------------------------------------------------------------------------
/lib/native/linux-i686/lib7-Zip-JBinding.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/native/linux-i686/lib7-Zip-JBinding.so
--------------------------------------------------------------------------------
/lib/native/linux-i686/libjnidispatch.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/native/linux-i686/libjnidispatch.so
--------------------------------------------------------------------------------
/lib/native/linux-i686/libmediainfo.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/native/linux-i686/libmediainfo.so
--------------------------------------------------------------------------------
/lib/native/linux-i686/libzen.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/native/linux-i686/libzen.so
--------------------------------------------------------------------------------
/lib/native/mac-x86_64/fpcalc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/native/mac-x86_64/fpcalc
--------------------------------------------------------------------------------
/lib/native/mac-x86_64/lib7-Zip-JBinding.dylib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/native/mac-x86_64/lib7-Zip-JBinding.dylib
--------------------------------------------------------------------------------
/lib/native/mac-x86_64/libjcocoa.dylib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/native/mac-x86_64/libjcocoa.dylib
--------------------------------------------------------------------------------
/lib/native/mac-x86_64/libjnidispatch.dylib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/native/mac-x86_64/libjnidispatch.dylib
--------------------------------------------------------------------------------
/lib/native/mac-x86_64/libmediainfo.dylib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/native/mac-x86_64/libmediainfo.dylib
--------------------------------------------------------------------------------
/lib/native/win32-x64/7-Zip-JBinding.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/native/win32-x64/7-Zip-JBinding.dll
--------------------------------------------------------------------------------
/lib/native/win32-x64/MediaInfo.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/native/win32-x64/MediaInfo.dll
--------------------------------------------------------------------------------
/lib/native/win32-x64/fpcalc.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/native/win32-x64/fpcalc.exe
--------------------------------------------------------------------------------
/lib/native/win32-x64/gcc_s_seh-1.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/native/win32-x64/gcc_s_seh-1.dll
--------------------------------------------------------------------------------
/lib/native/win32-x64/jnidispatch.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/native/win32-x64/jnidispatch.dll
--------------------------------------------------------------------------------
/lib/native/win32-x86/7-Zip-JBinding.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/native/win32-x86/7-Zip-JBinding.dll
--------------------------------------------------------------------------------
/lib/native/win32-x86/MediaInfo.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/native/win32-x86/MediaInfo.dll
--------------------------------------------------------------------------------
/lib/native/win32-x86/fpcalc.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/native/win32-x86/fpcalc.exe
--------------------------------------------------------------------------------
/lib/native/win32-x86/jnidispatch.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/native/win32-x86/jnidispatch.dll
--------------------------------------------------------------------------------
/lib/resources/action.match.xcf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/resources/action.match.xcf
--------------------------------------------------------------------------------
/lib/resources/button.checksum.fw.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/resources/button.checksum.fw.png
--------------------------------------------------------------------------------
/lib/resources/button.checksum.selected.fw.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/resources/button.checksum.selected.fw.png
--------------------------------------------------------------------------------
/lib/resources/opensubtitles.xcf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/resources/opensubtitles.xcf
--------------------------------------------------------------------------------
/lib/resources/panel.rename.fw.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/resources/panel.rename.fw.png
--------------------------------------------------------------------------------
/lib/resources/panel.rename.xcf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/resources/panel.rename.xcf
--------------------------------------------------------------------------------
/lib/resources/panel.sfv.fw.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/resources/panel.sfv.fw.png
--------------------------------------------------------------------------------
/lib/resources/panel.sfv.xcf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/resources/panel.sfv.xcf
--------------------------------------------------------------------------------
/lib/resources/panel.subtitle.fw.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/resources/panel.subtitle.fw.png
--------------------------------------------------------------------------------
/lib/resources/panel.subtitles.xcf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/resources/panel.subtitles.xcf
--------------------------------------------------------------------------------
/lib/resources/subtitle.exact.download.fw.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/resources/subtitle.exact.download.fw.png
--------------------------------------------------------------------------------
/lib/resources/subtitle.exact.upload.fw.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/resources/subtitle.exact.upload.fw.png
--------------------------------------------------------------------------------
/lib/resources/thetvdb-round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/resources/thetvdb-round.png
--------------------------------------------------------------------------------
/lib/resources/thetvdb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/lib/resources/thetvdb.png
--------------------------------------------------------------------------------
/source/META-INF/services/org.codehaus.groovy.runtime.ExtensionModule:
--------------------------------------------------------------------------------
1 | moduleName=filebot-scripting-extension
2 | moduleVersion=4.5
3 | extensionClasses=net.filebot.cli.ScriptShellMethods,net.filebot.format.ExpressionFormatMethods
4 |
--------------------------------------------------------------------------------
/source/META-INF/vfs-providers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/source/ehcache.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/source/net/filebot/InvalidResponseException.java:
--------------------------------------------------------------------------------
1 | package net.filebot;
2 |
3 | import java.io.IOException;
4 |
5 | public class InvalidResponseException extends IOException {
6 |
7 | public InvalidResponseException(String message, Throwable cause) {
8 | super(message, cause);
9 | }
10 |
11 | public InvalidResponseException(String message, String content, Throwable cause) {
12 | super(String.format("%s: %s: %s\n%s", message, cause.getClass().getSimpleName(), cause.getMessage(), content), cause);
13 | }
14 |
15 | }
16 |
--------------------------------------------------------------------------------
/source/net/filebot/RenameAction.java:
--------------------------------------------------------------------------------
1 |
2 | package net.filebot;
3 |
4 | import java.io.File;
5 |
6 | public interface RenameAction {
7 |
8 | File rename(File from, File to) throws Exception;
9 |
10 | default boolean canRevert() {
11 | return true;
12 | }
13 |
14 | }
15 |
--------------------------------------------------------------------------------
/source/net/filebot/archive/ArchiveExtractor.java:
--------------------------------------------------------------------------------
1 | package net.filebot.archive;
2 |
3 | import java.io.File;
4 | import java.io.FileFilter;
5 | import java.util.List;
6 |
7 | import net.filebot.vfs.FileInfo;
8 |
9 | public interface ArchiveExtractor {
10 |
11 | public List listFiles() throws Exception;
12 |
13 | public void extract(File outputDir) throws Exception;
14 |
15 | public void extract(File outputDir, FileFilter filter) throws Exception;
16 |
17 | }
18 |
--------------------------------------------------------------------------------
/source/net/filebot/archive/ExtractOutProvider.java:
--------------------------------------------------------------------------------
1 |
2 | package net.filebot.archive;
3 |
4 |
5 | import java.io.File;
6 | import java.io.IOException;
7 | import java.io.OutputStream;
8 |
9 |
10 | public interface ExtractOutProvider {
11 |
12 | OutputStream getStream(File archivePath) throws IOException;
13 |
14 | }
15 |
--------------------------------------------------------------------------------
/source/net/filebot/cli/CmdlineException.java:
--------------------------------------------------------------------------------
1 | package net.filebot.cli;
2 |
3 | public class CmdlineException extends RuntimeException {
4 |
5 | public CmdlineException(String message) {
6 | super(message);
7 | }
8 |
9 | public CmdlineException(String message, Throwable cause) {
10 | super(message, cause);
11 | }
12 |
13 | }
14 |
--------------------------------------------------------------------------------
/source/net/filebot/cli/ConflictAction.java:
--------------------------------------------------------------------------------
1 | package net.filebot.cli;
2 |
3 | import static java.util.Arrays.*;
4 | import static java.util.stream.Collectors.*;
5 |
6 | import java.util.List;
7 |
8 | public enum ConflictAction {
9 |
10 | SKIP, OVERRIDE, FAIL, AUTO, INDEX;
11 |
12 | public static List names() {
13 | return stream(values()).map(Enum::name).collect(toList());
14 | }
15 |
16 | public static ConflictAction forName(String name) {
17 | for (ConflictAction action : values()) {
18 | if (action.name().equalsIgnoreCase(name)) {
19 | return action;
20 | }
21 | }
22 |
23 | throw new IllegalArgumentException(String.format("%s not in %s", name, names()));
24 | }
25 |
26 | }
27 |
--------------------------------------------------------------------------------
/source/net/filebot/cli/ScriptDeath.java:
--------------------------------------------------------------------------------
1 | package net.filebot.cli;
2 |
3 | public class ScriptDeath extends Throwable {
4 |
5 | public ScriptDeath(String message) {
6 | super(message);
7 | }
8 |
9 | public ScriptDeath(Throwable cause) {
10 | super(cause);
11 | }
12 |
13 | }
14 |
--------------------------------------------------------------------------------
/source/net/filebot/cli/ScriptProvider.java:
--------------------------------------------------------------------------------
1 | package net.filebot.cli;
2 |
3 | public interface ScriptProvider {
4 |
5 | String getScript(String name) throws Exception;
6 |
7 | }
--------------------------------------------------------------------------------
/source/net/filebot/cli/ScriptShell.properties:
--------------------------------------------------------------------------------
1 | scriptBaseClass: net.filebot.cli.ScriptShellBaseClass
2 | starImport: net.filebot, net.filebot.hash, net.filebot.media, net.filebot.mediainfo, net.filebot.similarity, net.filebot.subtitle, net.filebot.torrent, net.filebot.web, net.filebot.util, groovy.io, groovy.xml, groovy.json, java.nio.file, java.nio.file.attribute, java.nio.charset, java.util.stream, java.util.regex, java.time
3 | starStaticImport: net.filebot.WebServices, net.filebot.media.MediaDetection, net.filebot.format.ExpressionFormatFunctions
--------------------------------------------------------------------------------
/source/net/filebot/cli/repository.cer:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/cli/repository.cer
--------------------------------------------------------------------------------
/source/net/filebot/format/BindingException.java:
--------------------------------------------------------------------------------
1 | package net.filebot.format;
2 |
3 | public class BindingException extends RuntimeException {
4 |
5 | public BindingException(String message, Throwable cause) {
6 | super(message, cause);
7 | }
8 |
9 | public BindingException(Object binding, String innerMessage) {
10 | this(binding, innerMessage, null);
11 | }
12 |
13 | public BindingException(Object binding, String innerMessage, Throwable cause) {
14 | this(String.format("Binding \"%s\": %s", binding, innerMessage), cause);
15 | }
16 |
17 | }
18 |
--------------------------------------------------------------------------------
/source/net/filebot/format/Define.java:
--------------------------------------------------------------------------------
1 |
2 | package net.filebot.format;
3 |
4 | import static java.lang.annotation.ElementType.*;
5 | import static java.lang.annotation.RetentionPolicy.*;
6 |
7 | import java.lang.annotation.Documented;
8 | import java.lang.annotation.Retention;
9 | import java.lang.annotation.Target;
10 |
11 | @Documented
12 | @Retention(RUNTIME)
13 | @Target(METHOD)
14 | public @interface Define {
15 |
16 | String[] value();
17 |
18 | static final String undefined = "";
19 | }
20 |
--------------------------------------------------------------------------------
/source/net/filebot/format/ExpressionException.java:
--------------------------------------------------------------------------------
1 |
2 | package net.filebot.format;
3 |
4 | import javax.script.ScriptException;
5 |
6 | public class ExpressionException extends ScriptException {
7 |
8 | private final String message;
9 |
10 | public ExpressionException(String message, ScriptException cause) {
11 | super(message, cause.getFileName(), cause.getLineNumber(), cause.getColumnNumber());
12 |
13 | // can't set message via super constructor
14 | this.message = message;
15 | }
16 |
17 | public ExpressionException(Exception e) {
18 | super(e);
19 |
20 | // can't set message via super constructor
21 | this.message = e.getMessage();
22 | }
23 |
24 | @Override
25 | public String getMessage() {
26 | return message;
27 | }
28 |
29 | }
30 |
--------------------------------------------------------------------------------
/source/net/filebot/hash/ChecksumHash.java:
--------------------------------------------------------------------------------
1 |
2 | package net.filebot.hash;
3 |
4 |
5 | import java.util.zip.Checksum;
6 |
7 |
8 | public class ChecksumHash implements Hash {
9 |
10 | private final Checksum checksum;
11 |
12 |
13 | public ChecksumHash(Checksum checksum) {
14 | this.checksum = checksum;
15 | }
16 |
17 |
18 | @Override
19 | public void update(byte[] bytes, int off, int len) {
20 | checksum.update(bytes, off, len);
21 | }
22 |
23 |
24 | @Override
25 | public String digest() {
26 | return String.format("%08X", checksum.getValue());
27 | }
28 |
29 | }
30 |
--------------------------------------------------------------------------------
/source/net/filebot/hash/Hash.java:
--------------------------------------------------------------------------------
1 |
2 | package net.filebot.hash;
3 |
4 |
5 | public interface Hash {
6 |
7 | public void update(byte[] bytes, int off, int len);
8 |
9 |
10 | public String digest();
11 |
12 | }
13 |
--------------------------------------------------------------------------------
/source/net/filebot/media/VideoFormat.properties:
--------------------------------------------------------------------------------
1 | resolution.steps.w: 15360 7680 3840 1920 1280 1024 854 720 688 512 320
2 | resolution.steps.h: 8640 4320 2160 1080 720 576 576 480 360 240 240
3 |
--------------------------------------------------------------------------------
/source/net/filebot/platform/gnome/GVFS.java:
--------------------------------------------------------------------------------
1 | package net.filebot.platform.gnome;
2 |
3 | import java.io.File;
4 | import java.net.URI;
5 |
6 | import net.filebot.util.SystemProperty;
7 |
8 | public interface GVFS {
9 |
10 | File getPathForURI(URI uri);
11 |
12 | public static GVFS getDefaultVFS() {
13 | GVFS gvfs = SystemProperty.of("net.filebot.gio.GVFS", path -> new PlatformGVFS(new File(path))).get();
14 |
15 | // default to native implementation GVFS folder is not set
16 | if (gvfs == null) {
17 | gvfs = new NativeGVFS();
18 | }
19 |
20 | return gvfs;
21 | }
22 |
23 | }
24 |
--------------------------------------------------------------------------------
/source/net/filebot/platform/gnome/LibGIO.java:
--------------------------------------------------------------------------------
1 |
2 | package net.filebot.platform.gnome;
3 |
4 | import com.sun.jna.Library;
5 | import com.sun.jna.Pointer;
6 |
7 | interface LibGIO extends Library {
8 |
9 | void g_type_init();
10 |
11 | Pointer g_vfs_get_default();
12 |
13 | Pointer g_vfs_get_file_for_uri(Pointer gvfs, String uri);
14 |
15 | Pointer g_file_get_path(Pointer gfile);
16 |
17 | void g_free(Pointer gpointer);
18 |
19 | void g_object_unref(Pointer gobject);
20 |
21 | }
22 |
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.auto.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.auto.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.auto@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.auto@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.clear.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.clear.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.clear@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.clear@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.clone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.clone.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.clone@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.clone@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.copy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.copy.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.copy@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.copy@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.down.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.down@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.down@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.export.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.export.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.export@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.export@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.extension.override.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.extension.override.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.extension.override@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.extension.override@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.extension.preserve.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.extension.preserve.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.extension.preserve@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.extension.preserve@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.fetch.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.fetch.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.fetch@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.fetch@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.find.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.find.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.find@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.find@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.format.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.format.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.format@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.format@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.hardlink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.hardlink.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.hardlink@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.hardlink@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.keeplink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.keeplink.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.keeplink@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.keeplink@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.list.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.list.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.load.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.load.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.load@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.load@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.match.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.match.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.match.small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.match.small.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.match.small@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.match.small@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.match.strict.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.match.strict.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.match.strict@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.match.strict@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.match@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.match@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.menu.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.preferences.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.preferences.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.preferences@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.preferences@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.properties.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.properties.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.properties@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.properties@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.rename.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.rename.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.rename@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.rename@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.report.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.report.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.report@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.report@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.revert.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.revert.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.revert@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.revert@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.save.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.save.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.save@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.save@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.script.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.script.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.script@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.script@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.search.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.search@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.search@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.select.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.select.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.select@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.select@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.settings.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.settings@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.settings@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.symlink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.symlink.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.symlink@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.symlink@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.up.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.up@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.up@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.user.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.user@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.user@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.variables.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.variables.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/action.variables@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/action.variables@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/bullet.green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/bullet.green.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/bullet.green@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/bullet.green@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/button.checksum.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/button.checksum.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/button.checksum.selected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/button.checksum.selected.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/button.checksum.selected@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/button.checksum.selected@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/button.checksum@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/button.checksum@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/button.repeat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/button.repeat.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/button.repeat.selected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/button.repeat.selected.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/button.repeat.selected@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/button.repeat.selected@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/button.repeat@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/button.repeat@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/database.error.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/database.error.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/database.error@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/database.error@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/database.go.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/database.go.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/database.go@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/database.go@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/database.ok.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/database.ok.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/database.ok@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/database.ok@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/dialog.cancel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/dialog.cancel.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/dialog.cancel@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/dialog.cancel@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/dialog.continue.invalid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/dialog.continue.invalid.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/dialog.continue.invalid@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/dialog.continue.invalid@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/dialog.continue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/dialog.continue.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/dialog.continue@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/dialog.continue@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/dialog.switch.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/dialog.switch.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/dialog.switch@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/dialog.switch@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/edit.clear.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/edit.clear.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/edit.clear@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/edit.clear@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/file.generic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/file.generic.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/file.generic@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/file.generic@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/file.lock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/file.lock.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/file.lock@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/file.lock@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/file.subtitle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/file.subtitle.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/file.subtitle@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/file.subtitle@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/file.video.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/file.video.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/file.video@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/file.video@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/ar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/ar.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/ar@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/ar@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/bg.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/bg@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/bg@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/ca.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/ca.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/ca@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/ca@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/cs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/cs.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/cs@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/cs@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/da.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/da.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/da@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/da@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/de.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/de.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/de@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/de@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/default.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/default@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/default@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/el.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/el.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/el@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/el@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/en.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/en.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/en@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/en@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/es.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/es.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/es@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/es@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/et.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/et.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/et@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/et@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/fa.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/fa.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/fa@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/fa@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/fi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/fi.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/fi@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/fi@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/fr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/fr.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/fr@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/fr@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/he.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/he.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/he@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/he@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/hi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/hi.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/hi@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/hi@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/hk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/hk.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/hk@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/hk@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/hr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/hr.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/hr@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/hr@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/hu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/hu.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/hu@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/hu@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/hy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/hy.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/hy@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/hy@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/id.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/id.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/id@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/id@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/is.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/is.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/is@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/is@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/it.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/it.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/it@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/it@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/ja.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/ja.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/ja@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/ja@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/ko.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/ko.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/ko@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/ko@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/lt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/lt.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/lt@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/lt@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/lv.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/lv.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/lv@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/lv@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/mk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/mk.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/mk@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/mk@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/ms.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/ms.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/ms@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/ms@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/mx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/mx.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/mx@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/mx@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/nl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/nl.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/nl@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/nl@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/no.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/no.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/no@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/no@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/pb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/pb.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/pb@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/pb@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/pl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/pl.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/pl@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/pl@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/pt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/pt.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/pt@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/pt@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/qc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/qc.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/qc@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/qc@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/ro.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/ro.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/ro@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/ro@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/ru.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/ru.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/ru@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/ru@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/sk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/sk.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/sk@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/sk@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/sl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/sl.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/sl@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/sl@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/sq.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/sq.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/sq@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/sq@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/sr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/sr.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/sr@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/sr@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/sv.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/sv.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/sv@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/sv@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/th.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/th.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/th@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/th@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/tr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/tr.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/tr@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/tr@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/tw.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/tw.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/tw@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/tw@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/uk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/uk.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/uk@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/uk@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/undefined.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/undefined.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/undefined@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/undefined@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/vi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/vi.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/vi@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/vi@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/x-jat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/x-jat.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/x-jat@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/x-jat@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/zh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/zh.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/flags/zh@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/flags/zh@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/folder.locked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/folder.locked.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/folder.locked@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/folder.locked@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/folder.open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/folder.open.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/folder.open@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/folder.open@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/message.donate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/message.donate.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/message.donate@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/message.donate@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/message.error.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/message.error.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/message.error@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/message.error@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/message.info.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/message.info.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/message.info@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/message.info@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/message.warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/message.warning.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/message.warning@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/message.warning@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/package.extract.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/package.extract.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/package.extract@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/package.extract@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/package.fetch.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/package.fetch.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/package.fetch@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/package.fetch@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/panel.analyze.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/panel.analyze.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/panel.analyze@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/panel.analyze@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/panel.episodelist.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/panel.episodelist.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/panel.episodelist@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/panel.episodelist@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/panel.list.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/panel.list.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/panel.list@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/panel.list@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/panel.rename.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/panel.rename.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/panel.rename@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/panel.rename@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/panel.sfv.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/panel.sfv.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/panel.sfv@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/panel.sfv@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/panel.subtitle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/panel.subtitle.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/panel.subtitle@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/panel.subtitle@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/rename.action.clone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/rename.action.clone.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/rename.action.clone@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/rename.action.clone@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/rename.action.copy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/rename.action.copy.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/rename.action.copy@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/rename.action.copy@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/rename.action.hardlink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/rename.action.hardlink.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/rename.action.hardlink@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/rename.action.hardlink@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/rename.action.keeplink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/rename.action.keeplink.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/rename.action.keeplink@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/rename.action.keeplink@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/rename.action.move.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/rename.action.move.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/rename.action.move@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/rename.action.move@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/rename.action.symlink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/rename.action.symlink.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/rename.action.symlink@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/rename.action.symlink@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/script.add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/script.add.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/script.add@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/script.add@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/script.cancel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/script.cancel.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/script.cancel@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/script.cancel@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/script.go.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/script.go.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/script.go@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/script.go@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/search.acoustid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/search.acoustid.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/search.acoustid@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/search.acoustid@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/search.anidb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/search.anidb.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/search.anidb@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/search.anidb@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/search.exif.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/search.exif.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/search.exif@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/search.exif@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/search.generic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/search.generic.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/search.generic@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/search.generic@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/search.mediainfo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/search.mediainfo.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/search.mediainfo@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/search.mediainfo@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/search.omdb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/search.omdb.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/search.omdb@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/search.omdb@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/search.opensubtitles.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/search.opensubtitles.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/search.opensubtitles@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/search.opensubtitles@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/search.shooter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/search.shooter.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/search.shooter@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/search.shooter@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/search.themoviedb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/search.themoviedb.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/search.themoviedb@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/search.themoviedb@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/search.thetvdb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/search.thetvdb.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/search.thetvdb@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/search.thetvdb@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/search.tvmaze.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/search.tvmaze.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/search.tvmaze@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/search.tvmaze@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/search.xattr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/search.xattr.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/search.xattr@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/search.xattr@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/status.error.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/status.error.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/status.error@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/status.error@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/status.info.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/status.info.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/status.info@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/status.info@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/status.link.broken.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/status.link.broken.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/status.link.broken@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/status.link.broken@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/status.link.ok.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/status.link.ok.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/status.link.ok@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/status.link.ok@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/status.ok.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/status.ok.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/status.ok@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/status.ok@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/status.unknown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/status.unknown.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/status.unknown@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/status.unknown@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/status.warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/status.warning.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/status.warning@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/status.warning@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/subtitle.exact.download.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/subtitle.exact.download.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/subtitle.exact.download@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/subtitle.exact.download@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/subtitle.exact.upload.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/subtitle.exact.upload.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/subtitle.exact.upload@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/subtitle.exact.upload@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/tab.close.hover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/tab.close.hover.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/tab.close.hover@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/tab.close.hover@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/tab.close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/tab.close.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/tab.close@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/tab.close@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/tree.closed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/tree.closed.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/tree.closed@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/tree.closed@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/tree.collapse.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/tree.collapse.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/tree.expand.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/tree.expand.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/tree.open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/tree.open.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/tree.open@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/tree.open@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/window.icon.large.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/window.icon.large.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/window.icon.medium.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/window.icon.medium.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/window.icon.small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/window.icon.small.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/worker.pending.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/worker.pending.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/worker.pending@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/worker.pending@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/worker.started.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/worker.started.png
--------------------------------------------------------------------------------
/source/net/filebot/resources/worker.started@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/source/net/filebot/resources/worker.started@2x.png
--------------------------------------------------------------------------------
/source/net/filebot/similarity/FileSizeMetric.java:
--------------------------------------------------------------------------------
1 |
2 | package net.filebot.similarity;
3 |
4 |
5 | import java.io.File;
6 |
7 |
8 | public class FileSizeMetric implements SimilarityMetric {
9 |
10 | @Override
11 | public float getSimilarity(Object o1, Object o2) {
12 | long l1 = getLength(o1);
13 | if (l1 < 0)
14 | return 0;
15 |
16 | long l2 = getLength(o2);
17 | if (l2 < 0)
18 | return 0;
19 |
20 | // objects have the same non-negative length
21 | return l1 == l2 ? 1 : -1;
22 | }
23 |
24 |
25 | protected long getLength(Object object) {
26 | if (object instanceof File) {
27 | return ((File) object).length();
28 | }
29 |
30 | return -1;
31 | }
32 |
33 | }
34 |
--------------------------------------------------------------------------------
/source/net/filebot/similarity/MetricMin.java:
--------------------------------------------------------------------------------
1 |
2 | package net.filebot.similarity;
3 |
4 |
5 | public class MetricMin implements SimilarityMetric {
6 |
7 | private final SimilarityMetric metric;
8 | private final float minValue;
9 |
10 |
11 | public MetricMin(SimilarityMetric metric, float minValue) {
12 | this.metric = metric;
13 | this.minValue = minValue;
14 | }
15 |
16 |
17 | @Override
18 | public float getSimilarity(Object o1, Object o2) {
19 | return Math.max(metric.getSimilarity(o1, o2), minValue);
20 | }
21 |
22 | }
23 |
--------------------------------------------------------------------------------
/source/net/filebot/similarity/SimilarityMetric.java:
--------------------------------------------------------------------------------
1 |
2 | package net.filebot.similarity;
3 |
4 |
5 | public interface SimilarityMetric {
6 |
7 | public float getSimilarity(Object o1, Object o2);
8 |
9 | }
10 |
--------------------------------------------------------------------------------
/source/net/filebot/similarity/StringEqualsMetric.java:
--------------------------------------------------------------------------------
1 | package net.filebot.similarity;
2 |
3 | public class StringEqualsMetric implements SimilarityMetric {
4 |
5 | @Override
6 | public float getSimilarity(Object o1, Object o2) {
7 | if (o1 == null || o2 == null)
8 | return 0;
9 |
10 | String s1 = normalize(o1);
11 | String s2 = normalize(o2);
12 |
13 | if (s1.isEmpty() || s2.isEmpty())
14 | return 0;
15 |
16 | return s1.equals(s2) ? 1 : 0;
17 | }
18 |
19 | protected String normalize(Object object) {
20 | return object.toString().trim().toLowerCase();
21 | }
22 |
23 | }
24 |
--------------------------------------------------------------------------------
/source/net/filebot/subtitle/SubtitleDecoder.java:
--------------------------------------------------------------------------------
1 | package net.filebot.subtitle;
2 |
3 | import java.util.stream.Stream;
4 |
5 | public interface SubtitleDecoder {
6 |
7 | Stream decode(String file);
8 |
9 | }
--------------------------------------------------------------------------------
/source/net/filebot/ui/episodelist/EpisodeListPanelBuilder.java:
--------------------------------------------------------------------------------
1 |
2 | package net.filebot.ui.episodelist;
3 |
4 | import javax.swing.Icon;
5 | import javax.swing.JComponent;
6 |
7 | import net.filebot.ResourceManager;
8 | import net.filebot.ui.PanelBuilder;
9 |
10 | public class EpisodeListPanelBuilder implements PanelBuilder {
11 |
12 | @Override
13 | public String getName() {
14 | return "Episodes";
15 | }
16 |
17 | @Override
18 | public Icon getIcon() {
19 | return ResourceManager.getIcon("panel.episodelist");
20 | }
21 |
22 | @Override
23 | public boolean equals(Object obj) {
24 | return obj instanceof EpisodeListPanelBuilder;
25 | }
26 |
27 | @Override
28 | public JComponent create() {
29 | return new EpisodeListPanel();
30 | }
31 |
32 | }
33 |
--------------------------------------------------------------------------------
/source/net/filebot/ui/list/ListPanelBuilder.java:
--------------------------------------------------------------------------------
1 |
2 | package net.filebot.ui.list;
3 |
4 | import javax.swing.Icon;
5 | import javax.swing.JComponent;
6 |
7 | import net.filebot.ResourceManager;
8 | import net.filebot.ui.PanelBuilder;
9 |
10 | public class ListPanelBuilder implements PanelBuilder {
11 |
12 | @Override
13 | public String getName() {
14 | return "List";
15 | }
16 |
17 | @Override
18 | public Icon getIcon() {
19 | return ResourceManager.getIcon("panel.list");
20 | }
21 |
22 | @Override
23 | public boolean equals(Object obj) {
24 | return obj instanceof ListPanelBuilder;
25 | }
26 |
27 | @Override
28 | public JComponent create() {
29 | return new ListPanel();
30 | }
31 |
32 | }
33 |
--------------------------------------------------------------------------------
/source/net/filebot/ui/rename/AutoCompleteMatcher.java:
--------------------------------------------------------------------------------
1 | package net.filebot.ui.rename;
2 |
3 | import java.awt.Component;
4 | import java.io.File;
5 | import java.util.Collection;
6 | import java.util.List;
7 | import java.util.Locale;
8 |
9 | import net.filebot.similarity.Match;
10 | import net.filebot.web.SortOrder;
11 |
12 | interface AutoCompleteMatcher {
13 |
14 | List> match(Collection files, boolean strict, SortOrder order, Locale locale, boolean autodetection, Component parent) throws Exception;
15 | }
16 |
--------------------------------------------------------------------------------
/source/net/filebot/ui/rename/FileNameFormat.java:
--------------------------------------------------------------------------------
1 | package net.filebot.ui.rename;
2 |
3 | import java.io.File;
4 | import java.text.FieldPosition;
5 | import java.text.Format;
6 | import java.text.ParsePosition;
7 |
8 | import net.filebot.util.FileUtilities;
9 |
10 | public class FileNameFormat extends Format {
11 |
12 | @Override
13 | public StringBuffer format(Object obj, StringBuffer toAppendTo, FieldPosition pos) {
14 | return toAppendTo.append(FileUtilities.getName((File) obj));
15 | }
16 |
17 | @Override
18 | public Object parseObject(String source, ParsePosition pos) {
19 | return new File(source);
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/source/net/filebot/ui/rename/MatchFormatter.java:
--------------------------------------------------------------------------------
1 |
2 | package net.filebot.ui.rename;
3 |
4 | import java.util.Map;
5 |
6 | import net.filebot.similarity.Match;
7 |
8 | public interface MatchFormatter {
9 |
10 | public boolean canFormat(Match, ?> match);
11 |
12 | public String preview(Match, ?> match);
13 |
14 | public String format(Match, ?> match, boolean extension, Map, ?> context) throws Exception;
15 |
16 | }
17 |
--------------------------------------------------------------------------------
/source/net/filebot/ui/rename/RenamePanelBuilder.java:
--------------------------------------------------------------------------------
1 |
2 | package net.filebot.ui.rename;
3 |
4 | import javax.swing.Icon;
5 | import javax.swing.JComponent;
6 |
7 | import net.filebot.ResourceManager;
8 | import net.filebot.ui.PanelBuilder;
9 |
10 | public class RenamePanelBuilder implements PanelBuilder {
11 |
12 | @Override
13 | public String getName() {
14 | return "Rename";
15 | }
16 |
17 | @Override
18 | public Icon getIcon() {
19 | return ResourceManager.getIcon("panel.rename");
20 | }
21 |
22 | @Override
23 | public boolean equals(Object obj) {
24 | return obj instanceof RenamePanelBuilder;
25 | }
26 |
27 | @Override
28 | public JComponent create() {
29 | return new RenamePanel();
30 | }
31 |
32 | }
33 |
--------------------------------------------------------------------------------
/source/net/filebot/ui/sfv/SfvPanelBuilder.java:
--------------------------------------------------------------------------------
1 |
2 | package net.filebot.ui.sfv;
3 |
4 | import javax.swing.Icon;
5 | import javax.swing.JComponent;
6 |
7 | import net.filebot.ResourceManager;
8 | import net.filebot.ui.PanelBuilder;
9 |
10 | public class SfvPanelBuilder implements PanelBuilder {
11 |
12 | @Override
13 | public String getName() {
14 | return "SFV";
15 | }
16 |
17 | @Override
18 | public Icon getIcon() {
19 | return ResourceManager.getIcon("panel.sfv");
20 | }
21 |
22 | @Override
23 | public boolean equals(Object obj) {
24 | return obj instanceof SfvPanelBuilder;
25 | }
26 |
27 | @Override
28 | public JComponent create() {
29 | return new SfvPanel();
30 | }
31 |
32 | }
33 |
--------------------------------------------------------------------------------
/source/net/filebot/ui/subtitle/SubtitlePanelBuilder.java:
--------------------------------------------------------------------------------
1 |
2 | package net.filebot.ui.subtitle;
3 |
4 | import javax.swing.Icon;
5 | import javax.swing.JComponent;
6 |
7 | import net.filebot.ResourceManager;
8 | import net.filebot.ui.PanelBuilder;
9 |
10 | public class SubtitlePanelBuilder implements PanelBuilder {
11 |
12 | @Override
13 | public String getName() {
14 | return "Subtitles";
15 | }
16 |
17 | @Override
18 | public Icon getIcon() {
19 | return ResourceManager.getIcon("panel.subtitle");
20 | }
21 |
22 | @Override
23 | public boolean equals(Object obj) {
24 | return obj instanceof SubtitlePanelBuilder;
25 | }
26 |
27 | @Override
28 | public JComponent create() {
29 | return new SubtitlePanel();
30 | }
31 |
32 | }
33 |
--------------------------------------------------------------------------------
/source/net/filebot/ui/subtitle/upload/Status.java:
--------------------------------------------------------------------------------
1 | package net.filebot.ui.subtitle.upload;
2 |
3 | enum Status {
4 | IllegalInput, CheckPending, Checking, CheckFailed, AlreadyExists, Identifying, IdentificationRequired, UploadReady, Uploading, UploadComplete, UploadFailed;
5 | }
--------------------------------------------------------------------------------
/source/net/filebot/ui/transfer/ClipboardHandler.java:
--------------------------------------------------------------------------------
1 |
2 | package net.filebot.ui.transfer;
3 |
4 |
5 | import java.awt.datatransfer.Clipboard;
6 |
7 | import javax.swing.JComponent;
8 |
9 |
10 | public interface ClipboardHandler {
11 |
12 | public void exportToClipboard(JComponent comp, Clipboard clip, int action) throws IllegalStateException;
13 |
14 | }
15 |
--------------------------------------------------------------------------------
/source/net/filebot/ui/transfer/FileExportHandler.java:
--------------------------------------------------------------------------------
1 |
2 | package net.filebot.ui.transfer;
3 |
4 |
5 | import java.io.File;
6 | import java.io.IOException;
7 |
8 |
9 | public interface FileExportHandler {
10 |
11 | public boolean canExport();
12 |
13 |
14 | public void export(File file) throws IOException;
15 |
16 |
17 | public String getDefaultFileName();
18 |
19 | }
20 |
--------------------------------------------------------------------------------
/source/net/filebot/ui/transfer/TransferableExportHandler.java:
--------------------------------------------------------------------------------
1 |
2 | package net.filebot.ui.transfer;
3 |
4 |
5 | import java.awt.datatransfer.Transferable;
6 |
7 | import javax.swing.JComponent;
8 |
9 |
10 | public interface TransferableExportHandler {
11 |
12 | public Transferable createTransferable(JComponent c);
13 |
14 |
15 | public int getSourceActions(JComponent c);
16 |
17 |
18 | public void exportDone(JComponent source, Transferable data, int action);
19 |
20 | }
21 |
--------------------------------------------------------------------------------
/source/net/filebot/util/FunctionList.java:
--------------------------------------------------------------------------------
1 | package net.filebot.util;
2 |
3 | import java.util.AbstractList;
4 | import java.util.List;
5 | import java.util.function.Function;
6 |
7 | public class FunctionList extends AbstractList {
8 |
9 | private List source;
10 | private Function function;
11 |
12 | public FunctionList(List source, Function function) {
13 | this.source = source;
14 | this.function = function;
15 | }
16 |
17 | @Override
18 | public E get(int index) {
19 | return function.apply(source.get(index));
20 | }
21 |
22 | @Override
23 | public int size() {
24 | return source.size();
25 | }
26 |
27 | }
28 |
--------------------------------------------------------------------------------
/source/net/filebot/util/ui/LabelProvider.java:
--------------------------------------------------------------------------------
1 |
2 | package net.filebot.util.ui;
3 |
4 |
5 | import javax.swing.Icon;
6 |
7 |
8 | public interface LabelProvider {
9 |
10 | public String getText(T value);
11 |
12 |
13 | public Icon getIcon(T value);
14 |
15 | }
16 |
--------------------------------------------------------------------------------
/source/net/filebot/util/ui/NullLabelProvider.java:
--------------------------------------------------------------------------------
1 |
2 | package net.filebot.util.ui;
3 |
4 |
5 | import javax.swing.Icon;
6 |
7 |
8 | public class NullLabelProvider implements LabelProvider {
9 |
10 | @Override
11 | public Icon getIcon(T value) {
12 | return null;
13 | }
14 |
15 |
16 | @Override
17 | public String getText(T value) {
18 | return value.toString();
19 | }
20 |
21 | }
22 |
--------------------------------------------------------------------------------
/source/net/filebot/util/ui/notification/NotificationLayout.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Created on 19.03.2005
3 | */
4 |
5 | package net.filebot.util.ui.notification;
6 |
7 | public interface NotificationLayout {
8 |
9 | public void add(NotificationWindow notification);
10 |
11 | public void remove(NotificationWindow notification);
12 |
13 | public int size();
14 |
15 | }
16 |
--------------------------------------------------------------------------------
/source/net/filebot/vfs/FileInfo.java:
--------------------------------------------------------------------------------
1 | package net.filebot.vfs;
2 |
3 | import java.io.File;
4 |
5 | public interface FileInfo {
6 |
7 | public String getPath();
8 |
9 | public String getName();
10 |
11 | public String getType();
12 |
13 | public long getLength();
14 |
15 | public File toFile();
16 |
17 | }
18 |
--------------------------------------------------------------------------------
/source/net/filebot/web/ArtworkProvider.java:
--------------------------------------------------------------------------------
1 | package net.filebot.web;
2 |
3 | import java.util.List;
4 | import java.util.Locale;
5 |
6 | public interface ArtworkProvider {
7 |
8 | List getArtwork(int id, String category, Locale locale) throws Exception;
9 |
10 | }
11 |
--------------------------------------------------------------------------------
/source/net/filebot/web/AudioTrackFormat.java:
--------------------------------------------------------------------------------
1 |
2 | package net.filebot.web;
3 |
4 | import java.text.FieldPosition;
5 | import java.text.Format;
6 | import java.text.ParsePosition;
7 |
8 | public class AudioTrackFormat extends Format {
9 |
10 | @Override
11 | public StringBuffer format(Object obj, StringBuffer sb, FieldPosition pos) {
12 | return sb.append(obj.toString());
13 | }
14 |
15 | @Override
16 | public AudioTrack parseObject(String source, ParsePosition pos) {
17 | String[] s = source.split(" - ", 2);
18 | if (s.length == 2) {
19 | pos.setIndex(source.length());
20 | return new AudioTrack(s[0].trim(), s[1].trim(), "VA", null);
21 | } else {
22 | pos.setErrorIndex(0);
23 | return null;
24 | }
25 | }
26 |
27 | }
28 |
--------------------------------------------------------------------------------
/source/net/filebot/web/Datasource.java:
--------------------------------------------------------------------------------
1 | package net.filebot.web;
2 |
3 | import javax.swing.Icon;
4 |
5 | public interface Datasource {
6 |
7 | String getIdentifier();
8 |
9 | Icon getIcon();
10 |
11 | default String getName() {
12 | return getIdentifier();
13 | }
14 |
15 | }
16 |
--------------------------------------------------------------------------------
/source/net/filebot/web/MovieIdentificationService.java:
--------------------------------------------------------------------------------
1 | package net.filebot.web;
2 |
3 | import java.util.List;
4 | import java.util.Locale;
5 |
6 | public interface MovieIdentificationService extends Datasource {
7 |
8 | List searchMovie(String query, Locale locale) throws Exception;
9 |
10 | Movie getMovieDescriptor(Movie movie, Locale locale) throws Exception;
11 |
12 | }
13 |
--------------------------------------------------------------------------------
/source/net/filebot/web/MusicIdentificationService.java:
--------------------------------------------------------------------------------
1 | package net.filebot.web;
2 |
3 | import java.io.File;
4 | import java.util.Collection;
5 | import java.util.Map;
6 |
7 | public interface MusicIdentificationService extends Datasource {
8 |
9 | Map lookup(Collection files) throws Exception;
10 |
11 | }
12 |
--------------------------------------------------------------------------------
/source/net/filebot/web/SubtitleDescriptor.java:
--------------------------------------------------------------------------------
1 |
2 | package net.filebot.web;
3 |
4 |
5 | import java.nio.ByteBuffer;
6 |
7 | import net.filebot.vfs.FileInfo;
8 |
9 |
10 | public interface SubtitleDescriptor extends FileInfo {
11 |
12 | @Override
13 | String getName();
14 |
15 |
16 | String getLanguageName();
17 |
18 |
19 | @Override
20 | String getType();
21 |
22 |
23 | ByteBuffer fetch() throws Exception;
24 |
25 | }
26 |
--------------------------------------------------------------------------------
/source/net/filebot/web/SubtitleProvider.java:
--------------------------------------------------------------------------------
1 | package net.filebot.web;
2 |
3 | import java.net.URI;
4 | import java.util.List;
5 | import java.util.Locale;
6 |
7 | public interface SubtitleProvider extends Datasource {
8 |
9 | public List search(String query) throws Exception;
10 |
11 | public List guess(String tag) throws Exception;
12 |
13 | public List getSubtitleList(SubtitleSearchResult searchResult, int[][] episodeFilter, Locale locale) throws Exception;
14 |
15 | public URI getSubtitleListLink(SubtitleSearchResult searchResult, Locale locale);
16 |
17 | public URI getLink();
18 |
19 | }
20 |
--------------------------------------------------------------------------------
/test/net/filebot/media/VideoFormatTest.java:
--------------------------------------------------------------------------------
1 | package net.filebot.media;
2 |
3 | import static org.junit.Assert.*;
4 |
5 | import org.junit.Test;
6 |
7 | public class VideoFormatTest {
8 |
9 | VideoFormat vf = new VideoFormat();
10 |
11 | @Test
12 | public void trickyResolutions() {
13 | assertEquals(1080, vf.guessFormat(1920, 1040));
14 | assertEquals(720, vf.guessFormat(1280, 528));
15 | assertEquals(576, vf.guessFormat(748, 574));
16 | }
17 |
18 | }
19 |
--------------------------------------------------------------------------------
/test/net/filebot/similarity/SimilarityTestSuite.java:
--------------------------------------------------------------------------------
1 | package net.filebot.similarity;
2 |
3 | import org.junit.runner.RunWith;
4 | import org.junit.runners.Suite;
5 | import org.junit.runners.Suite.SuiteClasses;
6 |
7 | @RunWith(Suite.class)
8 | @SuiteClasses({ SeriesNameMatcherTest.class, SeasonEpisodeMatcherTest.class, DateMatcherTest.class, NameSimilarityMetricTest.class, NumericSimilarityMetricTest.class, SeasonEpisodeMetricTest.class, SimilarityComparatorTest.class })
9 | public class SimilarityTestSuite {
10 |
11 | }
12 |
--------------------------------------------------------------------------------
/test/net/filebot/subtitle/SubtitleReaderTestSuite.java:
--------------------------------------------------------------------------------
1 |
2 | package net.filebot.subtitle;
3 |
4 | import org.junit.runner.RunWith;
5 | import org.junit.runners.Suite;
6 | import org.junit.runners.Suite.SuiteClasses;
7 |
8 | @RunWith(Suite.class)
9 | @SuiteClasses({ MicroDVDReaderTest.class })
10 | public class SubtitleReaderTestSuite {
11 |
12 | }
13 |
--------------------------------------------------------------------------------
/test/net/filebot/util/StringUtilitiesTest.java:
--------------------------------------------------------------------------------
1 | package net.filebot.util;
2 |
3 | import static org.junit.Assert.*;
4 |
5 | import java.util.List;
6 |
7 | import org.junit.Test;
8 |
9 | public class StringUtilitiesTest {
10 |
11 | @Test
12 | public void matchInteger() {
13 | Integer n = StringUtilities.matchInteger("1091_20150217210000");
14 |
15 | assertEquals("1091", n.toString());
16 | }
17 |
18 | @Test
19 | public void matchIntegers() {
20 | List n = StringUtilities.matchIntegers("1091_20150217210000");
21 |
22 | assertEquals("[1091]", n.toString());
23 | }
24 |
25 | }
26 |
--------------------------------------------------------------------------------
/test/net/filebot/util/UtilTestSuite.java:
--------------------------------------------------------------------------------
1 | package net.filebot.util;
2 |
3 | import org.junit.runner.RunWith;
4 | import org.junit.runners.Suite;
5 | import org.junit.runners.Suite.SuiteClasses;
6 |
7 | @RunWith(Suite.class)
8 | @SuiteClasses({ FileUtilitiesTest.class, ByteBufferOutputStreamTest.class, PreferencesMapTest.class, PreferencesListTest.class, TreeIteratorTest.class, FilterIteratorTest.class, StringUtilitiesTest.class })
9 | public class UtilTestSuite {
10 |
11 | }
12 |
--------------------------------------------------------------------------------
/test/net/filebot/web/SimpleDateTest.java:
--------------------------------------------------------------------------------
1 | package net.filebot.web;
2 |
3 | import static org.junit.Assert.*;
4 |
5 | import org.junit.Test;
6 |
7 | public class SimpleDateTest {
8 |
9 | @Test
10 | public void parse() {
11 | assertEquals("2015-01-01", SimpleDate.parse("2015-1-1").toString());
12 | assertEquals("2015-02-02", SimpleDate.parse("2015-02-02").toString());
13 |
14 | }
15 |
16 | @Test
17 | public void parseIllegalDate() {
18 | // simple date allows illegal values
19 | assertEquals("2015-12-34", SimpleDate.parse("2015-12-34").toString());
20 | }
21 |
22 | }
23 |
--------------------------------------------------------------------------------
/test/net/filebot/web/WebTestSuite.java:
--------------------------------------------------------------------------------
1 | package net.filebot.web;
2 |
3 | import org.junit.runner.RunWith;
4 | import org.junit.runners.Suite;
5 | import org.junit.runners.Suite.SuiteClasses;
6 |
7 | @RunWith(Suite.class)
8 | @SuiteClasses({ SimpleDateTest.class, AnidbClientTest.class, TheTVDBClientTest.class, TVMazeClientTest.class, TMDbClientTest.class, TMDbTVClientTest.class, OMDbClientTest.class, OpenSubtitlesXmlRpcTest.class, AcoustIDClientTest.class })
9 | public class WebTestSuite {
10 |
11 | }
12 |
--------------------------------------------------------------------------------
/website/docs/includes.fileset:
--------------------------------------------------------------------------------
1 | **/MediaBindingBean.java
2 | **/Define.java
3 |
4 | **/ExpressionFormatMethods.java
5 | **/ExpressionFormatFunctions.java
6 |
7 | **/ScriptShellMethods.java
8 | **/ScriptShellBaseClass.java
9 |
10 | **/Episode.java
11 | **/SeriesInfo.java
12 | **/EpisodeInfo.java
13 | **/Movie.java
14 | **/MoviePart.java
15 | **/MovieInfo.java
16 | **/AudioTrack.java
17 | **/Crew.java
18 | **/Person.java
19 | **/Trailer.java
20 | **/SimpleDate.java
21 | **/Language.java
22 |
--------------------------------------------------------------------------------
/website/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/favicon.ico
--------------------------------------------------------------------------------
/website/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/favicon.png
--------------------------------------------------------------------------------
/website/getting-started/embed.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | Getting Started
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/website/getting-started/fullscreen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/fullscreen.png
--------------------------------------------------------------------------------
/website/getting-started/galleria/themes/classic/classic-loader.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/galleria/themes/classic/classic-loader.gif
--------------------------------------------------------------------------------
/website/getting-started/galleria/themes/classic/classic-map.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/galleria/themes/classic/classic-map.png
--------------------------------------------------------------------------------
/website/getting-started/images/cli.screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/images/cli.screenshot.png
--------------------------------------------------------------------------------
/website/getting-started/images/cli.screenshot.thumb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/images/cli.screenshot.thumb.png
--------------------------------------------------------------------------------
/website/getting-started/images/episodes.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/images/episodes.png
--------------------------------------------------------------------------------
/website/getting-started/images/episodes.thumb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/images/episodes.thumb.png
--------------------------------------------------------------------------------
/website/getting-started/images/format.screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/images/format.screenshot.png
--------------------------------------------------------------------------------
/website/getting-started/images/format.screenshot.thumb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/images/format.screenshot.thumb.png
--------------------------------------------------------------------------------
/website/getting-started/images/node.screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/images/node.screenshot.png
--------------------------------------------------------------------------------
/website/getting-started/images/node.screenshot.thumb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/images/node.screenshot.thumb.png
--------------------------------------------------------------------------------
/website/getting-started/images/permissions.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/images/permissions.png
--------------------------------------------------------------------------------
/website/getting-started/images/permissions.thumb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/images/permissions.thumb.png
--------------------------------------------------------------------------------
/website/getting-started/images/rename.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/images/rename.png
--------------------------------------------------------------------------------
/website/getting-started/images/rename.screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/images/rename.screenshot.png
--------------------------------------------------------------------------------
/website/getting-started/images/rename.screenshot.thumb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/images/rename.screenshot.thumb.png
--------------------------------------------------------------------------------
/website/getting-started/images/rename.thumb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/images/rename.thumb.png
--------------------------------------------------------------------------------
/website/getting-started/images/sfv.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/images/sfv.png
--------------------------------------------------------------------------------
/website/getting-started/images/sfv.screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/images/sfv.screenshot.png
--------------------------------------------------------------------------------
/website/getting-started/images/sfv.screenshot.thumb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/images/sfv.screenshot.thumb.png
--------------------------------------------------------------------------------
/website/getting-started/images/sfv.thumb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/images/sfv.thumb.png
--------------------------------------------------------------------------------
/website/getting-started/images/subtitle-hash-lookup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/images/subtitle-hash-lookup.png
--------------------------------------------------------------------------------
/website/getting-started/images/subtitle-hash-lookup.screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/images/subtitle-hash-lookup.screenshot.png
--------------------------------------------------------------------------------
/website/getting-started/images/subtitle-hash-lookup.screenshot.thumb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/images/subtitle-hash-lookup.screenshot.thumb.png
--------------------------------------------------------------------------------
/website/getting-started/images/subtitle-hash-lookup.thumb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/images/subtitle-hash-lookup.thumb.png
--------------------------------------------------------------------------------
/website/getting-started/images/subtitle-search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/images/subtitle-search.png
--------------------------------------------------------------------------------
/website/getting-started/images/subtitle-search.screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/images/subtitle-search.screenshot.png
--------------------------------------------------------------------------------
/website/getting-started/images/subtitle-search.screenshot.thumb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/images/subtitle-search.screenshot.thumb.png
--------------------------------------------------------------------------------
/website/getting-started/images/subtitle-search.thumb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/images/subtitle-search.thumb.png
--------------------------------------------------------------------------------
/website/getting-started/index.css:
--------------------------------------------------------------------------------
1 | body {
2 | margin: 0;
3 | padding: 0;
4 | background: #000;
5 | }
6 |
7 | div.galleria {
8 | width: 100%;
9 | height: 100%;
10 | background: #000;
11 | position: absolute;
12 | top: 0;
13 | bottom: 0;
14 | }
15 |
16 | div.galleria-thumbnails {
17 | margin: auto;
18 | }
19 |
20 | div.galleria-thumbnails-list div.galleria-image {
21 | max-height: 20px;
22 | }
23 |
24 | img.fullscreen {
25 | position: absolute;
26 | top: 5px;
27 | right: 5px;
28 | z-index: 10;
29 | cursor: pointer;
30 | opacity: 0.3
31 | }
32 |
--------------------------------------------------------------------------------
/website/getting-started/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | Getting Started
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/website/getting-started/videos/episodes.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/videos/episodes.mp4
--------------------------------------------------------------------------------
/website/getting-started/videos/rename.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/videos/rename.mp4
--------------------------------------------------------------------------------
/website/getting-started/videos/sfv.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/videos/sfv.mp4
--------------------------------------------------------------------------------
/website/getting-started/videos/subtitle-lookup.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/videos/subtitle-lookup.mp4
--------------------------------------------------------------------------------
/website/getting-started/videos/subtitle-search.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/getting-started/videos/subtitle-search.mp4
--------------------------------------------------------------------------------
/website/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/icon.png
--------------------------------------------------------------------------------
/website/images/apple.logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/images/apple.logo.png
--------------------------------------------------------------------------------
/website/images/asterisk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/images/asterisk.png
--------------------------------------------------------------------------------
/website/images/banner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/images/banner.png
--------------------------------------------------------------------------------
/website/images/contact.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/images/contact.png
--------------------------------------------------------------------------------
/website/images/droparea.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/images/droparea.png
--------------------------------------------------------------------------------
/website/images/filebot-postcard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/images/filebot-postcard.png
--------------------------------------------------------------------------------
/website/images/filebot.logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/images/filebot.logo.png
--------------------------------------------------------------------------------
/website/images/information.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/images/information.png
--------------------------------------------------------------------------------
/website/images/lists.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/images/lists.png
--------------------------------------------------------------------------------
/website/images/microsoft.logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/images/microsoft.logo.png
--------------------------------------------------------------------------------
/website/images/money.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/images/money.png
--------------------------------------------------------------------------------
/website/images/package.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/images/package.png
--------------------------------------------------------------------------------
/website/images/play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/images/play.png
--------------------------------------------------------------------------------
/website/images/plugin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/images/plugin.png
--------------------------------------------------------------------------------
/website/images/script.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/images/script.png
--------------------------------------------------------------------------------
/website/images/starthere.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/images/starthere.png
--------------------------------------------------------------------------------
/website/images/support.donate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/images/support.donate.png
--------------------------------------------------------------------------------
/website/images/thumbs_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/images/thumbs_up.png
--------------------------------------------------------------------------------
/website/images/ubuntu.button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/images/ubuntu.button.png
--------------------------------------------------------------------------------
/website/images/ubuntu.logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/images/ubuntu.logo.png
--------------------------------------------------------------------------------
/website/images/ubuntu.logo.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/website/images/windows.button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/images/windows.button.png
--------------------------------------------------------------------------------
/website/nav-a-bg-h.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/nav-a-bg-h.png
--------------------------------------------------------------------------------
/website/nav-a-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/nav-a-bg.png
--------------------------------------------------------------------------------
/website/privacy.txt:
--------------------------------------------------------------------------------
1 | The FileBot (Desktop Application) Privacy Policy
2 | ------------------------------------------------
3 |
4 | The FileBot (Desktop Application) is does not share any information with remote machines. Network requests to app.filebot.net and 3rd party services do not contain identifiable information. The web services hosted at app.filebot.net do not collect or track requests.
5 |
6 | Requests to 3rd party services are only made when related features (e.g. fetch episode list) are invoked. When accessing 3rd party services (e.g. TheTVDB, TheMovieDB, OpenSubtitles, AcoustID, ...) their respective privacy policies apply.
7 |
8 |
9 | Contacting Us
10 | -------------
11 |
12 | FileBot
13 | support@filebot.net
14 |
15 | Last Edited on 2017-03-01
16 |
--------------------------------------------------------------------------------
/website/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow: /forums/ucp.php
3 | Disallow: /forums/mcp.php
4 | Disallow: /forums/member
5 | Disallow: /forums/memberlist.php
6 | Disallow: /forums/faq.php
7 | Disallow: /forums/adm/
8 |
9 | User-agent: TurnitinBot
10 | Disallow: /
11 |
12 | User-agent: Yandex
13 | Disallow: /
14 |
--------------------------------------------------------------------------------
/website/screenshots/cli.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/screenshots/cli.png
--------------------------------------------------------------------------------
/website/screenshots/format.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/screenshots/format.png
--------------------------------------------------------------------------------
/website/screenshots/rename.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/screenshots/rename.png
--------------------------------------------------------------------------------
/website/screenshots/small/dialog.format.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/screenshots/small/dialog.format.png
--------------------------------------------------------------------------------
/website/screenshots/small/panel.rename.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/screenshots/small/panel.rename.png
--------------------------------------------------------------------------------
/website/screenshots/small/panel.sfv.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/screenshots/small/panel.sfv.png
--------------------------------------------------------------------------------
/website/screenshots/small/panel.subtitle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/screenshots/small/panel.subtitle.png
--------------------------------------------------------------------------------
/website/syno/acoustid-thumbnail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/syno/acoustid-thumbnail.png
--------------------------------------------------------------------------------
/website/syno/filebot-node-snapshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/syno/filebot-node-snapshot.png
--------------------------------------------------------------------------------
/website/syno/filebot-node-thumbnail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/syno/filebot-node-thumbnail.png
--------------------------------------------------------------------------------
/website/syno/filebot-snapshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/syno/filebot-snapshot.png
--------------------------------------------------------------------------------
/website/syno/filebot-thumbnail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/syno/filebot-thumbnail.png
--------------------------------------------------------------------------------
/website/syno/mediainfo-thumbnail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/syno/mediainfo-thumbnail.png
--------------------------------------------------------------------------------
/website/syno/package-center-snapshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Phoenix09/filebot/905f44a852b7986c8e475569f902bdb776fc0e46/website/syno/package-center-snapshot.png
--------------------------------------------------------------------------------
/website/update.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | FileBot 4.7.9
4 | 4984
5 | New updates available
6 |
7 | FileBot 4.7.9
8 | This release features:
9 | + Presets for photo renaming
10 | + New bindings
11 | + Minor improvements and bugfixes
12 | ]]>
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------