import org.gradle.plugins.ide.eclipse.model.Output
import org.gradle.plugins.ide.eclipse.model.Library
import java.security.MessageDigest
-
import groovy.transform.ExternalizeMethods
+import groovy.util.XmlParser
+import groovy.xml.XmlUtil
buildscript {
dependencies {
id 'application'
id 'eclipse'
id 'com.github.johnrengelman.shadow' version '4.0.3'
- id 'com.install4j.gradle' version '7.0.9'
+ id 'com.install4j.gradle' version '8.0.2'
id 'com.dorongold.task-tree' version '1.4' // only needed to display task dependency tree with gradle task1 [task2 ...] taskTree
}
} else {
println("HEADLESS BUILD")
}
-
+
J2S_ENABLED = (project.hasProperty('j2s.compiler.status') && project['j2s.compiler.status'] != null && project['j2s.compiler.status'] == "enable")
if (J2S_ENABLED) {
println("J2S ENABLED")
}
-
+
/* *-/
System.properties.sort { it.key }.each {
key, val -> println("SYSTEM PROPERTY ${key}='${val}'")
getdownDir = string("")
reportRsyncCmd = false
buildDist = true
- buildProperties = string("${resourceDir}/${build_properties_file}")
+ buildProperties = build_properties_file
getdownLauncher = string("${jalviewDir}/${getdown_lib_dir}/${getdown_launcher}")
switch (CHANNEL) {
getdown_channel_name = string("${bamboo_planKey}/${JAVA_VERSION}")
getdown_app_base = string("${bamboo_channelbase}/${bamboo_planKey}${bamboo_getdown_channel_suffix}/${JAVA_VERSION}")
getdown_app_dir = getdown_app_dir_alt
- buildProperties = string("${resourceDir}/${build_properties_file}")
+ buildProperties = string("${classesDir}/${build_properties_file}")
break
case "RELEASE":
getdownDir = string("${getdown_channel_name}/${JAVA_VERSION}")
getdown_app_base = string("${getdown_channel_base}/${getdownDir}")
getdown_app_dir = getdown_app_dir_release
- buildProperties = string("${resourceDir}/${build_properties_file}")
+ buildProperties = string("${classesDir}/${build_properties_file}")
reportRsyncCommand = true
break
exit
} else {
packageDir = string("${ARCHIVEDIR}/${packageDir}")
- buildProperties = string("${ARCHIVEDIR}/${resource_dir}/${build_properties_file}")
+ buildProperties = string("${ARCHIVEDIR}/${classes_dir}/${build_properties_file}")
buildDist = false
}
reportRsyncCommand = true
exit
} else {
packageDir = string("${ARCHIVEDIR}/${packageDir}")
- buildProperties = string("${ARCHIVEDIR}/${resource_dir}/${build_properties_file}")
+ buildProperties = string("${ARCHIVEDIR}/${classes_dir}/${build_properties_file}")
buildDist = false
}
reportRsyncCommand = true
getdownDir = string("${getdown_channel_name}/${JAVA_VERSION}")
getdown_app_base = string("${getdown_channel_base}/${getdownDir}")
getdown_app_dir = getdown_app_dir_alt
- buildProperties = string("${resourceDir}/${build_properties_file}")
+ buildProperties = string("${classesDir}/${build_properties_file}")
reportRsyncCommand = true
break
getdownDir = string("${getdown_channel_name}/${JAVA_VERSION}")
getdown_app_base = string("${getdown_channel_base}/${getdownDir}")
getdown_app_dir = getdown_app_dir_alt
- buildProperties = string("${resourceDir}/${build_properties_file}")
+ buildProperties = string("${classesDir}/${build_properties_file}")
reportRsyncCommand = true
break
getdownDir = string("${getdown_channel_name}/${JAVA_VERSION}")
getdown_app_base = string("${getdown_channel_base}/${getdownDir}")
getdown_app_dir = getdown_app_dir_alt
- buildProperties = string("${resourceDir}/${build_properties_file}")
+ buildProperties = string("${classesDir}/${build_properties_file}")
reportRsyncCommand = true
break
case "LOCAL":
getdown_app_base = file(getdownWebsiteDir).toURI().toString()
getdown_app_dir = getdown_app_dir_alt
- buildProperties = string("${resourceDir}/${build_properties_file}")
+ buildProperties = string("${classesDir}/${build_properties_file}")
getdownLauncher = string("${jalviewDir}/${getdown_lib_dir}/${getdown_launcher_local}")
break
// for install4j
+ JAVA_MIN_VERSION = JAVA_VERSION
+ JAVA_MAX_VERSION = JAVA_VERSION
macosJavaVMDir = string("${System.env.HOME}/buildtools/jre/openjdk-java_vm/getdown/macos-jre${JAVA_VERSION}/jre")
macosJavaVMTgz = string("${System.env.HOME}/buildtools/jre/openjdk-java_vm/install4j/tgz/macos-jre${JAVA_VERSION}.tar.gz")
windowsJavaVMDir = string("${System.env.HOME}/buildtools/jre/openjdk-java_vm/getdown/windows-jre${JAVA_VERSION}/jre")
windowsJavaVMTgz = string("${System.env.HOME}/buildtools/jre/openjdk-java_vm/install4j/tgz/windows-jre${JAVA_VERSION}.tar.gz")
- install4jDir = string("${jalviewDir}/${install4jResourceDir}")
- install4jConfFileName = string("jalview-installers-java${JAVA_VERSION}.install4j")
- install4jConfFile = string("${install4jDir}/${install4jConfFileName}")
+ install4jDir = string("${jalviewDir}/${install4j_utils_dir}")
+ install4jConfFileName = string("jalview-install4j-conf.install4j")
+ install4jConfFile = file("${install4jDir}/${install4jConfFileName}")
+ install4jHomeDir = install4j_home_dir
+ if (install4jHomeDir.startsWith("~/")) {
+ install4jHomeDir = System.getProperty("user.home") + install4jHomeDir.substring(1)
+ }
+
buildingHTML = string("${jalviewDir}/${docDir}/building.html")
helpFile = string("${classesDir}/${help_dir}/help.jhm")
helpParentDir = string("${jalviewDir}/${help_parent_dir}")
- helpDir = string("${help_dir}")
- helpSourceDir = string("${helpParentDir}/${helpDir}")
+ helpSourceDir = string("${helpParentDir}/${help_dir}")
relativeBuildDir = file(jalviewDirAbsolutePath).toPath().relativize(buildDir.toPath())
resources {
srcDirs resourceDir
+ srcDirs += helpParentDir
}
jar.destinationDir = file("${jalviewDir}/${packageDir}")
compileClasspath = files(sourceSets.main.java.outputDir)
+ //compileClasspath += files(sourceSets.main.resources.srcDirs)
compileClasspath += fileTree(dir: "${jalviewDir}/${libDir}", include: ["*.jar"])
runtimeClasspath = compileClasspath
}
cp.entries.removeAll(removeTheseToo)
- cp.entries += new Output("${eclipse_bin_dir}/main")
- if (file(helpSourceDir).isDirectory()) {
- cp.entries += new Library(fileReference(helpSourceDir))
+ //cp.entries += new Output("${eclipse_bin_dir}/main")
+ if (file(helpParentDir).isDirectory()) {
+ cp.entries += new Library(fileReference(helpParentDir))
}
if (file(resourceDir).isDirectory()) {
cp.entries += new Library(fileReference(resourceDir))
HashMap<String, Boolean> alreadyAddedLibPath = new HashMap<>();
- sourceSets.main.compileClasspath.findAll { it.name.endsWith(".jar") }.each {
+ sourceSets.main.compileClasspath.findAll { it.name.endsWith(".jar") }.any {
//don't want to add outputDir as eclipse is using its own output dir in bin/main
if (it.isDirectory() || ! it.exists()) {
// don't add dirs to classpath, especially if they don't exist
}
}
- //fileTree(dir: "$jalviewDir/$utilsDir", include: ["test*/*.jar"]).each {
sourceSets.test.compileClasspath.findAll { it.name.endsWith(".jar") }.any {
//no longer want to add outputDir as eclipse is using its own output dir in bin/main
if (it.isDirectory() || ! it.exists()) {
task createBuildProperties(type: WriteProperties) {
- group = "build"
- description = "Create the ${buildProperties} file"
dependsOn setGitVals
inputs.dir(sourceDir)
inputs.dir(resourceDir)
}
-clean {
- doFirst {
- delete buildProperties
- }
-}
-
-
task cleanBuildingHTML(type: Delete) {
doFirst {
delete buildingHTML
task copyHelp(type: Copy) {
def inputDir = helpSourceDir
- def outputDir = "${classesDir}/${helpDir}"
+ def outputDir = "${classesDir}/${help_dir}"
from(inputDir) {
exclude '**/*.gif'
exclude '**/*.jpg'
task syncResources(type: Sync) {
- dependsOn createBuildProperties
from resourceDir
include "**/*.*"
into "${classesDir}"
dependsOn copyHelp
classpath = sourceSets.main.compileClasspath
main = "com.sun.java.help.search.Indexer"
- workingDir = "${classesDir}/${helpDir}"
+ workingDir = "${classesDir}/${help_dir}"
def argDir = "html"
args = [ argDir ]
inputs.dir("${workingDir}/${argDir}")
classpath = files("${jalviewDir}/${utilsDir}")
main = "HelpLinksChecker"
workingDir = jalviewDir
- def help = "${classesDir}/${helpDir}"
- args = [ "${classesDir}/${helpDir}", "-nointernet" ]
+ args = [ "${classesDir}/${help_dir}", "-nointernet" ]
def outFOS = new FileOutputStream(helpLinksCheckerOutFile, false) // false == don't append
def errFOS = outFOS
outFOS,
errorOutput)
- inputs.dir("${classesDir}/${helpDir}")
+ inputs.dir("${classesDir}/${help_dir}")
outputs.file(helpLinksCheckerOutFile)
}
// import the pubhtmlhelp target
ant.properties.basedir = "${jalviewDir}"
-ant.properties.helpBuildDir = "${jalviewDirAbsolutePath}/${classes_dir}/${helpDir}"
+ant.properties.helpBuildDir = "${jalviewDirAbsolutePath}/${classes_dir}/${help_dir}"
ant.importBuild "${utilsDir}/publishHelp.xml"
}
}
-
jar {
dependsOn linkCheck
dependsOn buildIndices
install4j {
- def install4jHomeDir = "/opt/install4j"
- def hostname = "hostname".execute().text.trim()
- if (hostname.equals("jv-bamboo")) {
- install4jHomeDir = System.getProperty("user.home")+"/buildtools/install4j"
- } else if (OperatingSystem.current().isMacOsX()) {
- install4jHomeDir = '/Applications/install4j.app/Contents/Resources/app'
- if (! file(install4jHomeDir).exists()) {
- install4jHomeDir = System.getProperty("user.home")+install4jHomeDir
- }
- } else if (OperatingSystem.current().isLinux()) {
+ if (file(install4jHomeDir).exists()) {
+ // good to go!
+ } else if (file(System.getProperty("user.home")+"/buildtools/install4j").exists()) {
install4jHomeDir = System.getProperty("user.home")+"/buildtools/install4j"
+ } else if (file("/Applications/install4j.app/Contents/Resources/app").exists()) {
+ install4jHomeDir = "/Applications/install4j.app/Contents/Resources/app"
}
- installDir = file(install4jHomeDir)
- mediaTypes = Arrays.asList(install4jMediaTypes.split(","))
- if (install4jFaster.equals("true")) {
- faster = true
- }
+ installDir(file(install4jHomeDir))
+
+ mediaTypes = Arrays.asList(install4j_media_types.split(","))
}
-task copyInstall4jTemplate(type: Copy) {
- from (install4jDir) {
- include install4jTemplate
- rename (install4jTemplate, install4jConfFileName)
- filter(ReplaceTokens,
- beginToken: '',
- endToken: '',
- tokens: [
- '9999999999': JAVA_VERSION
- ]
- )
- filter(ReplaceTokens,
- beginToken: '$$',
- endToken: '$$',
- tokens: [
- 'JAVA_VERSION': JAVA_VERSION,
- 'JAVA_INTEGER_VERSION': JAVA_INTEGER_VERSION,
- 'VERSION': JALVIEW_VERSION,
- 'MACOS_JAVA_VM_DIR': macosJavaVMDir,
- 'MACOS_JAVA_VM_TGZ': macosJavaVMTgz,
- 'WINDOWS_JAVA_VM_DIR': windowsJavaVMDir,
- 'WINDOWS_JAVA_VM_TGZ': windowsJavaVMTgz,
- 'INSTALL4JINFOPLISTFILEASSOCIATIONS': install4jInfoPlistFileAssociations,
- 'COPYRIGHT_MESSAGE': install4jCopyrightMessage,
- 'MACOS_BUNDLE_ID': install4jMacOSBundleId,
- 'GETDOWN_RESOURCE_DIR': getdown_resource_dir,
- 'GETDOWN_DIST_DIR': getdown_app_dir,
- 'GETDOWN_ALT_DIR': getdown_app_dir_alt,
- 'GETDOWN_INSTALL_DIR': getdown_install_dir
- ]
- )
- if (OSX_KEYPASS == "") {
- filter(ReplaceTokens,
- beginToken: 'codeSigning macEnabled="',
- endToken: '"',
- tokens: [
- 'true': 'codeSigning macEnabled="false"'
- ]
- )
- filter(ReplaceTokens,
- beginToken: 'runPostProcessor="true" ',
- endToken: 'Processor',
- tokens: [
- 'post': 'runPostProcessor="false" postProcessor'
- ]
- )
- }
- }
- into install4jDir
- outputs.files(install4jConfFile)
+task copyInstall4jTemplate {
+ def install4jTemplateFile = file("${install4jDir}/${install4j_template}")
+ def install4jFileAssociationsFile = file("${install4jDir}/${install4j_installer_file_associations}")
+ inputs.file(install4jTemplateFile)
+ inputs.file(install4jFileAssociationsFile)
+ outputs.file(install4jConfFile)
doLast {
- // include file associations in installer
- def installerFileAssociationsXml = file("${install4jDir}/${install4jInstallerFileAssociations}").text
- ant.replaceregexp(
- byline: false,
- flags: "s",
- match: '<action name="EXTENSIONS_REPLACED_BY_GRADLE".*?</action>',
- replace: installerFileAssociationsXml,
- file: install4jConfFile
- )
- /*
- // include uninstaller applescript app files in dmg
- def installerDMGUninstallerXml = file("$install4jDir/$install4jDMGUninstallerAppFiles").text
- ant.replaceregexp(
- byline: false,
- flags: "s",
- match: '<file name="UNINSTALL_OLD_JALVIEW_APP_REPLACED_IN_GRADLE" file=.*?>',
- replace: installerDMGUninstallerXml,
- file: install4jConfFile
- )
- */
+ def install4jConfigXml = new XmlParser().parse(install4jTemplateFile)
+
+ // turn off code signing if no OSX_KEYPASS
+ if (OSX_KEYPASS == "") {
+ install4jConfigXml.'**'.codeSigning.each { codeSigning ->
+ codeSigning.'@macEnabled' = "false"
+ }
+ install4jConfigXml.'**'.windows.each { windows ->
+ windows.'@runPostProcessor' = "false"
+ }
+ }
+
+ // put file association actions where placeholder action is
+ def install4jFileAssociationsText = install4jFileAssociationsFile.text
+ def fileAssociationActions = new XmlParser().parseText("<actions>${install4jFileAssociationsText}</actions>")
+ install4jConfigXml.'**'.action.any { a ->
+ if (a.'@name' == 'EXTENSIONS_REPLACED_BY_GRADLE') {
+ def parent = a.parent()
+ parent.remove(a)
+ fileAssociationActions.each { faa ->
+ parent.append(faa)
+ }
+ // don't need to continue in .any loop once replacements have been made
+ return true
+ }
+ }
+
+ // write install4j file
+ install4jConfFile.text = XmlUtil.serialize(install4jConfigXml)
}
}
task installers(type: com.install4j.gradle.Install4jTask) {
group = "distribution"
description = "Create the install4j installers"
+ dependsOn setGitVals
dependsOn getdown
dependsOn copyInstall4jTemplate
- projectFile = file(install4jConfFile)
- variables = [majorVersion: version.substring(2, 11), build: 001, OSX_KEYSTORE: OSX_KEYSTORE, JSIGN_SH: JSIGN_SH]
- destination = "${jalviewDir}/${install4jBuildDir}/${JAVA_VERSION}"
+
+ projectFile = install4jConfFile
+
+ // create an md5 for the input files to use as version for install4j conf file
+ def digest = MessageDigest.getInstance("MD5")
+ digest.update(
+ (file("${install4jDir}/${install4j_template}").text +
+ file("${install4jDir}/${install4j_info_plist_file_associations}").text +
+ file("${install4jDir}/${install4j_installer_file_associations}").text).bytes)
+ def filesMd5 = new BigInteger(1, digest.digest()).toString(16)
+ if (filesMd5.length() >= 8) {
+ filesMd5 = filesMd5.substring(0,8)
+ }
+ def install4jTemplateVersion = "${JALVIEW_VERSION}_F${filesMd5}_C${gitHash}"
+
+ variables = [
+ 'OSX_KEYSTORE': OSX_KEYSTORE,
+ 'JSIGN_SH': JSIGN_SH,
+ 'JRE_DIR': getdown_app_dir_java,
+ 'INSTALLER_TEMPLATE_VERSION': install4jTemplateVersion,
+ 'JALVIEW_VERSION': JALVIEW_VERSION,
+ 'JAVA_MIN_VERSION': JAVA_MIN_VERSION,
+ 'JAVA_MAX_VERSION': JAVA_MAX_VERSION,
+ 'JAVA_VERSION': JAVA_VERSION,
+ 'JAVA_INTEGER_VERSION': JAVA_INTEGER_VERSION,
+ 'VERSION': JALVIEW_VERSION,
+ 'MACOS_JAVA_VM_DIR': macosJavaVMDir,
+ 'MACOS_JAVA_VM_TGZ': macosJavaVMTgz,
+ 'WINDOWS_JAVA_VM_DIR': windowsJavaVMDir,
+ 'WINDOWS_JAVA_VM_TGZ': windowsJavaVMTgz,
+ 'COPYRIGHT_MESSAGE': install4j_copyright_message,
+ 'MACOS_BUNDLE_ID': install4j_macOS_bundle_id,
+ 'GETDOWN_RESOURCE_DIR': getdown_resource_dir,
+ 'GETDOWN_DIST_DIR': getdown_app_dir,
+ 'GETDOWN_ALT_DIR': getdown_app_dir_alt,
+ 'GETDOWN_INSTALL_DIR': getdown_install_dir,
+ 'INFO_PLIST_FILE_ASSOCIATIONS_FILE': install4j_info_plist_file_associations,
+ ]
+
+ destination = "${jalviewDir}/${install4j_build_dir}/${JAVA_VERSION}"
buildSelected = true
+ if (install4j_faster.equals("true") || CHANNEL.startsWith("DEVELOP") || CHANNEL.startsWith("LOCAL")) {
+ // this doesn't seem to work
+ faster = true
+ disableSigning = true
+ }
+
if (OSX_KEYPASS) {
- macKeystorePassword=OSX_KEYPASS
+ macKeystorePassword = OSX_KEYPASS
}
doFirst {
inputs.dir(getdownWebsiteDir)
inputs.file(install4jConfFile)
+ inputs.file("${install4jDir}/${install4j_info_plist_file_associations}")
inputs.dir(macosJavaVMDir)
inputs.dir(windowsJavaVMDir)
- outputs.dir("${jalviewDir}/${install4jBuildDir}/${JAVA_VERSION}")
+ outputs.dir("${jalviewDir}/${install4j_build_dir}/${JAVA_VERSION}")
}
-task sourceDist (type: Tar) {
+task sourceDist(type: Tar) {
def VERSION_UNDERSCORES = JALVIEW_VERSION.replaceAll("\\.", "_")
def outputFileName = "${project.name}_${VERSION_UNDERSCORES}.tar.gz"
}
-task helppages {
+task helppages {
dependsOn copyHelp
dependsOn pubhtmlhelp
- inputs.dir("${classesDir}/${helpDir}")
- outputs.dir("${buildDir}/distributions/${helpDir}")
+ inputs.dir("${classesDir}/${help_dir}")
+ outputs.dir("${buildDir}/distributions/${help_dir}")
}
+
+
+// JALVIEWJS STUFF HERE
+
task j2sSetHeadlessBuild {
doFirst {
IN_ECLIPSE = false
getdown_txt_title = Jalview
getdown_txt_allow_offline = true
getdown_txt_max_concurrent_downloads = 10
-getdown_txt_jalview.jvmmempc = 90
+# now got better defaults when not set
+#getdown_txt_jalview.jvmmempc = 90
+# now got better defaults when not set
+#getdown_txt_jalview.jvmmemmax = 32G
getdown_txt_multi_jvmarg = -Dgetdownappdir=%APPDIR%
getdown_txt_strict_comments = true
getdown_txt_title = Jalview
getdown_txt_ui.status = 20, 380, 600, 58
getdown_txt_ui.status_text = 000066
#getdown_txt_ui.text_shadow = FFFFFF
-getdown_txt_ui.install_error = http://www.jalview.org/faq/getdownerror
+getdown_txt_ui.install_error = https://www.jalview.org/faq/getdownerror
getdown_txt_ui.mac_dock_icon = resources/images/jalview_logos.ico
getdown_alt_java8_min_version = 01080000
getdown_alt_java8_max_version = 01089999
Mac_JRE11 = OpenJDK11-jre_x64_mac_hotspot_11_28/jdk-11+28-jre/Contents/Home
Linux_JRE11 = OpenJDK11-jre_x64_linux_hotspot_11_28/jdk-11+28-jre
-j8libDir = j8lib
-j11libDir = j11lib
j11modDir = j11mod
j11modules = com.sun.istack.runtime,com.sun.xml.bind,com.sun.xml.fastinfoset,com.sun.xml.streambuffer,com.sun.xml.txw2,com.sun.xml.ws.policy,java.activation,java.annotation,java.base,java.compiler,java.datatransfer,java.desktop,java.logging,java.management,java.management.rmi,java.naming,java.prefs,java.rmi,java.scripting,java.security.sasl,java.sql,java.xml,java.xml.bind,java.xml.soap,java.xml.ws,javax.jws,jdk.httpserver,jdk.jsobject,jdk.unsupported,jdk.xml.dom,org.jvnet.mimepull,org.jvnet.staxex,javax.servlet.api,java.ws.rs
-install4jCopyrightMessage = ...
-install4jMacOSBundleId = org.jalview.jalview-desktop
-install4jResourceDir = utils/install4j
-install4jTemplate = install4j_template.install4j
-install4jInfoPlistFileAssociations = file_associations_auto-Info_plist.xml
-install4jInstallerFileAssociations = file_associations_auto-install4j.xml
-install4jDMGUninstallerAppFiles = uninstall_old_jalview_files.xml
-install4jBuildDir = build/install4j
-install4jMediaTypes = windows,macosArchive,linuxRPM,linuxDeb,unixArchive,unixInstaller
-install4jFaster = false
+install4j_home_dir = ~/buildtools/install4j8
+install4j_copyright_message = ...
+install4j_macOS_bundle_id = org.jalview.jalview-desktop
+install4j_utils_dir = utils/install4j
+install4j_template = install4j8_template.install4j
+install4j_info_plist_file_associations = file_associations_auto-Info_plist.xml
+install4j_installer_file_associations = file_associations_auto-install4j8.xml
+#install4j_DMG_uninstaller_app_files = uninstall_old_jalview_files.xml
+install4j_build_dir = build/install4j
+install4j_media_types = windows,macosArchive,linuxRPM,linuxDeb,unixArchive,unixInstaller
+install4j_faster = false
OSX_KEYSTORE =
OSX_KEYPASS =
dev = false
CHANNEL=LOCAL
-getdown_channel_base = http://www.jalview.org/getdown
+getdown_channel_base = https://www.jalview.org/getdown
getdown_channel_name = SCRATCH-DEFAULT
getdown_app_dir_release = release
getdown_app_dir_alt = alt
+getdown_app_dir_java = jre
getdown_install_dir = install
getdown_rsync_dest = /Volumes/jalview/docroot/getdown
reportRsyncCommand =
<string>jvl</string>
</array>
<key>CFBundleTypeName</key>
-<string>Jalview Version Locator File</string>
+<string>Jalview Launch File</string>
<key>CFBundleTypeIconFile</key>
-<string>Jalview-Version-Locator.icns</string>
+<string>Jalview-Launch.icns</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleTypeMIMETypes</key>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
-<string>amsa</string>
+<string>cif</string>
</array>
<key>CFBundleTypeName</key>
-<string>AMSA File</string>
+<string>mmCIF File</string>
<key>CFBundleTypeIconFile</key>
<string>Jalview-File.icns</string>
<key>CFBundleTypeRole</key>
-<string>Editor</string>
+<string>Viewer</string>
<key>CFBundleTypeMIMETypes</key>
<array>
-<string>text/x-amsa</string>
+<string>chemical/x-cif</string>
</array>
<key>LSIsAppleDefaultForType</key>
-<true/>
+<false/>
</dict>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
-<string>annotations</string>
-<string>jvannotations</string>
+<string>mcif</string>
+<string>mmcif</string>
</array>
<key>CFBundleTypeName</key>
-<string>Jalview Annotations File</string>
+<string>mmCIF File</string>
<key>CFBundleTypeIconFile</key>
<string>Jalview-File.icns</string>
<key>CFBundleTypeRole</key>
-<string>Editor</string>
+<string>Viewer</string>
<key>CFBundleTypeMIMETypes</key>
<array>
-<string>application/x-jalview-annotations+text</string>
+<string>chemical/x-mcif</string>
</array>
<key>LSIsAppleDefaultForType</key>
-<true/>
+<false/>
</dict>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
-<string>biojson</string>
+<string>pdb</string>
+<string>ent</string>
</array>
<key>CFBundleTypeName</key>
-<string>BioJSON File</string>
+<string>PDB File</string>
<key>CFBundleTypeIconFile</key>
<string>Jalview-File.icns</string>
<key>CFBundleTypeRole</key>
-<string>Editor</string>
+<string>Viewer</string>
<key>CFBundleTypeMIMETypes</key>
<array>
-<string>application/x-jalview-biojson+json</string>
+<string>chemical/x-pdb</string>
</array>
<key>LSIsAppleDefaultForType</key>
-<true/>
+<false/>
</dict>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
-<string>BLC</string>
-<string>blc</string>
+<string>amsa</string>
</array>
<key>CFBundleTypeName</key>
-<string>BLC File</string>
+<string>AMSA File</string>
<key>CFBundleTypeIconFile</key>
<string>Jalview-File.icns</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleTypeMIMETypes</key>
<array>
-<string>text/x-blc</string>
+<string>application/x-amsa+txt</string>
</array>
<key>LSIsAppleDefaultForType</key>
<true/>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
-<string>aln</string>
+<string>annotations</string>
+<string>jvannotations</string>
</array>
<key>CFBundleTypeName</key>
-<string>Clustal File</string>
+<string>Jalview Annotations File</string>
<key>CFBundleTypeIconFile</key>
<string>Jalview-File.icns</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleTypeMIMETypes</key>
<array>
-<string>text/x-clustal</string>
+<string>application/x-jalview-annotations+text</string>
</array>
<key>LSIsAppleDefaultForType</key>
<true/>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
-<string>fa</string>
-<string>fasta</string>
+<string>biojson</string>
</array>
<key>CFBundleTypeName</key>
-<string>Fasta File</string>
+<string>BioJSON File</string>
<key>CFBundleTypeIconFile</key>
<string>Jalview-File.icns</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleTypeMIMETypes</key>
<array>
-<string>text/x-fasta</string>
+<string>application/x-jalview-biojson+json</string>
</array>
<key>LSIsAppleDefaultForType</key>
<true/>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
-<string>features</string>
-<string>jvfeatures</string>
+<string>blc</string>
</array>
<key>CFBundleTypeName</key>
-<string>Jalview Features File</string>
+<string>BLC File</string>
<key>CFBundleTypeIconFile</key>
<string>Jalview-File.icns</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleTypeMIMETypes</key>
<array>
-<string>application/x-jalview-features+text</string>
+<string>application/x-blc+txt</string>
</array>
<key>LSIsAppleDefaultForType</key>
<true/>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
-<string>gff2</string>
+<string>aln</string>
</array>
<key>CFBundleTypeName</key>
-<string>Generic Features Format v2 File</string>
+<string>Clustal File</string>
<key>CFBundleTypeIconFile</key>
<string>Jalview-File.icns</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleTypeMIMETypes</key>
<array>
-<string>text/x-gff2</string>
+<string>application/x-clustal+txt</string>
</array>
<key>LSIsAppleDefaultForType</key>
<true/>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
-<string>gff3</string>
+<string>fa</string>
+<string>fasta</string>
</array>
<key>CFBundleTypeName</key>
-<string>Generic Features Format v3 File</string>
+<string>Fasta File</string>
<key>CFBundleTypeIconFile</key>
<string>Jalview-File.icns</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleTypeMIMETypes</key>
<array>
-<string>text/x-gff3</string>
+<string>application/x-fasta+txt</string>
</array>
<key>LSIsAppleDefaultForType</key>
<true/>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
-<string>concise</string>
-<string>jnet</string>
+<string>features</string>
+<string>jvfeatures</string>
</array>
<key>CFBundleTypeName</key>
-<string>JnetFile File</string>
+<string>Jalview Features File</string>
<key>CFBundleTypeIconFile</key>
<string>Jalview-File.icns</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleTypeMIMETypes</key>
<array>
-<string>application/x-jalview-jnet+text</string>
+<string>application/x-jalview-features+text</string>
</array>
<key>LSIsAppleDefaultForType</key>
<true/>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
-<string>cif</string>
+<string>gff2</string>
</array>
<key>CFBundleTypeName</key>
-<string>mmCIF File</string>
+<string>Generic Features Format v2 File</string>
<key>CFBundleTypeIconFile</key>
<string>Jalview-File.icns</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleTypeMIMETypes</key>
<array>
-<string>chemical/x-cif</string>
+<string>application/x-gff2+txt</string>
</array>
<key>LSIsAppleDefaultForType</key>
<true/>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
-<string>mcif</string>
-<string>mmcif</string>
+<string>gff3</string>
</array>
<key>CFBundleTypeName</key>
-<string>mmCIF File</string>
+<string>Generic Features Format v3 File</string>
<key>CFBundleTypeIconFile</key>
<string>Jalview-File.icns</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleTypeMIMETypes</key>
<array>
-<string>chemical/x-mcif</string>
+<string>application/x-gff3+txt</string>
</array>
<key>LSIsAppleDefaultForType</key>
<true/>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
-<string>msf</string>
+<string>concise</string>
+<string>jnet</string>
</array>
<key>CFBundleTypeName</key>
-<string>MSF File</string>
+<string>JnetFile File</string>
<key>CFBundleTypeIconFile</key>
<string>Jalview-File.icns</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleTypeMIMETypes</key>
<array>
-<string>text/x-msf</string>
+<string>application/x-jalview-jnet+text</string>
</array>
<key>LSIsAppleDefaultForType</key>
<true/>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
-<string>pdb</string>
-<string>ent</string>
+<string>msf</string>
</array>
<key>CFBundleTypeName</key>
-<string>PDB File</string>
+<string>MSF File</string>
<key>CFBundleTypeIconFile</key>
<string>Jalview-File.icns</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleTypeMIMETypes</key>
<array>
-<string>chemical/x-pdb</string>
+<string>application/x-msf+txt</string>
</array>
<key>LSIsAppleDefaultForType</key>
<true/>
<string>Editor</string>
<key>CFBundleTypeMIMETypes</key>
<array>
-<string>text/x-pfam</string>
+<string>application/x-pfam+txt</string>
</array>
<key>LSIsAppleDefaultForType</key>
<true/>
<string>Editor</string>
<key>CFBundleTypeMIMETypes</key>
<array>
-<string>text/x-phylip</string>
+<string>application/x-phylip+txt</string>
</array>
<key>LSIsAppleDefaultForType</key>
<true/>
<string>Editor</string>
<key>CFBundleTypeMIMETypes</key>
<array>
-<string>text/x-pileup</string>
+<string>application/x-pileup+txt</string>
</array>
<key>LSIsAppleDefaultForType</key>
<true/>
<string>Editor</string>
<key>CFBundleTypeMIMETypes</key>
<array>
-<string>text/x-pir</string>
+<string>application/x-pir+txt</string>
</array>
<key>LSIsAppleDefaultForType</key>
<true/>
<string>Editor</string>
<key>CFBundleTypeMIMETypes</key>
<array>
-<string>text/x-stockholm</string>
+<string>application/x-stockholm+txt</string>
</array>
<key>LSIsAppleDefaultForType</key>
<true/>
--- /dev/null
+<!-- Jalview (.jvp) BEGIN -->
+ <action name="Jalview (.jvp) message" id="10000" customizedId="Jalview-jvp-10000-message" beanClass="com.install4j.runtime.beans.actions.control.SetMessageAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="detailMessage" type="string">Jalview (.jvp)</property>
+ <property name="statusMessage" type="string">Creating file associations...</property>
+ <property name="useDetail" type="boolean" value="true" />
+ <property name="useStatus" type="boolean" value="true" />
+ </serializedBean>
+ </action>
+
+ <action name="Jalview (.jvp) progress bar 0" id="10001" customizedId="Jalview-jvp-10001-progressbar" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="percentValue" type="int" value="0" />
+ </serializedBean>
+ </action>
+
+ <action name="Jalview (.jvp) file association" id="10002" customizedId="Jalview-jvp-10002-fileassociation" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" actionElevationType="elevated" rollbackBarrierExitCode="0" errorMessage="Could not make .jvp file association">
+ <serializedBean>
+ <property name="description" type="string">Jalview File</property>
+ <property name="extension" type="string">jvp</property>
+ <property name="launcherId" type="string">737</property>
+ <property name="selected" type="boolean" value="true" />
+ <property name="macIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.icns</string>
+ </object>
+ </property>
+ <!--<property name="macMimeType" type="string">application/x-jalview+xml+zip</property>-->
+ <property name="macRole" type="enum" class="com.install4j.runtime.beans.actions.desktop.MacAssociationRole" value="EDITOR" />
+ <property name="restartFinder" type="boolean" value="true" />
+ <property name="unix" type="boolean" value="true" />
+ <property name="unixIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.png</string>
+ </object>
+ </property>
+ <property name="unixMimeType" type="string">application/x-jalview+xml+zip</property>
+ <property name="windowsIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.ico</string>
+ </object>
+ </property>
+ </serializedBean>
+ </action>
+<!-- END -->
+
+<!-- Jalview Launch (.jvl) BEGIN -->
+ <action name="Jalview Launch (.jvl) message" id="10003" customizedId="Jalview Launch-jvl-10003-message" beanClass="com.install4j.runtime.beans.actions.control.SetMessageAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="detailMessage" type="string">Jalview Launch (.jvl)</property>
+ <property name="statusMessage" type="string">Creating file associations...</property>
+ <property name="useDetail" type="boolean" value="true" />
+ <property name="useStatus" type="boolean" value="true" />
+ </serializedBean>
+ </action>
+
+ <action name="Jalview Launch (.jvl) progress bar 4" id="10004" customizedId="Jalview Launch-jvl-10004-progressbar" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="percentValue" type="int" value="4" />
+ </serializedBean>
+ </action>
+
+ <action name="Jalview Launch (.jvl) file association" id="10005" customizedId="Jalview Launch-jvl-10005-fileassociation" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" actionElevationType="elevated" rollbackBarrierExitCode="0" errorMessage="Could not make .jvl file association">
+ <serializedBean>
+ <property name="description" type="string">Jalview Launch File</property>
+ <property name="extension" type="string">jvl</property>
+ <property name="launcherId" type="string">737</property>
+ <property name="selected" type="boolean" value="true" />
+ <property name="macIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-Launch.icns</string>
+ </object>
+ </property>
+ <!--<property name="macMimeType" type="string">application/x-jalview-jvl+text</property>-->
+ <property name="macRole" type="enum" class="com.install4j.runtime.beans.actions.desktop.MacAssociationRole" value="EDITOR" />
+ <property name="restartFinder" type="boolean" value="true" />
+ <property name="unix" type="boolean" value="true" />
+ <property name="unixIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-Launch.png</string>
+ </object>
+ </property>
+ <property name="unixMimeType" type="string">application/x-jalview-jvl+text</property>
+ <property name="windowsIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-Launch.ico</string>
+ </object>
+ </property>
+ </serializedBean>
+ </action>
+<!-- END -->
+
+<!-- mmCIF (.cif) BEGIN -->
+ <action name="mmCIF (.cif) message" id="10006" customizedId="mmCIF-cif-10006-message" beanClass="com.install4j.runtime.beans.actions.control.SetMessageAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="detailMessage" type="string">mmCIF (.cif)</property>
+ <property name="statusMessage" type="string">Creating file associations...</property>
+ <property name="useDetail" type="boolean" value="true" />
+ <property name="useStatus" type="boolean" value="true" />
+ </serializedBean>
+ </action>
+
+ <action name="mmCIF (.cif) progress bar 8" id="10007" customizedId="mmCIF-cif-10007-progressbar" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="percentValue" type="int" value="8" />
+ </serializedBean>
+ </action>
+
+ <action name="mmCIF (.cif) file association" id="10008" customizedId="mmCIF-cif-10008-fileassociation" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" actionElevationType="elevated" rollbackBarrierExitCode="0" errorMessage="Could not make .cif file association">
+ <serializedBean>
+ <property name="description" type="string">mmCIF File</property>
+ <property name="extension" type="string">cif</property>
+ <property name="launcherId" type="string">737</property>
+ <property name="selected" type="boolean" value="false" />
+ <property name="macIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.icns</string>
+ </object>
+ </property>
+ <!--<property name="macMimeType" type="string">chemical/x-cif</property>-->
+ <property name="macRole" type="enum" class="com.install4j.runtime.beans.actions.desktop.MacAssociationRole" value="EDITOR" />
+ <property name="restartFinder" type="boolean" value="true" />
+ <property name="unix" type="boolean" value="true" />
+ <property name="unixIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.png</string>
+ </object>
+ </property>
+ <property name="unixMimeType" type="string">chemical/x-cif</property>
+ <property name="windowsIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.ico</string>
+ </object>
+ </property>
+ </serializedBean>
+ </action>
+<!-- END -->
+
+<!-- mmCIF (.mcif, .mmcif) BEGIN -->
+ <action name="mmCIF (.mcif, .mmcif) message" id="10009" customizedId="mmCIF-mcif,mmcif-10009-message" beanClass="com.install4j.runtime.beans.actions.control.SetMessageAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="detailMessage" type="string">mmCIF (.mcif, .mmcif)</property>
+ <property name="statusMessage" type="string">Creating file associations...</property>
+ <property name="useDetail" type="boolean" value="true" />
+ <property name="useStatus" type="boolean" value="true" />
+ </serializedBean>
+ </action>
+
+ <action name="mmCIF (.mcif, .mmcif) progress bar 13" id="10010" customizedId="mmCIF-mcif,mmcif-10010-progressbar" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="percentValue" type="int" value="13" />
+ </serializedBean>
+ </action>
+
+ <action name="mmCIF (.mcif, .mmcif) file association" id="10011" customizedId="mmCIF-mcif,mmcif-10011-fileassociation" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" actionElevationType="elevated" rollbackBarrierExitCode="0" errorMessage="Could not make .mcif,mmcif file association">
+ <serializedBean>
+ <property name="description" type="string">mmCIF File</property>
+ <property name="extension" type="string">mcif,mmcif</property>
+ <property name="launcherId" type="string">737</property>
+ <property name="selected" type="boolean" value="false" />
+ <property name="macIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.icns</string>
+ </object>
+ </property>
+ <!--<property name="macMimeType" type="string">chemical/x-mcif</property>-->
+ <property name="macRole" type="enum" class="com.install4j.runtime.beans.actions.desktop.MacAssociationRole" value="EDITOR" />
+ <property name="restartFinder" type="boolean" value="true" />
+ <property name="unix" type="boolean" value="true" />
+ <property name="unixIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.png</string>
+ </object>
+ </property>
+ <property name="unixMimeType" type="string">chemical/x-mcif</property>
+ <property name="windowsIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.ico</string>
+ </object>
+ </property>
+ </serializedBean>
+ </action>
+<!-- END -->
+
+<!-- PDB (.ent, .pdb) BEGIN -->
+ <action name="PDB (.ent, .pdb) message" id="10012" customizedId="PDB-ent,pdb-10012-message" beanClass="com.install4j.runtime.beans.actions.control.SetMessageAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="detailMessage" type="string">PDB (.ent, .pdb)</property>
+ <property name="statusMessage" type="string">Creating file associations...</property>
+ <property name="useDetail" type="boolean" value="true" />
+ <property name="useStatus" type="boolean" value="true" />
+ </serializedBean>
+ </action>
+
+ <action name="PDB (.ent, .pdb) progress bar 17" id="10013" customizedId="PDB-ent,pdb-10013-progressbar" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="percentValue" type="int" value="17" />
+ </serializedBean>
+ </action>
+
+ <action name="PDB (.ent, .pdb) file association" id="10014" customizedId="PDB-ent,pdb-10014-fileassociation" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" actionElevationType="elevated" rollbackBarrierExitCode="0" errorMessage="Could not make .ent,pdb file association">
+ <serializedBean>
+ <property name="description" type="string">PDB File</property>
+ <property name="extension" type="string">ent,pdb</property>
+ <property name="launcherId" type="string">737</property>
+ <property name="selected" type="boolean" value="false" />
+ <property name="macIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.icns</string>
+ </object>
+ </property>
+ <!--<property name="macMimeType" type="string">chemical/x-pdb</property>-->
+ <property name="macRole" type="enum" class="com.install4j.runtime.beans.actions.desktop.MacAssociationRole" value="EDITOR" />
+ <property name="restartFinder" type="boolean" value="true" />
+ <property name="unix" type="boolean" value="true" />
+ <property name="unixIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.png</string>
+ </object>
+ </property>
+ <property name="unixMimeType" type="string">chemical/x-pdb</property>
+ <property name="windowsIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.ico</string>
+ </object>
+ </property>
+ </serializedBean>
+ </action>
+<!-- END -->
+
+<!-- AMSA (.amsa) BEGIN -->
+ <action name="AMSA (.amsa) message" id="10015" customizedId="AMSA-amsa-10015-message" beanClass="com.install4j.runtime.beans.actions.control.SetMessageAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="detailMessage" type="string">AMSA (.amsa)</property>
+ <property name="statusMessage" type="string">Creating file associations...</property>
+ <property name="useDetail" type="boolean" value="true" />
+ <property name="useStatus" type="boolean" value="true" />
+ </serializedBean>
+ </action>
+
+ <action name="AMSA (.amsa) progress bar 21" id="10016" customizedId="AMSA-amsa-10016-progressbar" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="percentValue" type="int" value="21" />
+ </serializedBean>
+ </action>
+
+ <action name="AMSA (.amsa) file association" id="10017" customizedId="AMSA-amsa-10017-fileassociation" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" actionElevationType="elevated" rollbackBarrierExitCode="0" errorMessage="Could not make .amsa file association">
+ <serializedBean>
+ <property name="description" type="string">AMSA File</property>
+ <property name="extension" type="string">amsa</property>
+ <property name="launcherId" type="string">737</property>
+ <property name="selected" type="boolean" value="true" />
+ <property name="macIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.icns</string>
+ </object>
+ </property>
+ <!--<property name="macMimeType" type="string">application/x-amsa+txt</property>-->
+ <property name="macRole" type="enum" class="com.install4j.runtime.beans.actions.desktop.MacAssociationRole" value="EDITOR" />
+ <property name="restartFinder" type="boolean" value="true" />
+ <property name="unix" type="boolean" value="true" />
+ <property name="unixIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.png</string>
+ </object>
+ </property>
+ <property name="unixMimeType" type="string">application/x-amsa+txt</property>
+ <property name="windowsIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.ico</string>
+ </object>
+ </property>
+ </serializedBean>
+ </action>
+<!-- END -->
+
+<!-- Jalview Annotations (.annotations, .jvannotations) BEGIN -->
+ <action name="Jalview Annotations (.annotations, .jvannotations) message" id="10018" customizedId="Jalview Annotations-annotations,jvannotations-10018-message" beanClass="com.install4j.runtime.beans.actions.control.SetMessageAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="detailMessage" type="string">Jalview Annotations (.annotations, .jvannotations)</property>
+ <property name="statusMessage" type="string">Creating file associations...</property>
+ <property name="useDetail" type="boolean" value="true" />
+ <property name="useStatus" type="boolean" value="true" />
+ </serializedBean>
+ </action>
+
+ <action name="Jalview Annotations (.annotations, .jvannotations) progress bar 26" id="10019" customizedId="Jalview Annotations-annotations,jvannotations-10019-progressbar" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="percentValue" type="int" value="26" />
+ </serializedBean>
+ </action>
+
+ <action name="Jalview Annotations (.annotations, .jvannotations) file association" id="10020" customizedId="Jalview Annotations-annotations,jvannotations-10020-fileassociation" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" actionElevationType="elevated" rollbackBarrierExitCode="0" errorMessage="Could not make .annotations,jvannotations file association">
+ <serializedBean>
+ <property name="description" type="string">Jalview Annotations File</property>
+ <property name="extension" type="string">annotations,jvannotations</property>
+ <property name="launcherId" type="string">737</property>
+ <property name="selected" type="boolean" value="true" />
+ <property name="macIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.icns</string>
+ </object>
+ </property>
+ <!--<property name="macMimeType" type="string">application/x-jalview-annotations+text</property>-->
+ <property name="macRole" type="enum" class="com.install4j.runtime.beans.actions.desktop.MacAssociationRole" value="EDITOR" />
+ <property name="restartFinder" type="boolean" value="true" />
+ <property name="unix" type="boolean" value="true" />
+ <property name="unixIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.png</string>
+ </object>
+ </property>
+ <property name="unixMimeType" type="string">application/x-jalview-annotations+text</property>
+ <property name="windowsIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.ico</string>
+ </object>
+ </property>
+ </serializedBean>
+ </action>
+<!-- END -->
+
+<!-- BioJSON (.biojson) BEGIN -->
+ <action name="BioJSON (.biojson) message" id="10021" customizedId="BioJSON-biojson-10021-message" beanClass="com.install4j.runtime.beans.actions.control.SetMessageAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="detailMessage" type="string">BioJSON (.biojson)</property>
+ <property name="statusMessage" type="string">Creating file associations...</property>
+ <property name="useDetail" type="boolean" value="true" />
+ <property name="useStatus" type="boolean" value="true" />
+ </serializedBean>
+ </action>
+
+ <action name="BioJSON (.biojson) progress bar 30" id="10022" customizedId="BioJSON-biojson-10022-progressbar" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="percentValue" type="int" value="30" />
+ </serializedBean>
+ </action>
+
+ <action name="BioJSON (.biojson) file association" id="10023" customizedId="BioJSON-biojson-10023-fileassociation" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" actionElevationType="elevated" rollbackBarrierExitCode="0" errorMessage="Could not make .biojson file association">
+ <serializedBean>
+ <property name="description" type="string">BioJSON File</property>
+ <property name="extension" type="string">biojson</property>
+ <property name="launcherId" type="string">737</property>
+ <property name="selected" type="boolean" value="true" />
+ <property name="macIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.icns</string>
+ </object>
+ </property>
+ <!--<property name="macMimeType" type="string">application/x-jalview-biojson+json</property>-->
+ <property name="macRole" type="enum" class="com.install4j.runtime.beans.actions.desktop.MacAssociationRole" value="EDITOR" />
+ <property name="restartFinder" type="boolean" value="true" />
+ <property name="unix" type="boolean" value="true" />
+ <property name="unixIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.png</string>
+ </object>
+ </property>
+ <property name="unixMimeType" type="string">application/x-jalview-biojson+json</property>
+ <property name="windowsIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.ico</string>
+ </object>
+ </property>
+ </serializedBean>
+ </action>
+<!-- END -->
+
+<!-- BLC (.blc) BEGIN -->
+ <action name="BLC (.blc) message" id="10024" customizedId="BLC-blc-10024-message" beanClass="com.install4j.runtime.beans.actions.control.SetMessageAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="detailMessage" type="string">BLC (.blc)</property>
+ <property name="statusMessage" type="string">Creating file associations...</property>
+ <property name="useDetail" type="boolean" value="true" />
+ <property name="useStatus" type="boolean" value="true" />
+ </serializedBean>
+ </action>
+
+ <action name="BLC (.blc) progress bar 34" id="10025" customizedId="BLC-blc-10025-progressbar" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="percentValue" type="int" value="34" />
+ </serializedBean>
+ </action>
+
+ <action name="BLC (.blc) file association" id="10026" customizedId="BLC-blc-10026-fileassociation" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" actionElevationType="elevated" rollbackBarrierExitCode="0" errorMessage="Could not make .blc file association">
+ <serializedBean>
+ <property name="description" type="string">BLC File</property>
+ <property name="extension" type="string">blc</property>
+ <property name="launcherId" type="string">737</property>
+ <property name="selected" type="boolean" value="true" />
+ <property name="macIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.icns</string>
+ </object>
+ </property>
+ <!--<property name="macMimeType" type="string">application/x-blc+txt</property>-->
+ <property name="macRole" type="enum" class="com.install4j.runtime.beans.actions.desktop.MacAssociationRole" value="EDITOR" />
+ <property name="restartFinder" type="boolean" value="true" />
+ <property name="unix" type="boolean" value="true" />
+ <property name="unixIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.png</string>
+ </object>
+ </property>
+ <property name="unixMimeType" type="string">application/x-blc+txt</property>
+ <property name="windowsIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.ico</string>
+ </object>
+ </property>
+ </serializedBean>
+ </action>
+<!-- END -->
+
+<!-- Clustal (.aln) BEGIN -->
+ <action name="Clustal (.aln) message" id="10027" customizedId="Clustal-aln-10027-message" beanClass="com.install4j.runtime.beans.actions.control.SetMessageAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="detailMessage" type="string">Clustal (.aln)</property>
+ <property name="statusMessage" type="string">Creating file associations...</property>
+ <property name="useDetail" type="boolean" value="true" />
+ <property name="useStatus" type="boolean" value="true" />
+ </serializedBean>
+ </action>
+
+ <action name="Clustal (.aln) progress bar 39" id="10028" customizedId="Clustal-aln-10028-progressbar" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="percentValue" type="int" value="39" />
+ </serializedBean>
+ </action>
+
+ <action name="Clustal (.aln) file association" id="10029" customizedId="Clustal-aln-10029-fileassociation" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" actionElevationType="elevated" rollbackBarrierExitCode="0" errorMessage="Could not make .aln file association">
+ <serializedBean>
+ <property name="description" type="string">Clustal File</property>
+ <property name="extension" type="string">aln</property>
+ <property name="launcherId" type="string">737</property>
+ <property name="selected" type="boolean" value="true" />
+ <property name="macIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.icns</string>
+ </object>
+ </property>
+ <!--<property name="macMimeType" type="string">application/x-clustal+txt</property>-->
+ <property name="macRole" type="enum" class="com.install4j.runtime.beans.actions.desktop.MacAssociationRole" value="EDITOR" />
+ <property name="restartFinder" type="boolean" value="true" />
+ <property name="unix" type="boolean" value="true" />
+ <property name="unixIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.png</string>
+ </object>
+ </property>
+ <property name="unixMimeType" type="string">application/x-clustal+txt</property>
+ <property name="windowsIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.ico</string>
+ </object>
+ </property>
+ </serializedBean>
+ </action>
+<!-- END -->
+
+<!-- Fasta (.fa, .fasta) BEGIN -->
+ <action name="Fasta (.fa, .fasta) message" id="10030" customizedId="Fasta-fa,fasta-10030-message" beanClass="com.install4j.runtime.beans.actions.control.SetMessageAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="detailMessage" type="string">Fasta (.fa, .fasta)</property>
+ <property name="statusMessage" type="string">Creating file associations...</property>
+ <property name="useDetail" type="boolean" value="true" />
+ <property name="useStatus" type="boolean" value="true" />
+ </serializedBean>
+ </action>
+
+ <action name="Fasta (.fa, .fasta) progress bar 43" id="10031" customizedId="Fasta-fa,fasta-10031-progressbar" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="percentValue" type="int" value="43" />
+ </serializedBean>
+ </action>
+
+ <action name="Fasta (.fa, .fasta) file association" id="10032" customizedId="Fasta-fa,fasta-10032-fileassociation" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" actionElevationType="elevated" rollbackBarrierExitCode="0" errorMessage="Could not make .fa,fasta file association">
+ <serializedBean>
+ <property name="description" type="string">Fasta File</property>
+ <property name="extension" type="string">fa,fasta</property>
+ <property name="launcherId" type="string">737</property>
+ <property name="selected" type="boolean" value="true" />
+ <property name="macIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.icns</string>
+ </object>
+ </property>
+ <!--<property name="macMimeType" type="string">application/x-fasta+txt</property>-->
+ <property name="macRole" type="enum" class="com.install4j.runtime.beans.actions.desktop.MacAssociationRole" value="EDITOR" />
+ <property name="restartFinder" type="boolean" value="true" />
+ <property name="unix" type="boolean" value="true" />
+ <property name="unixIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.png</string>
+ </object>
+ </property>
+ <property name="unixMimeType" type="string">application/x-fasta+txt</property>
+ <property name="windowsIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.ico</string>
+ </object>
+ </property>
+ </serializedBean>
+ </action>
+<!-- END -->
+
+<!-- Jalview Features (.features, .jvfeatures) BEGIN -->
+ <action name="Jalview Features (.features, .jvfeatures) message" id="10033" customizedId="Jalview Features-features,jvfeatures-10033-message" beanClass="com.install4j.runtime.beans.actions.control.SetMessageAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="detailMessage" type="string">Jalview Features (.features, .jvfeatures)</property>
+ <property name="statusMessage" type="string">Creating file associations...</property>
+ <property name="useDetail" type="boolean" value="true" />
+ <property name="useStatus" type="boolean" value="true" />
+ </serializedBean>
+ </action>
+
+ <action name="Jalview Features (.features, .jvfeatures) progress bar 47" id="10034" customizedId="Jalview Features-features,jvfeatures-10034-progressbar" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="percentValue" type="int" value="47" />
+ </serializedBean>
+ </action>
+
+ <action name="Jalview Features (.features, .jvfeatures) file association" id="10035" customizedId="Jalview Features-features,jvfeatures-10035-fileassociation" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" actionElevationType="elevated" rollbackBarrierExitCode="0" errorMessage="Could not make .features,jvfeatures file association">
+ <serializedBean>
+ <property name="description" type="string">Jalview Features File</property>
+ <property name="extension" type="string">features,jvfeatures</property>
+ <property name="launcherId" type="string">737</property>
+ <property name="selected" type="boolean" value="true" />
+ <property name="macIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.icns</string>
+ </object>
+ </property>
+ <!--<property name="macMimeType" type="string">application/x-jalview-features+text</property>-->
+ <property name="macRole" type="enum" class="com.install4j.runtime.beans.actions.desktop.MacAssociationRole" value="EDITOR" />
+ <property name="restartFinder" type="boolean" value="true" />
+ <property name="unix" type="boolean" value="true" />
+ <property name="unixIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.png</string>
+ </object>
+ </property>
+ <property name="unixMimeType" type="string">application/x-jalview-features+text</property>
+ <property name="windowsIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.ico</string>
+ </object>
+ </property>
+ </serializedBean>
+ </action>
+<!-- END -->
+
+<!-- Generic Features Format v2 (.gff2) BEGIN -->
+ <action name="Generic Features Format v2 (.gff2) message" id="10036" customizedId="Generic Features Format v2-gff2-10036-message" beanClass="com.install4j.runtime.beans.actions.control.SetMessageAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="detailMessage" type="string">Generic Features Format v2 (.gff2)</property>
+ <property name="statusMessage" type="string">Creating file associations...</property>
+ <property name="useDetail" type="boolean" value="true" />
+ <property name="useStatus" type="boolean" value="true" />
+ </serializedBean>
+ </action>
+
+ <action name="Generic Features Format v2 (.gff2) progress bar 52" id="10037" customizedId="Generic Features Format v2-gff2-10037-progressbar" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="percentValue" type="int" value="52" />
+ </serializedBean>
+ </action>
+
+ <action name="Generic Features Format v2 (.gff2) file association" id="10038" customizedId="Generic Features Format v2-gff2-10038-fileassociation" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" actionElevationType="elevated" rollbackBarrierExitCode="0" errorMessage="Could not make .gff2 file association">
+ <serializedBean>
+ <property name="description" type="string">Generic Features Format v2 File</property>
+ <property name="extension" type="string">gff2</property>
+ <property name="launcherId" type="string">737</property>
+ <property name="selected" type="boolean" value="true" />
+ <property name="macIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.icns</string>
+ </object>
+ </property>
+ <!--<property name="macMimeType" type="string">application/x-gff2+txt</property>-->
+ <property name="macRole" type="enum" class="com.install4j.runtime.beans.actions.desktop.MacAssociationRole" value="EDITOR" />
+ <property name="restartFinder" type="boolean" value="true" />
+ <property name="unix" type="boolean" value="true" />
+ <property name="unixIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.png</string>
+ </object>
+ </property>
+ <property name="unixMimeType" type="string">application/x-gff2+txt</property>
+ <property name="windowsIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.ico</string>
+ </object>
+ </property>
+ </serializedBean>
+ </action>
+<!-- END -->
+
+<!-- Generic Features Format v3 (.gff3) BEGIN -->
+ <action name="Generic Features Format v3 (.gff3) message" id="10039" customizedId="Generic Features Format v3-gff3-10039-message" beanClass="com.install4j.runtime.beans.actions.control.SetMessageAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="detailMessage" type="string">Generic Features Format v3 (.gff3)</property>
+ <property name="statusMessage" type="string">Creating file associations...</property>
+ <property name="useDetail" type="boolean" value="true" />
+ <property name="useStatus" type="boolean" value="true" />
+ </serializedBean>
+ </action>
+
+ <action name="Generic Features Format v3 (.gff3) progress bar 56" id="10040" customizedId="Generic Features Format v3-gff3-10040-progressbar" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="percentValue" type="int" value="56" />
+ </serializedBean>
+ </action>
+
+ <action name="Generic Features Format v3 (.gff3) file association" id="10041" customizedId="Generic Features Format v3-gff3-10041-fileassociation" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" actionElevationType="elevated" rollbackBarrierExitCode="0" errorMessage="Could not make .gff3 file association">
+ <serializedBean>
+ <property name="description" type="string">Generic Features Format v3 File</property>
+ <property name="extension" type="string">gff3</property>
+ <property name="launcherId" type="string">737</property>
+ <property name="selected" type="boolean" value="true" />
+ <property name="macIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.icns</string>
+ </object>
+ </property>
+ <!--<property name="macMimeType" type="string">application/x-gff3+txt</property>-->
+ <property name="macRole" type="enum" class="com.install4j.runtime.beans.actions.desktop.MacAssociationRole" value="EDITOR" />
+ <property name="restartFinder" type="boolean" value="true" />
+ <property name="unix" type="boolean" value="true" />
+ <property name="unixIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.png</string>
+ </object>
+ </property>
+ <property name="unixMimeType" type="string">application/x-gff3+txt</property>
+ <property name="windowsIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.ico</string>
+ </object>
+ </property>
+ </serializedBean>
+ </action>
+<!-- END -->
+
+<!-- JnetFile (.concise, .jnet) BEGIN -->
+ <action name="JnetFile (.concise, .jnet) message" id="10042" customizedId="JnetFile-concise,jnet-10042-message" beanClass="com.install4j.runtime.beans.actions.control.SetMessageAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="detailMessage" type="string">JnetFile (.concise, .jnet)</property>
+ <property name="statusMessage" type="string">Creating file associations...</property>
+ <property name="useDetail" type="boolean" value="true" />
+ <property name="useStatus" type="boolean" value="true" />
+ </serializedBean>
+ </action>
+
+ <action name="JnetFile (.concise, .jnet) progress bar 60" id="10043" customizedId="JnetFile-concise,jnet-10043-progressbar" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="percentValue" type="int" value="60" />
+ </serializedBean>
+ </action>
+
+ <action name="JnetFile (.concise, .jnet) file association" id="10044" customizedId="JnetFile-concise,jnet-10044-fileassociation" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" actionElevationType="elevated" rollbackBarrierExitCode="0" errorMessage="Could not make .concise,jnet file association">
+ <serializedBean>
+ <property name="description" type="string">JnetFile File</property>
+ <property name="extension" type="string">concise,jnet</property>
+ <property name="launcherId" type="string">737</property>
+ <property name="selected" type="boolean" value="true" />
+ <property name="macIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.icns</string>
+ </object>
+ </property>
+ <!--<property name="macMimeType" type="string">application/x-jalview-jnet+text</property>-->
+ <property name="macRole" type="enum" class="com.install4j.runtime.beans.actions.desktop.MacAssociationRole" value="EDITOR" />
+ <property name="restartFinder" type="boolean" value="true" />
+ <property name="unix" type="boolean" value="true" />
+ <property name="unixIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.png</string>
+ </object>
+ </property>
+ <property name="unixMimeType" type="string">application/x-jalview-jnet+text</property>
+ <property name="windowsIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.ico</string>
+ </object>
+ </property>
+ </serializedBean>
+ </action>
+<!-- END -->
+
+<!-- MSF (.msf) BEGIN -->
+ <action name="MSF (.msf) message" id="10045" customizedId="MSF-msf-10045-message" beanClass="com.install4j.runtime.beans.actions.control.SetMessageAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="detailMessage" type="string">MSF (.msf)</property>
+ <property name="statusMessage" type="string">Creating file associations...</property>
+ <property name="useDetail" type="boolean" value="true" />
+ <property name="useStatus" type="boolean" value="true" />
+ </serializedBean>
+ </action>
+
+ <action name="MSF (.msf) progress bar 65" id="10046" customizedId="MSF-msf-10046-progressbar" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="percentValue" type="int" value="65" />
+ </serializedBean>
+ </action>
+
+ <action name="MSF (.msf) file association" id="10047" customizedId="MSF-msf-10047-fileassociation" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" actionElevationType="elevated" rollbackBarrierExitCode="0" errorMessage="Could not make .msf file association">
+ <serializedBean>
+ <property name="description" type="string">MSF File</property>
+ <property name="extension" type="string">msf</property>
+ <property name="launcherId" type="string">737</property>
+ <property name="selected" type="boolean" value="true" />
+ <property name="macIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.icns</string>
+ </object>
+ </property>
+ <!--<property name="macMimeType" type="string">application/x-msf+txt</property>-->
+ <property name="macRole" type="enum" class="com.install4j.runtime.beans.actions.desktop.MacAssociationRole" value="EDITOR" />
+ <property name="restartFinder" type="boolean" value="true" />
+ <property name="unix" type="boolean" value="true" />
+ <property name="unixIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.png</string>
+ </object>
+ </property>
+ <property name="unixMimeType" type="string">application/x-msf+txt</property>
+ <property name="windowsIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.ico</string>
+ </object>
+ </property>
+ </serializedBean>
+ </action>
+<!-- END -->
+
+<!-- PFAM (.pfam) BEGIN -->
+ <action name="PFAM (.pfam) message" id="10048" customizedId="PFAM-pfam-10048-message" beanClass="com.install4j.runtime.beans.actions.control.SetMessageAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="detailMessage" type="string">PFAM (.pfam)</property>
+ <property name="statusMessage" type="string">Creating file associations...</property>
+ <property name="useDetail" type="boolean" value="true" />
+ <property name="useStatus" type="boolean" value="true" />
+ </serializedBean>
+ </action>
+
+ <action name="PFAM (.pfam) progress bar 69" id="10049" customizedId="PFAM-pfam-10049-progressbar" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="percentValue" type="int" value="69" />
+ </serializedBean>
+ </action>
+
+ <action name="PFAM (.pfam) file association" id="10050" customizedId="PFAM-pfam-10050-fileassociation" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" actionElevationType="elevated" rollbackBarrierExitCode="0" errorMessage="Could not make .pfam file association">
+ <serializedBean>
+ <property name="description" type="string">PFAM File</property>
+ <property name="extension" type="string">pfam</property>
+ <property name="launcherId" type="string">737</property>
+ <property name="selected" type="boolean" value="true" />
+ <property name="macIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.icns</string>
+ </object>
+ </property>
+ <!--<property name="macMimeType" type="string">application/x-pfam+txt</property>-->
+ <property name="macRole" type="enum" class="com.install4j.runtime.beans.actions.desktop.MacAssociationRole" value="EDITOR" />
+ <property name="restartFinder" type="boolean" value="true" />
+ <property name="unix" type="boolean" value="true" />
+ <property name="unixIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.png</string>
+ </object>
+ </property>
+ <property name="unixMimeType" type="string">application/x-pfam+txt</property>
+ <property name="windowsIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.ico</string>
+ </object>
+ </property>
+ </serializedBean>
+ </action>
+<!-- END -->
+
+<!-- PHYLIP (.phy) BEGIN -->
+ <action name="PHYLIP (.phy) message" id="10051" customizedId="PHYLIP-phy-10051-message" beanClass="com.install4j.runtime.beans.actions.control.SetMessageAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="detailMessage" type="string">PHYLIP (.phy)</property>
+ <property name="statusMessage" type="string">Creating file associations...</property>
+ <property name="useDetail" type="boolean" value="true" />
+ <property name="useStatus" type="boolean" value="true" />
+ </serializedBean>
+ </action>
+
+ <action name="PHYLIP (.phy) progress bar 73" id="10052" customizedId="PHYLIP-phy-10052-progressbar" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="percentValue" type="int" value="73" />
+ </serializedBean>
+ </action>
+
+ <action name="PHYLIP (.phy) file association" id="10053" customizedId="PHYLIP-phy-10053-fileassociation" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" actionElevationType="elevated" rollbackBarrierExitCode="0" errorMessage="Could not make .phy file association">
+ <serializedBean>
+ <property name="description" type="string">PHYLIP File</property>
+ <property name="extension" type="string">phy</property>
+ <property name="launcherId" type="string">737</property>
+ <property name="selected" type="boolean" value="true" />
+ <property name="macIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.icns</string>
+ </object>
+ </property>
+ <!--<property name="macMimeType" type="string">application/x-phylip+txt</property>-->
+ <property name="macRole" type="enum" class="com.install4j.runtime.beans.actions.desktop.MacAssociationRole" value="EDITOR" />
+ <property name="restartFinder" type="boolean" value="true" />
+ <property name="unix" type="boolean" value="true" />
+ <property name="unixIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.png</string>
+ </object>
+ </property>
+ <property name="unixMimeType" type="string">application/x-phylip+txt</property>
+ <property name="windowsIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.ico</string>
+ </object>
+ </property>
+ </serializedBean>
+ </action>
+<!-- END -->
+
+<!-- PileUp (.pileup) BEGIN -->
+ <action name="PileUp (.pileup) message" id="10054" customizedId="PileUp-pileup-10054-message" beanClass="com.install4j.runtime.beans.actions.control.SetMessageAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="detailMessage" type="string">PileUp (.pileup)</property>
+ <property name="statusMessage" type="string">Creating file associations...</property>
+ <property name="useDetail" type="boolean" value="true" />
+ <property name="useStatus" type="boolean" value="true" />
+ </serializedBean>
+ </action>
+
+ <action name="PileUp (.pileup) progress bar 78" id="10055" customizedId="PileUp-pileup-10055-progressbar" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="percentValue" type="int" value="78" />
+ </serializedBean>
+ </action>
+
+ <action name="PileUp (.pileup) file association" id="10056" customizedId="PileUp-pileup-10056-fileassociation" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" actionElevationType="elevated" rollbackBarrierExitCode="0" errorMessage="Could not make .pileup file association">
+ <serializedBean>
+ <property name="description" type="string">PileUp File</property>
+ <property name="extension" type="string">pileup</property>
+ <property name="launcherId" type="string">737</property>
+ <property name="selected" type="boolean" value="true" />
+ <property name="macIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.icns</string>
+ </object>
+ </property>
+ <!--<property name="macMimeType" type="string">application/x-pileup+txt</property>-->
+ <property name="macRole" type="enum" class="com.install4j.runtime.beans.actions.desktop.MacAssociationRole" value="EDITOR" />
+ <property name="restartFinder" type="boolean" value="true" />
+ <property name="unix" type="boolean" value="true" />
+ <property name="unixIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.png</string>
+ </object>
+ </property>
+ <property name="unixMimeType" type="string">application/x-pileup+txt</property>
+ <property name="windowsIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.ico</string>
+ </object>
+ </property>
+ </serializedBean>
+ </action>
+<!-- END -->
+
+<!-- PIR (.pir) BEGIN -->
+ <action name="PIR (.pir) message" id="10057" customizedId="PIR-pir-10057-message" beanClass="com.install4j.runtime.beans.actions.control.SetMessageAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="detailMessage" type="string">PIR (.pir)</property>
+ <property name="statusMessage" type="string">Creating file associations...</property>
+ <property name="useDetail" type="boolean" value="true" />
+ <property name="useStatus" type="boolean" value="true" />
+ </serializedBean>
+ </action>
+
+ <action name="PIR (.pir) progress bar 82" id="10058" customizedId="PIR-pir-10058-progressbar" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="percentValue" type="int" value="82" />
+ </serializedBean>
+ </action>
+
+ <action name="PIR (.pir) file association" id="10059" customizedId="PIR-pir-10059-fileassociation" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" actionElevationType="elevated" rollbackBarrierExitCode="0" errorMessage="Could not make .pir file association">
+ <serializedBean>
+ <property name="description" type="string">PIR File</property>
+ <property name="extension" type="string">pir</property>
+ <property name="launcherId" type="string">737</property>
+ <property name="selected" type="boolean" value="true" />
+ <property name="macIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.icns</string>
+ </object>
+ </property>
+ <!--<property name="macMimeType" type="string">application/x-pir+txt</property>-->
+ <property name="macRole" type="enum" class="com.install4j.runtime.beans.actions.desktop.MacAssociationRole" value="EDITOR" />
+ <property name="restartFinder" type="boolean" value="true" />
+ <property name="unix" type="boolean" value="true" />
+ <property name="unixIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.png</string>
+ </object>
+ </property>
+ <property name="unixMimeType" type="string">application/x-pir+txt</property>
+ <property name="windowsIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.ico</string>
+ </object>
+ </property>
+ </serializedBean>
+ </action>
+<!-- END -->
+
+<!-- RNAML (.rnaml) BEGIN -->
+ <action name="RNAML (.rnaml) message" id="10060" customizedId="RNAML-rnaml-10060-message" beanClass="com.install4j.runtime.beans.actions.control.SetMessageAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="detailMessage" type="string">RNAML (.rnaml)</property>
+ <property name="statusMessage" type="string">Creating file associations...</property>
+ <property name="useDetail" type="boolean" value="true" />
+ <property name="useStatus" type="boolean" value="true" />
+ </serializedBean>
+ </action>
+
+ <action name="RNAML (.rnaml) progress bar 86" id="10061" customizedId="RNAML-rnaml-10061-progressbar" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="percentValue" type="int" value="86" />
+ </serializedBean>
+ </action>
+
+ <action name="RNAML (.rnaml) file association" id="10062" customizedId="RNAML-rnaml-10062-fileassociation" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" actionElevationType="elevated" rollbackBarrierExitCode="0" errorMessage="Could not make .rnaml file association">
+ <serializedBean>
+ <property name="description" type="string">RNAML File</property>
+ <property name="extension" type="string">rnaml</property>
+ <property name="launcherId" type="string">737</property>
+ <property name="selected" type="boolean" value="true" />
+ <property name="macIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.icns</string>
+ </object>
+ </property>
+ <!--<property name="macMimeType" type="string">application/rnaml+xml</property>-->
+ <property name="macRole" type="enum" class="com.install4j.runtime.beans.actions.desktop.MacAssociationRole" value="EDITOR" />
+ <property name="restartFinder" type="boolean" value="true" />
+ <property name="unix" type="boolean" value="true" />
+ <property name="unixIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.png</string>
+ </object>
+ </property>
+ <property name="unixMimeType" type="string">application/rnaml+xml</property>
+ <property name="windowsIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.ico</string>
+ </object>
+ </property>
+ </serializedBean>
+ </action>
+<!-- END -->
+
+<!-- Substitution Matrix (.mat) BEGIN -->
+ <action name="Substitution Matrix (.mat) message" id="10063" customizedId="Substitution Matrix-mat-10063-message" beanClass="com.install4j.runtime.beans.actions.control.SetMessageAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="detailMessage" type="string">Substitution Matrix (.mat)</property>
+ <property name="statusMessage" type="string">Creating file associations...</property>
+ <property name="useDetail" type="boolean" value="true" />
+ <property name="useStatus" type="boolean" value="true" />
+ </serializedBean>
+ </action>
+
+ <action name="Substitution Matrix (.mat) progress bar 91" id="10064" customizedId="Substitution Matrix-mat-10064-progressbar" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="percentValue" type="int" value="91" />
+ </serializedBean>
+ </action>
+
+ <action name="Substitution Matrix (.mat) file association" id="10065" customizedId="Substitution Matrix-mat-10065-fileassociation" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" actionElevationType="elevated" rollbackBarrierExitCode="0" errorMessage="Could not make .mat file association">
+ <serializedBean>
+ <property name="description" type="string">Substitution Matrix File</property>
+ <property name="extension" type="string">mat</property>
+ <property name="launcherId" type="string">737</property>
+ <property name="selected" type="boolean" value="true" />
+ <property name="macIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.icns</string>
+ </object>
+ </property>
+ <!--<property name="macMimeType" type="string">application/x-jalview-scorematrix+text</property>-->
+ <property name="macRole" type="enum" class="com.install4j.runtime.beans.actions.desktop.MacAssociationRole" value="EDITOR" />
+ <property name="restartFinder" type="boolean" value="true" />
+ <property name="unix" type="boolean" value="true" />
+ <property name="unixIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.png</string>
+ </object>
+ </property>
+ <property name="unixMimeType" type="string">application/x-jalview-scorematrix+text</property>
+ <property name="windowsIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.ico</string>
+ </object>
+ </property>
+ </serializedBean>
+ </action>
+<!-- END -->
+
+<!-- Stockholm (.stk, .sto) BEGIN -->
+ <action name="Stockholm (.stk, .sto) message" id="10066" customizedId="Stockholm-stk,sto-10066-message" beanClass="com.install4j.runtime.beans.actions.control.SetMessageAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="detailMessage" type="string">Stockholm (.stk, .sto)</property>
+ <property name="statusMessage" type="string">Creating file associations...</property>
+ <property name="useDetail" type="boolean" value="true" />
+ <property name="useStatus" type="boolean" value="true" />
+ </serializedBean>
+ </action>
+
+ <action name="Stockholm (.stk, .sto) progress bar 95" id="10067" customizedId="Stockholm-stk,sto-10067-progressbar" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="percentValue" type="int" value="95" />
+ </serializedBean>
+ </action>
+
+ <action name="Stockholm (.stk, .sto) file association" id="10068" customizedId="Stockholm-stk,sto-10068-fileassociation" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" actionElevationType="elevated" rollbackBarrierExitCode="0" errorMessage="Could not make .stk,sto file association">
+ <serializedBean>
+ <property name="description" type="string">Stockholm File</property>
+ <property name="extension" type="string">stk,sto</property>
+ <property name="launcherId" type="string">737</property>
+ <property name="selected" type="boolean" value="true" />
+ <property name="macIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.icns</string>
+ </object>
+ </property>
+ <!--<property name="macMimeType" type="string">application/x-stockholm+txt</property>-->
+ <property name="macRole" type="enum" class="com.install4j.runtime.beans.actions.desktop.MacAssociationRole" value="EDITOR" />
+ <property name="restartFinder" type="boolean" value="true" />
+ <property name="unix" type="boolean" value="true" />
+ <property name="unixIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.png</string>
+ </object>
+ </property>
+ <property name="unixMimeType" type="string">application/x-stockholm+txt</property>
+ <property name="windowsIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>Jalview-File.ico</string>
+ </object>
+ </property>
+ </serializedBean>
+ </action>
+<!-- END -->
+
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<install4j version="8.0.3" transformSequenceNumber="8">
+ <directoryPresets config="." />
+ <application name="Jalview" applicationId="6595-2347-1923-0725" mediaDir="../../build/install4j" lzmaCompression="true" shortName="Jalview" publisher="University of Dundee" publisherWeb="https://www.jalview.org/" version="${compiler:JALVIEW_VERSION}" allPathsRelative="true" macVolumeId="5aac4968c304f65" javaMinVersion="${compiler:JAVA_MIN_VERSION}" javaMaxVersion="9999999999${compiler:JAVA_MAX_VERSION}" allowBetaVM="true" jdkMode="jdk" jdkName="JDK 11.0">
+ <searchSequence>
+ <directory location="${compiler:JRE_DIR}" />
+ <registry />
+ <envVar name="JAVA_HOME" />
+ </searchSequence>
+ <variables>
+ <variable name="OSX_KEYSTORE" />
+ <variable name="JSIGN_SH" value="echo" />
+ <variable name="JRE_DIR" value="jre" description="The folder under the app folder that the JRE will be either copied or unpacked into" />
+ <variable name="INSTALLER_TEMPLATE_VERSION" value="DEVELOPMENT_default" />
+ <variable name="JALVIEW_VERSION" value="DEVELOPMENT" />
+ <variable name="JAVA_MIN_VERSION" value="11" />
+ <variable name="JAVA_MAX_VERSION" value="11" />
+ <variable name="JAVA_VERSION" value="11" />
+ <variable name="JAVA_INTEGER_VERSION" value="11" />
+ <variable name="VERSION" value="DEVELOPMENT" />
+ <variable name="MACOS_JAVA_VM_DIR" value="~/buildtools/jre/openjdk-java_vm/getdown/macos-jre11/jre" />
+ <variable name="MACOS_JAVA_VM_TGZ" value="~/buildtools/jre/openjdk-java_vm/install4j/tgz/macos-jre11.tar.gz" />
+ <variable name="WINDOWS_JAVA_VM_DIR" value="~/buildtools/jre/openjdk-java_vm/getdown/windows-jre11/jre" />
+ <variable name="WINDOWS_JAVA_VM_TGZ" value="~/buildtools/jre/openjdk-java_vm/install4j/tgz/windows-jre11.tar.gz" />
+ <variable name="COPYRIGHT_MESSAGE" value="..." />
+ <variable name="MACOS_BUNDLE_ID" value="org.jalview.jalview-desktop" />
+ <variable name="GETDOWN_RESOURCE_DIR" value="resource" />
+ <variable name="GETDOWN_DIST_DIR" value="alt" />
+ <variable name="GETDOWN_ALT_DIR" value="alt" />
+ <variable name="GETDOWN_INSTALL_DIR" value="install" />
+ <variable name="INFO_PLIST_FILE_ASSOCIATIONS_FILE" value="file_associations_auto-Info_plist.xml" />
+ </variables>
+ <codeSigning macEnabled="true" macPkcs12File="${compiler:OSX_KEYSTORE}" />
+ </application>
+ <files defaultUninstallMode="2">
+ <filesets>
+ <fileset name="Full file set" id="734" />
+ <fileset name="Mac OS X JRE" id="880" />
+ <fileset name="Windows JRE" id="882" />
+ <fileset name="Jalview application" id="1873" />
+ <fileset name="MacOS Old Jalview Uninstaller" id="2105" />
+ </filesets>
+ <roots>
+ <root id="735" fileset="734" />
+ <root id="881" fileset="880" />
+ <root id="883" fileset="882" />
+ <root id="1874" fileset="1873" />
+ <root id="2106" fileset="2105" />
+ </roots>
+ <mountPoints>
+ <mountPoint id="454" />
+ <mountPoint id="736" root="735" />
+ <mountPoint id="884" root="881" />
+ <mountPoint id="885" root="883" />
+ <mountPoint id="1875" root="1874" />
+ <mountPoint id="2107" root="2106" />
+ </mountPoints>
+ <entries>
+ <dirEntry mountPoint="454" file="../../getdown/files/${compiler:JAVA_VERSION}" uninstallMode="2" overrideOverwriteMode="true" overrideUninstallMode="true" subDirectory="files" />
+ <dirEntry mountPoint="736" file="../../getdown/website/${compiler:JAVA_VERSION}" uninstallMode="2" overrideOverwriteMode="true" overrideUninstallMode="true" subDirectory="files" />
+ <dirEntry mountPoint="884" file="${compiler:MACOS_JAVA_VM_DIR}" fileMode="755" overrideFileMode="true" overrideUninstallMode="true" entryMode="subdir" subDirectory="${compiler:JRE_DIR}" />
+ <dirEntry mountPoint="885" file="${compiler:WINDOWS_JAVA_VM_DIR}" fileMode="755" overrideFileMode="true" overrideUninstallMode="true" entryMode="subdir" subDirectory="${compiler:JRE_DIR}" />
+ <dirEntry mountPoint="1875" file="../../getdown/website/${compiler:JAVA_VERSION}/${compiler:GETDOWN_DIST_DIR}" overwriteMode="1" uninstallMode="2" overrideFileMode="true" overrideOverwriteMode="true" overrideUninstallMode="true" entryMode="subdir" subDirectory="${compiler:GETDOWN_DIST_DIR}" overrideDirMode="true" />
+ <dirEntry mountPoint="2107" file="Uninstall Old Jalview.app" fileMode="755" overrideFileMode="true" entryMode="subdir" subDirectory="Uninstall Old Jalview.app" overrideDirMode="true" />
+ </entries>
+ <components>
+ <component name="jalview_getdown" id="1031">
+ <include>
+ <entry filesetId="734" />
+ </include>
+ </component>
+ <component name="macos_java_vm" id="1155">
+ <include>
+ <entry filesetId="880" />
+ </include>
+ </component>
+ <component name="windows_java_vm" id="1156">
+ <include>
+ <entry filesetId="882" />
+ </include>
+ </component>
+ <component name="getdown" id="1276">
+ <include>
+ <entry defaultFileset="true" />
+ </include>
+ </component>
+ <component name="jalview" id="1881">
+ <include>
+ <entry filesetId="1873" />
+ </include>
+ </component>
+ <component name="macos_old_jalview_uninstaller" id="2110">
+ <include>
+ <entry filesetId="2105" />
+ </include>
+ </component>
+ </components>
+ </files>
+ <launchers>
+ <launcher name="Offline Jalview Launcher" id="737" menuName="${compiler:sys.shortName}" icnsFile="../../resources/images/jalview_logos.icns" customMacBundleIdentifier="true" macBundleIdentifier="${compiler:MACOS_BUNDLE_ID}" fileset="734" useCustomMacosExecutableName="true" customMacosExecutableName="${compiler:sys.shortName}">
+ <executable name="${compiler:sys.shortName}" iconSet="true" iconFile="../../resources/images/jalview_logos.ico" executableDir="." redirectStdout="true" executableMode="gui" singleInstance="true" checkConsoleParameter="true" dpiAware="false">
+ <versionInfo include="true" fileDescription="${compiler:sys.shortName}" legalCopyright="${compiler:COPYRIGHT_MESSAGE}" internalName="${compiler:sys.shortName}" productName="${compiler:sys.shortName}" />
+ </executable>
+ <splashScreen width="640" height="480" bitmapFile="../../resources/images/jalview_logo_background_fade-640x480.png" textOverlay="true">
+ <text>
+ <statusLine x="85" y="81" text="${compiler:sys.shortName}" fontSize="18" />
+ <versionLine x="85" y="109" text="version ${compiler:sys.version}" />
+ </text>
+ </splashScreen>
+ <java mainClass="com.threerings.getdown.launcher.GetdownApp" vmParameters="-Dinstaller_template_version=${compiler:INSTALLER_TEMPLATE_VERSION}" arguments=". jalview">
+ <classPath>
+ <archive location="getdown-launcher.jar" />
+ <scanDirectory location="${compiler:GETDOWN_INSTALL_DIR}" failOnError="false" />
+ </classPath>
+ </java>
+ <macStaticAssociationActions mode="selected">
+ <id>2350</id>
+ <id>2450</id>
+ </macStaticAssociationActions>
+ <infoPlist>${compiler:file("${compiler:INFO_PLIST_FILE_ASSOCIATIONS_FILE}")}</infoPlist>
+ <iconImageFiles>
+ <file path="../../resources/images/JalviewLogo_Huge.png" />
+ </iconImageFiles>
+ </launcher>
+ <launcher name="Jalview package" id="1876" menuName="${compiler:sys.shortName} ${compiler:JALVIEW_VERSION}" fileset="1873">
+ <executable name="${compiler:sys.shortName}" iconSet="true" redirectStderr="false" failOnStderrOutput="false" executableMode="gui" changeWorkingDirectory="false" singleInstance="true" />
+ <java mainClass="jalview.bin.Launcher" vmParameters="-Dinstaller_template_version=${compiler:INSTALLER_TEMPLATE_VERSION}">
+ <classPath>
+ <scanDirectory location="${compiler:GETDOWN_DIST_DIR}" failOnError="false" />
+ </classPath>
+ </java>
+ <macStaticAssociationActions mode="selected">
+ <id>2350</id>
+ <id>2450</id>
+ </macStaticAssociationActions>
+ <infoPlist>${compiler:file("${compiler:INFO_PLIST_FILE_ASSOCIATIONS_FILE}")}</infoPlist>
+ <iconImageFiles>
+ <file path="../../resources/images/JalviewLogo_Huge.png" />
+ </iconImageFiles>
+ </launcher>
+ </launchers>
+ <installerGui autoUpdateDescriptorUrl="https://www.jalview.org/install4j/updates.xml">
+ <applications>
+ <application id="installer" beanClass="com.install4j.runtime.beans.applications.InstallerApplication" styleId="35" customIcnsFile="../../resources/images/jalview_logos.icns" customIcoFile="../../resources/images/jalview_logos.ico">
+ <serializedBean>
+ <property name="useCustomIcon" type="boolean" value="true" />
+ </serializedBean>
+ <styleOverrides>
+ <styleOverride name="Customize banner image" enabled="true">
+ <group id="146" beanClass="com.install4j.runtime.beans.groups.VerticalFormComponentGroup" useExternalParametrization="true" externalParametrizationName="Customize banner image" externalParametrizationMode="include">
+ <serializedBean>
+ <property name="backgroundColor">
+ <object class="java.awt.Color">
+ <int>255</int>
+ <int>255</int>
+ <int>255</int>
+ <int>255</int>
+ </object>
+ </property>
+ <property name="borderSides">
+ <object class="com.install4j.runtime.beans.formcomponents.BorderSides">
+ <property name="bottom" type="boolean" value="true" />
+ </object>
+ </property>
+ <property name="imageEdgeBackgroundColor">
+ <object class="java.awt.Color">
+ <int>255</int>
+ <int>255</int>
+ <int>255</int>
+ <int>255</int>
+ </object>
+ </property>
+ <property name="imageEdgeBorder" type="boolean" value="true" />
+ <property name="imageFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>../../resources/images/jalview_logo_background_fade-640x480.png</string>
+ </object>
+ </property>
+ <property name="insets">
+ <object class="java.awt.Insets">
+ <int>5</int>
+ <int>10</int>
+ <int>10</int>
+ <int>10</int>
+ </object>
+ </property>
+ </serializedBean>
+ <externalParametrizationPropertyNames>
+ <propertyName>imageAnchor</propertyName>
+ <propertyName>imageEdgeBackgroundColor</propertyName>
+ <propertyName>imageFile</propertyName>
+ </externalParametrizationPropertyNames>
+ </group>
+ </styleOverride>
+ <styleOverride name="Jalview" enabled="true">
+ <formComponent name="Watermark" id="352" beanClass="com.install4j.runtime.beans.formcomponents.SeparatorComponent" insetTop="0" insetLeft="5" insetBottom="0" useExternalParametrization="true" externalParametrizationName="Jalview" externalParametrizationMode="include">
+ <serializedBean>
+ <property name="enabledTitleText" type="boolean" value="false" />
+ </serializedBean>
+ <externalParametrizationPropertyNames>
+ <propertyName>labelText</propertyName>
+ </externalParametrizationPropertyNames>
+ </formComponent>
+ </styleOverride>
+ </styleOverrides>
+ <startup>
+ <screen id="1" beanClass="com.install4j.runtime.beans.screens.StartupScreen" rollbackBarrierExitCode="0">
+ <actions>
+ <action id="22" beanClass="com.install4j.runtime.beans.actions.misc.RequestPrivilegesAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="obtainIfAdminWin" type="boolean" value="false" />
+ </serializedBean>
+ </action>
+ </actions>
+ </screen>
+ </startup>
+ <screens>
+ <screen id="2" beanClass="com.install4j.runtime.beans.screens.WelcomeScreen" rollbackBarrierExitCode="0">
+ <styleOverrides>
+ <styleOverride name="Customize banner image" enabled="true">
+ <group id="145" beanClass="com.install4j.runtime.beans.groups.VerticalFormComponentGroup" useExternalParametrization="true" externalParametrizationName="Customize banner image" externalParametrizationMode="include">
+ <serializedBean>
+ <property name="backgroundColor">
+ <object class="java.awt.Color">
+ <int>255</int>
+ <int>255</int>
+ <int>255</int>
+ <int>255</int>
+ </object>
+ </property>
+ <property name="borderSides">
+ <object class="com.install4j.runtime.beans.formcomponents.BorderSides">
+ <property name="bottom" type="boolean" value="true" />
+ </object>
+ </property>
+ <property name="imageEdgeBackgroundColor">
+ <object class="java.awt.Color">
+ <int>25</int>
+ <int>143</int>
+ <int>220</int>
+ <int>255</int>
+ </object>
+ </property>
+ <property name="imageEdgeBorder" type="boolean" value="true" />
+ <property name="imageFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>../../resources/images/jalview_logo_background_fade-640x480.png</string>
+ </object>
+ </property>
+ <property name="insets">
+ <object class="java.awt.Insets">
+ <int>5</int>
+ <int>10</int>
+ <int>10</int>
+ <int>10</int>
+ </object>
+ </property>
+ </serializedBean>
+ <externalParametrizationPropertyNames>
+ <propertyName>imageAnchor</propertyName>
+ <propertyName>imageEdgeBackgroundColor</propertyName>
+ <propertyName>imageFile</propertyName>
+ </externalParametrizationPropertyNames>
+ </group>
+ </styleOverride>
+ </styleOverrides>
+ <actions>
+ <action id="7" beanClass="com.install4j.runtime.beans.actions.misc.LoadResponseFileAction" rollbackBarrierExitCode="0" multiExec="true">
+ <serializedBean>
+ <property name="excludedVariables" type="array" elementType="string" length="1">
+ <element index="0">sys.installationDir</element>
+ </property>
+ </serializedBean>
+ <condition>context.getBooleanVariable("sys.confirmedUpdateInstallation")</condition>
+ </action>
+ </actions>
+ <formComponents>
+ <formComponent id="3" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent">
+ <serializedBean>
+ <property name="labelText" type="string">${form:welcomeMessage}</property>
+ </serializedBean>
+ <visibilityScript>!context.isConsole()</visibilityScript>
+ </formComponent>
+ <formComponent id="4" beanClass="com.install4j.runtime.beans.formcomponents.ConsoleHandlerFormComponent">
+ <serializedBean>
+ <property name="consoleScript">
+ <object class="com.install4j.api.beans.ScriptProperty">
+ <property name="value" type="string">String message = context.getMessage("ConsoleWelcomeLabel", context.getApplicationName());
+return console.askOkCancel(message, true);
+</property>
+ </object>
+ </property>
+ </serializedBean>
+ </formComponent>
+ <formComponent id="5" beanClass="com.install4j.runtime.beans.formcomponents.UpdateAlertComponent" useExternalParametrization="true" externalParametrizationName="Update Alert" externalParametrizationMode="include">
+ <externalParametrizationPropertyNames>
+ <propertyName>updateCheck</propertyName>
+ </externalParametrizationPropertyNames>
+ </formComponent>
+ <formComponent id="6" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent" insetTop="20">
+ <serializedBean>
+ <property name="labelText" type="string">${i18n:ClickNext}</property>
+ </serializedBean>
+ </formComponent>
+ </formComponents>
+ </screen>
+ <screen id="8" beanClass="com.install4j.runtime.beans.screens.InstallationDirectoryScreen" rollbackBarrierExitCode="0">
+ <condition>!context.getBooleanVariable("sys.confirmedUpdateInstallation")</condition>
+ <actions>
+ <action id="11" beanClass="com.install4j.runtime.beans.actions.misc.LoadResponseFileAction" rollbackBarrierExitCode="0" multiExec="true">
+ <serializedBean>
+ <property name="excludedVariables" type="array" elementType="string" length="1">
+ <element index="0">sys.installationDir</element>
+ </property>
+ </serializedBean>
+ <condition>context.getVariable("sys.responseFile") == null</condition>
+ </action>
+ </actions>
+ <formComponents>
+ <formComponent id="9" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent" insetBottom="25">
+ <serializedBean>
+ <property name="labelText" type="string">${i18n:SelectDirLabel(${compiler:sys.fullName})}</property>
+ </serializedBean>
+ </formComponent>
+ <formComponent id="10" beanClass="com.install4j.runtime.beans.formcomponents.InstallationDirectoryChooserComponent" useExternalParametrization="true" externalParametrizationName="Installation Directory Chooser" externalParametrizationMode="include">
+ <serializedBean>
+ <property name="requestFocus" type="boolean" value="true" />
+ </serializedBean>
+ <externalParametrizationPropertyNames>
+ <propertyName>allowSpacesOnUnix</propertyName>
+ <propertyName>checkFreeSpace</propertyName>
+ <propertyName>checkWritable</propertyName>
+ <propertyName>existingDirWarning</propertyName>
+ <propertyName>manualEntryAllowed</propertyName>
+ <propertyName>showFreeDiskSpace</propertyName>
+ <propertyName>showRequiredDiskSpace</propertyName>
+ <propertyName>standardValidation</propertyName>
+ <propertyName>suggestAppDir</propertyName>
+ <propertyName>validateApplicationId</propertyName>
+ <propertyName>validationScript</propertyName>
+ </externalParametrizationPropertyNames>
+ </formComponent>
+ </formComponents>
+ </screen>
+ <screen id="12" beanClass="com.install4j.runtime.beans.screens.ComponentsScreen" enabled="false" rollbackBarrierExitCode="0">
+ <formComponents>
+ <formComponent id="13" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent">
+ <serializedBean>
+ <property name="labelText" type="string">${i18n:SelectComponentsLabel2}</property>
+ </serializedBean>
+ <visibilityScript>!context.isConsole()</visibilityScript>
+ </formComponent>
+ <formComponent id="14" beanClass="com.install4j.runtime.beans.formcomponents.ComponentSelectorComponent" useExternalParametrization="true" externalParametrizationName="Installation Components" externalParametrizationMode="include">
+ <serializedBean>
+ <property name="fillVertical" type="boolean" value="true" />
+ </serializedBean>
+ <externalParametrizationPropertyNames>
+ <propertyName>selectionChangedScript</propertyName>
+ </externalParametrizationPropertyNames>
+ </formComponent>
+ </formComponents>
+ </screen>
+ <screen id="1692" beanClass="com.install4j.runtime.beans.screens.FileAssociationsScreen" rollbackBarrierExitCode="0">
+ <formComponents>
+ <formComponent id="1693" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent">
+ <serializedBean>
+ <property name="labelText" type="string">${i18n:SelectAssociationsLabel}</property>
+ </serializedBean>
+ </formComponent>
+ <formComponent id="1694" beanClass="com.install4j.runtime.beans.formcomponents.FileAssociationsComponent" useExternalParametrization="true" externalParametrizationName="File Associations" externalParametrizationMode="include">
+ <serializedBean>
+ <property name="fillVertical" type="boolean" value="true" />
+ <property name="selectionButtonPosition" type="enum" class="com.install4j.runtime.beans.formcomponents.VerticalDockingPosition" value="TOP" />
+ <property name="showSelectionButtons" type="boolean" value="true" />
+ </serializedBean>
+ <externalParametrizationPropertyNames>
+ <propertyName>showSelectionButtons</propertyName>
+ <propertyName>selectionButtonPosition</propertyName>
+ </externalParametrizationPropertyNames>
+ </formComponent>
+ </formComponents>
+ </screen>
+ <screen id="15" beanClass="com.install4j.runtime.beans.screens.InstallationScreen" rollbackBarrier="true" rollbackBarrierExitCode="0">
+ <actions>
+ <action id="17" beanClass="com.install4j.runtime.beans.actions.InstallFilesAction" actionElevationType="elevated" rollbackBarrierExitCode="0" failureStrategy="quit" errorMessage="${i18n:FileCorrupted}" />
+ <action id="18" beanClass="com.install4j.runtime.beans.actions.desktop.CreateProgramGroupAction" actionElevationType="elevated" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="uninstallerMenuName" type="string">${i18n:UninstallerMenuEntry(${compiler:sys.fullName})}</property>
+ </serializedBean>
+ <condition>!context.getBooleanVariable("sys.programGroupDisabled")</condition>
+ </action>
+ <action id="19" beanClass="com.install4j.runtime.beans.actions.desktop.RegisterAddRemoveAction" actionElevationType="elevated" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="itemName" type="string">${compiler:sys.fullName} ${compiler:sys.version}</property>
+ </serializedBean>
+ </action>
+ <action id="124" beanClass="com.install4j.runtime.beans.actions.control.SetVariableAction" enabled="false" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="script">
+ <object class="com.install4j.api.beans.ScriptProperty">
+ <property name="value" type="string" />
+ </object>
+ </property>
+ <property name="variableName" type="string" />
+ </serializedBean>
+ <condition>true</condition>
+ </action>
+ <action id="134" beanClass="com.install4j.runtime.beans.actions.misc.AddVmOptionsAction" enabled="false" actionElevationType="elevated" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="launcherId" type="string">121</property>
+ <property name="vmOptions" type="array" elementType="string" length="0" />
+ </serializedBean>
+ </action>
+ <group name="File Associations" id="2251" beanClass="com.install4j.runtime.beans.groups.ActionGroup">
+ <beans>
+ <action id="2253" beanClass="com.install4j.runtime.beans.actions.control.SetMessageAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="statusMessage" type="string">Creating file associations...</property>
+ <property name="useDetail" type="boolean" value="true" />
+ <property name="useStatus" type="boolean" value="true" />
+ </serializedBean>
+ </action>
+ <action id="2254" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="progressChangeType" type="enum" class="com.install4j.runtime.beans.actions.control.ProgressChangeType" value="SET_INDETERMINATE" />
+ </serializedBean>
+ </action>
+ <action name="EXTENSIONS_REPLACED_BY_GRADLE" id="1691" customizedId="EXTENSIONS" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" actionElevationType="elevated" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="description" type="string">This action, identified by its name "EXTENSIONS_REPLACED_BY_GRADLE", will be replaced by gradle with the contents of file 'file_associations_auto_install4j.xml'.</property>
+ <property name="extension" type="string">extensions_to_be_replaced_by_gradle</property>
+ </serializedBean>
+ </action>
+ <action id="2542" beanClass="com.install4j.runtime.beans.actions.control.SetMessageAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="statusMessage" type="string">Creating file associations</property>
+ <property name="useDetail" type="boolean" value="true" />
+ <property name="useStatus" type="boolean" value="true" />
+ </serializedBean>
+ </action>
+ <action id="2541" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="percentValue" type="int" value="100" />
+ </serializedBean>
+ </action>
+ </beans>
+ </group>
+ <action id="2350" beanClass="com.install4j.runtime.beans.actions.desktop.UrlHandlerAction" actionElevationType="elevated" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="launcherId" type="string">737</property>
+ <property name="scheme" type="string">jalview</property>
+ </serializedBean>
+ </action>
+ <action id="2450" beanClass="com.install4j.runtime.beans.actions.desktop.UrlHandlerAction" actionElevationType="elevated" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="launcherId" type="string">737</property>
+ <property name="scheme" type="string">jalviews</property>
+ </serializedBean>
+ </action>
+ </actions>
+ <formComponents>
+ <formComponent id="16" beanClass="com.install4j.runtime.beans.formcomponents.ProgressComponent">
+ <serializedBean>
+ <property name="initialStatusMessage" type="string">${i18n:WizardPreparing}</property>
+ </serializedBean>
+ </formComponent>
+ </formComponents>
+ </screen>
+ <screen id="20" beanClass="com.install4j.runtime.beans.screens.FinishedScreen" rollbackBarrierExitCode="0" finishScreen="true">
+ <actions>
+ <action id="2012" beanClass="com.install4j.runtime.beans.actions.desktop.CreateStartMenuEntryAction" actionElevationType="elevated" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="allUsers" type="boolean" value="false" />
+ <property name="entryName" type="string">${compiler:sys.shortName}</property>
+ <property name="file">
+ <object class="java.io.File">
+ <string>${compiler:sys.shortName}</string>
+ </object>
+ </property>
+ <property name="icon">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>../../resources/images/jalview_logos.ico</string>
+ </object>
+ </property>
+ <property name="unixIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>../../resources/images/JalviewLogo_Huge.png</string>
+ </object>
+ </property>
+ </serializedBean>
+ <condition>!context.getBooleanVariable("sys.programGroupDisabled")</condition>
+ </action>
+ <action id="573" beanClass="com.install4j.runtime.beans.actions.desktop.CreateDesktopLinkAction" actionElevationType="elevated" rollbackBarrierExitCode="0" errorMessage="Could not make desktop link">
+ <serializedBean>
+ <property name="allUsers" type="boolean" value="false" />
+ <property name="description" type="string">${compiler:sys.shortName}</property>
+ <property name="file">
+ <object class="java.io.File">
+ <string>${compiler:sys.shortName}</string>
+ </object>
+ </property>
+ <property name="name" type="string">${compiler:sys.fullName}</property>
+ <property name="unixIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>../../resources/images/JalviewLogo_Huge.png</string>
+ </object>
+ </property>
+ <property name="winIconFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>../../resources/images/jalview_logos.ico</string>
+ </object>
+ </property>
+ </serializedBean>
+ <condition>context.getBooleanVariable("createDesktopLinkAction")</condition>
+ </action>
+ <action id="576" beanClass="com.install4j.runtime.beans.actions.desktop.AddToDockAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="executable">
+ <object class="java.io.File">
+ <string>Jalview.app</string>
+ </object>
+ </property>
+ </serializedBean>
+ <condition>context.getBooleanVariable("addToDockAction")</condition>
+ </action>
+ </actions>
+ <formComponents>
+ <formComponent id="21" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent" insetBottom="10">
+ <serializedBean>
+ <property name="labelText" type="string">${form:finishedMessage}</property>
+ </serializedBean>
+ </formComponent>
+ <formComponent name="Add a desktop link" id="574" beanClass="com.install4j.runtime.beans.formcomponents.CheckboxComponent">
+ <serializedBean>
+ <property name="checkboxText" type="string">${i18n:CreateDesktopIcon}</property>
+ <property name="initiallySelected" type="boolean" value="true" />
+ <property name="variableName" type="string">createDesktopLinkAction</property>
+ </serializedBean>
+ </formComponent>
+ <formComponent name="Add an executable to the dock" id="577" beanClass="com.install4j.runtime.beans.formcomponents.CheckboxComponent">
+ <serializedBean>
+ <property name="checkboxText" type="string">${i18n:AddToDock}</property>
+ <property name="initiallySelected" type="boolean" value="true" />
+ <property name="variableName" type="string">addToDockAction</property>
+ </serializedBean>
+ <visibilityScript>Util.isMacOS()</visibilityScript>
+ </formComponent>
+ </formComponents>
+ </screen>
+ </screens>
+ </application>
+ <application id="uninstaller" beanClass="com.install4j.runtime.beans.applications.UninstallerApplication" styleId="35">
+ <serializedBean>
+ <property name="customMacosExecutableName" type="string">${i18n:UninstallerMenuEntry(${compiler:sys.fullName})}</property>
+ <property name="useCustomMacosExecutableName" type="boolean" value="true" />
+ </serializedBean>
+ <styleOverrides>
+ <styleOverride name="Customize banner image" enabled="true">
+ <group id="147" beanClass="com.install4j.runtime.beans.groups.VerticalFormComponentGroup" useExternalParametrization="true" externalParametrizationName="Customize banner image" externalParametrizationMode="include">
+ <serializedBean>
+ <property name="backgroundColor">
+ <object class="java.awt.Color">
+ <int>255</int>
+ <int>255</int>
+ <int>255</int>
+ <int>255</int>
+ </object>
+ </property>
+ <property name="borderSides">
+ <object class="com.install4j.runtime.beans.formcomponents.BorderSides">
+ <property name="bottom" type="boolean" value="true" />
+ </object>
+ </property>
+ <property name="imageEdgeBackgroundColor">
+ <object class="java.awt.Color">
+ <int>192</int>
+ <int>192</int>
+ <int>192</int>
+ <int>255</int>
+ </object>
+ </property>
+ <property name="imageEdgeBorder" type="boolean" value="true" />
+ <property name="imageFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>../../resources/images/jalview_logo_background_fade-640x480.png</string>
+ </object>
+ </property>
+ <property name="insets">
+ <object class="java.awt.Insets">
+ <int>5</int>
+ <int>10</int>
+ <int>10</int>
+ <int>10</int>
+ </object>
+ </property>
+ </serializedBean>
+ <externalParametrizationPropertyNames>
+ <propertyName>imageAnchor</propertyName>
+ <propertyName>imageEdgeBackgroundColor</propertyName>
+ <propertyName>imageFile</propertyName>
+ </externalParametrizationPropertyNames>
+ </group>
+ </styleOverride>
+ </styleOverrides>
+ <startup>
+ <screen id="23" beanClass="com.install4j.runtime.beans.screens.StartupScreen" rollbackBarrierExitCode="0">
+ <actions>
+ <action id="33" beanClass="com.install4j.runtime.beans.actions.misc.LoadResponseFileAction" rollbackBarrierExitCode="0" />
+ <action id="34" beanClass="com.install4j.runtime.beans.actions.misc.RequireInstallerPrivilegesAction" actionElevationType="none" rollbackBarrierExitCode="0" />
+ </actions>
+ </screen>
+ </startup>
+ <screens>
+ <screen id="24" beanClass="com.install4j.runtime.beans.screens.UninstallWelcomeScreen" rollbackBarrierExitCode="0">
+ <formComponents>
+ <formComponent id="25" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent" insetBottom="10">
+ <serializedBean>
+ <property name="labelText" type="string">${form:welcomeMessage}</property>
+ </serializedBean>
+ <visibilityScript>!context.isConsole()</visibilityScript>
+ </formComponent>
+ <formComponent id="26" beanClass="com.install4j.runtime.beans.formcomponents.ConsoleHandlerFormComponent">
+ <serializedBean>
+ <property name="consoleScript">
+ <object class="com.install4j.api.beans.ScriptProperty">
+ <property name="value" type="string">String message = context.getMessage("ConfirmUninstall", context.getApplicationName());
+return console.askYesNo(message, true);
+</property>
+ </object>
+ </property>
+ </serializedBean>
+ </formComponent>
+ </formComponents>
+ </screen>
+ <screen id="27" beanClass="com.install4j.runtime.beans.screens.UninstallationScreen" rollbackBarrierExitCode="0">
+ <actions>
+ <action id="659" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="progressChangeType" type="enum" class="com.install4j.runtime.beans.actions.control.ProgressChangeType" value="SET_INDETERMINATE" />
+ </serializedBean>
+ </action>
+ <action id="29" beanClass="com.install4j.runtime.beans.actions.UninstallFilesAction" actionElevationType="elevated" rollbackBarrierExitCode="0" />
+ <action id="660" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" enabled="false" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="percentValue" type="int" value="95" />
+ </serializedBean>
+ </action>
+ <action id="1525" beanClass="com.install4j.runtime.beans.actions.files.DeleteFileAction" actionElevationType="elevated" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="files" type="array" class="java.io.File" length="31">
+ <element index="0">
+ <object class="java.io.File">
+ <string>jre</string>
+ </object>
+ </element>
+ <element index="1">
+ <object class="java.io.File">
+ <string>jre.jar</string>
+ </object>
+ </element>
+ <element index="2">
+ <object class="java.io.File">
+ <string>.install4j</string>
+ </object>
+ </element>
+ <element index="3">
+ <object class="java.io.File">
+ <string>${compiler:GETDOWN_DIST_DIR}</string>
+ </object>
+ </element>
+ <element index="4">
+ <object class="java.io.File">
+ <string>${compiler:GETDOWN_ALT_DIR}</string>
+ </object>
+ </element>
+ <element index="5">
+ <object class="java.io.File">
+ <string>${compiler:GETDOWN_RESOURCE_DIR}</string>
+ </object>
+ </element>
+ <element index="6">
+ <object class="java.io.File">
+ <string>getdown-launcher.jar</string>
+ </object>
+ </element>
+ <element index="7">
+ <object class="java.io.File">
+ <string>getdown-launcher-old.jar</string>
+ </object>
+ </element>
+ <element index="8">
+ <object class="java.io.File">
+ <string>getdown-launcher-new.jar</string>
+ </object>
+ </element>
+ <element index="9">
+ <object class="java.io.File">
+ <string>*.jarv</string>
+ </object>
+ </element>
+ <element index="10">
+ <object class="java.io.File">
+ <string>gettingdown.lock</string>
+ </object>
+ </element>
+ <element index="11">
+ <object class="java.io.File">
+ <string>*.log</string>
+ </object>
+ </element>
+ <element index="12">
+ <object class="java.io.File">
+ <string>*.txt</string>
+ </object>
+ </element>
+ <element index="13">
+ <object class="java.io.File">
+ <string>*_new</string>
+ </object>
+ </element>
+ <element index="14">
+ <object class="java.io.File">
+ <string>digest.txt</string>
+ </object>
+ </element>
+ <element index="15">
+ <object class="java.io.File">
+ <string>digest2.txt</string>
+ </object>
+ </element>
+ <element index="16">
+ <object class="java.io.File">
+ <string>getdown-launcher.jarv</string>
+ </object>
+ </element>
+ <element index="17">
+ <object class="java.io.File">
+ <string>getdown-launcher-new.jarv</string>
+ </object>
+ </element>
+ <element index="18">
+ <object class="java.io.File">
+ <string>channel_launch.jvl</string>
+ </object>
+ </element>
+ <element index="19">
+ <object class="java.io.File">
+ <string>launcher.log</string>
+ </object>
+ </element>
+ <element index="20">
+ <object class="java.io.File">
+ <string>proxy.txt</string>
+ </object>
+ </element>
+ <element index="21">
+ <object class="java.io.File">
+ <string>META-INF</string>
+ </object>
+ </element>
+ <element index="22">
+ <object class="java.io.File">
+ <string>install/getdown-launcher.jar</string>
+ </object>
+ </element>
+ <element index="23">
+ <object class="java.io.File">
+ <string>install/getdown.txt</string>
+ </object>
+ </element>
+ <element index="24">
+ <object class="java.io.File">
+ <string>install/build_properties</string>
+ </object>
+ </element>
+ <element index="25">
+ <object class="java.io.File">
+ <string>build_properties</string>
+ </object>
+ </element>
+ <element index="26">
+ <object class="java.io.File">
+ <string>install</string>
+ </object>
+ </element>
+ <element index="27">
+ <object class="java.io.File">
+ <string>dist</string>
+ </object>
+ </element>
+ <element index="28">
+ <object class="java.io.File">
+ <string>release</string>
+ </object>
+ </element>
+ <element index="29">
+ <object class="java.io.File">
+ <string>alt</string>
+ </object>
+ </element>
+ <element index="30">
+ <object class="java.io.File">
+ <string>resource</string>
+ </object>
+ </element>
+ </property>
+ <property name="recursive" type="boolean" value="true" />
+ </serializedBean>
+ </action>
+ <action id="1791" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" actionElevationType="none" rollbackBarrierExitCode="0">
+ <serializedBean>
+ <property name="percentValue" type="int" value="100" />
+ </serializedBean>
+ </action>
+ </actions>
+ <formComponents>
+ <formComponent id="28" beanClass="com.install4j.runtime.beans.formcomponents.ProgressComponent">
+ <serializedBean>
+ <property name="initialStatusMessage" type="string">${i18n:UninstallerPreparing}</property>
+ </serializedBean>
+ </formComponent>
+ </formComponents>
+ </screen>
+ <screen id="32" beanClass="com.install4j.runtime.beans.screens.UninstallFailureScreen" rollbackBarrierExitCode="0" finishScreen="true" />
+ <screen id="30" beanClass="com.install4j.runtime.beans.screens.UninstallSuccessScreen" styleId="41" rollbackBarrierExitCode="0" finishScreen="true">
+ <formComponents>
+ <formComponent id="31" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent" insetBottom="10">
+ <serializedBean>
+ <property name="labelText" type="string">${form:successMessage}</property>
+ </serializedBean>
+ </formComponent>
+ </formComponents>
+ </screen>
+ </screens>
+ </application>
+ </applications>
+ <styles defaultStyleId="35">
+ <style name="Standard" id="35" beanClass="com.install4j.runtime.beans.styles.FormStyle">
+ <formComponents>
+ <formComponent name="Header" id="36" beanClass="com.install4j.runtime.beans.styles.NestedStyleComponent" insetTop="0" insetBottom="0">
+ <serializedBean>
+ <property name="styleId" type="string">48</property>
+ </serializedBean>
+ </formComponent>
+ <group name="Main" id="37" beanClass="com.install4j.runtime.beans.groups.VerticalFormComponentGroup">
+ <serializedBean>
+ <property name="imageEdgeAxisType" type="enum" class="com.install4j.runtime.beans.formcomponents.AxisType" value="HORIZONTAL" />
+ <property name="imageEdgeBackgroundColor">
+ <object class="java.awt.Color">
+ <int>255</int>
+ <int>255</int>
+ <int>255</int>
+ <int>255</int>
+ </object>
+ </property>
+ <property name="imageFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>../../resources/images/jalview_logo_background_fade-640x480.png</string>
+ </object>
+ </property>
+ <property name="imageOverlap" type="boolean" value="true" />
+ </serializedBean>
+ <beans>
+ <formComponent id="38" beanClass="com.install4j.runtime.beans.styles.ContentComponent" insetTop="10" insetLeft="20" insetBottom="10" insetRight="20" />
+ <formComponent name="Watermark" id="39" beanClass="com.install4j.runtime.beans.formcomponents.SeparatorComponent" insetTop="0" insetLeft="5" insetBottom="0" useExternalParametrization="true" externalParametrizationName="Jalview" externalParametrizationMode="include">
+ <serializedBean>
+ <property name="enabledTitleText" type="boolean" value="false" />
+ </serializedBean>
+ <externalParametrizationPropertyNames>
+ <propertyName>labelText</propertyName>
+ </externalParametrizationPropertyNames>
+ </formComponent>
+ <formComponent name="Footer" id="40" beanClass="com.install4j.runtime.beans.styles.NestedStyleComponent" insetTop="0" insetBottom="0">
+ <serializedBean>
+ <property name="styleId" type="string">52</property>
+ </serializedBean>
+ </formComponent>
+ </beans>
+ </group>
+ </formComponents>
+ </style>
+ <style name="Banner" id="41" beanClass="com.install4j.runtime.beans.styles.FormStyle">
+ <formComponents>
+ <group id="42" beanClass="com.install4j.runtime.beans.groups.VerticalFormComponentGroup" useExternalParametrization="true" externalParametrizationName="Customize banner image" externalParametrizationMode="include">
+ <serializedBean>
+ <property name="backgroundColor">
+ <object class="java.awt.Color">
+ <int>255</int>
+ <int>255</int>
+ <int>255</int>
+ <int>255</int>
+ </object>
+ </property>
+ <property name="borderSides">
+ <object class="com.install4j.runtime.beans.formcomponents.BorderSides">
+ <property name="bottom" type="boolean" value="true" />
+ </object>
+ </property>
+ <property name="imageEdgeBackgroundColor">
+ <object class="java.awt.Color">
+ <int>25</int>
+ <int>143</int>
+ <int>220</int>
+ <int>255</int>
+ </object>
+ </property>
+ <property name="imageEdgeBorder" type="boolean" value="true" />
+ <property name="imageFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>${compiler:sys.install4jHome}/resource/styles/wizard.png</string>
+ </object>
+ </property>
+ <property name="insets">
+ <object class="java.awt.Insets">
+ <int>5</int>
+ <int>10</int>
+ <int>10</int>
+ <int>10</int>
+ </object>
+ </property>
+ </serializedBean>
+ <beans>
+ <formComponent id="43" beanClass="com.install4j.runtime.beans.styles.ScreenTitleComponent" insetTop="0">
+ <serializedBean>
+ <property name="labelFontSizePercent" type="int" value="130" />
+ <property name="labelFontStyle" type="enum" class="com.install4j.runtime.beans.formcomponents.FontStyle" value="BOLD" />
+ <property name="labelFontType" type="enum" class="com.install4j.runtime.beans.formcomponents.FontType" value="DERIVED" />
+ </serializedBean>
+ </formComponent>
+ <formComponent id="44" beanClass="com.install4j.runtime.beans.formcomponents.SeparatorComponent" />
+ <formComponent id="45" beanClass="com.install4j.runtime.beans.styles.ContentComponent" insetTop="10" insetBottom="0" />
+ </beans>
+ <externalParametrizationPropertyNames>
+ <propertyName>imageAnchor</propertyName>
+ <propertyName>imageEdgeBackgroundColor</propertyName>
+ <propertyName>imageFile</propertyName>
+ </externalParametrizationPropertyNames>
+ </group>
+ <formComponent id="46" beanClass="com.install4j.runtime.beans.styles.NestedStyleComponent" insetBottom="0">
+ <serializedBean>
+ <property name="styleId" type="string">52</property>
+ </serializedBean>
+ </formComponent>
+ </formComponents>
+ </style>
+ <group name="Style components" id="47" beanClass="com.install4j.runtime.beans.groups.StyleGroup">
+ <beans>
+ <style name="Standard header" id="48" beanClass="com.install4j.runtime.beans.styles.FormStyle">
+ <serializedBean>
+ <property name="fillVertical" type="boolean" value="false" />
+ <property name="standalone" type="boolean" value="false" />
+ <property name="verticalAnchor" type="enum" class="com.install4j.api.beans.Anchor" value="NORTH" />
+ </serializedBean>
+ <formComponents>
+ <group id="49" beanClass="com.install4j.runtime.beans.groups.VerticalFormComponentGroup" useExternalParametrization="true" externalParametrizationName="Customize title bar" externalParametrizationMode="include">
+ <serializedBean>
+ <property name="backgroundColor">
+ <object class="java.awt.Color">
+ <int>255</int>
+ <int>255</int>
+ <int>255</int>
+ <int>255</int>
+ </object>
+ </property>
+ <property name="borderSides">
+ <object class="com.install4j.runtime.beans.formcomponents.BorderSides">
+ <property name="bottom" type="boolean" value="true" />
+ </object>
+ </property>
+ <property name="imageAnchor" type="enum" class="com.install4j.api.beans.Anchor" value="NORTHEAST" />
+ <property name="imageEdgeBorderWidth" type="int" value="2" />
+ <property name="imageFile">
+ <object class="com.install4j.api.beans.ExternalFile">
+ <string>icon:${installer:sys.installerApplicationMode}_header.png</string>
+ </object>
+ </property>
+ <property name="imageInsets">
+ <object class="java.awt.Insets">
+ <int>0</int>
+ <int>5</int>
+ <int>1</int>
+ <int>1</int>
+ </object>
+ </property>
+ <property name="insets">
+ <object class="java.awt.Insets">
+ <int>0</int>
+ <int>20</int>
+ <int>0</int>
+ <int>10</int>
+ </object>
+ </property>
+ </serializedBean>
+ <beans>
+ <formComponent name="Title" id="50" beanClass="com.install4j.runtime.beans.styles.ScreenTitleComponent">
+ <serializedBean>
+ <property name="labelFontStyle" type="enum" class="com.install4j.runtime.beans.formcomponents.FontStyle" value="BOLD" />
+ <property name="labelFontType" type="enum" class="com.install4j.runtime.beans.formcomponents.FontType" value="DERIVED" />
+ </serializedBean>
+ </formComponent>
+ <formComponent name="Subtitle" id="51" beanClass="com.install4j.runtime.beans.styles.ScreenTitleComponent" insetLeft="8">
+ <serializedBean>
+ <property name="titleType" type="enum" class="com.install4j.runtime.beans.styles.TitleType" value="SUB_TITLE" />
+ </serializedBean>
+ </formComponent>
+ </beans>
+ <externalParametrizationPropertyNames>
+ <propertyName>backgroundColor</propertyName>
+ <propertyName>foregroundColor</propertyName>
+ <propertyName>imageAnchor</propertyName>
+ <propertyName>imageFile</propertyName>
+ <propertyName>imageOverlap</propertyName>
+ </externalParametrizationPropertyNames>
+ </group>
+ </formComponents>
+ </style>
+ <style name="Standard footer" id="52" beanClass="com.install4j.runtime.beans.styles.FormStyle">
+ <serializedBean>
+ <property name="fillVertical" type="boolean" value="false" />
+ <property name="standalone" type="boolean" value="false" />
+ <property name="verticalAnchor" type="enum" class="com.install4j.api.beans.Anchor" value="SOUTH" />
+ </serializedBean>
+ <formComponents>
+ <group id="53" beanClass="com.install4j.runtime.beans.groups.HorizontalFormComponentGroup">
+ <serializedBean>
+ <property name="alignFirstLabel" type="boolean" value="false" />
+ <property name="insets">
+ <object class="java.awt.Insets">
+ <int>3</int>
+ <int>5</int>
+ <int>8</int>
+ <int>5</int>
+ </object>
+ </property>
+ </serializedBean>
+ <beans>
+ <formComponent id="54" beanClass="com.install4j.runtime.beans.formcomponents.SpringComponent" />
+ <formComponent name="Back button" id="55" beanClass="com.install4j.runtime.beans.styles.StandardControlButtonComponent">
+ <serializedBean>
+ <property name="buttonText" type="string">< ${i18n:ButtonBack}</property>
+ <property name="controlButtonType" type="enum" class="com.install4j.api.context.ControlButtonType" value="PREVIOUS" />
+ </serializedBean>
+ </formComponent>
+ <formComponent name="Next button" id="56" beanClass="com.install4j.runtime.beans.styles.StandardControlButtonComponent">
+ <serializedBean>
+ <property name="buttonText" type="string">${i18n:ButtonNext} ></property>
+ <property name="controlButtonType" type="enum" class="com.install4j.api.context.ControlButtonType" value="NEXT" />
+ </serializedBean>
+ </formComponent>
+ <formComponent name="Cancel button" id="57" beanClass="com.install4j.runtime.beans.styles.StandardControlButtonComponent" insetLeft="5">
+ <serializedBean>
+ <property name="buttonText" type="string">${i18n:ButtonCancel}</property>
+ <property name="controlButtonType" type="enum" class="com.install4j.api.context.ControlButtonType" value="CANCEL" />
+ </serializedBean>
+ </formComponent>
+ </beans>
+ </group>
+ </formComponents>
+ </style>
+ </beans>
+ </group>
+ </styles>
+ </installerGui>
+ <mediaSets>
+ <linuxDeb name="Jalview .deb Package" id="153" mediaFileName="jalview-${compiler:JALVIEW_VERSION}" dependencies="openjdk-8-jre" bzip="true" description="Jalview Desktop" maintainerEmail="help@jalview.org">
+ <excludedComponents>
+ <component id="1031" />
+ <component id="1155" />
+ <component id="1156" />
+ <component id="1276" />
+ <component id="2110" />
+ </excludedComponents>
+ <excludedLaunchers>
+ <launcher id="737" />
+ </excludedLaunchers>
+ <exclude>
+ <entry defaultFileset="true" />
+ <entry filesetId="734" />
+ <entry filesetId="880" />
+ <entry filesetId="882" />
+ </exclude>
+ </linuxDeb>
+ <linuxRPM name="Jalview RPM Package" id="570" mediaFileName="jalview-${compiler:JALVIEW_VERSION}" dependencies="java-1.8.0-openjdk" arch="noarch">
+ <excludedComponents>
+ <component id="1031" />
+ <component id="1155" />
+ <component id="1156" />
+ <component id="1276" />
+ <component id="2110" />
+ </excludedComponents>
+ <excludedLaunchers>
+ <launcher id="737" />
+ </excludedLaunchers>
+ <exclude>
+ <entry defaultFileset="true" />
+ <entry filesetId="734" />
+ <entry filesetId="880" />
+ <entry filesetId="882" />
+ </exclude>
+ </linuxRPM>
+ <windows name="Windows x64 EXE Installer" id="743" mediaFileName="${compiler:sys.shortName}-${compiler:JALVIEW_VERSION}-${compiler:sys.platform}-java_${compiler:JAVA_INTEGER_VERSION}" runPostProcessor="true" postProcessor="${compiler:JSIGN_SH} $EXECUTABLE" customInstallBaseDir="~/AppData/Local">
+ <excludedComponents>
+ <component id="1155" />
+ <component id="1156" />
+ <component id="1276" />
+ <component id="1881" />
+ <component id="2110" />
+ </excludedComponents>
+ <exclude>
+ <entry defaultFileset="true" />
+ <entry filesetId="880" />
+ <entry filesetId="882" />
+ <entry filesetId="1873" />
+ </exclude>
+ <jreBundle jreBundleSource="preCreated" includedJre="${compiler:WINDOWS_JAVA_VM_TGZ}" manualJreEntry="true" />
+ </windows>
+ <windows name="Windows x64 MSI Installer" id="2446" mediaFileName="${compiler:sys.shortName}-${compiler:JALVIEW_VERSION}-${compiler:sys.platform}-java_${compiler:JAVA_INTEGER_VERSION}" runPostProcessor="true" postProcessor="${compiler:JSIGN_SH} $EXECUTABLE" customInstallBaseDir="~/AppData/Local" msi="true" msiScope="perUser">
+ <excludedComponents>
+ <component id="1155" />
+ <component id="1156" />
+ <component id="1276" />
+ <component id="1881" />
+ <component id="2110" />
+ </excludedComponents>
+ <exclude>
+ <entry defaultFileset="true" />
+ <entry filesetId="880" />
+ <entry filesetId="882" />
+ <entry filesetId="1873" />
+ </exclude>
+ <jreBundle jreBundleSource="preCreated" includedJre="${compiler:WINDOWS_JAVA_VM_TGZ}" manualJreEntry="true" />
+ </windows>
+ <macosArchive name="macOS Disk Image" id="878" mediaFileName="${compiler:sys.shortName}-${compiler:JALVIEW_VERSION}-${compiler:sys.platform}-java_${compiler:JAVA_INTEGER_VERSION}" volumeName="${compiler:sys.shortName} Installer" launcherId="737">
+ <excludedComponents>
+ <component id="1156" />
+ <component id="1276" />
+ <component id="1881" />
+ </excludedComponents>
+ <exclude>
+ <entry defaultFileset="true" />
+ <entry filesetId="882" />
+ <entry filesetId="1873" />
+ </exclude>
+ <topLevelFiles>
+ <symlink name="" "" target="/Applications" />
+ <file name=".background/jalview_dmg_background.png" file="./jalview_dmg_background.png" />
+ <file name=".DS_Store" file="./DS_Store" />
+ <symlink name="Jalview.app/Contents/Resources/app/${compiler:JRE_DIR}/Contents/MacOS/libjli.dylib" target="../Home/lib/jli/libjli.dylib" />
+ <file name="Jalview.app/Contents/Resources/Jalview-File.icns" file="./Jalview-File.icns" />
+ <file name="Jalview.app/Contents/Resources/Jalview-Launch.icns" file="Jalview-Launch.icns" />
+ <symlink name="Uninstall Old Jalview (optional).app" target="Jalview.app/Contents/Resources/app/Uninstall Old Jalview.app" />
+ </topLevelFiles>
+ </macosArchive>
+ <unixInstaller name="Unix Shell Installer" id="1595" mediaFileName="${compiler:sys.shortName}-${compiler:JALVIEW_VERSION}-${compiler:sys.platform}-java_${compiler:JAVA_INTEGER_VERSION}" customInstallBaseDir="~/opt/">
+ <excludedComponents>
+ <component id="1155" />
+ <component id="1156" />
+ <component id="1276" />
+ <component id="1881" />
+ <component id="2110" />
+ </excludedComponents>
+ <exclude>
+ <entry defaultFileset="true" />
+ <entry filesetId="880" />
+ <entry filesetId="882" />
+ <entry filesetId="1873" />
+ </exclude>
+ </unixInstaller>
+ <unixArchive name="Unix .tar.gz Archive" id="1596" mediaFileName="${compiler:sys.shortName}-${compiler:JALVIEW_VERSION}-${compiler:sys.platform}-java_${compiler:JAVA_INTEGER_VERSION}">
+ <excludedComponents>
+ <component id="1155" />
+ <component id="1156" />
+ <component id="1276" />
+ <component id="1881" />
+ <component id="2110" />
+ </excludedComponents>
+ <exclude>
+ <entry defaultFileset="true" />
+ <entry filesetId="880" />
+ <entry filesetId="882" />
+ <entry filesetId="1873" />
+ </exclude>
+ </unixArchive>
+ </mediaSets>
+ <buildIds>
+ <mediaSet refId="153" />
+ <mediaSet refId="570" />
+ <mediaSet refId="743" />
+ <mediaSet refId="878" />
+ <mediaSet refId="1274" />
+ <mediaSet refId="1595" />
+ <mediaSet refId="1596" />
+ <mediaSet refId="1862" />
+ <mediaSet refId="1867" />
+ <mediaSet refId="1871" />
+ </buildIds>
+</install4j>