task copyInstall4jTemplate {
-
def install4jTemplateFile = file("${install4jDir}/${install4j_template}")
def install4jFileAssociationsFile = file("${install4jDir}/${install4j_installer_file_associations}")
inputs.file(install4jTemplateFile)
outputs.file(install4jConfFile)
doLast {
- def install4j = new XmlParser().parse(install4jTemplateFile)
+ def install4jConfigXml = new XmlParser().parse(install4jTemplateFile)
// turn off code signing if no OSX_KEYPASS
if (OSX_KEYPASS == "") {
- install4j.'**'.codeSigning.each { codeSigning ->
+ install4jConfigXml.'**'.codeSigning.each { codeSigning ->
codeSigning.'@macEnabled' = "false"
}
- install4j.'**'.windows.each { windows ->
+ 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>")
- install4j.'**'.action.any { a ->
+ install4jConfigXml.'**'.action.any { a ->
if (a.'@name' == 'EXTENSIONS_REPLACED_BY_GRADLE') {
def parent = a.parent()
parent.remove(a)
}
// write install4j file
- install4jConfFile.text = XmlUtil.serialize(install4j)
+ install4jConfFile.text = XmlUtil.serialize(install4jConfigXml)
}
}
+++ /dev/null
-#!/usr/bin/env perl
-
-use strict;
-
-my $i4jversion = 7;
-if ($ARGV[0] eq "-v") {
- shift @ARGV;
- $i4jversion = shift @ARGV;
- die("-v i4jversion must be an integer [probably 7 or 8]") unless $i4jversion =~ m/^\d+$/;
-}
-# backwards compatibility
-$i4jversion = "" if $i4jversion < 8;
-
-my $fileformats = $ARGV[0];
-$fileformats = "../../src/jalview/io/FileFormat.java" unless $fileformats;
-
-# default mimetype will be text/x-$shortname
-# TODO: find an actual extension for mat, see JAL-Xxxxx for outstanding issues too
-# TODO: look up standard mime type used for BLASTfmt matrices, etc
-my $mimetypes = {
- rnaml => "application/rnaml+xml",
- biojson => "application/x-jalview-biojson+json",
- jnet => "application/x-jalview-jnet+text",
- features => "application/x-jalview-features+text",
- scorematrix => "application/x-jalview-scorematrix+text",
- pdb => "chemical/x-pdb",
- mmcif => "chemical/x-cif",
- mmcif2 => "chemical/x-mcif",
- jalview => "application/x-jalview+xml+zip",
- jvl => "application/x-jalview-jvl+text",
- annotations => "application/x-jalview-annotations+text",
-};
-
-my @dontaddshortname = qw(features json);
-my @dontaddextension = qw(html xml json jar mfa fastq);
-my $add_associations = {
- biojson => {shortname=>"biojson",name=>"BioJSON",extensions=>["biojson"]},
- gff2 => {shortname=>"gff2",name=>"Generic Features Format v2",extensions=>["gff2"]},
- gff3 => {shortname=>"gff3",name=>"Generic Features Format v3",extensions=>["gff3"]},
- features => {shortname=>"features",name=>"Jalview Features",extensions=>["features","jvfeatures"]},
- annotations => {shortname=>"annotations",name=>"Jalview Annotations",extensions=>["annotations","jvannotations"]},
- mmcif2 => {shortname=>"mmcif2",name=>"mmCIF",extensions=>["mcif","mmcif"]},
- jvl => {shortname=>"jvl",name=>"Jalview Version Locator",extensions=>["jvl"],iconfile=>"Jalview-Version-Locator"},
- jnet => {shortname=>"jnet",name=>"JnetFile",extensions=>["concise","jnet"]},
- scorematrix => {shortname=>"scorematrix",name=>"Substitution Matrix",extensions=>["mat"]},
-};
-my $add_extensions = {
- blc => ["blc"],
-};
-my @put_first = qw(jalview jvl);
-
-my $mactemplatefile = "file_associations_template-Info_plist.xml";
-my $i4jtemplatefile = ($i4jversion >= 8)?"file_associations_template-install4j${i4jversion}.xml";
-my $mactemplate;
-my $i4jtemplate;
-open(MT,"<$mactemplatefile") or dir("Could not open '$mactemplatefile' for reading");
-while(<MT>){
- $mactemplate .= $_;
-}
-close(MT);
-open(IT,"<$i4jtemplatefile") or dir("Could not open '$i4jtemplatefile' for reading");
-while(<IT>){
- $i4jtemplate .= $_;
-}
-close(IT);
-my $macauto;
-my $i4jauto;
-
-my $macautofile = $mactemplatefile;
-$macautofile =~ s/template/auto$1/;
-my $i4jautofile = $i4jtemplatefile;
-$i4jautofile =~ s/template/auto$1/;
-
-open(MA,">$macautofile") or die ("Could not open '$macautofile' for writing");
-print MA "<key>CFBundleDocumentTypes</key>\n<array>\n\n";
-open(IA,">$i4jautofile") or die ("Could not open '$i4jautofile' for writing");
-
-open(IN, "<$fileformats") or die ("Could not open '$fileformats' for reading");
-my $id = 10000;
-my $file_associations = {};
-while(my $line = <IN>) {
- $line =~ s/\s+/ /g;
- $line =~ s/(^ | $)//g;
- if ($line =~ m/^(\w+) ?\( ?"([^"]*)" ?, ?"([^"]*)" ?, ?(true|false) ?, ?(true|false) ?\)$/i) {
- my $shortname = lc($1);
- next if (grep($_ eq $shortname, @dontaddshortname));
- my $name = $2;
- my $extensions = $3;
- $extensions =~ s/\s+//g;
- my @possextensions = split(m/,/,$extensions);
- my @extensions;
- my $addext = $add_extensions->{$shortname};
- if (ref($addext) eq "ARRAY") {
- push(@possextensions, @$addext);
- }
- for my $possext (@possextensions) {
- next if grep($_ eq $possext, @extensions);
- next if grep($_ eq $possext, @dontaddextension);
- push(@extensions,$possext);
- }
- next unless scalar(@extensions);
- $file_associations->{$shortname} = {
- shortname => $shortname,
- name => $name,
- extensions => \@extensions
- };
- warn("Adding file association for $shortname\n");
- }
-}
-close(IN);
-
-my %all_associations = (%$file_associations, %$add_associations);
-
-for my $shortname (@put_first, sort keys %all_associations) {
- my $a = $all_associations{$shortname};
- if (ref($a) ne "HASH") {
- next;
- }
-
- my $name = $a->{name};
- my $extensions = $a->{extensions};
- my $mimetype = $mimetypes->{$shortname};
- $mimetype = "text/x-$shortname" unless $mimetype;
-
- my $iconfile = $a->{iconfile};
- $iconfile = "Jalview-File" unless $iconfile;
-
- my @extensions = @$extensions;
- #warn("LINE: $line\nFound extensions '".join("', '", @extensions)."' for $name Files ($shortname)'n");
-
- my $macentry = $mactemplate;
- my $i4jentry = $i4jtemplate;
-
- $macentry =~ s/\$\$NAME\$\$/$name/g;
- $macentry =~ s/\$\$SHORTNAME\$\$/$shortname/g;
- $macentry =~ s/\$\$MIMETYPE\$\$/$mimetype/g;
- $macentry =~ s/\$\$ICONFILE\$\$/$iconfile/g;
-
- $i4jentry =~ s/\$\$NAME\$\$/$name/g;
- $i4jentry =~ s/\$\$SHORTNAME\$\$/$shortname/g;
- $i4jentry =~ s/\$\$MIMETYPE\$\$/$mimetype/g;
- $i4jentry =~ s/\$\$ICONFILE\$\$/$iconfile/g;
-
- while ($macentry =~ m/\$\$([^\$]*)EXTENSIONS([^\$]*)\$\$/) {
- my $pre = $1;
- my $post = $2;
- my $macextensions;
- for my $ext (@extensions) {
- $macextensions .= $pre.$ext.$post;
- }
- $macentry =~ s/\$\$${pre}EXTENSIONS${post}\$\$/$macextensions/g;
- }
- print MA $macentry;
-
- for my $ext (@extensions) {
- my $i4jextentry = $i4jentry;
- $i4jextentry =~ s/\$\$EXTENSION\$\$/$ext/g;
- $i4jextentry =~ s/\$\$ID\$\$/$id/g;
- $id++;
-
- print IA $i4jextentry;
- }
-
- delete $all_associations{$shortname};
-}
-
-close(IA);
-print MA "</array>\n";
-close(MA);
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<install4j version="7.0.9" transformSequenceNumber="7">
- <directoryPresets config="../../../../../buildtools/jre/openjdk-java_vm/macos-jdk8u202-b08-jre" />
- <application name="Jalview" distributionSourceDir="" applicationId="6595-2347-1923-0725" mediaDir="../../build/install4j/$$JAVA_VERSION$$" mediaFilePattern="${compiler:sys.shortName}_${compiler:sys.platform}_${compiler:sys.version}" compression="6" lzmaCompression="true" pack200Compression="false" excludeSignedFromPacking="true" commonExternalFiles="false" createMd5Sums="true" shrinkRuntime="true" shortName="Jalview" publisher="University of Dundee" publisherWeb="http://www.jalview.org/" version="$$VERSION$$" allPathsRelative="true" backupOnSave="false" autoSave="false" convertDotsToUnderscores="true" macSignature="????" macVolumeId="5aac4968c304f65" javaMinVersion="9999999999" javaMaxVersion="" allowBetaVM="true" jdkMode="jdk" jdkName="JDK 11.0">
- <languages skipLanguageSelection="false" languageSelectionInPrincipalLanguage="false">
- <principalLanguage id="en" customLocalizationFile="" />
- <additionalLanguages />
- </languages>
- <searchSequence>
- <directory location="jre" />
- </searchSequence>
- <variables>
- <variable name="OSX_KEYSTORE" value="" description="" category="" />
- <variable name="JSIGN_SH" value="" description="" category="" />
- </variables>
- <mergedProjects />
- <codeSigning macEnabled="true" macPkcs12File="${compiler:OSX_KEYSTORE}" windowsEnabled="false" windowsKeySource="pkcs12" windowsPvkFile="" windowsSpcFile="" windowsPkcs12File="" windowsPkcs11Library="" windowsPkcs11Slot="">
- <windowsKeystoreIdentifier issuer="" serial="" subject="" />
- <windowsPkcs11Identifier issuer="" serial="" subject="" />
- </codeSigning>
- </application>
- <files keepModificationTimes="false" missingFilesStrategy="warn" globalExcludeSuffixes="" defaultOverwriteMode="4" defaultUninstallMode="2" launcherOverwriteMode="3" defaultFileMode="644" defaultDirMode="755">
- <filesets>
- <fileset name="Full file set" id="734" customizedId="" />
- <fileset name="Mac OS X JRE" id="880" customizedId="" />
- <fileset name="Windows JRE" id="882" customizedId="" />
- </filesets>
- <roots>
- <root id="735" fileset="734" location="" />
- <root id="881" fileset="880" location="" />
- <root id="883" fileset="882" location="" />
- </roots>
- <mountPoints>
- <mountPoint id="454" root="" location="" mode="755" />
- <mountPoint id="736" root="735" location="" mode="755" />
- <mountPoint id="884" root="881" location="" mode="755" />
- <mountPoint id="885" root="883" location="" mode="755" />
- </mountPoints>
- <entries>
- <dirEntry mountPoint="454" file="../../getdown/files/$$JAVA_VERSION$$" overwriteMode="4" shared="false" fileMode="644" uninstallMode="2" overrideFileMode="false" overrideOverwriteMode="true" overrideUninstallMode="true" entryMode="direct" subDirectory="files" excludeSuffixes="" dirMode="755" overrideDirMode="false">
- <exclude />
- </dirEntry>
- <dirEntry mountPoint="736" file="../../getdown/website/$$JAVA_VERSION$$" overwriteMode="4" shared="false" fileMode="644" uninstallMode="2" overrideFileMode="false" overrideOverwriteMode="true" overrideUninstallMode="true" entryMode="direct" subDirectory="files" excludeSuffixes="" dirMode="755" overrideDirMode="false">
- <exclude />
- </dirEntry>
- <dirEntry mountPoint="884" file="$$MACOS_JAVA_VM_DIR$$" overwriteMode="4" shared="false" fileMode="755" uninstallMode="0" overrideFileMode="true" overrideOverwriteMode="false" overrideUninstallMode="true" entryMode="subdir" subDirectory="jre" excludeSuffixes="" dirMode="755" overrideDirMode="false">
- <exclude />
- </dirEntry>
- <dirEntry mountPoint="885" file="$$WINDOWS_JAVA_VM_DIR$$" overwriteMode="4" shared="false" fileMode="755" uninstallMode="0" overrideFileMode="true" overrideOverwriteMode="false" overrideUninstallMode="true" entryMode="subdir" subDirectory="jre" excludeSuffixes="" dirMode="755" overrideDirMode="false">
- <exclude />
- </dirEntry>
- </entries>
- <components>
- <component name="jalview_getdown" id="1031" customizedId="" displayDescription="false" hideHelpButton="false" selected="true" changeable="true" downloadable="false" hidden="false">
- <description />
- <include all="false">
- <entry location=".i4j_fileset_734" fileType="regular" />
- </include>
- <dependencies />
- </component>
- <component name="macos_java_vm" id="1155" customizedId="" displayDescription="false" hideHelpButton="false" selected="true" changeable="true" downloadable="false" hidden="false">
- <description />
- <include all="false">
- <entry location=".i4j_fileset_880" fileType="regular" />
- </include>
- <dependencies />
- </component>
- <component name="windows_java_vm" id="1156" customizedId="" displayDescription="false" hideHelpButton="false" selected="true" changeable="true" downloadable="false" hidden="false">
- <description />
- <include all="false">
- <entry location=".i4j_fileset_882" fileType="regular" />
- </include>
- <dependencies />
- </component>
- <component name="getdown" id="1276" customizedId="" displayDescription="false" hideHelpButton="false" selected="true" changeable="true" downloadable="false" hidden="false">
- <description />
- <include all="false">
- <entry location=".i4j_fileset_" fileType="regular" />
- </include>
- <dependencies />
- </component>
- </components>
- </files>
- <launchers>
- <launcher name="Offline Jalview Launcher" id="737" customizedId="" external="false" excludeFromMenu="false" unixMode="755" unixAutoStart="true" menuName="${compiler:sys.shortName}" icnsFile="../../resources/images/jalview_logos.icns" customMacBundleIdentifier="false" macBundleIdentifier="" swtApp="false" fileset="734" macBundleBinary="JavaApplicationStub" addMacEntitlements="false" macEntitlementsFile="" useCustomMacosExecutableName="true" customMacosExecutableName="${compiler:sys.shortName}" useJavaMinVersionOverride="false" javaMinVersionOverride="" useJavaMaxVersionOverride="false" javaMaxVersionOverride="" checkUpdater="false" updateExecutionMode="unattendedProgress" unattendedUpdateTitle="${i18n:updater.WindowTitle("${compiler:sys.fullName}")}">
- <executable name="${compiler:sys.shortName}" type="1" iconSet="true" iconFile="../../resources/images/jalview_logos.ico" executableDir="." redirectStderr="true" stderrFile="error.log" stderrMode="overwrite" redirectStdout="true" stdoutFile="output.log" stdoutMode="overwrite" failOnStderrOutput="true" executableMode="1" changeWorkingDirectory="true" workingDirectory="." singleInstance="true" serviceStartType="2" serviceDependencies="" serviceDescription="" jreLocation="" executionLevel="asInvoker" checkConsoleParameter="true" globalSingleInstance="false" singleInstanceActivate="true" dpiAware="java9+">
- <versionInfo include="true" fileVersion="" fileDescription="${compiler:sys.shortName}" legalCopyright="..." internalName="${compiler:sys.shortName}" productName="${compiler:sys.shortName}" />
- </executable>
- <splashScreen show="false" 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" fontColor="0,0,0" bold="false" />
- <versionLine x="85" y="109" text="version ${compiler:sys.version}" fontSize="8" fontColor="0,0,0" bold="false" />
- </text>
- </splashScreen>
- <java mainClass="com.threerings.getdown.launcher.GetdownApp" mainMode="1" vmParameters="" arguments="." allowVMPassthroughParameters="true" preferredVM="" bundleRuntime="true">
- <classPath>
- <archive location="getdown-launcher.jar" failOnError="true" />
- <archive location="dist/commons-compress-1.18.jar" failOnError="true" />
- </classPath>
- <modulePath />
- <nativeLibraryDirectories />
- <vmOptions />
- </java>
- <includedFiles />
- <unextractableFiles />
- <vmOptionsFile mode="template" overwriteMode="0" fileMode="644">
- <content />
- </vmOptionsFile>
- <customScript mode="1" file="">
- <content />
- </customScript>
- <infoPlist mode="1" file="">
- <content />
- </infoPlist>
- <iconImageFiles>
- <file path="../../resources/images/Jalview_Logo.png" />
- </iconImageFiles>
- </launcher>
- <launcher name="Network Jalview Launcher" id="1402" customizedId="" external="false" excludeFromMenu="false" unixMode="755" unixAutoStart="true" menuName="${compiler:sys.shortName}" icnsFile="../../resources/images/jalview_logos.icns" customMacBundleIdentifier="false" macBundleIdentifier="" swtApp="false" fileset="" macBundleBinary="JavaApplicationStub" addMacEntitlements="false" macEntitlementsFile="" useCustomMacosExecutableName="true" customMacosExecutableName="${compiler:sys.shortName}" useJavaMinVersionOverride="false" javaMinVersionOverride="" useJavaMaxVersionOverride="false" javaMaxVersionOverride="" checkUpdater="false" updateExecutionMode="unattendedProgress" unattendedUpdateTitle="${i18n:updater.WindowTitle("${compiler:sys.fullName}")}">
- <executable name="Jalview" type="1" iconSet="true" iconFile="../../resources/images/jalview_logos.ico" executableDir="." redirectStderr="true" stderrFile="error.log" stderrMode="overwrite" redirectStdout="true" stdoutFile="output.log" stdoutMode="overwrite" failOnStderrOutput="true" executableMode="1" changeWorkingDirectory="true" workingDirectory="." singleInstance="true" serviceStartType="2" serviceDependencies="" serviceDescription="" jreLocation="" executionLevel="asInvoker" checkConsoleParameter="true" globalSingleInstance="false" singleInstanceActivate="true" dpiAware="java9+">
- <versionInfo include="true" fileVersion="" fileDescription="${compiler:sys.shortName}" legalCopyright="..." internalName="${compiler:sys.shortName}" productName="${compiler:sys.shortName}" />
- </executable>
- <splashScreen show="false" 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" fontColor="0,0,0" bold="false" />
- <versionLine x="85" y="109" text="version ${compiler:sys.version}" fontSize="8" fontColor="0,0,0" bold="false" />
- </text>
- </splashScreen>
- <java mainClass="com.threerings.getdown.launcher.GetdownApp" mainMode="1" vmParameters="" arguments="." allowVMPassthroughParameters="true" preferredVM="" bundleRuntime="true">
- <classPath>
- <archive location="getdown-launcher.jar" failOnError="true" />
- <archive location="dist/commons-compress-1.18.jar" failOnError="true" />
- </classPath>
- <modulePath />
- <nativeLibraryDirectories />
- <vmOptions />
- </java>
- <includedFiles />
- <unextractableFiles />
- <vmOptionsFile mode="template" overwriteMode="0" fileMode="644">
- <content />
- </vmOptionsFile>
- <customScript mode="1" file="">
- <content />
- </customScript>
- <infoPlist mode="1" file="">
- <content />
- </infoPlist>
- <iconImageFiles>
- <file path="../../resources/images/Jalview_Logo.png" />
- </iconImageFiles>
- </launcher>
- </launchers>
- <installerGui installerType="1" addOnAppId="" suggestPreviousLocations="true" autoUpdateDescriptorUrl="" useAutoUpdateBaseUrl="false" autoUpdateBaseUrl="">
- <staticMembers script="" />
- <customCode />
- <autoUpdate useMinUpdatableVersion="false" minUpdatableVersion="" useMaxUpdatableVersion="false" maxUpdatableVersion="">
- <commentFiles />
- <customAttributes />
- </autoUpdate>
- <applications>
- <application name="" id="installer" customizedId="" beanClass="com.install4j.runtime.beans.applications.InstallerApplication" enabled="true" commentSet="false" comment="" actionElevationType="none" styleId="35" fileset="" customIcnsFile="../../resources/images/jalview_logos.icns" customIcoFile="../../resources/images/jalview_logos.ico" macEntitlementsFile="" automaticLauncherIntegration="false" launchMode="startupFirstWindow" launchInNewProcess="true" launchSchedule="updateSchedule" allLaunchers="true">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.applications.InstallerApplication">
- <void property="useCustomIcon">
- <boolean>true</boolean>
- </void>
- </object>
- </java>
- </serializedBean>
- <styleOverrides>
- <styleOverride name="Customize banner image" enabled="true">
- <group name="" id="146" customizedId="" beanClass="com.install4j.runtime.beans.groups.VerticalFormComponentGroup" enabled="true" commentSet="false" comment="" actionElevationType="inherit" useExternalParametrization="true" externalParametrizationName="Customize banner image" externalParametrizationMode="include">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.groups.VerticalFormComponentGroup">
- <void property="backgroundColor">
- <object class="java.awt.Color">
- <int>255</int>
- <int>255</int>
- <int>255</int>
- <int>255</int>
- </object>
- </void>
- <void property="borderSides">
- <object class="com.install4j.runtime.beans.formcomponents.BorderSides">
- <void property="bottom">
- <boolean>true</boolean>
- </void>
- </object>
- </void>
- <void property="imageEdgeBackgroundColor">
- <object class="java.awt.Color">
- <int>255</int>
- <int>255</int>
- <int>255</int>
- <int>255</int>
- </object>
- </void>
- <void property="imageEdgeBorder">
- <boolean>true</boolean>
- </void>
- <void property="imageFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>../../resources/images/jalview_logo_background_fade-640x480.png</string>
- </object>
- </void>
- <void property="insets">
- <object class="java.awt.Insets">
- <int>5</int>
- <int>10</int>
- <int>10</int>
- <int>10</int>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <beans />
- <externalParametrizationPropertyNames>
- <propertyName>imageAnchor</propertyName>
- <propertyName>imageEdgeBackgroundColor</propertyName>
- <propertyName>imageFile</propertyName>
- </externalParametrizationPropertyNames>
- </group>
- </styleOverride>
- <styleOverride name="Jalview" enabled="true">
- <formComponent name="Watermark" id="352" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.SeparatorComponent" enabled="true" commentSet="false" comment="" insetTop="0" insetLeft="5" insetBottom="0" insetRight="" resetInitOnPrevious="false" useExternalParametrization="true" externalParametrizationName="Jalview" externalParametrizationMode="include">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.SeparatorComponent">
- <void property="enabledTitleText">
- <boolean>false</boolean>
- </void>
- <void property="labelText">
- <string>install4j</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames>
- <propertyName>labelText</propertyName>
- </externalParametrizationPropertyNames>
- </formComponent>
- </styleOverride>
- </styleOverrides>
- <customScript mode="1" file="">
- <content />
- </customScript>
- <launcherIds />
- <variables />
- <startup>
- <screen name="" id="1" customizedId="" beanClass="com.install4j.runtime.beans.screens.StartupScreen" enabled="true" commentSet="false" comment="" actionElevationType="inherit" styleId="" rollbackBarrier="false" rollbackBarrierExitCode="0" backButton="2" finishScreen="false" wizardIndexChangeType="unchanged" wizardIndexKey="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.screens.StartupScreen" />
- </java>
- </serializedBean>
- <styleOverrides />
- <condition />
- <validation />
- <preActivation />
- <postActivation />
- <actions>
- <action name="" id="22" customizedId="" beanClass="com.install4j.runtime.beans.actions.misc.RequestPrivilegesAction" enabled="true" commentSet="false" comment="" actionElevationType="none" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.misc.RequestPrivilegesAction" />
- </java>
- </serializedBean>
- <condition />
- </action>
- </actions>
- <formComponents />
- </screen>
- </startup>
- <screens>
- <screen name="" id="2" customizedId="" beanClass="com.install4j.runtime.beans.screens.WelcomeScreen" enabled="true" commentSet="false" comment="" actionElevationType="inherit" styleId="" rollbackBarrier="false" rollbackBarrierExitCode="0" backButton="2" finishScreen="false" wizardIndexChangeType="unchanged" wizardIndexKey="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.screens.WelcomeScreen" />
- </java>
- </serializedBean>
- <styleOverrides>
- <styleOverride name="Customize banner image" enabled="true">
- <group name="" id="145" customizedId="" beanClass="com.install4j.runtime.beans.groups.VerticalFormComponentGroup" enabled="true" commentSet="false" comment="" actionElevationType="inherit" useExternalParametrization="true" externalParametrizationName="Customize banner image" externalParametrizationMode="include">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.groups.VerticalFormComponentGroup">
- <void property="backgroundColor">
- <object class="java.awt.Color">
- <int>255</int>
- <int>255</int>
- <int>255</int>
- <int>255</int>
- </object>
- </void>
- <void property="borderSides">
- <object class="com.install4j.runtime.beans.formcomponents.BorderSides">
- <void property="bottom">
- <boolean>true</boolean>
- </void>
- </object>
- </void>
- <void property="imageEdgeBackgroundColor">
- <object class="java.awt.Color">
- <int>25</int>
- <int>143</int>
- <int>220</int>
- <int>255</int>
- </object>
- </void>
- <void property="imageEdgeBorder">
- <boolean>true</boolean>
- </void>
- <void property="imageFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>../../resources/images/jalview_logo_background_fade-640x480.png</string>
- </object>
- </void>
- <void property="insets">
- <object class="java.awt.Insets">
- <int>5</int>
- <int>10</int>
- <int>10</int>
- <int>10</int>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <beans />
- <externalParametrizationPropertyNames>
- <propertyName>imageAnchor</propertyName>
- <propertyName>imageEdgeBackgroundColor</propertyName>
- <propertyName>imageFile</propertyName>
- </externalParametrizationPropertyNames>
- </group>
- </styleOverride>
- </styleOverrides>
- <condition />
- <validation />
- <preActivation />
- <postActivation />
- <actions>
- <action name="" id="7" customizedId="" beanClass="com.install4j.runtime.beans.actions.misc.LoadResponseFileAction" enabled="true" commentSet="false" comment="" actionElevationType="inherit" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="true" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.misc.LoadResponseFileAction">
- <void property="excludedVariables">
- <array class="java.lang.String" length="1">
- <void index="0">
- <string>sys.installationDir</string>
- </void>
- </array>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition>context.getBooleanVariable("sys.confirmedUpdateInstallation")</condition>
- </action>
- </actions>
- <formComponents>
- <formComponent name="" id="3" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent">
- <void property="labelText">
- <string>${form:welcomeMessage}</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript>!context.isConsole()</visibilityScript>
- <externalParametrizationPropertyNames />
- </formComponent>
- <formComponent name="" id="4" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.ConsoleHandlerFormComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.ConsoleHandlerFormComponent">
- <void property="consoleScript">
- <object class="com.install4j.api.beans.ScriptProperty">
- <void property="value">
- <string>String message = context.getMessage("ConsoleWelcomeLabel", context.getApplicationName());
-return console.askOkCancel(message, true);
-</string>
- </void>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- <formComponent name="" id="5" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.UpdateAlertComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="true" externalParametrizationName="Update Alert" externalParametrizationMode="include">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.UpdateAlertComponent" />
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames>
- <propertyName>updateCheck</propertyName>
- </externalParametrizationPropertyNames>
- </formComponent>
- <formComponent name="" id="6" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent" enabled="true" commentSet="false" comment="" insetTop="20" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent">
- <void property="labelText">
- <string>${i18n:ClickNext}</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- </formComponents>
- </screen>
- <screen name="" id="8" customizedId="" beanClass="com.install4j.runtime.beans.screens.InstallationDirectoryScreen" enabled="true" commentSet="false" comment="" actionElevationType="inherit" styleId="" rollbackBarrier="false" rollbackBarrierExitCode="0" backButton="2" finishScreen="false" wizardIndexChangeType="unchanged" wizardIndexKey="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.screens.InstallationDirectoryScreen" />
- </java>
- </serializedBean>
- <styleOverrides />
- <condition>!context.getBooleanVariable("sys.confirmedUpdateInstallation")</condition>
- <validation />
- <preActivation />
- <postActivation />
- <actions>
- <action name="" id="11" customizedId="" beanClass="com.install4j.runtime.beans.actions.misc.LoadResponseFileAction" enabled="true" commentSet="false" comment="" actionElevationType="inherit" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="true" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.misc.LoadResponseFileAction">
- <void property="excludedVariables">
- <array class="java.lang.String" length="1">
- <void index="0">
- <string>sys.installationDir</string>
- </void>
- </array>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition>context.getVariable("sys.responseFile") == null</condition>
- </action>
- </actions>
- <formComponents>
- <formComponent name="" id="9" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="25" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent">
- <void property="labelText">
- <string>${i18n:SelectDirLabel(${compiler:sys.fullName})}</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- <formComponent name="" id="10" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.InstallationDirectoryChooserComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="true" externalParametrizationName="Installation Directory Chooser" externalParametrizationMode="include">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.InstallationDirectoryChooserComponent">
- <void property="requestFocus">
- <boolean>true</boolean>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames>
- <propertyName>suggestAppDir</propertyName>
- <propertyName>validateApplicationId</propertyName>
- <propertyName>existingDirWarning</propertyName>
- <propertyName>checkWritable</propertyName>
- <propertyName>manualEntryAllowed</propertyName>
- <propertyName>checkFreeSpace</propertyName>
- <propertyName>showRequiredDiskSpace</propertyName>
- <propertyName>showFreeDiskSpace</propertyName>
- <propertyName>allowSpacesOnUnix</propertyName>
- <propertyName>validationScript</propertyName>
- <propertyName>standardValidation</propertyName>
- </externalParametrizationPropertyNames>
- </formComponent>
- </formComponents>
- </screen>
- <screen name="" id="12" customizedId="" beanClass="com.install4j.runtime.beans.screens.ComponentsScreen" enabled="false" commentSet="false" comment="" actionElevationType="inherit" styleId="" rollbackBarrier="false" rollbackBarrierExitCode="0" backButton="2" finishScreen="false" wizardIndexChangeType="unchanged" wizardIndexKey="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.screens.ComponentsScreen" />
- </java>
- </serializedBean>
- <styleOverrides />
- <condition />
- <validation />
- <preActivation />
- <postActivation />
- <actions />
- <formComponents>
- <formComponent name="" id="13" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent">
- <void property="labelText">
- <string>${i18n:SelectComponentsLabel2}</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript>!context.isConsole()</visibilityScript>
- <externalParametrizationPropertyNames />
- </formComponent>
- <formComponent name="" id="14" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.ComponentSelectorComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="true" externalParametrizationName="Installation Components" externalParametrizationMode="include">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.ComponentSelectorComponent">
- <void property="fillVertical">
- <boolean>true</boolean>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames>
- <propertyName>selectionChangedScript</propertyName>
- </externalParametrizationPropertyNames>
- </formComponent>
- </formComponents>
- </screen>
- <screen name="" id="15" customizedId="" beanClass="com.install4j.runtime.beans.screens.InstallationScreen" enabled="true" commentSet="false" comment="" actionElevationType="inherit" styleId="" rollbackBarrier="true" rollbackBarrierExitCode="0" backButton="2" finishScreen="false" wizardIndexChangeType="unchanged" wizardIndexKey="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.screens.InstallationScreen" />
- </java>
- </serializedBean>
- <styleOverrides />
- <condition />
- <validation />
- <preActivation />
- <postActivation />
- <actions>
- <action name="" id="17" customizedId="" beanClass="com.install4j.runtime.beans.actions.InstallFilesAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="2" errorMessage="${i18n:FileCorrupted}">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.InstallFilesAction" />
- </java>
- </serializedBean>
- <condition />
- </action>
- <action name="" id="18" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateProgramGroupAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateProgramGroupAction">
- <void property="uninstallerMenuName">
- <string>${i18n:UninstallerMenuEntry(${compiler:sys.fullName})}</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition>!context.getBooleanVariable("sys.programGroupDisabled")</condition>
- </action>
- <action name="" id="19" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.RegisterAddRemoveAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.RegisterAddRemoveAction">
- <void property="itemName">
- <string>${compiler:sys.fullName} ${compiler:sys.version}</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
- <action name="" id="124" customizedId="" beanClass="com.install4j.runtime.beans.actions.control.SetVariableAction" enabled="false" commentSet="false" comment="" actionElevationType="inherit" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.control.SetVariableAction">
- <void property="script">
- <object class="com.install4j.api.beans.ScriptProperty">
- <void property="value">
- <string />
- </void>
- </object>
- </void>
- <void property="variableName">
- <string />
- </void>
- </object>
- </java>
- </serializedBean>
- <condition>true</condition>
- </action>
- <action name="" id="134" customizedId="" beanClass="com.install4j.runtime.beans.actions.misc.AddVmOptionsAction" enabled="false" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.misc.AddVmOptionsAction">
- <void property="launcherId">
- <string>121</string>
- </void>
- <void property="vmOptions">
- <array class="java.lang.String" length="0" />
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
- </actions>
- <formComponents>
- <formComponent name="" id="16" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.ProgressComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.ProgressComponent">
- <void property="initialStatusMessage">
- <string>${i18n:WizardPreparing}</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- </formComponents>
- </screen>
- <screen name="" id="20" customizedId="" beanClass="com.install4j.runtime.beans.screens.FinishedScreen" enabled="true" commentSet="false" comment="" actionElevationType="inherit" styleId="" rollbackBarrier="false" rollbackBarrierExitCode="0" backButton="2" finishScreen="true" wizardIndexChangeType="unchanged" wizardIndexKey="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.screens.FinishedScreen" />
- </java>
- </serializedBean>
- <styleOverrides />
- <condition />
- <validation />
- <preActivation />
- <postActivation />
- <actions>
- <action name="" id="573" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateDesktopLinkAction" enabled="false" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateDesktopLinkAction">
- <void property="name">
- <string>${compiler:sys.fullName}</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition>context.getBooleanVariable("createDesktopLinkAction")</condition>
- </action>
- <action name="" id="575" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.AddStartupItemAction" enabled="false" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.AddStartupItemAction" />
- </java>
- </serializedBean>
- <condition />
- </action>
- <action name="" id="576" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.AddToDockAction" enabled="false" commentSet="false" comment="" actionElevationType="none" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.AddToDockAction" />
- </java>
- </serializedBean>
- <condition>context.getBooleanVariable("addToDockAction")</condition>
- </action>
- <action name="" id="578" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>Jalview Project File</string>
- </void>
- <void property="extension">
- <string>jvp</string>
- </void>
- <void property="launcherId">
- <string>121</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>../../resources/images/file.png</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>../../resources/images/file.png</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
- </actions>
- <formComponents>
- <formComponent name="" id="21" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="10" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent">
- <void property="labelText">
- <string>${form:finishedMessage}</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- <formComponent name="Add a desktop link" id="574" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.CheckboxComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.CheckboxComponent">
- <void property="checkboxText">
- <string>${i18n:CreateDesktopIcon}</string>
- </void>
- <void property="initiallySelected">
- <boolean>true</boolean>
- </void>
- <void property="variableName">
- <string>createDesktopLinkAction</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- <formComponent name="Add an executable to the dock" id="577" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.CheckboxComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.CheckboxComponent">
- <void property="checkboxText">
- <string>${i18n:AddToDock}</string>
- </void>
- <void property="initiallySelected">
- <boolean>true</boolean>
- </void>
- <void property="variableName">
- <string>addToDockAction</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript>Util.isMacOS()</visibilityScript>
- <externalParametrizationPropertyNames />
- </formComponent>
- </formComponents>
- </screen>
- </screens>
- </application>
- <application name="" id="uninstaller" customizedId="" beanClass="com.install4j.runtime.beans.applications.UninstallerApplication" enabled="true" commentSet="false" comment="" actionElevationType="none" styleId="41" fileset="" customIcnsFile="" customIcoFile="" macEntitlementsFile="" automaticLauncherIntegration="false" launchMode="startupFirstWindow" launchInNewProcess="true" launchSchedule="updateSchedule" allLaunchers="true">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.applications.UninstallerApplication">
- <void property="customMacosExecutableName">
- <string>${i18n:UninstallerMenuEntry(${compiler:sys.fullName})}</string>
- </void>
- <void property="useCustomMacosExecutableName">
- <boolean>true</boolean>
- </void>
- </object>
- </java>
- </serializedBean>
- <styleOverrides>
- <styleOverride name="Customize banner image" enabled="true">
- <group name="" id="147" customizedId="" beanClass="com.install4j.runtime.beans.groups.VerticalFormComponentGroup" enabled="true" commentSet="false" comment="" actionElevationType="inherit" useExternalParametrization="true" externalParametrizationName="Customize banner image" externalParametrizationMode="include">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.groups.VerticalFormComponentGroup">
- <void property="backgroundColor">
- <object class="java.awt.Color">
- <int>255</int>
- <int>255</int>
- <int>255</int>
- <int>255</int>
- </object>
- </void>
- <void property="borderSides">
- <object class="com.install4j.runtime.beans.formcomponents.BorderSides">
- <void property="bottom">
- <boolean>true</boolean>
- </void>
- </object>
- </void>
- <void property="imageEdgeBackgroundColor">
- <object class="java.awt.Color">
- <int>192</int>
- <int>192</int>
- <int>192</int>
- <int>255</int>
- </object>
- </void>
- <void property="imageEdgeBorder">
- <boolean>true</boolean>
- </void>
- <void property="imageFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>../../resources/images/jalview_logo_background_fade-640x480.png</string>
- </object>
- </void>
- <void property="insets">
- <object class="java.awt.Insets">
- <int>5</int>
- <int>10</int>
- <int>10</int>
- <int>10</int>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <beans />
- <externalParametrizationPropertyNames>
- <propertyName>imageAnchor</propertyName>
- <propertyName>imageEdgeBackgroundColor</propertyName>
- <propertyName>imageFile</propertyName>
- </externalParametrizationPropertyNames>
- </group>
- </styleOverride>
- </styleOverrides>
- <customScript mode="1" file="">
- <content />
- </customScript>
- <launcherIds />
- <variables />
- <startup>
- <screen name="" id="23" customizedId="" beanClass="com.install4j.runtime.beans.screens.StartupScreen" enabled="true" commentSet="false" comment="" actionElevationType="inherit" styleId="" rollbackBarrier="false" rollbackBarrierExitCode="0" backButton="2" finishScreen="false" wizardIndexChangeType="unchanged" wizardIndexKey="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.screens.StartupScreen" />
- </java>
- </serializedBean>
- <styleOverrides />
- <condition />
- <validation />
- <preActivation />
- <postActivation />
- <actions>
- <action name="" id="33" customizedId="" beanClass="com.install4j.runtime.beans.actions.misc.LoadResponseFileAction" enabled="true" commentSet="false" comment="" actionElevationType="inherit" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.misc.LoadResponseFileAction" />
- </java>
- </serializedBean>
- <condition />
- </action>
- <action name="" id="34" customizedId="" beanClass="com.install4j.runtime.beans.actions.misc.RequireInstallerPrivilegesAction" enabled="true" commentSet="false" comment="" actionElevationType="none" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.misc.RequireInstallerPrivilegesAction" />
- </java>
- </serializedBean>
- <condition />
- </action>
- </actions>
- <formComponents />
- </screen>
- </startup>
- <screens>
- <screen name="" id="24" customizedId="" beanClass="com.install4j.runtime.beans.screens.UninstallWelcomeScreen" enabled="true" commentSet="false" comment="" actionElevationType="inherit" styleId="35" rollbackBarrier="false" rollbackBarrierExitCode="0" backButton="2" finishScreen="false" wizardIndexChangeType="unchanged" wizardIndexKey="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.screens.UninstallWelcomeScreen" />
- </java>
- </serializedBean>
- <styleOverrides />
- <condition />
- <validation />
- <preActivation />
- <postActivation />
- <actions />
- <formComponents>
- <formComponent name="" id="25" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="10" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent">
- <void property="labelText">
- <string>${form:welcomeMessage}</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript>!context.isConsole()</visibilityScript>
- <externalParametrizationPropertyNames />
- </formComponent>
- <formComponent name="" id="26" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.ConsoleHandlerFormComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.ConsoleHandlerFormComponent">
- <void property="consoleScript">
- <object class="com.install4j.api.beans.ScriptProperty">
- <void property="value">
- <string>String message = context.getMessage("ConfirmUninstall", context.getApplicationName());
-return console.askYesNo(message, true);
-</string>
- </void>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- </formComponents>
- </screen>
- <screen name="" id="27" customizedId="" beanClass="com.install4j.runtime.beans.screens.UninstallationScreen" enabled="true" commentSet="false" comment="" actionElevationType="inherit" styleId="35" rollbackBarrier="false" rollbackBarrierExitCode="0" backButton="2" finishScreen="false" wizardIndexChangeType="unchanged" wizardIndexKey="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.screens.UninstallationScreen" />
- </java>
- </serializedBean>
- <styleOverrides />
- <condition />
- <validation />
- <preActivation />
- <postActivation />
- <actions>
- <action name="" id="659" customizedId="" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" enabled="true" commentSet="false" comment="" actionElevationType="none" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.control.SetProgressAction">
- <void property="progressChangeType">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.control.ProgressChangeType</class>
- <string>SET_INDETERMINATE</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
- <action name="" id="29" customizedId="" beanClass="com.install4j.runtime.beans.actions.UninstallFilesAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.UninstallFilesAction" />
- </java>
- </serializedBean>
- <condition />
- </action>
- <action name="" id="1603" customizedId="" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" enabled="true" commentSet="false" comment="" actionElevationType="none" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.control.SetProgressAction">
- <void property="progressChangeType">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.control.ProgressChangeType</class>
- <string>SET_DETERMINATE</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
- <action name="" id="1601" customizedId="" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" enabled="true" commentSet="false" comment="" actionElevationType="none" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.control.SetProgressAction">
- <void property="percentValue">
- <int>90</int>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
- <action name="" id="1525" customizedId="" beanClass="com.install4j.runtime.beans.actions.files.DeleteFileAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.files.DeleteFileAction">
- <void property="files">
- <array class="java.io.File" length="14">
- <void index="0">
- <object class="java.io.File">
- <string>jre</string>
- </object>
- </void>
- <void index="1">
- <object class="java.io.File">
- <string>.install4j</string>
- </object>
- </void>
- <void index="2">
- <object class="java.io.File">
- <string>dist</string>
- </object>
- </void>
- <void index="3">
- <object class="java.io.File">
- <string>resource</string>
- </object>
- </void>
- <void index="4">
- <object class="java.io.File">
- <string>getdown-launcher.jar</string>
- </object>
- </void>
- <void index="5">
- <object class="java.io.File">
- <string>getdown-launcher-old.jar</string>
- </object>
- </void>
- <void index="6">
- <object class="java.io.File">
- <string>getdown-launcher-new.jar</string>
- </object>
- </void>
- <void index="7">
- <object class="java.io.File">
- <string>digest.txt</string>
- </object>
- </void>
- <void index="8">
- <object class="java.io.File">
- <string>digest2.txt</string>
- </object>
- </void>
- <void index="9">
- <object class="java.io.File">
- <string>getdown.txt</string>
- </object>
- </void>
- <void index="10">
- <object class="java.io.File">
- <string>getdown-launcher.jarv</string>
- </object>
- </void>
- <void index="11">
- <object class="java.io.File">
- <string>gettingdown.lock</string>
- </object>
- </void>
- <void index="12">
- <object class="java.io.File">
- <string>launcher.log</string>
- </object>
- </void>
- <void index="13">
- <object class="java.io.File">
- <string>proxy.txt</string>
- </object>
- </void>
- </array>
- </void>
- <void property="recursive">
- <boolean>true</boolean>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
- <action name="" id="660" customizedId="" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" enabled="true" commentSet="false" comment="" actionElevationType="none" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.control.SetProgressAction">
- <void property="percentValue">
- <int>100</int>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
- </actions>
- <formComponents>
- <formComponent name="" id="28" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.ProgressComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.ProgressComponent">
- <void property="initialStatusMessage">
- <string>${i18n:UninstallerPreparing}</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- </formComponents>
- </screen>
- <screen name="" id="32" customizedId="" beanClass="com.install4j.runtime.beans.screens.UninstallFailureScreen" enabled="true" commentSet="false" comment="" actionElevationType="inherit" styleId="35" rollbackBarrier="false" rollbackBarrierExitCode="0" backButton="2" finishScreen="true" wizardIndexChangeType="unchanged" wizardIndexKey="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.screens.UninstallFailureScreen" />
- </java>
- </serializedBean>
- <styleOverrides />
- <condition />
- <validation />
- <preActivation />
- <postActivation />
- <actions />
- <formComponents />
- </screen>
- <screen name="" id="30" customizedId="" beanClass="com.install4j.runtime.beans.screens.UninstallSuccessScreen" enabled="true" commentSet="false" comment="" actionElevationType="inherit" styleId="35" rollbackBarrier="false" rollbackBarrierExitCode="0" backButton="2" finishScreen="true" wizardIndexChangeType="unchanged" wizardIndexKey="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.screens.UninstallSuccessScreen" />
- </java>
- </serializedBean>
- <styleOverrides />
- <condition />
- <validation />
- <preActivation />
- <postActivation />
- <actions />
- <formComponents>
- <formComponent name="" id="31" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="10" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent">
- <void property="labelText">
- <string>${form:successMessage}</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- </formComponents>
- </screen>
- </screens>
- </application>
- </applications>
- <styles defaultStyleId="35">
- <style name="Standard" id="35" customizedId="" beanClass="com.install4j.runtime.beans.styles.FormStyle" enabled="true" commentSet="false" comment="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.styles.FormStyle" />
- </java>
- </serializedBean>
- <formComponents>
- <formComponent name="Header" id="36" customizedId="" beanClass="com.install4j.runtime.beans.styles.NestedStyleComponent" enabled="true" commentSet="false" comment="" insetTop="0" insetLeft="" insetBottom="0" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.styles.NestedStyleComponent">
- <void property="styleId">
- <string>48</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- <group name="Main" id="37" customizedId="" beanClass="com.install4j.runtime.beans.groups.VerticalFormComponentGroup" enabled="true" commentSet="false" comment="" actionElevationType="inherit" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.groups.VerticalFormComponentGroup">
- <void property="imageEdgeAxisType">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.formcomponents.AxisType</class>
- <string>HORIZONTAL</string>
- </object>
- </void>
- <void property="imageFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>../../resources/images/jalview_logo_background_fade-640x480.png</string>
- </object>
- </void>
- <void property="imageOverlap">
- <boolean>true</boolean>
- </void>
- </object>
- </java>
- </serializedBean>
- <beans>
- <formComponent name="" id="38" customizedId="" beanClass="com.install4j.runtime.beans.styles.ContentComponent" enabled="true" commentSet="false" comment="" insetTop="10" insetLeft="20" insetBottom="10" insetRight="20" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.styles.ContentComponent" />
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- <formComponent name="Watermark" id="39" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.SeparatorComponent" enabled="true" commentSet="false" comment="" insetTop="0" insetLeft="5" insetBottom="0" insetRight="" resetInitOnPrevious="false" useExternalParametrization="true" externalParametrizationName="Jalview" externalParametrizationMode="include">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.SeparatorComponent">
- <void property="enabledTitleText">
- <boolean>false</boolean>
- </void>
- <void property="labelText">
- <string>install4j</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames>
- <propertyName>labelText</propertyName>
- </externalParametrizationPropertyNames>
- </formComponent>
- <formComponent name="Footer" id="40" customizedId="" beanClass="com.install4j.runtime.beans.styles.NestedStyleComponent" enabled="true" commentSet="false" comment="" insetTop="0" insetLeft="" insetBottom="0" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.styles.NestedStyleComponent">
- <void property="styleId">
- <string>52</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- </beans>
- <externalParametrizationPropertyNames />
- </group>
- </formComponents>
- </style>
- <style name="Banner" id="41" customizedId="" beanClass="com.install4j.runtime.beans.styles.FormStyle" enabled="true" commentSet="false" comment="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.styles.FormStyle" />
- </java>
- </serializedBean>
- <formComponents>
- <group name="" id="42" customizedId="" beanClass="com.install4j.runtime.beans.groups.VerticalFormComponentGroup" enabled="true" commentSet="false" comment="" actionElevationType="inherit" useExternalParametrization="true" externalParametrizationName="Customize banner image" externalParametrizationMode="include">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.groups.VerticalFormComponentGroup">
- <void property="backgroundColor">
- <object class="java.awt.Color">
- <int>255</int>
- <int>255</int>
- <int>255</int>
- <int>255</int>
- </object>
- </void>
- <void property="borderSides">
- <object class="com.install4j.runtime.beans.formcomponents.BorderSides">
- <void property="bottom">
- <boolean>true</boolean>
- </void>
- </object>
- </void>
- <void property="imageEdgeBackgroundColor">
- <object class="java.awt.Color">
- <int>25</int>
- <int>143</int>
- <int>220</int>
- <int>255</int>
- </object>
- </void>
- <void property="imageEdgeBorder">
- <boolean>true</boolean>
- </void>
- <void property="imageFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>${compiler:sys.install4jHome}/resource/styles/wizard.png</string>
- </object>
- </void>
- <void property="insets">
- <object class="java.awt.Insets">
- <int>5</int>
- <int>10</int>
- <int>10</int>
- <int>10</int>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <beans>
- <formComponent name="" id="43" customizedId="" beanClass="com.install4j.runtime.beans.styles.ScreenTitleComponent" enabled="true" commentSet="false" comment="" insetTop="0" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.styles.ScreenTitleComponent">
- <void property="labelFontSizePercent">
- <int>130</int>
- </void>
- <void property="labelFontStyle">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.formcomponents.FontStyle</class>
- <string>BOLD</string>
- </object>
- </void>
- <void property="labelFontType">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.formcomponents.FontType</class>
- <string>DERIVED</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- <formComponent name="" id="44" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.SeparatorComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.SeparatorComponent" />
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- <formComponent name="" id="45" customizedId="" beanClass="com.install4j.runtime.beans.styles.ContentComponent" enabled="true" commentSet="false" comment="" insetTop="10" insetLeft="" insetBottom="0" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.styles.ContentComponent" />
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- </beans>
- <externalParametrizationPropertyNames>
- <propertyName>imageAnchor</propertyName>
- <propertyName>imageEdgeBackgroundColor</propertyName>
- <propertyName>imageFile</propertyName>
- </externalParametrizationPropertyNames>
- </group>
- <formComponent name="" id="46" customizedId="" beanClass="com.install4j.runtime.beans.styles.NestedStyleComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="0" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.styles.NestedStyleComponent">
- <void property="styleId">
- <string>52</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- </formComponents>
- </style>
- <group name="Style components" id="47" customizedId="" beanClass="com.install4j.runtime.beans.groups.StyleGroup" enabled="true" commentSet="false" comment="" actionElevationType="inherit">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.groups.StyleGroup" />
- </java>
- </serializedBean>
- <beans>
- <style name="Standard header" id="48" customizedId="" beanClass="com.install4j.runtime.beans.styles.FormStyle" enabled="true" commentSet="false" comment="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.styles.FormStyle">
- <void property="fillVertical">
- <boolean>false</boolean>
- </void>
- <void property="standalone">
- <boolean>false</boolean>
- </void>
- <void property="verticalAnchor">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.api.beans.Anchor</class>
- <string>NORTH</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <formComponents>
- <group name="" id="49" customizedId="" beanClass="com.install4j.runtime.beans.groups.VerticalFormComponentGroup" enabled="true" commentSet="false" comment="" actionElevationType="inherit" useExternalParametrization="true" externalParametrizationName="Customize title bar" externalParametrizationMode="include">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.groups.VerticalFormComponentGroup">
- <void property="backgroundColor">
- <object class="java.awt.Color">
- <int>255</int>
- <int>255</int>
- <int>255</int>
- <int>255</int>
- </object>
- </void>
- <void property="borderSides">
- <object class="com.install4j.runtime.beans.formcomponents.BorderSides">
- <void property="bottom">
- <boolean>true</boolean>
- </void>
- </object>
- </void>
- <void property="imageAnchor">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.api.beans.Anchor</class>
- <string>NORTHEAST</string>
- </object>
- </void>
- <void property="imageEdgeBorderWidth">
- <int>2</int>
- </void>
- <void property="imageFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>icon:${installer:sys.installerApplicationMode}_header.png</string>
- </object>
- </void>
- <void property="imageInsets">
- <object class="java.awt.Insets">
- <int>0</int>
- <int>5</int>
- <int>1</int>
- <int>1</int>
- </object>
- </void>
- <void property="insets">
- <object class="java.awt.Insets">
- <int>0</int>
- <int>20</int>
- <int>0</int>
- <int>10</int>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <beans>
- <formComponent name="Title" id="50" customizedId="" beanClass="com.install4j.runtime.beans.styles.ScreenTitleComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.styles.ScreenTitleComponent">
- <void property="labelFontStyle">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.formcomponents.FontStyle</class>
- <string>BOLD</string>
- </object>
- </void>
- <void property="labelFontType">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.formcomponents.FontType</class>
- <string>DERIVED</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- <formComponent name="Subtitle" id="51" customizedId="" beanClass="com.install4j.runtime.beans.styles.ScreenTitleComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="8" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.styles.ScreenTitleComponent">
- <void property="titleType">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.styles.TitleType</class>
- <string>SUB_TITLE</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </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" customizedId="" beanClass="com.install4j.runtime.beans.styles.FormStyle" enabled="true" commentSet="false" comment="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.styles.FormStyle">
- <void property="fillVertical">
- <boolean>false</boolean>
- </void>
- <void property="standalone">
- <boolean>false</boolean>
- </void>
- <void property="verticalAnchor">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.api.beans.Anchor</class>
- <string>SOUTH</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <formComponents>
- <group name="" id="53" customizedId="" beanClass="com.install4j.runtime.beans.groups.HorizontalFormComponentGroup" enabled="true" commentSet="false" comment="" actionElevationType="inherit" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.groups.HorizontalFormComponentGroup">
- <void property="alignFirstLabel">
- <boolean>false</boolean>
- </void>
- <void property="insets">
- <object class="java.awt.Insets">
- <int>3</int>
- <int>5</int>
- <int>8</int>
- <int>5</int>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <beans>
- <formComponent name="" id="54" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.SpringComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.SpringComponent" />
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- <formComponent name="Back button" id="55" customizedId="" beanClass="com.install4j.runtime.beans.styles.StandardControlButtonComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.styles.StandardControlButtonComponent">
- <void property="buttonText">
- <string>< ${i18n:ButtonBack}</string>
- </void>
- <void property="controlButtonType">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.api.context.ControlButtonType</class>
- <string>PREVIOUS</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- <formComponent name="Next button" id="56" customizedId="" beanClass="com.install4j.runtime.beans.styles.StandardControlButtonComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.styles.StandardControlButtonComponent">
- <void property="buttonText">
- <string>${i18n:ButtonNext} ></string>
- </void>
- <void property="controlButtonType">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.api.context.ControlButtonType</class>
- <string>NEXT</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- <formComponent name="Cancel button" id="57" customizedId="" beanClass="com.install4j.runtime.beans.styles.StandardControlButtonComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="5" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.styles.StandardControlButtonComponent">
- <void property="buttonText">
- <string>${i18n:ButtonCancel}</string>
- </void>
- <void property="controlButtonType">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.api.context.ControlButtonType</class>
- <string>CANCEL</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- </beans>
- <externalParametrizationPropertyNames />
- </group>
- </formComponents>
- </style>
- </beans>
- </group>
- </styles>
- </installerGui>
- <mediaSets>
- <linuxDeb name="Linux Deb Archive" id="153" customizedId="" mediaFileName="" installDir="/opt/${compiler:sys.shortName}" overridePrincipalLanguage="false" jreBitType="all" runPostProcessor="false" postProcessor="" failOnPostProcessorError="false" useLegacyMediaFileIds="false" legacyMediaFileIds="" downloadURL="" includeAllDownloadableComponents="true" includedJRE="" manualJREEntry="false" overwriteNeverAsConfigFiles="false" dependencies="" bzip="true" description="Jalview Desktop" maintainerEmail="help@jalview.org" architectureSet="false" architecture="">
- <excludedComponents>
- <component id="1155" />
- <component id="1156" />
- <component id="1276" />
- </excludedComponents>
- <includedDownloadableComponents />
- <excludedLaunchers>
- <launcher id="1402" />
- </excludedLaunchers>
- <excludedBeans />
- <overriddenPrincipalLanguage id="en" customLocalizationFile="" />
- <exclude>
- <entry location=".i4j_fileset_" fileType="regular" />
- <entry location=".i4j_fileset_880" fileType="regular" />
- <entry location=".i4j_fileset_882" fileType="regular" />
- </exclude>
- <variables />
- <autoUpdate useMinUpdatableVersion="false" minUpdatableVersion="" useMaxUpdatableVersion="false" maxUpdatableVersion="">
- <commentFiles />
- <customAttributes />
- </autoUpdate>
- <preInstallScript mode="1" file="">
- <content />
- </preInstallScript>
- <postInstallScript mode="1" file="">
- <content />
- </postInstallScript>
- <preUninstallScript mode="1" file="">
- <content />
- </preUninstallScript>
- <postUninstallScript mode="1" file="">
- <content />
- </postUninstallScript>
- </linuxDeb>
- <linuxRPM name="Linux RPM" id="570" customizedId="" mediaFileName="" installDir="/opt/${compiler:sys.shortName}" overridePrincipalLanguage="false" jreBitType="all" runPostProcessor="false" postProcessor="" failOnPostProcessorError="false" useLegacyMediaFileIds="false" legacyMediaFileIds="" downloadURL="" includeAllDownloadableComponents="true" includedJRE="" manualJREEntry="false" overwriteNeverAsConfigFiles="false" dependencies="" os="linux" arch="i386">
- <excludedComponents>
- <component id="1155" />
- <component id="1156" />
- <component id="1276" />
- </excludedComponents>
- <includedDownloadableComponents />
- <excludedLaunchers>
- <launcher id="1402" />
- </excludedLaunchers>
- <excludedBeans />
- <overriddenPrincipalLanguage id="en" customLocalizationFile="" />
- <exclude>
- <entry location=".i4j_fileset_" fileType="regular" />
- <entry location=".i4j_fileset_880" fileType="regular" />
- <entry location=".i4j_fileset_882" fileType="regular" />
- </exclude>
- <variables />
- <autoUpdate useMinUpdatableVersion="false" minUpdatableVersion="" useMaxUpdatableVersion="false" maxUpdatableVersion="">
- <commentFiles />
- <customAttributes />
- </autoUpdate>
- <preInstallScript mode="1" file="">
- <content />
- </preInstallScript>
- <postInstallScript mode="1" file="">
- <content />
- </postInstallScript>
- <preUninstallScript mode="1" file="">
- <content />
- </preUninstallScript>
- <postUninstallScript mode="1" file="">
- <content />
- </postUninstallScript>
- </linuxRPM>
- <windows name="Offline Windows" id="743" customizedId="" mediaFileName="${compiler:sys.shortName}-OFFLINE_${compiler:sys.platform}_${compiler:sys.version}-j$$JAVA_INTEGER_VERSION$$" installDir="${compiler:sys.shortName}" overridePrincipalLanguage="false" jreBitType="64" runPostProcessor="true" postProcessor="${compiler:JSIGN_SH} $EXECUTABLE" failOnPostProcessorError="false" useLegacyMediaFileIds="false" legacyMediaFileIds="" downloadURL="" includeAllDownloadableComponents="false" includedJRE="$$WINDOWS_JAVA_VM_TGZ$$" manualJREEntry="true" bundleType="1" jreURL="" jreShared="false" directDownload="false" installOnlyIfNecessary="false" customInstallBaseDir="" contentFilesType="1" verifyIntegrity="true">
- <excludedComponents>
- <component id="1155" />
- <component id="1156" />
- <component id="1276" />
- </excludedComponents>
- <includedDownloadableComponents />
- <excludedLaunchers>
- <launcher id="1402" />
- </excludedLaunchers>
- <excludedBeans />
- <overriddenPrincipalLanguage id="en" customLocalizationFile="" />
- <exclude>
- <entry location=".i4j_fileset_" fileType="regular" />
- <entry location=".i4j_fileset_880" fileType="regular" />
- </exclude>
- <variables />
- <autoUpdate useMinUpdatableVersion="false" minUpdatableVersion="" useMaxUpdatableVersion="false" maxUpdatableVersion="">
- <commentFiles />
- <customAttributes />
- </autoUpdate>
- </windows>
- <macosArchive name="Offline macOS Single Bundle Archive" id="878" customizedId="" mediaFileName="${compiler:sys.shortName}-OFFLINE_${compiler:sys.platform}-app_${compiler:sys.version}-j$$JAVA_INTEGER_VERSION$$" installDir="${compiler:sys.shortName}" overridePrincipalLanguage="false" jreBitType="all" runPostProcessor="false" postProcessor="" failOnPostProcessorError="false" useLegacyMediaFileIds="false" legacyMediaFileIds="" downloadURL="" includeAllDownloadableComponents="true" includedJRE="" manualJREEntry="false" archiveType="dmg" volumeName="${compiler:sys.shortName} Installer" launcherId="737">
- <excludedComponents>
- <component id="1156" />
- <component id="1276" />
- </excludedComponents>
- <includedDownloadableComponents />
- <excludedBeans />
- <overriddenPrincipalLanguage id="en" customLocalizationFile="" />
- <exclude>
- <entry location=".i4j_fileset_" fileType="regular" />
- <entry location=".i4j_fileset_882" fileType="regular" />
- </exclude>
- <variables />
- <autoUpdate useMinUpdatableVersion="false" minUpdatableVersion="" useMaxUpdatableVersion="false" maxUpdatableVersion="">
- <commentFiles />
- <customAttributes />
- </autoUpdate>
- <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/jre/Contents/MacOS/libjli.dylib" target="../Home/lib/jli/libjli.dylib" />
- </topLevelFiles>
- </macosArchive>
- <windows name="Network Windows" id="1272" customizedId="" mediaFileName="${compiler:sys.shortName}-NETWORK_${compiler:sys.platform}_${compiler:sys.version}-j$$JAVA_INTEGER_VERSION$$" installDir="${compiler:sys.shortName}" overridePrincipalLanguage="false" jreBitType="64" runPostProcessor="true" postProcessor="${compiler:JSIGN_SH} $EXECUTABLE" failOnPostProcessorError="false" useLegacyMediaFileIds="false" legacyMediaFileIds="" downloadURL="" includeAllDownloadableComponents="false" includedJRE="$$WINDOWS_JAVA_VM_TGZ$$" manualJREEntry="true" bundleType="1" jreURL="" jreShared="false" directDownload="false" installOnlyIfNecessary="false" customInstallBaseDir="" contentFilesType="1" verifyIntegrity="true">
- <excludedComponents>
- <component id="1031" />
- <component id="1155" />
- <component id="1156" />
- </excludedComponents>
- <includedDownloadableComponents />
- <excludedLaunchers>
- <launcher id="737" />
- </excludedLaunchers>
- <excludedBeans />
- <overriddenPrincipalLanguage id="en" customLocalizationFile="" />
- <exclude>
- <entry location=".i4j_fileset_734" fileType="regular" />
- <entry location=".i4j_fileset_880" fileType="regular" />
- </exclude>
- <variables />
- <autoUpdate useMinUpdatableVersion="false" minUpdatableVersion="" useMaxUpdatableVersion="false" maxUpdatableVersion="">
- <commentFiles />
- <customAttributes />
- </autoUpdate>
- </windows>
- <macosArchive name="Network macOS Single Bundle Archive" id="1274" customizedId="" mediaFileName="${compiler:sys.shortName}-NETWORK_${compiler:sys.platform}-app_${compiler:sys.version}-j$$JAVA_INTEGER_VERSION$$" installDir="${compiler:sys.shortName}" overridePrincipalLanguage="false" jreBitType="all" runPostProcessor="false" postProcessor="" failOnPostProcessorError="false" useLegacyMediaFileIds="false" legacyMediaFileIds="" downloadURL="" includeAllDownloadableComponents="true" includedJRE="" manualJREEntry="false" archiveType="dmg" volumeName="${compiler:sys.shortName} Installer" launcherId="1402">
- <excludedComponents>
- <component id="1031" />
- <component id="1156" />
- </excludedComponents>
- <includedDownloadableComponents />
- <excludedBeans />
- <overriddenPrincipalLanguage id="en" customLocalizationFile="" />
- <exclude>
- <entry location=".i4j_fileset_734" fileType="regular" />
- <entry location=".i4j_fileset_882" fileType="regular" />
- </exclude>
- <variables />
- <autoUpdate useMinUpdatableVersion="false" minUpdatableVersion="" useMaxUpdatableVersion="false" maxUpdatableVersion="">
- <commentFiles />
- <customAttributes />
- </autoUpdate>
- <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/jre/Contents/MacOS/libjli.dylib" target="../Home/lib/jli/libjli.dylib" />
- </topLevelFiles>
- </macosArchive>
- <unixInstaller name="Unix Installer" id="1595" customizedId="" mediaFileName="${compiler:sys.shortName}-OFFLINE_${compiler:sys.platform}_installer_${compiler:sys.version}-j$$JAVA_INTEGER_VERSION$$" installDir="${compiler:sys.shortName}" overridePrincipalLanguage="false" jreBitType="all" runPostProcessor="false" postProcessor="" failOnPostProcessorError="false" useLegacyMediaFileIds="false" legacyMediaFileIds="" downloadURL="" includeAllDownloadableComponents="false" includedJRE="" manualJREEntry="false" bundleType="1" jreURL="" jreShared="false" directDownload="false" installOnlyIfNecessary="false" customInstallBaseDir="" contentFilesType="1">
- <excludedComponents />
- <includedDownloadableComponents />
- <excludedLaunchers />
- <excludedBeans />
- <overriddenPrincipalLanguage id="en" customLocalizationFile="" />
- <exclude>
- <entry location=".i4j_fileset_734" fileType="regular" />
- <entry location=".i4j_fileset_880" fileType="regular" />
- <entry location=".i4j_fileset_882" fileType="regular" />
- </exclude>
- <variables />
- <autoUpdate useMinUpdatableVersion="false" minUpdatableVersion="" useMaxUpdatableVersion="false" maxUpdatableVersion="">
- <commentFiles />
- <customAttributes />
- </autoUpdate>
- <installerScript mode="1" file="">
- <content />
- </installerScript>
- </unixInstaller>
- <unixArchive name="Unix Archive" id="1596" customizedId="" mediaFileName="${compiler:sys.shortName}-OFFLINE_${compiler:sys.platform}_archive_${compiler:sys.version}-j$$JAVA_INTEGER_VERSION$$" installDir="${compiler:sys.shortName}" overridePrincipalLanguage="false" jreBitType="all" runPostProcessor="false" postProcessor="" failOnPostProcessorError="false" useLegacyMediaFileIds="false" legacyMediaFileIds="" downloadURL="" includeAllDownloadableComponents="true" includedJRE="" manualJREEntry="false">
- <excludedComponents>
- <component id="1031" />
- <component id="1155" />
- <component id="1156" />
- </excludedComponents>
- <includedDownloadableComponents />
- <excludedLaunchers />
- <excludedBeans />
- <overriddenPrincipalLanguage id="en" customLocalizationFile="" />
- <exclude />
- <variables />
- <autoUpdate useMinUpdatableVersion="false" minUpdatableVersion="" useMaxUpdatableVersion="false" maxUpdatableVersion="">
- <commentFiles />
- <customAttributes />
- </autoUpdate>
- </unixArchive>
- <windows name="Non-registry Windows offline" id="1600" customizedId="" mediaFileName="${compiler:sys.shortName}-OFFLINE-noreg_${compiler:sys.platform}_${compiler:sys.version}-j$$JAVA_INTEGER_VERSION$$" installDir="${compiler:sys.shortName}" overridePrincipalLanguage="false" jreBitType="64" runPostProcessor="true" postProcessor="${compiler:JSIGN_SH} $EXECUTABLE" failOnPostProcessorError="false" useLegacyMediaFileIds="false" legacyMediaFileIds="" downloadURL="" includeAllDownloadableComponents="false" includedJRE="$$WINDOWS_JAVA_VM_TGZ$$" manualJREEntry="true" bundleType="1" jreURL="" jreShared="false" directDownload="false" installOnlyIfNecessary="false" customInstallBaseDir="" contentFilesType="1" verifyIntegrity="true">
- <excludedComponents>
- <component id="1155" />
- <component id="1156" />
- <component id="1276" />
- </excludedComponents>
- <includedDownloadableComponents />
- <excludedLaunchers>
- <launcher id="1402" />
- </excludedLaunchers>
- <excludedBeans>
- <bean refId="18" />
- <bean refId="19" />
- <bean refId="578" />
- </excludedBeans>
- <overriddenPrincipalLanguage id="en" customLocalizationFile="" />
- <exclude>
- <entry location=".i4j_fileset_" fileType="regular" />
- <entry location=".i4j_fileset_880" fileType="regular" />
- </exclude>
- <variables />
- <autoUpdate useMinUpdatableVersion="false" minUpdatableVersion="" useMaxUpdatableVersion="false" maxUpdatableVersion="">
- <commentFiles />
- <customAttributes />
- </autoUpdate>
- </windows>
- </mediaSets>
- <buildIds buildAll="true">
- <mediaSet refId="153" />
- <mediaSet refId="570" />
- <mediaSet refId="743" />
- <mediaSet refId="878" />
- <mediaSet refId="1272" />
- <mediaSet refId="1274" />
- <mediaSet refId="1595" />
- <mediaSet refId="1596" />
- <mediaSet refId="1598" />
- <mediaSet refId="1600" />
- </buildIds>
- <buildOptions verbose="false" faster="false" disableSigning="false" disableJreBundling="false" debug="false" />
-</install4j>
+++ /dev/null
- <action name="" id="10000" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .jvp file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>Jalview File</string>
- </void>
- <void property="extension">
- <string>jvp</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
- <action name="" id="10001" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .jvl file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>Jalview Version Locator File</string>
- </void>
- <void property="extension">
- <string>jvl</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-Version-Locator.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-Version-Locator.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
- <action name="" id="10002" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .amsa file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>AMSA File</string>
- </void>
- <void property="extension">
- <string>amsa</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
- <action name="" id="10003" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .annotations file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>Jalview Annotations File</string>
- </void>
- <void property="extension">
- <string>annotations</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
- <action name="" id="10004" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .jvannotations file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>Jalview Annotations File</string>
- </void>
- <void property="extension">
- <string>jvannotations</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
- <action name="" id="10005" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .biojson file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>BioJSON File</string>
- </void>
- <void property="extension">
- <string>biojson</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
- <action name="" id="10006" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .BLC file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>BLC File</string>
- </void>
- <void property="extension">
- <string>BLC</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
- <action name="" id="10007" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .blc file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>BLC File</string>
- </void>
- <void property="extension">
- <string>blc</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
- <action name="" id="10008" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .aln file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>Clustal File</string>
- </void>
- <void property="extension">
- <string>aln</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
- <action name="" id="10009" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .fa file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>Fasta File</string>
- </void>
- <void property="extension">
- <string>fa</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
- <action name="" id="10010" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .fasta file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>Fasta File</string>
- </void>
- <void property="extension">
- <string>fasta</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
- <action name="" id="10011" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .features file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>Jalview Features File</string>
- </void>
- <void property="extension">
- <string>features</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
- <action name="" id="10012" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .jvfeatures file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>Jalview Features File</string>
- </void>
- <void property="extension">
- <string>jvfeatures</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
- <action name="" id="10013" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .gff2 file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>Generic Features Format v2 File</string>
- </void>
- <void property="extension">
- <string>gff2</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
- <action name="" id="10014" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .gff3 file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>Generic Features Format v3 File</string>
- </void>
- <void property="extension">
- <string>gff3</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
- <action name="" id="10015" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .concise file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>JnetFile File</string>
- </void>
- <void property="extension">
- <string>concise</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
- <action name="" id="10016" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .jnet file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>JnetFile File</string>
- </void>
- <void property="extension">
- <string>jnet</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
- <action name="" id="10017" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .cif file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>mmCIF File</string>
- </void>
- <void property="extension">
- <string>cif</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
- <action name="" id="10018" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .mcif file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>mmCIF File</string>
- </void>
- <void property="extension">
- <string>mcif</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
- <action name="" id="10019" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .mmcif file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>mmCIF File</string>
- </void>
- <void property="extension">
- <string>mmcif</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
- <action name="" id="10020" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .msf file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>MSF File</string>
- </void>
- <void property="extension">
- <string>msf</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
- <action name="" id="10021" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .pdb file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>PDB File</string>
- </void>
- <void property="extension">
- <string>pdb</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
- <action name="" id="10022" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .ent file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>PDB File</string>
- </void>
- <void property="extension">
- <string>ent</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
- <action name="" id="10023" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .pfam file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>PFAM File</string>
- </void>
- <void property="extension">
- <string>pfam</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
- <action name="" id="10024" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .phy file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>PHYLIP File</string>
- </void>
- <void property="extension">
- <string>phy</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
- <action name="" id="10025" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .pileup file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>PileUp File</string>
- </void>
- <void property="extension">
- <string>pileup</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
- <action name="" id="10026" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .pir file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>PIR File</string>
- </void>
- <void property="extension">
- <string>pir</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
- <action name="" id="10027" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .rnaml file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>RNAML File</string>
- </void>
- <void property="extension">
- <string>rnaml</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
- <action name="" id="10028" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .mat file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>Substitution Matrix File</string>
- </void>
- <void property="extension">
- <string>mat</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
- <action name="" id="10029" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .sto file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>Stockholm File</string>
- </void>
- <void property="extension">
- <string>sto</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
- <action name="" id="10030" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .stk file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>Stockholm File</string>
- </void>
- <void property="extension">
- <string>stk</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>Jalview-File.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
+++ /dev/null
- <action name="" id="$$ID$$" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make .$$EXTENSION$$ file association">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <string>$$NAME$$ File</string>
- </void>
- <void property="extension">
- <string>$$EXTENSION$$</string>
- </void>
- <void property="launcherId">
- <string>737</string>
- </void>
- <void property="macIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>$$ICONFILE$$.icns</string>
- </object>
- </void>
- <void property="macRole">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.desktop.MacAssociationRole</class>
- <string>EDITOR</string>
- </object>
- </void>
- <void property="windowsIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>$$ICONFILE$$.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
-
<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>
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<install4j version="7.0.11" transformSequenceNumber="7">
- <directoryPresets config="." />
- <application name="Jalview" distributionSourceDir="" applicationId="6595-2347-1923-0725" mediaDir="../../build/install4j" mediaFilePattern="${compiler:sys.shortName}_${compiler:sys.platform}_${compiler:sys.version}" compression="6" lzmaCompression="true" pack200Compression="false" excludeSignedFromPacking="true" commonExternalFiles="false" createMd5Sums="true" shrinkRuntime="true" shortName="Jalview" publisher="University of Dundee" publisherWeb="http://www.jalview.org/" version="$$VERSION$$" allPathsRelative="true" backupOnSave="false" autoSave="false" convertDotsToUnderscores="true" macSignature="????" macVolumeId="5aac4968c304f65" javaMinVersion="9999999999" javaMaxVersion="" allowBetaVM="true" jdkMode="jdk" jdkName="JDK 11.0">
- <languages skipLanguageSelection="false" languageSelectionInPrincipalLanguage="false">
- <principalLanguage id="en" customLocalizationFile="" />
- <additionalLanguages />
- </languages>
- <searchSequence>
- <directory location="${compiler:JRE_DIR}" />
- <registry />
- <envVar name="JAVA_HOME" />
- </searchSequence>
- <variables>
- <variable name="OSX_KEYSTORE" value="" description="" category="" />
- <variable name="JSIGN_SH" value="" description="" category="" />
- <variable name="JRE_DIR" value="jre" description="The folder under the app folder that the JRE will be either copied or unpacked into" category="" />
- </variables>
- <mergedProjects />
- <codeSigning macEnabled="true" macPkcs12File="${compiler:OSX_KEYSTORE}" windowsEnabled="false" windowsKeySource="pkcs12" windowsPvkFile="" windowsSpcFile="" windowsPkcs12File="" windowsPkcs11Library="" windowsPkcs11Slot="">
- <windowsKeystoreIdentifier issuer="" serial="" subject="" />
- <windowsPkcs11Identifier issuer="" serial="" subject="" />
- </codeSigning>
- </application>
- <files keepModificationTimes="false" missingFilesStrategy="warn" globalExcludeSuffixes="" defaultOverwriteMode="4" defaultUninstallMode="2" launcherOverwriteMode="3" defaultFileMode="644" defaultDirMode="755">
- <filesets>
- <fileset name="Full file set" id="734" customizedId="" />
- <fileset name="Mac OS X JRE" id="880" customizedId="" />
- <fileset name="Windows JRE" id="882" customizedId="" />
- <fileset name="Jalview application" id="1873" customizedId="" />
- <fileset name="MacOS Old Jalview Uninstaller" id="2105" customizedId="" />
- </filesets>
- <roots>
- <root id="735" fileset="734" location="" />
- <root id="881" fileset="880" location="" />
- <root id="883" fileset="882" location="" />
- <root id="1874" fileset="1873" location="" />
- <root id="2106" fileset="2105" location="" />
- </roots>
- <mountPoints>
- <mountPoint id="454" root="" location="" mode="755" />
- <mountPoint id="736" root="735" location="" mode="755" />
- <mountPoint id="884" root="881" location="" mode="755" />
- <mountPoint id="885" root="883" location="" mode="755" />
- <mountPoint id="1875" root="1874" location="" mode="755" />
- <mountPoint id="2107" root="2106" location="" mode="755" />
- </mountPoints>
- <entries>
- <dirEntry mountPoint="454" file="../../getdown/files/$$JAVA_VERSION$$" overwriteMode="4" shared="false" fileMode="644" uninstallMode="2" overrideFileMode="false" overrideOverwriteMode="true" overrideUninstallMode="true" entryMode="direct" subDirectory="files" excludeSuffixes="" dirMode="755" overrideDirMode="false">
- <exclude />
- </dirEntry>
- <dirEntry mountPoint="736" file="../../getdown/website/$$JAVA_VERSION$$" overwriteMode="4" shared="false" fileMode="644" uninstallMode="2" overrideFileMode="false" overrideOverwriteMode="true" overrideUninstallMode="true" entryMode="direct" subDirectory="files" excludeSuffixes="" dirMode="755" overrideDirMode="false">
- <exclude />
- </dirEntry>
- <dirEntry mountPoint="884" file="$$MACOS_JAVA_VM_DIR$$" overwriteMode="4" shared="false" fileMode="755" uninstallMode="0" overrideFileMode="true" overrideOverwriteMode="false" overrideUninstallMode="true" entryMode="subdir" subDirectory="${compiler:JRE_DIR}" excludeSuffixes="" dirMode="755" overrideDirMode="false">
- <exclude />
- </dirEntry>
- <dirEntry mountPoint="885" file="$$WINDOWS_JAVA_VM_DIR$$" overwriteMode="4" shared="false" fileMode="755" uninstallMode="0" overrideFileMode="true" overrideOverwriteMode="false" overrideUninstallMode="true" entryMode="subdir" subDirectory="${compiler:JRE_DIR}" excludeSuffixes="" dirMode="755" overrideDirMode="false">
- <exclude />
- </dirEntry>
- <dirEntry mountPoint="1875" file="../../getdown/website/$$JAVA_VERSION$$/$$GETDOWN_DIST_DIR$$" overwriteMode="1" shared="false" fileMode="644" uninstallMode="2" overrideFileMode="true" overrideOverwriteMode="true" overrideUninstallMode="true" entryMode="subdir" subDirectory="$$GETDOWN_DIST_DIR$$" excludeSuffixes="" dirMode="755" overrideDirMode="true">
- <exclude />
- </dirEntry>
- <dirEntry mountPoint="2107" file="Uninstall Old Jalview.app" overwriteMode="4" shared="false" fileMode="755" uninstallMode="0" overrideFileMode="true" overrideOverwriteMode="false" overrideUninstallMode="false" entryMode="subdir" subDirectory="Uninstall Old Jalview.app" excludeSuffixes="" dirMode="755" overrideDirMode="true">
- <exclude />
- </dirEntry>
- </entries>
- <components>
- <component name="jalview_getdown" id="1031" customizedId="" displayDescription="false" hideHelpButton="false" selected="true" changeable="true" downloadable="false" hidden="false">
- <description />
- <include all="false">
- <entry location=".i4j_fileset_734" fileType="regular" />
- </include>
- <dependencies />
- </component>
- <component name="macos_java_vm" id="1155" customizedId="" displayDescription="false" hideHelpButton="false" selected="true" changeable="true" downloadable="false" hidden="false">
- <description />
- <include all="false">
- <entry location=".i4j_fileset_880" fileType="regular" />
- </include>
- <dependencies />
- </component>
- <component name="windows_java_vm" id="1156" customizedId="" displayDescription="false" hideHelpButton="false" selected="true" changeable="true" downloadable="false" hidden="false">
- <description />
- <include all="false">
- <entry location=".i4j_fileset_882" fileType="regular" />
- </include>
- <dependencies />
- </component>
- <component name="getdown" id="1276" customizedId="" displayDescription="false" hideHelpButton="false" selected="true" changeable="true" downloadable="false" hidden="false">
- <description />
- <include all="false">
- <entry location=".i4j_fileset_" fileType="regular" />
- </include>
- <dependencies />
- </component>
- <component name="jalview" id="1881" customizedId="" displayDescription="false" hideHelpButton="false" selected="true" changeable="true" downloadable="false" hidden="false">
- <description />
- <include all="false">
- <entry location=".i4j_fileset_1873" fileType="regular" />
- </include>
- <dependencies />
- </component>
- <component name="macos_old_jalview_uninstaller" id="2110" customizedId="" displayDescription="false" hideHelpButton="false" selected="true" changeable="true" downloadable="false" hidden="false">
- <description />
- <include all="false">
- <entry location=".i4j_fileset_2105" fileType="regular" />
- </include>
- <dependencies />
- </component>
- </components>
- </files>
- <launchers>
- <launcher name="Offline Jalview Launcher" id="737" customizedId="" external="false" excludeFromMenu="false" unixMode="755" unixAutoStart="true" menuName="${compiler:sys.shortName}" icnsFile="../../resources/images/jalview_logos.icns" customMacBundleIdentifier="true" macBundleIdentifier="$$MACOS_BUNDLE_ID$$" swtApp="false" fileset="734" macBundleBinary="JavaApplicationStub" addMacEntitlements="false" macEntitlementsFile="" useCustomMacosExecutableName="true" customMacosExecutableName="${compiler:sys.shortName}" useJavaMinVersionOverride="false" javaMinVersionOverride="" useJavaMaxVersionOverride="false" javaMaxVersionOverride="" checkUpdater="false" updateExecutionMode="unattendedProgress" unattendedUpdateTitle="${i18n:updater.WindowTitle("${compiler:sys.fullName}")}">
- <executable name="${compiler:sys.shortName}" type="1" iconSet="true" iconFile="../../resources/images/jalview_logos.ico" executableDir="." redirectStderr="true" stderrFile="error.log" stderrMode="overwrite" redirectStdout="true" stdoutFile="output.log" stdoutMode="overwrite" failOnStderrOutput="true" executableMode="1" changeWorkingDirectory="true" workingDirectory="." singleInstance="true" serviceStartType="2" serviceDependencies="" serviceDescription="" jreLocation="" executionLevel="asInvoker" checkConsoleParameter="true" globalSingleInstance="false" singleInstanceActivate="true" dpiAware="java9+">
- <versionInfo include="true" fileVersion="" fileDescription="${compiler:sys.shortName}" legalCopyright="$$COPYRIGHT_MESSAGE$$" internalName="${compiler:sys.shortName}" productName="${compiler:sys.shortName}" />
- </executable>
- <splashScreen show="false" 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" fontColor="0,0,0" bold="false" />
- <versionLine x="85" y="109" text="version ${compiler:sys.version}" fontSize="8" fontColor="0,0,0" bold="false" />
- </text>
- </splashScreen>
- <java mainClass="com.threerings.getdown.launcher.GetdownApp" mainMode="1" vmParameters="" arguments=". jalview" allowVMPassthroughParameters="true" preferredVM="" bundleRuntime="true">
- <classPath>
- <archive location="getdown-launcher.jar" failOnError="true" />
- <scanDirectory location="$$GETDOWN_INSTALL_DIR$$" failOnError="false" />
- </classPath>
- <modulePath />
- <nativeLibraryDirectories />
- <vmOptions />
- </java>
- <includedFiles />
- <unextractableFiles />
- <vmOptionsFile mode="template" overwriteMode="0" fileMode="644">
- <content />
- </vmOptionsFile>
- <customScript mode="1" file="">
- <content />
- </customScript>
- <infoPlist mode="2" file="$$INSTALL4JINFOPLISTFILEASSOCIATIONS$$">
- <content />
- </infoPlist>
- <iconImageFiles>
- <file path="../../resources/images/JalviewLogo_Huge.png" />
- </iconImageFiles>
- </launcher>
- <launcher name="Network Jalview Launcher" id="1402" customizedId="" external="false" excludeFromMenu="false" unixMode="755" unixAutoStart="true" menuName="${compiler:sys.shortName}" icnsFile="../../resources/images/jalview_logos.icns" customMacBundleIdentifier="true" macBundleIdentifier="$$MACOS_BUNDLE_ID$$" swtApp="false" fileset="" macBundleBinary="JavaApplicationStub" addMacEntitlements="false" macEntitlementsFile="" useCustomMacosExecutableName="true" customMacosExecutableName="${compiler:sys.shortName}" useJavaMinVersionOverride="false" javaMinVersionOverride="" useJavaMaxVersionOverride="false" javaMaxVersionOverride="" checkUpdater="false" updateExecutionMode="unattendedProgress" unattendedUpdateTitle="${i18n:updater.WindowTitle("${compiler:sys.fullName}")}">
- <executable name="Jalview" type="1" iconSet="true" iconFile="../../resources/images/jalview_logos.ico" executableDir="." redirectStderr="true" stderrFile="error.log" stderrMode="overwrite" redirectStdout="true" stdoutFile="output.log" stdoutMode="overwrite" failOnStderrOutput="true" executableMode="1" changeWorkingDirectory="true" workingDirectory="." singleInstance="true" serviceStartType="2" serviceDependencies="" serviceDescription="" jreLocation="" executionLevel="asInvoker" checkConsoleParameter="true" globalSingleInstance="false" singleInstanceActivate="true" dpiAware="java9+">
- <versionInfo include="true" fileVersion="" fileDescription="${compiler:sys.shortName}" legalCopyright="$$COPYRIGHT_MESSAGE$$" internalName="${compiler:sys.shortName}" productName="${compiler:sys.shortName}" />
- </executable>
- <splashScreen show="false" 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" fontColor="0,0,0" bold="false" />
- <versionLine x="85" y="109" text="version ${compiler:sys.version}" fontSize="8" fontColor="0,0,0" bold="false" />
- </text>
- </splashScreen>
- <java mainClass="com.threerings.getdown.launcher.GetdownApp" mainMode="1" vmParameters="" arguments=". jalview" allowVMPassthroughParameters="true" preferredVM="" bundleRuntime="true">
- <classPath>
- <archive location="getdown-launcher.jar" failOnError="true" />
- <scanDirectory location="$$GETDOWN_INSTALL_DIR$$" failOnError="false" />
- </classPath>
- <modulePath />
- <nativeLibraryDirectories />
- <vmOptions />
- </java>
- <includedFiles />
- <unextractableFiles />
- <vmOptionsFile mode="template" overwriteMode="0" fileMode="644">
- <content />
- </vmOptionsFile>
- <customScript mode="1" file="">
- <content />
- </customScript>
- <infoPlist mode="2" file="$$INSTALL4JINFOPLISTFILEASSOCIATIONS$$">
- <content />
- </infoPlist>
- <iconImageFiles>
- <file path="../../resources/images/JalviewLogo_Huge.png" />
- </iconImageFiles>
- </launcher>
- <launcher name="Jalview package" id="1876" customizedId="" external="false" excludeFromMenu="false" unixMode="755" unixAutoStart="true" menuName="${compiler:sys.shortName} $$VERSION$$" icnsFile="" customMacBundleIdentifier="false" macBundleIdentifier="" swtApp="false" fileset="1873" macBundleBinary="JavaApplicationStub" addMacEntitlements="false" macEntitlementsFile="" useCustomMacosExecutableName="false" customMacosExecutableName="" useJavaMinVersionOverride="false" javaMinVersionOverride="" useJavaMaxVersionOverride="false" javaMaxVersionOverride="" checkUpdater="false" updateExecutionMode="unattendedProgress" unattendedUpdateTitle="${i18n:updater.WindowTitle("${compiler:sys.fullName}")}">
- <executable name="${compiler:sys.shortName}" type="1" iconSet="true" iconFile="" executableDir="" redirectStderr="false" stderrFile="error.log" stderrMode="overwrite" redirectStdout="false" stdoutFile="output.log" stdoutMode="overwrite" failOnStderrOutput="false" executableMode="1" changeWorkingDirectory="false" workingDirectory="." singleInstance="true" serviceStartType="2" serviceDependencies="" serviceDescription="" jreLocation="" executionLevel="asInvoker" checkConsoleParameter="false" globalSingleInstance="false" singleInstanceActivate="true" dpiAware="java9+">
- <versionInfo include="false" fileVersion="" fileDescription="" legalCopyright="" internalName="" productName="" />
- </executable>
- <splashScreen show="false" width="0" height="0" bitmapFile="" textOverlay="false">
- <text>
- <statusLine x="20" y="20" text="" fontSize="8" fontColor="0,0,0" bold="false" />
- <versionLine x="20" y="40" text="version ${compiler:sys.version}" fontSize="8" fontColor="0,0,0" bold="false" />
- </text>
- </splashScreen>
- <java mainClass="jalview.bin.Launcher" mainMode="1" vmParameters="" arguments="" allowVMPassthroughParameters="true" preferredVM="" bundleRuntime="true">
- <classPath>
- <scanDirectory location="$$GETDOWN_DIST_DIR$$" failOnError="false" />
- </classPath>
- <modulePath />
- <nativeLibraryDirectories />
- <vmOptions />
- </java>
- <includedFiles />
- <unextractableFiles />
- <vmOptionsFile mode="template" overwriteMode="0" fileMode="644">
- <content />
- </vmOptionsFile>
- <customScript mode="1" file="">
- <content />
- </customScript>
- <infoPlist mode="1" file="">
- <content />
- </infoPlist>
- <iconImageFiles>
- <file path="../../resources/images/JalviewLogo_Huge.png" />
- </iconImageFiles>
- </launcher>
- </launchers>
- <installerGui installerType="1" addOnAppId="" suggestPreviousLocations="true" autoUpdateDescriptorUrl="https://www.jalview.org/install4j/updates.xml" useAutoUpdateBaseUrl="false" autoUpdateBaseUrl="">
- <staticMembers script="" />
- <customCode />
- <autoUpdate useMinUpdatableVersion="false" minUpdatableVersion="" useMaxUpdatableVersion="false" maxUpdatableVersion="">
- <commentFiles />
- <customAttributes />
- </autoUpdate>
- <applications>
- <application name="" id="installer" customizedId="" beanClass="com.install4j.runtime.beans.applications.InstallerApplication" enabled="true" commentSet="false" comment="" actionElevationType="none" styleId="35" fileset="" customIcnsFile="../../resources/images/jalview_logos.icns" customIcoFile="../../resources/images/jalview_logos.ico" macEntitlementsFile="" automaticLauncherIntegration="false" launchMode="startupFirstWindow" launchInNewProcess="true" launchSchedule="updateSchedule" allLaunchers="true">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.applications.InstallerApplication">
- <void property="useCustomIcon">
- <boolean>true</boolean>
- </void>
- </object>
- </java>
- </serializedBean>
- <styleOverrides>
- <styleOverride name="Customize banner image" enabled="true">
- <group name="" id="146" customizedId="" beanClass="com.install4j.runtime.beans.groups.VerticalFormComponentGroup" enabled="true" commentSet="false" comment="" actionElevationType="inherit" useExternalParametrization="true" externalParametrizationName="Customize banner image" externalParametrizationMode="include">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.groups.VerticalFormComponentGroup">
- <void property="backgroundColor">
- <object class="java.awt.Color">
- <int>255</int>
- <int>255</int>
- <int>255</int>
- <int>255</int>
- </object>
- </void>
- <void property="borderSides">
- <object class="com.install4j.runtime.beans.formcomponents.BorderSides">
- <void property="bottom">
- <boolean>true</boolean>
- </void>
- </object>
- </void>
- <void property="imageEdgeBackgroundColor">
- <object class="java.awt.Color">
- <int>255</int>
- <int>255</int>
- <int>255</int>
- <int>255</int>
- </object>
- </void>
- <void property="imageEdgeBorder">
- <boolean>true</boolean>
- </void>
- <void property="imageFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>../../resources/images/jalview_logo_background_fade-640x480.png</string>
- </object>
- </void>
- <void property="insets">
- <object class="java.awt.Insets">
- <int>5</int>
- <int>10</int>
- <int>10</int>
- <int>10</int>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <beans />
- <externalParametrizationPropertyNames>
- <propertyName>imageAnchor</propertyName>
- <propertyName>imageEdgeBackgroundColor</propertyName>
- <propertyName>imageFile</propertyName>
- </externalParametrizationPropertyNames>
- </group>
- </styleOverride>
- <styleOverride name="Jalview" enabled="true">
- <formComponent name="Watermark" id="352" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.SeparatorComponent" enabled="true" commentSet="false" comment="" insetTop="0" insetLeft="5" insetBottom="0" insetRight="" resetInitOnPrevious="false" useExternalParametrization="true" externalParametrizationName="Jalview" externalParametrizationMode="include">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.SeparatorComponent">
- <void property="enabledTitleText">
- <boolean>false</boolean>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames>
- <propertyName>labelText</propertyName>
- </externalParametrizationPropertyNames>
- </formComponent>
- </styleOverride>
- </styleOverrides>
- <customScript mode="1" file="">
- <content />
- </customScript>
- <launcherIds />
- <variables />
- <startup>
- <screen name="" id="1" customizedId="" beanClass="com.install4j.runtime.beans.screens.StartupScreen" enabled="true" commentSet="false" comment="" actionElevationType="inherit" styleId="" rollbackBarrier="false" rollbackBarrierExitCode="0" backButton="2" finishScreen="false" wizardIndexChangeType="unchanged" wizardIndexKey="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.screens.StartupScreen" />
- </java>
- </serializedBean>
- <styleOverrides />
- <condition />
- <validation />
- <preActivation />
- <postActivation />
- <actions>
- <action name="" id="22" customizedId="" beanClass="com.install4j.runtime.beans.actions.misc.RequestPrivilegesAction" enabled="true" commentSet="false" comment="" actionElevationType="none" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.misc.RequestPrivilegesAction">
- <void property="obtainIfAdminWin">
- <boolean>false</boolean>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
- </actions>
- <formComponents />
- </screen>
- </startup>
- <screens>
- <screen name="" id="2" customizedId="" beanClass="com.install4j.runtime.beans.screens.WelcomeScreen" enabled="true" commentSet="false" comment="" actionElevationType="inherit" styleId="" rollbackBarrier="false" rollbackBarrierExitCode="0" backButton="2" finishScreen="false" wizardIndexChangeType="unchanged" wizardIndexKey="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.screens.WelcomeScreen" />
- </java>
- </serializedBean>
- <styleOverrides>
- <styleOverride name="Customize banner image" enabled="true">
- <group name="" id="145" customizedId="" beanClass="com.install4j.runtime.beans.groups.VerticalFormComponentGroup" enabled="true" commentSet="false" comment="" actionElevationType="inherit" useExternalParametrization="true" externalParametrizationName="Customize banner image" externalParametrizationMode="include">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.groups.VerticalFormComponentGroup">
- <void property="backgroundColor">
- <object class="java.awt.Color">
- <int>255</int>
- <int>255</int>
- <int>255</int>
- <int>255</int>
- </object>
- </void>
- <void property="borderSides">
- <object class="com.install4j.runtime.beans.formcomponents.BorderSides">
- <void property="bottom">
- <boolean>true</boolean>
- </void>
- </object>
- </void>
- <void property="imageEdgeBackgroundColor">
- <object class="java.awt.Color">
- <int>25</int>
- <int>143</int>
- <int>220</int>
- <int>255</int>
- </object>
- </void>
- <void property="imageEdgeBorder">
- <boolean>true</boolean>
- </void>
- <void property="imageFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>../../resources/images/jalview_logo_background_fade-640x480.png</string>
- </object>
- </void>
- <void property="insets">
- <object class="java.awt.Insets">
- <int>5</int>
- <int>10</int>
- <int>10</int>
- <int>10</int>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <beans />
- <externalParametrizationPropertyNames>
- <propertyName>imageAnchor</propertyName>
- <propertyName>imageEdgeBackgroundColor</propertyName>
- <propertyName>imageFile</propertyName>
- </externalParametrizationPropertyNames>
- </group>
- </styleOverride>
- </styleOverrides>
- <condition />
- <validation />
- <preActivation />
- <postActivation />
- <actions>
- <action name="" id="7" customizedId="" beanClass="com.install4j.runtime.beans.actions.misc.LoadResponseFileAction" enabled="true" commentSet="false" comment="" actionElevationType="inherit" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="true" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.misc.LoadResponseFileAction">
- <void property="excludedVariables">
- <array class="java.lang.String" length="1">
- <void index="0">
- <string>sys.installationDir</string>
- </void>
- </array>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition>context.getBooleanVariable("sys.confirmedUpdateInstallation")</condition>
- </action>
- </actions>
- <formComponents>
- <formComponent name="" id="3" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent">
- <void property="labelText">
- <string>${form:welcomeMessage}</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript>!context.isConsole()</visibilityScript>
- <externalParametrizationPropertyNames />
- </formComponent>
- <formComponent name="" id="4" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.ConsoleHandlerFormComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.ConsoleHandlerFormComponent">
- <void property="consoleScript">
- <object class="com.install4j.api.beans.ScriptProperty">
- <void property="value">
- <string>String message = context.getMessage("ConsoleWelcomeLabel", context.getApplicationName());
-return console.askOkCancel(message, true);
-</string>
- </void>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- <formComponent name="" id="5" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.UpdateAlertComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="true" externalParametrizationName="Update Alert" externalParametrizationMode="include">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.UpdateAlertComponent" />
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames>
- <propertyName>updateCheck</propertyName>
- </externalParametrizationPropertyNames>
- </formComponent>
- <formComponent name="" id="6" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent" enabled="true" commentSet="false" comment="" insetTop="20" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent">
- <void property="labelText">
- <string>${i18n:ClickNext}</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- </formComponents>
- </screen>
- <screen name="" id="8" customizedId="" beanClass="com.install4j.runtime.beans.screens.InstallationDirectoryScreen" enabled="true" commentSet="false" comment="" actionElevationType="inherit" styleId="" rollbackBarrier="false" rollbackBarrierExitCode="0" backButton="2" finishScreen="false" wizardIndexChangeType="unchanged" wizardIndexKey="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.screens.InstallationDirectoryScreen" />
- </java>
- </serializedBean>
- <styleOverrides />
- <condition>!context.getBooleanVariable("sys.confirmedUpdateInstallation")</condition>
- <validation />
- <preActivation />
- <postActivation />
- <actions>
- <action name="" id="11" customizedId="" beanClass="com.install4j.runtime.beans.actions.misc.LoadResponseFileAction" enabled="true" commentSet="false" comment="" actionElevationType="inherit" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="true" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.misc.LoadResponseFileAction">
- <void property="excludedVariables">
- <array class="java.lang.String" length="1">
- <void index="0">
- <string>sys.installationDir</string>
- </void>
- </array>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition>context.getVariable("sys.responseFile") == null</condition>
- </action>
- </actions>
- <formComponents>
- <formComponent name="" id="9" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="25" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent">
- <void property="labelText">
- <string>${i18n:SelectDirLabel(${compiler:sys.fullName})}</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- <formComponent name="" id="10" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.InstallationDirectoryChooserComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="true" externalParametrizationName="Installation Directory Chooser" externalParametrizationMode="include">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.InstallationDirectoryChooserComponent">
- <void property="requestFocus">
- <boolean>true</boolean>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <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 name="" id="12" customizedId="" beanClass="com.install4j.runtime.beans.screens.ComponentsScreen" enabled="false" commentSet="false" comment="" actionElevationType="inherit" styleId="" rollbackBarrier="false" rollbackBarrierExitCode="0" backButton="2" finishScreen="false" wizardIndexChangeType="unchanged" wizardIndexKey="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.screens.ComponentsScreen" />
- </java>
- </serializedBean>
- <styleOverrides />
- <condition />
- <validation />
- <preActivation />
- <postActivation />
- <actions />
- <formComponents>
- <formComponent name="" id="13" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent">
- <void property="labelText">
- <string>${i18n:SelectComponentsLabel2}</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript>!context.isConsole()</visibilityScript>
- <externalParametrizationPropertyNames />
- </formComponent>
- <formComponent name="" id="14" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.ComponentSelectorComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="true" externalParametrizationName="Installation Components" externalParametrizationMode="include">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.ComponentSelectorComponent">
- <void property="fillVertical">
- <boolean>true</boolean>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames>
- <propertyName>selectionChangedScript</propertyName>
- </externalParametrizationPropertyNames>
- </formComponent>
- </formComponents>
- </screen>
- <screen name="" id="1692" customizedId="" beanClass="com.install4j.runtime.beans.screens.FileAssociationsScreen" enabled="true" commentSet="false" comment="" actionElevationType="inherit" styleId="" rollbackBarrier="false" rollbackBarrierExitCode="0" backButton="2" finishScreen="false" wizardIndexChangeType="unchanged" wizardIndexKey="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.screens.FileAssociationsScreen" />
- </java>
- </serializedBean>
- <styleOverrides />
- <condition />
- <validation />
- <preActivation />
- <postActivation />
- <actions />
- <formComponents>
- <formComponent name="" id="1693" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent">
- <void property="labelText">
- <string>${i18n:SelectAssociationsLabel}</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- <formComponent name="" id="1694" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.FileAssociationsComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="true" externalParametrizationName="File Associations" externalParametrizationMode="include">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.FileAssociationsComponent">
- <void property="fillVertical">
- <boolean>true</boolean>
- </void>
- <void property="showSelectionButtons">
- <boolean>true</boolean>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames>
- <propertyName>showSelectionButtons</propertyName>
- <propertyName>selectionButtonPosition</propertyName>
- </externalParametrizationPropertyNames>
- </formComponent>
- </formComponents>
- </screen>
- <screen name="" id="15" customizedId="" beanClass="com.install4j.runtime.beans.screens.InstallationScreen" enabled="true" commentSet="false" comment="" actionElevationType="inherit" styleId="" rollbackBarrier="true" rollbackBarrierExitCode="0" backButton="2" finishScreen="false" wizardIndexChangeType="unchanged" wizardIndexKey="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.screens.InstallationScreen" />
- </java>
- </serializedBean>
- <styleOverrides />
- <condition />
- <validation />
- <preActivation />
- <postActivation />
- <actions>
- <action name="" id="17" customizedId="" beanClass="com.install4j.runtime.beans.actions.InstallFilesAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="2" errorMessage="${i18n:FileCorrupted}">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.InstallFilesAction" />
- </java>
- </serializedBean>
- <condition />
- </action>
- <action name="" id="18" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateProgramGroupAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateProgramGroupAction">
- <void property="uninstallerMenuName">
- <string>${i18n:UninstallerMenuEntry(${compiler:sys.fullName})}</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition>!context.getBooleanVariable("sys.programGroupDisabled")</condition>
- </action>
- <action name="" id="19" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.RegisterAddRemoveAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.RegisterAddRemoveAction">
- <void property="itemName">
- <string>${compiler:sys.fullName} ${compiler:sys.version}</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
- <action name="" id="124" customizedId="" beanClass="com.install4j.runtime.beans.actions.control.SetVariableAction" enabled="false" commentSet="false" comment="" actionElevationType="inherit" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.control.SetVariableAction">
- <void property="script">
- <object class="com.install4j.api.beans.ScriptProperty">
- <void property="value">
- <string />
- </void>
- </object>
- </void>
- <void property="variableName">
- <string />
- </void>
- </object>
- </java>
- </serializedBean>
- <condition>true</condition>
- </action>
- <action name="" id="134" customizedId="" beanClass="com.install4j.runtime.beans.actions.misc.AddVmOptionsAction" enabled="false" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.misc.AddVmOptionsAction">
- <void property="launcherId">
- <string>121</string>
- </void>
- <void property="vmOptions">
- <array class="java.lang.String" length="0" />
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
- </actions>
- <formComponents>
- <formComponent name="" id="16" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.ProgressComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.ProgressComponent">
- <void property="initialStatusMessage">
- <string>${i18n:WizardPreparing}</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- </formComponents>
- </screen>
- <screen name="" id="20" customizedId="" beanClass="com.install4j.runtime.beans.screens.FinishedScreen" enabled="true" commentSet="false" comment="" actionElevationType="inherit" styleId="" rollbackBarrier="false" rollbackBarrierExitCode="0" backButton="2" finishScreen="true" wizardIndexChangeType="unchanged" wizardIndexKey="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.screens.FinishedScreen" />
- </java>
- </serializedBean>
- <styleOverrides />
- <condition />
- <validation />
- <preActivation />
- <postActivation />
- <actions>
- <action name="" id="2012" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateStartMenuEntryAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateStartMenuEntryAction">
- <void property="allUsers">
- <boolean>false</boolean>
- </void>
- <void property="entryName">
- <string>${compiler:sys.shortName}</string>
- </void>
- <void property="file">
- <object class="java.io.File">
- <string>${compiler:sys.shortName}</string>
- </object>
- </void>
- <void property="icon">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>../../resources/images/jalview_logos.ico</string>
- </object>
- </void>
- <void property="unixIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>../../resources/images/JalviewLogo_Huge.png</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition>!context.getBooleanVariable("sys.programGroupDisabled")</condition>
- </action>
- <action name="" id="573" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.CreateDesktopLinkAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="Could not make desktop link">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateDesktopLinkAction">
- <void property="allUsers">
- <boolean>false</boolean>
- </void>
- <void property="description">
- <string>${compiler:sys.shortName}</string>
- </void>
- <void property="file">
- <object class="java.io.File">
- <string>${compiler:sys.shortName}</string>
- </object>
- </void>
- <void property="name">
- <string>${compiler:sys.fullName}</string>
- </void>
- <void property="unixIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>../../resources/images/JalviewLogo_Huge.png</string>
- </object>
- </void>
- <void property="winIconFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>../../resources/images/jalview_logos.ico</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition>context.getBooleanVariable("createDesktopLinkAction")</condition>
- </action>
- <action name="" id="576" customizedId="" beanClass="com.install4j.runtime.beans.actions.desktop.AddToDockAction" enabled="true" commentSet="false" comment="" actionElevationType="none" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.AddToDockAction">
- <void property="executable">
- <object class="java.io.File">
- <string>Jalview.app</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition>context.getBooleanVariable("addToDockAction")</condition>
- </action>
- <action name="EXTENSIONS_REPLACED_BY_GRADLE" id="1691" customizedId="EXTENSIONS" beanClass="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.desktop.CreateFileAssociationAction">
- <void property="description">
- <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'.</string>
- </void>
- <void property="extension">
- <string>extensions_to_be_replaced_by_gradle</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
- </actions>
- <formComponents>
- <formComponent name="" id="21" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="10" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent">
- <void property="labelText">
- <string>${form:finishedMessage}</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- <formComponent name="Add a desktop link" id="574" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.CheckboxComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.CheckboxComponent">
- <void property="checkboxText">
- <string>${i18n:CreateDesktopIcon}</string>
- </void>
- <void property="initiallySelected">
- <boolean>true</boolean>
- </void>
- <void property="variableName">
- <string>createDesktopLinkAction</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- <formComponent name="Add an executable to the dock" id="577" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.CheckboxComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.CheckboxComponent">
- <void property="checkboxText">
- <string>${i18n:AddToDock}</string>
- </void>
- <void property="initiallySelected">
- <boolean>true</boolean>
- </void>
- <void property="variableName">
- <string>addToDockAction</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript>Util.isMacOS()</visibilityScript>
- <externalParametrizationPropertyNames />
- </formComponent>
- </formComponents>
- </screen>
- </screens>
- </application>
- <application name="" id="uninstaller" customizedId="" beanClass="com.install4j.runtime.beans.applications.UninstallerApplication" enabled="true" commentSet="false" comment="" actionElevationType="none" styleId="35" fileset="" customIcnsFile="" customIcoFile="" macEntitlementsFile="" automaticLauncherIntegration="false" launchMode="startupFirstWindow" launchInNewProcess="true" launchSchedule="updateSchedule" allLaunchers="true">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.applications.UninstallerApplication">
- <void property="customMacosExecutableName">
- <string>${i18n:UninstallerMenuEntry(${compiler:sys.fullName})}</string>
- </void>
- <void property="useCustomMacosExecutableName">
- <boolean>true</boolean>
- </void>
- </object>
- </java>
- </serializedBean>
- <styleOverrides>
- <styleOverride name="Customize banner image" enabled="true">
- <group name="" id="147" customizedId="" beanClass="com.install4j.runtime.beans.groups.VerticalFormComponentGroup" enabled="true" commentSet="false" comment="" actionElevationType="inherit" useExternalParametrization="true" externalParametrizationName="Customize banner image" externalParametrizationMode="include">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.groups.VerticalFormComponentGroup">
- <void property="backgroundColor">
- <object class="java.awt.Color">
- <int>255</int>
- <int>255</int>
- <int>255</int>
- <int>255</int>
- </object>
- </void>
- <void property="borderSides">
- <object class="com.install4j.runtime.beans.formcomponents.BorderSides">
- <void property="bottom">
- <boolean>true</boolean>
- </void>
- </object>
- </void>
- <void property="imageEdgeBackgroundColor">
- <object class="java.awt.Color">
- <int>192</int>
- <int>192</int>
- <int>192</int>
- <int>255</int>
- </object>
- </void>
- <void property="imageEdgeBorder">
- <boolean>true</boolean>
- </void>
- <void property="imageFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>../../resources/images/jalview_logo_background_fade-640x480.png</string>
- </object>
- </void>
- <void property="insets">
- <object class="java.awt.Insets">
- <int>5</int>
- <int>10</int>
- <int>10</int>
- <int>10</int>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <beans />
- <externalParametrizationPropertyNames>
- <propertyName>imageAnchor</propertyName>
- <propertyName>imageEdgeBackgroundColor</propertyName>
- <propertyName>imageFile</propertyName>
- </externalParametrizationPropertyNames>
- </group>
- </styleOverride>
- </styleOverrides>
- <customScript mode="1" file="">
- <content />
- </customScript>
- <launcherIds />
- <variables />
- <startup>
- <screen name="" id="23" customizedId="" beanClass="com.install4j.runtime.beans.screens.StartupScreen" enabled="true" commentSet="false" comment="" actionElevationType="inherit" styleId="" rollbackBarrier="false" rollbackBarrierExitCode="0" backButton="2" finishScreen="false" wizardIndexChangeType="unchanged" wizardIndexKey="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.screens.StartupScreen" />
- </java>
- </serializedBean>
- <styleOverrides />
- <condition />
- <validation />
- <preActivation />
- <postActivation />
- <actions>
- <action name="" id="33" customizedId="" beanClass="com.install4j.runtime.beans.actions.misc.LoadResponseFileAction" enabled="true" commentSet="false" comment="" actionElevationType="inherit" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.misc.LoadResponseFileAction" />
- </java>
- </serializedBean>
- <condition />
- </action>
- <action name="" id="34" customizedId="" beanClass="com.install4j.runtime.beans.actions.misc.RequireInstallerPrivilegesAction" enabled="true" commentSet="false" comment="" actionElevationType="none" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.misc.RequireInstallerPrivilegesAction" />
- </java>
- </serializedBean>
- <condition />
- </action>
- </actions>
- <formComponents />
- </screen>
- </startup>
- <screens>
- <screen name="" id="24" customizedId="" beanClass="com.install4j.runtime.beans.screens.UninstallWelcomeScreen" enabled="true" commentSet="false" comment="" actionElevationType="inherit" styleId="" rollbackBarrier="false" rollbackBarrierExitCode="0" backButton="2" finishScreen="false" wizardIndexChangeType="unchanged" wizardIndexKey="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.screens.UninstallWelcomeScreen" />
- </java>
- </serializedBean>
- <styleOverrides />
- <condition />
- <validation />
- <preActivation />
- <postActivation />
- <actions />
- <formComponents>
- <formComponent name="" id="25" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="10" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent">
- <void property="labelText">
- <string>${form:welcomeMessage}</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript>!context.isConsole()</visibilityScript>
- <externalParametrizationPropertyNames />
- </formComponent>
- <formComponent name="" id="26" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.ConsoleHandlerFormComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.ConsoleHandlerFormComponent">
- <void property="consoleScript">
- <object class="com.install4j.api.beans.ScriptProperty">
- <void property="value">
- <string>String message = context.getMessage("ConfirmUninstall", context.getApplicationName());
-return console.askYesNo(message, true);
-</string>
- </void>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- </formComponents>
- </screen>
- <screen name="" id="27" customizedId="" beanClass="com.install4j.runtime.beans.screens.UninstallationScreen" enabled="true" commentSet="false" comment="" actionElevationType="inherit" styleId="" rollbackBarrier="false" rollbackBarrierExitCode="0" backButton="2" finishScreen="false" wizardIndexChangeType="unchanged" wizardIndexKey="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.screens.UninstallationScreen" />
- </java>
- </serializedBean>
- <styleOverrides />
- <condition />
- <validation />
- <preActivation />
- <postActivation />
- <actions>
- <action name="" id="659" customizedId="" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" enabled="true" commentSet="false" comment="" actionElevationType="none" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.control.SetProgressAction">
- <void property="progressChangeType">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.actions.control.ProgressChangeType</class>
- <string>SET_INDETERMINATE</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
- <action name="" id="29" customizedId="" beanClass="com.install4j.runtime.beans.actions.UninstallFilesAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.UninstallFilesAction" />
- </java>
- </serializedBean>
- <condition />
- </action>
- <action name="" id="660" customizedId="" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" enabled="false" commentSet="false" comment="" actionElevationType="none" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.control.SetProgressAction">
- <void property="percentValue">
- <int>95</int>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
- <action name="" id="1525" customizedId="" beanClass="com.install4j.runtime.beans.actions.files.DeleteFileAction" enabled="true" commentSet="false" comment="" actionElevationType="elevated" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.files.DeleteFileAction">
- <void property="files">
- <array class="java.io.File" length="31">
- <void index="0">
- <object class="java.io.File">
- <string>jre</string>
- </object>
- </void>
- <void index="1">
- <object class="java.io.File">
- <string>jre.jar</string>
- </object>
- </void>
- <void index="2">
- <object class="java.io.File">
- <string>.install4j</string>
- </object>
- </void>
- <void index="3">
- <object class="java.io.File">
- <string>$$GETDOWN_DIST_DIR$$</string>
- </object>
- </void>
- <void index="4">
- <object class="java.io.File">
- <string>$$GETDOWN_ALT_DIR$$</string>
- </object>
- </void>
- <void index="5">
- <object class="java.io.File">
- <string>$$GETDOWN_RESOURCE_DIR$$</string>
- </object>
- </void>
- <void index="6">
- <object class="java.io.File">
- <string>getdown-launcher.jar</string>
- </object>
- </void>
- <void index="7">
- <object class="java.io.File">
- <string>getdown-launcher-old.jar</string>
- </object>
- </void>
- <void index="8">
- <object class="java.io.File">
- <string>getdown-launcher-new.jar</string>
- </object>
- </void>
- <void index="9">
- <object class="java.io.File">
- <string>*.jarv</string>
- </object>
- </void>
- <void index="10">
- <object class="java.io.File">
- <string>gettingdown.lock</string>
- </object>
- </void>
- <void index="11">
- <object class="java.io.File">
- <string>*.log</string>
- </object>
- </void>
- <void index="12">
- <object class="java.io.File">
- <string>*.txt</string>
- </object>
- </void>
- <void index="13">
- <object class="java.io.File">
- <string>*_new</string>
- </object>
- </void>
- <void index="14">
- <object class="java.io.File">
- <string>digest.txt</string>
- </object>
- </void>
- <void index="15">
- <object class="java.io.File">
- <string>digest2.txt</string>
- </object>
- </void>
- <void index="16">
- <object class="java.io.File">
- <string>getdown-launcher.jarv</string>
- </object>
- </void>
- <void index="17">
- <object class="java.io.File">
- <string>getdown-launcher-new.jarv</string>
- </object>
- </void>
- <void index="18">
- <object class="java.io.File">
- <string>channel_launch.jvl</string>
- </object>
- </void>
- <void index="19">
- <object class="java.io.File">
- <string>launcher.log</string>
- </object>
- </void>
- <void index="20">
- <object class="java.io.File">
- <string>proxy.txt</string>
- </object>
- </void>
- <void index="21">
- <object class="java.io.File">
- <string>META-INF</string>
- </object>
- </void>
- <void index="22">
- <object class="java.io.File">
- <string>install/getdown-launcher.jar</string>
- </object>
- </void>
- <void index="23">
- <object class="java.io.File">
- <string>install/getdown.txt</string>
- </object>
- </void>
- <void index="24">
- <object class="java.io.File">
- <string>install/build_properties</string>
- </object>
- </void>
- <void index="25">
- <object class="java.io.File">
- <string>build_properties</string>
- </object>
- </void>
- <void index="26">
- <object class="java.io.File">
- <string>install</string>
- </object>
- </void>
- <void index="27">
- <object class="java.io.File">
- <string>dist</string>
- </object>
- </void>
- <void index="28">
- <object class="java.io.File">
- <string>release</string>
- </object>
- </void>
- <void index="29">
- <object class="java.io.File">
- <string>alt</string>
- </object>
- </void>
- <void index="30">
- <object class="java.io.File">
- <string>resource</string>
- </object>
- </void>
- </array>
- </void>
- <void property="recursive">
- <boolean>true</boolean>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
- <action name="" id="1791" customizedId="" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" enabled="true" commentSet="false" comment="" actionElevationType="none" rollbackBarrier="false" rollbackBarrierExitCode="0" multiExec="false" failureStrategy="1" errorMessage="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.actions.control.SetProgressAction">
- <void property="percentValue">
- <int>100</int>
- </void>
- </object>
- </java>
- </serializedBean>
- <condition />
- </action>
- </actions>
- <formComponents>
- <formComponent name="" id="28" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.ProgressComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.ProgressComponent">
- <void property="initialStatusMessage">
- <string>${i18n:UninstallerPreparing}</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- </formComponents>
- </screen>
- <screen name="" id="32" customizedId="" beanClass="com.install4j.runtime.beans.screens.UninstallFailureScreen" enabled="true" commentSet="false" comment="" actionElevationType="inherit" styleId="" rollbackBarrier="false" rollbackBarrierExitCode="0" backButton="2" finishScreen="true" wizardIndexChangeType="unchanged" wizardIndexKey="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.screens.UninstallFailureScreen" />
- </java>
- </serializedBean>
- <styleOverrides />
- <condition />
- <validation />
- <preActivation />
- <postActivation />
- <actions />
- <formComponents />
- </screen>
- <screen name="" id="30" customizedId="" beanClass="com.install4j.runtime.beans.screens.UninstallSuccessScreen" enabled="true" commentSet="false" comment="" actionElevationType="inherit" styleId="41" rollbackBarrier="false" rollbackBarrierExitCode="0" backButton="2" finishScreen="true" wizardIndexChangeType="unchanged" wizardIndexKey="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.screens.UninstallSuccessScreen" />
- </java>
- </serializedBean>
- <styleOverrides />
- <condition />
- <validation />
- <preActivation />
- <postActivation />
- <actions />
- <formComponents>
- <formComponent name="" id="31" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="10" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent">
- <void property="labelText">
- <string>${form:successMessage}</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- </formComponents>
- </screen>
- </screens>
- </application>
- </applications>
- <styles defaultStyleId="35">
- <style name="Standard" id="35" customizedId="" beanClass="com.install4j.runtime.beans.styles.FormStyle" enabled="true" commentSet="false" comment="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.styles.FormStyle" />
- </java>
- </serializedBean>
- <formComponents>
- <formComponent name="Header" id="36" customizedId="" beanClass="com.install4j.runtime.beans.styles.NestedStyleComponent" enabled="true" commentSet="false" comment="" insetTop="0" insetLeft="" insetBottom="0" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.styles.NestedStyleComponent">
- <void property="styleId">
- <string>48</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- <group name="Main" id="37" customizedId="" beanClass="com.install4j.runtime.beans.groups.VerticalFormComponentGroup" enabled="true" commentSet="false" comment="" actionElevationType="inherit" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.groups.VerticalFormComponentGroup">
- <void property="imageEdgeAxisType">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.formcomponents.AxisType</class>
- <string>HORIZONTAL</string>
- </object>
- </void>
- <void property="imageFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>../../resources/images/jalview_logo_background_fade-640x480.png</string>
- </object>
- </void>
- <void property="imageOverlap">
- <boolean>true</boolean>
- </void>
- </object>
- </java>
- </serializedBean>
- <beans>
- <formComponent name="" id="38" customizedId="" beanClass="com.install4j.runtime.beans.styles.ContentComponent" enabled="true" commentSet="false" comment="" insetTop="10" insetLeft="20" insetBottom="10" insetRight="20" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.styles.ContentComponent" />
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- <formComponent name="Watermark" id="39" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.SeparatorComponent" enabled="true" commentSet="false" comment="" insetTop="0" insetLeft="5" insetBottom="0" insetRight="" resetInitOnPrevious="false" useExternalParametrization="true" externalParametrizationName="Jalview" externalParametrizationMode="include">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.SeparatorComponent">
- <void property="enabledTitleText">
- <boolean>false</boolean>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames>
- <propertyName>labelText</propertyName>
- </externalParametrizationPropertyNames>
- </formComponent>
- <formComponent name="Footer" id="40" customizedId="" beanClass="com.install4j.runtime.beans.styles.NestedStyleComponent" enabled="true" commentSet="false" comment="" insetTop="0" insetLeft="" insetBottom="0" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.styles.NestedStyleComponent">
- <void property="styleId">
- <string>52</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- </beans>
- <externalParametrizationPropertyNames />
- </group>
- </formComponents>
- </style>
- <style name="Banner" id="41" customizedId="" beanClass="com.install4j.runtime.beans.styles.FormStyle" enabled="true" commentSet="false" comment="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.styles.FormStyle" />
- </java>
- </serializedBean>
- <formComponents>
- <group name="" id="42" customizedId="" beanClass="com.install4j.runtime.beans.groups.VerticalFormComponentGroup" enabled="true" commentSet="false" comment="" actionElevationType="inherit" useExternalParametrization="true" externalParametrizationName="Customize banner image" externalParametrizationMode="include">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.groups.VerticalFormComponentGroup">
- <void property="backgroundColor">
- <object class="java.awt.Color">
- <int>255</int>
- <int>255</int>
- <int>255</int>
- <int>255</int>
- </object>
- </void>
- <void property="borderSides">
- <object class="com.install4j.runtime.beans.formcomponents.BorderSides">
- <void property="bottom">
- <boolean>true</boolean>
- </void>
- </object>
- </void>
- <void property="imageEdgeBackgroundColor">
- <object class="java.awt.Color">
- <int>25</int>
- <int>143</int>
- <int>220</int>
- <int>255</int>
- </object>
- </void>
- <void property="imageEdgeBorder">
- <boolean>true</boolean>
- </void>
- <void property="imageFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>${compiler:sys.install4jHome}/resource/styles/wizard.png</string>
- </object>
- </void>
- <void property="insets">
- <object class="java.awt.Insets">
- <int>5</int>
- <int>10</int>
- <int>10</int>
- <int>10</int>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <beans>
- <formComponent name="" id="43" customizedId="" beanClass="com.install4j.runtime.beans.styles.ScreenTitleComponent" enabled="true" commentSet="false" comment="" insetTop="0" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.styles.ScreenTitleComponent">
- <void property="labelFontSizePercent">
- <int>130</int>
- </void>
- <void property="labelFontStyle">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.formcomponents.FontStyle</class>
- <string>BOLD</string>
- </object>
- </void>
- <void property="labelFontType">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.formcomponents.FontType</class>
- <string>DERIVED</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- <formComponent name="" id="44" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.SeparatorComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.SeparatorComponent" />
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- <formComponent name="" id="45" customizedId="" beanClass="com.install4j.runtime.beans.styles.ContentComponent" enabled="true" commentSet="false" comment="" insetTop="10" insetLeft="" insetBottom="0" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.styles.ContentComponent" />
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- </beans>
- <externalParametrizationPropertyNames>
- <propertyName>imageAnchor</propertyName>
- <propertyName>imageEdgeBackgroundColor</propertyName>
- <propertyName>imageFile</propertyName>
- </externalParametrizationPropertyNames>
- </group>
- <formComponent name="" id="46" customizedId="" beanClass="com.install4j.runtime.beans.styles.NestedStyleComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="0" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.styles.NestedStyleComponent">
- <void property="styleId">
- <string>52</string>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- </formComponents>
- </style>
- <group name="Style components" id="47" customizedId="" beanClass="com.install4j.runtime.beans.groups.StyleGroup" enabled="true" commentSet="false" comment="" actionElevationType="inherit">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.groups.StyleGroup" />
- </java>
- </serializedBean>
- <beans>
- <style name="Standard header" id="48" customizedId="" beanClass="com.install4j.runtime.beans.styles.FormStyle" enabled="true" commentSet="false" comment="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.styles.FormStyle">
- <void property="fillVertical">
- <boolean>false</boolean>
- </void>
- <void property="standalone">
- <boolean>false</boolean>
- </void>
- <void property="verticalAnchor">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.api.beans.Anchor</class>
- <string>NORTH</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <formComponents>
- <group name="" id="49" customizedId="" beanClass="com.install4j.runtime.beans.groups.VerticalFormComponentGroup" enabled="true" commentSet="false" comment="" actionElevationType="inherit" useExternalParametrization="true" externalParametrizationName="Customize title bar" externalParametrizationMode="include">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.groups.VerticalFormComponentGroup" id="VerticalFormComponentGroup0">
- <void property="backgroundColor">
- <object class="java.awt.Color">
- <int>255</int>
- <int>255</int>
- <int>255</int>
- <int>255</int>
- </object>
- </void>
- <void property="borderSides">
- <object class="com.install4j.runtime.beans.formcomponents.BorderSides">
- <void property="bottom">
- <boolean>true</boolean>
- </void>
- </object>
- </void>
- <void property="imageAnchor">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.api.beans.Anchor</class>
- <string>NORTHEAST</string>
- </object>
- </void>
- <void property="imageEdgeBorderWidth">
- <int>2</int>
- </void>
- <void property="imageFile">
- <object class="com.install4j.api.beans.ExternalFile">
- <string>icon:${installer:sys.installerApplicationMode}_header.png</string>
- </object>
- </void>
- <void id="Integer0" property="cellSpacing" />
- <void id="Integer1" property="borderWidth" />
- <void property="imageInsets">
- <object class="java.awt.Insets">
- <object idref="Integer0" />
- <int>5</int>
- <object idref="Integer1" />
- <object idref="Integer1" />
- </object>
- </void>
- <void property="insets">
- <object class="java.awt.Insets">
- <object idref="Integer0" />
- <int>20</int>
- <object idref="Integer0" />
- <int>10</int>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <beans>
- <formComponent name="Title" id="50" customizedId="" beanClass="com.install4j.runtime.beans.styles.ScreenTitleComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.styles.ScreenTitleComponent">
- <void property="labelFontStyle">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.formcomponents.FontStyle</class>
- <string>BOLD</string>
- </object>
- </void>
- <void property="labelFontType">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.formcomponents.FontType</class>
- <string>DERIVED</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- <formComponent name="Subtitle" id="51" customizedId="" beanClass="com.install4j.runtime.beans.styles.ScreenTitleComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="8" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.styles.ScreenTitleComponent">
- <void property="titleType">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.runtime.beans.styles.TitleType</class>
- <string>SUB_TITLE</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </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" customizedId="" beanClass="com.install4j.runtime.beans.styles.FormStyle" enabled="true" commentSet="false" comment="">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.styles.FormStyle">
- <void property="fillVertical">
- <boolean>false</boolean>
- </void>
- <void property="standalone">
- <boolean>false</boolean>
- </void>
- <void property="verticalAnchor">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.api.beans.Anchor</class>
- <string>SOUTH</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <formComponents>
- <group name="" id="53" customizedId="" beanClass="com.install4j.runtime.beans.groups.HorizontalFormComponentGroup" enabled="true" commentSet="false" comment="" actionElevationType="inherit" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.groups.HorizontalFormComponentGroup" id="HorizontalFormComponentGroup0">
- <void property="alignFirstLabel">
- <boolean>false</boolean>
- </void>
- <void id="Integer0" property="cellSpacing" />
- <void property="insets">
- <object class="java.awt.Insets">
- <int>3</int>
- <object idref="Integer0" />
- <int>8</int>
- <object idref="Integer0" />
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <beans>
- <formComponent name="" id="54" customizedId="" beanClass="com.install4j.runtime.beans.formcomponents.SpringComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.formcomponents.SpringComponent" />
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- <formComponent name="Back button" id="55" customizedId="" beanClass="com.install4j.runtime.beans.styles.StandardControlButtonComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.styles.StandardControlButtonComponent">
- <void property="buttonText">
- <string>< ${i18n:ButtonBack}</string>
- </void>
- <void property="controlButtonType">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.api.context.ControlButtonType</class>
- <string>PREVIOUS</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- <formComponent name="Next button" id="56" customizedId="" beanClass="com.install4j.runtime.beans.styles.StandardControlButtonComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.styles.StandardControlButtonComponent">
- <void property="buttonText">
- <string>${i18n:ButtonNext} ></string>
- </void>
- <void property="controlButtonType">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.api.context.ControlButtonType</class>
- <string>NEXT</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- <formComponent name="Cancel button" id="57" customizedId="" beanClass="com.install4j.runtime.beans.styles.StandardControlButtonComponent" enabled="true" commentSet="false" comment="" insetTop="" insetLeft="5" insetBottom="" insetRight="" resetInitOnPrevious="false" useExternalParametrization="false" externalParametrizationName="" externalParametrizationMode="all">
- <serializedBean>
- <java class="java.beans.XMLDecoder">
- <object class="com.install4j.runtime.beans.styles.StandardControlButtonComponent">
- <void property="buttonText">
- <string>${i18n:ButtonCancel}</string>
- </void>
- <void property="controlButtonType">
- <object class="java.lang.Enum" method="valueOf">
- <class>com.install4j.api.context.ControlButtonType</class>
- <string>CANCEL</string>
- </object>
- </void>
- </object>
- </java>
- </serializedBean>
- <initScript />
- <visibilityScript />
- <externalParametrizationPropertyNames />
- </formComponent>
- </beans>
- <externalParametrizationPropertyNames />
- </group>
- </formComponents>
- </style>
- </beans>
- </group>
- </styles>
- </installerGui>
- <mediaSets>
- <linuxDeb name="Jalview .deb Package" id="153" customizedId="" mediaFileName="jalview-$$VERSION$$" installDir="/opt/${compiler:sys.shortName}" overridePrincipalLanguage="false" jreBitType="all" runPostProcessor="false" postProcessor="" failOnPostProcessorError="false" useLegacyMediaFileIds="false" legacyMediaFileIds="" downloadURL="" includeAllDownloadableComponents="true" includedJRE="" manualJREEntry="false" overwriteNeverAsConfigFiles="false" dependencies="openjdk-8-jre" bzip="true" description="Jalview Desktop" maintainerEmail="help@jalview.org" architectureSet="false" architecture="">
- <excludedComponents>
- <component id="1031" />
- <component id="1155" />
- <component id="1156" />
- <component id="1276" />
- <component id="2110" />
- </excludedComponents>
- <includedDownloadableComponents />
- <excludedLaunchers>
- <launcher id="737" />
- <launcher id="1402" />
- </excludedLaunchers>
- <excludedBeans />
- <overriddenPrincipalLanguage id="en" customLocalizationFile="" />
- <exclude>
- <entry location=".i4j_fileset_" fileType="regular" />
- <entry location=".i4j_fileset_734" fileType="regular" />
- <entry location=".i4j_fileset_880" fileType="regular" />
- <entry location=".i4j_fileset_882" fileType="regular" />
- </exclude>
- <variables />
- <autoUpdate useMinUpdatableVersion="false" minUpdatableVersion="" useMaxUpdatableVersion="false" maxUpdatableVersion="">
- <commentFiles />
- <customAttributes />
- </autoUpdate>
- <preInstallScript mode="1" file="">
- <content />
- </preInstallScript>
- <postInstallScript mode="1" file="">
- <content />
- </postInstallScript>
- <preUninstallScript mode="1" file="">
- <content />
- </preUninstallScript>
- <postUninstallScript mode="1" file="">
- <content />
- </postUninstallScript>
- </linuxDeb>
- <linuxRPM name="Jalview RPM Package" id="570" customizedId="" mediaFileName="jalview-$$VERSION$$" installDir="/opt/${compiler:sys.shortName}" overridePrincipalLanguage="false" jreBitType="all" runPostProcessor="false" postProcessor="" failOnPostProcessorError="false" useLegacyMediaFileIds="false" legacyMediaFileIds="" downloadURL="" includeAllDownloadableComponents="true" includedJRE="" manualJREEntry="false" overwriteNeverAsConfigFiles="false" dependencies="java-1.8.0-openjdk" os="linux" arch="noarch">
- <excludedComponents>
- <component id="1031" />
- <component id="1155" />
- <component id="1156" />
- <component id="1276" />
- <component id="2110" />
- </excludedComponents>
- <includedDownloadableComponents />
- <excludedLaunchers>
- <launcher id="737" />
- <launcher id="1402" />
- </excludedLaunchers>
- <excludedBeans />
- <overriddenPrincipalLanguage id="en" customLocalizationFile="" />
- <exclude>
- <entry location=".i4j_fileset_" fileType="regular" />
- <entry location=".i4j_fileset_734" fileType="regular" />
- <entry location=".i4j_fileset_880" fileType="regular" />
- <entry location=".i4j_fileset_882" fileType="regular" />
- </exclude>
- <variables />
- <autoUpdate useMinUpdatableVersion="false" minUpdatableVersion="" useMaxUpdatableVersion="false" maxUpdatableVersion="">
- <commentFiles />
- <customAttributes />
- </autoUpdate>
- <preInstallScript mode="1" file="">
- <content />
- </preInstallScript>
- <postInstallScript mode="1" file="">
- <content />
- </postInstallScript>
- <preUninstallScript mode="1" file="">
- <content />
- </preUninstallScript>
- <postUninstallScript mode="1" file="">
- <content />
- </postUninstallScript>
- </linuxRPM>
- <windows name="Offline Windows x64 Installer" id="743" customizedId="" mediaFileName="${compiler:sys.shortName}-OFFLINE_${compiler:sys.platform}_${compiler:sys.version}-j$$JAVA_INTEGER_VERSION$$" installDir="${compiler:sys.shortName}" overridePrincipalLanguage="false" jreBitType="64" runPostProcessor="true" postProcessor="${compiler:JSIGN_SH} $EXECUTABLE" failOnPostProcessorError="false" useLegacyMediaFileIds="false" legacyMediaFileIds="" downloadURL="" includeAllDownloadableComponents="false" includedJRE="$$WINDOWS_JAVA_VM_TGZ$$" manualJREEntry="true" bundleType="1" jreURL="" jreShared="false" directDownload="false" installOnlyIfNecessary="false" customInstallBaseDir="~/AppData/Local" contentFilesType="1" verifyIntegrity="true">
- <excludedComponents>
- <component id="1155" />
- <component id="1156" />
- <component id="1276" />
- <component id="1881" />
- <component id="2110" />
- </excludedComponents>
- <includedDownloadableComponents />
- <excludedLaunchers>
- <launcher id="1402" />
- </excludedLaunchers>
- <excludedBeans />
- <overriddenPrincipalLanguage id="en" customLocalizationFile="" />
- <exclude>
- <entry location=".i4j_fileset_" fileType="regular" />
- <entry location=".i4j_fileset_880" fileType="regular" />
- <entry location=".i4j_fileset_882" fileType="regular" />
- <entry location=".i4j_fileset_1873" fileType="regular" />
- </exclude>
- <variables />
- <autoUpdate useMinUpdatableVersion="false" minUpdatableVersion="" useMaxUpdatableVersion="false" maxUpdatableVersion="">
- <commentFiles />
- <customAttributes />
- </autoUpdate>
- </windows>
- <windows name="Network Windows x64 Installer" id="1862" customizedId="" mediaFileName="${compiler:sys.shortName}-NETWORK_${compiler:sys.platform}_${compiler:sys.version}-j$$JAVA_INTEGER_VERSION$$" installDir="${compiler:sys.shortName}" overridePrincipalLanguage="false" jreBitType="64" runPostProcessor="true" postProcessor="${compiler:JSIGN_SH} $EXECUTABLE" failOnPostProcessorError="false" useLegacyMediaFileIds="false" legacyMediaFileIds="" downloadURL="" includeAllDownloadableComponents="false" includedJRE="$$WINDOWS_JAVA_VM_TGZ$$" manualJREEntry="true" bundleType="1" jreURL="" jreShared="false" directDownload="false" installOnlyIfNecessary="false" customInstallBaseDir="~/AppData/Local" contentFilesType="1" verifyIntegrity="true">
- <excludedComponents>
- <component id="1031" />
- <component id="1155" />
- <component id="1156" />
- <component id="1881" />
- <component id="2110" />
- </excludedComponents>
- <includedDownloadableComponents />
- <excludedLaunchers />
- <excludedBeans />
- <overriddenPrincipalLanguage id="en" customLocalizationFile="" />
- <exclude>
- <entry location=".i4j_fileset_734" fileType="regular" />
- <entry location=".i4j_fileset_880" fileType="regular" />
- <entry location=".i4j_fileset_1873" fileType="regular" />
- </exclude>
- <variables />
- <autoUpdate useMinUpdatableVersion="false" minUpdatableVersion="" useMaxUpdatableVersion="false" maxUpdatableVersion="">
- <commentFiles />
- <customAttributes />
- </autoUpdate>
- </windows>
- <macosArchive name="Offline macOS Disk Image" id="878" customizedId="" mediaFileName="${compiler:sys.shortName}-OFFLINE_${compiler:sys.platform}-app_${compiler:sys.version}-j$$JAVA_INTEGER_VERSION$$" installDir="${compiler:sys.shortName}" overridePrincipalLanguage="false" jreBitType="all" runPostProcessor="false" postProcessor="" failOnPostProcessorError="false" useLegacyMediaFileIds="false" legacyMediaFileIds="" downloadURL="" includeAllDownloadableComponents="true" includedJRE="" manualJREEntry="false" archiveType="dmg" volumeName="${compiler:sys.shortName} Installer" launcherId="737">
- <excludedComponents>
- <component id="1156" />
- <component id="1276" />
- <component id="1881" />
- </excludedComponents>
- <includedDownloadableComponents />
- <excludedBeans />
- <overriddenPrincipalLanguage id="en" customLocalizationFile="" />
- <exclude>
- <entry location=".i4j_fileset_" fileType="regular" />
- <entry location=".i4j_fileset_882" fileType="regular" />
- <entry location=".i4j_fileset_1873" fileType="regular" />
- </exclude>
- <variables />
- <autoUpdate useMinUpdatableVersion="false" minUpdatableVersion="" useMaxUpdatableVersion="false" maxUpdatableVersion="">
- <commentFiles />
- <customAttributes />
- </autoUpdate>
- <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-Version-Locator.icns" file="Jalview-Version-Locator.icns" />
- <symlink name="Uninstall Old Jalview (optional).app" target="Jalview.app/Contents/Resources/app/Uninstall Old Jalview.app" />
- </topLevelFiles>
- </macosArchive>
- <macosArchive name="Network macOS Disk Image" id="1274" customizedId="" mediaFileName="${compiler:sys.shortName}-NETWORK_${compiler:sys.platform}-app_${compiler:sys.version}-j$$JAVA_INTEGER_VERSION$$" installDir="${compiler:sys.shortName}" overridePrincipalLanguage="false" jreBitType="all" runPostProcessor="false" postProcessor="" failOnPostProcessorError="false" useLegacyMediaFileIds="false" legacyMediaFileIds="" downloadURL="" includeAllDownloadableComponents="true" includedJRE="" manualJREEntry="false" archiveType="dmg" volumeName="${compiler:sys.shortName} Installer" launcherId="1402">
- <excludedComponents>
- <component id="1031" />
- <component id="1156" />
- <component id="1881" />
- </excludedComponents>
- <includedDownloadableComponents />
- <excludedBeans />
- <overriddenPrincipalLanguage id="en" customLocalizationFile="" />
- <exclude>
- <entry location=".i4j_fileset_734" fileType="regular" />
- <entry location=".i4j_fileset_882" fileType="regular" />
- <entry location=".i4j_fileset_1873" fileType="regular" />
- </exclude>
- <variables />
- <autoUpdate useMinUpdatableVersion="false" minUpdatableVersion="" useMaxUpdatableVersion="false" maxUpdatableVersion="">
- <commentFiles />
- <customAttributes />
- </autoUpdate>
- <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-Version-Locator.icns" file="Jalview-Version-Locator.icns" />
- <file name="Jalview.app/Contents/Resources/Jalview-File.icns" file="Jalview-File.icns" />
- <symlink name="Uninstall Old Jalview (optional).app" target="Jalview.app/Contents/Resources/app/Uninstall Old Jalview.app" />
- </topLevelFiles>
- </macosArchive>
- <unixInstaller name="Offline Unix Shell Installer" id="1595" customizedId="" mediaFileName="${compiler:sys.shortName}-OFFLINE_${compiler:sys.platform}_installer_${compiler:sys.version}-j$$JAVA_INTEGER_VERSION$$" installDir="${compiler:sys.shortName}" overridePrincipalLanguage="false" jreBitType="all" runPostProcessor="false" postProcessor="" failOnPostProcessorError="false" useLegacyMediaFileIds="false" legacyMediaFileIds="" downloadURL="" includeAllDownloadableComponents="false" includedJRE="" manualJREEntry="false" bundleType="1" jreURL="" jreShared="false" directDownload="false" installOnlyIfNecessary="false" customInstallBaseDir="~/opt/" contentFilesType="1">
- <excludedComponents>
- <component id="1155" />
- <component id="1156" />
- <component id="1276" />
- <component id="1881" />
- <component id="2110" />
- </excludedComponents>
- <includedDownloadableComponents />
- <excludedLaunchers>
- <launcher id="1402" />
- </excludedLaunchers>
- <excludedBeans />
- <overriddenPrincipalLanguage id="en" customLocalizationFile="" />
- <exclude>
- <entry location=".i4j_fileset_" fileType="regular" />
- <entry location=".i4j_fileset_880" fileType="regular" />
- <entry location=".i4j_fileset_882" fileType="regular" />
- <entry location=".i4j_fileset_1873" fileType="regular" />
- </exclude>
- <variables />
- <autoUpdate useMinUpdatableVersion="false" minUpdatableVersion="" useMaxUpdatableVersion="false" maxUpdatableVersion="">
- <commentFiles />
- <customAttributes />
- </autoUpdate>
- <installerScript mode="1" file="">
- <content />
- </installerScript>
- </unixInstaller>
- <unixInstaller name="Network Unix Shell Installer" id="1867" customizedId="" mediaFileName="${compiler:sys.shortName}-NETWORK_${compiler:sys.platform}_installer_${compiler:sys.version}-j$$JAVA_INTEGER_VERSION$$" installDir="${compiler:sys.shortName}" overridePrincipalLanguage="false" jreBitType="all" runPostProcessor="false" postProcessor="" failOnPostProcessorError="false" useLegacyMediaFileIds="false" legacyMediaFileIds="" downloadURL="" includeAllDownloadableComponents="false" includedJRE="" manualJREEntry="false" bundleType="1" jreURL="" jreShared="false" directDownload="false" installOnlyIfNecessary="false" customInstallBaseDir="~/opt/" contentFilesType="1">
- <excludedComponents>
- <component id="1031" />
- <component id="1155" />
- <component id="1156" />
- <component id="1881" />
- <component id="2110" />
- </excludedComponents>
- <includedDownloadableComponents />
- <excludedLaunchers />
- <excludedBeans />
- <overriddenPrincipalLanguage id="en" customLocalizationFile="" />
- <exclude>
- <entry location=".i4j_fileset_734" fileType="regular" />
- <entry location=".i4j_fileset_880" fileType="regular" />
- <entry location=".i4j_fileset_882" fileType="regular" />
- <entry location=".i4j_fileset_1873" fileType="regular" />
- </exclude>
- <variables />
- <autoUpdate useMinUpdatableVersion="false" minUpdatableVersion="" useMaxUpdatableVersion="false" maxUpdatableVersion="">
- <commentFiles />
- <customAttributes />
- </autoUpdate>
- <installerScript mode="1" file="">
- <content />
- </installerScript>
- </unixInstaller>
- <unixArchive name="Offline Unix .tar.gz Archive" id="1596" customizedId="" mediaFileName="${compiler:sys.shortName}-OFFLINE_${compiler:sys.platform}_archive_${compiler:sys.version}-j$$JAVA_INTEGER_VERSION$$" installDir="${compiler:sys.shortName}" overridePrincipalLanguage="false" jreBitType="all" runPostProcessor="false" postProcessor="" failOnPostProcessorError="false" useLegacyMediaFileIds="false" legacyMediaFileIds="" downloadURL="" includeAllDownloadableComponents="true" includedJRE="" manualJREEntry="false">
- <excludedComponents>
- <component id="1155" />
- <component id="1156" />
- <component id="1276" />
- <component id="1881" />
- <component id="2110" />
- </excludedComponents>
- <includedDownloadableComponents />
- <excludedLaunchers>
- <launcher id="1402" />
- </excludedLaunchers>
- <excludedBeans />
- <overriddenPrincipalLanguage id="en" customLocalizationFile="" />
- <exclude>
- <entry location=".i4j_fileset_" fileType="regular" />
- <entry location=".i4j_fileset_880" fileType="regular" />
- <entry location=".i4j_fileset_882" fileType="regular" />
- <entry location=".i4j_fileset_1873" fileType="regular" />
- </exclude>
- <variables />
- <autoUpdate useMinUpdatableVersion="false" minUpdatableVersion="" useMaxUpdatableVersion="false" maxUpdatableVersion="">
- <commentFiles />
- <customAttributes />
- </autoUpdate>
- </unixArchive>
- <unixArchive name="Network Unix .tar.gz Archive" id="1871" customizedId="" mediaFileName="${compiler:sys.shortName}-NETWORK_${compiler:sys.platform}_archive_${compiler:sys.version}-j$$JAVA_INTEGER_VERSION$$" installDir="${compiler:sys.shortName}" overridePrincipalLanguage="false" jreBitType="all" runPostProcessor="false" postProcessor="" failOnPostProcessorError="false" useLegacyMediaFileIds="false" legacyMediaFileIds="" downloadURL="" includeAllDownloadableComponents="true" includedJRE="" manualJREEntry="false">
- <excludedComponents>
- <component id="1031" />
- <component id="1155" />
- <component id="1156" />
- <component id="1881" />
- <component id="2110" />
- </excludedComponents>
- <includedDownloadableComponents />
- <excludedLaunchers />
- <excludedBeans />
- <overriddenPrincipalLanguage id="en" customLocalizationFile="" />
- <exclude>
- <entry location=".i4j_fileset_734" fileType="regular" />
- <entry location=".i4j_fileset_880" fileType="regular" />
- <entry location=".i4j_fileset_882" fileType="regular" />
- <entry location=".i4j_fileset_1873" fileType="regular" />
- </exclude>
- <variables />
- <autoUpdate useMinUpdatableVersion="false" minUpdatableVersion="" useMaxUpdatableVersion="false" maxUpdatableVersion="">
- <commentFiles />
- <customAttributes />
- </autoUpdate>
- </unixArchive>
- </mediaSets>
- <buildIds buildAll="true">
- <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>
- <buildOptions verbose="false" faster="false" disableSigning="false" disableJreBundling="false" debug="false" />
-</install4j>