* add groovy engine version info
This commit is contained in:
parent
beacccdeeb
commit
9264278a58
|
@ -3,16 +3,6 @@
|
||||||
// FileBot 2.62 (r993)
|
// FileBot 2.62 (r993)
|
||||||
println net.sourceforge.filebot.Settings.applicationIdentifier
|
println net.sourceforge.filebot.Settings.applicationIdentifier
|
||||||
|
|
||||||
// chromaprint-tools
|
|
||||||
try {
|
|
||||||
print 'chromaprint-tools: '
|
|
||||||
def fpcalc = System.getProperty('net.sourceforge.filebot.AcoustID.fpcalc', 'fpcalc')
|
|
||||||
def version = [fpcalc, '-version'].execute().text.trim() ?: 'fpcalc -version failed'
|
|
||||||
println "$version ($fpcalc)"
|
|
||||||
} catch(Throwable error) {
|
|
||||||
println error
|
|
||||||
}
|
|
||||||
|
|
||||||
// JNA Native: 3.5.0
|
// JNA Native: 3.5.0
|
||||||
try {
|
try {
|
||||||
print 'JNA Native: '
|
print 'JNA Native: '
|
||||||
|
@ -38,6 +28,16 @@ try {
|
||||||
println error
|
println error
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// chromaprint-tools
|
||||||
|
try {
|
||||||
|
print 'chromaprint-tools: '
|
||||||
|
def fpcalc = System.getProperty('net.sourceforge.filebot.AcoustID.fpcalc', 'fpcalc')
|
||||||
|
def version = [fpcalc, '-version'].execute().text.trim() ?: 'fpcalc -version failed'
|
||||||
|
println "$version ($fpcalc)"
|
||||||
|
} catch(Throwable error) {
|
||||||
|
println error
|
||||||
|
}
|
||||||
|
|
||||||
// Extended File Attributes
|
// Extended File Attributes
|
||||||
try {
|
try {
|
||||||
print 'Extended Attributes: '
|
print 'Extended Attributes: '
|
||||||
|
@ -70,6 +70,9 @@ try {
|
||||||
println error
|
println error
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Groovy Engine: 2.1.7
|
||||||
|
println 'Groovy Engine: ' + groovy.lang.GroovySystem.version
|
||||||
|
|
||||||
// Java(TM) SE Runtime Environment 1.6.0_30 (headless)
|
// Java(TM) SE Runtime Environment 1.6.0_30 (headless)
|
||||||
println net.sourceforge.filebot.Settings.javaRuntimeIdentifier
|
println net.sourceforge.filebot.Settings.javaRuntimeIdentifier
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue