Merge pull request #1882 from SiboVG/unstable
Upgrade install4j to v10 + add code signing certificates settings
This commit is contained in:
commit
b12c4f02f4
2
install4j/.gitignore
vendored
2
install4j/.gitignore
vendored
@ -18,3 +18,5 @@ media/
|
|||||||
|
|
||||||
# macOS files
|
# macOS files
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
|
code_signing/
|
||||||
|
22
install4j/22.xx/.gitignore
vendored
Normal file
22
install4j/22.xx/.gitignore
vendored
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
# Compiled class file
|
||||||
|
*.class
|
||||||
|
|
||||||
|
# Log file
|
||||||
|
*.log
|
||||||
|
|
||||||
|
# Package Files #
|
||||||
|
*.jar
|
||||||
|
*.war
|
||||||
|
*.nar
|
||||||
|
*.ear
|
||||||
|
*.zip
|
||||||
|
*.tar.gz
|
||||||
|
*.rar
|
||||||
|
|
||||||
|
# Install4j media
|
||||||
|
media/
|
||||||
|
|
||||||
|
# macOS files
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
code_signing/
|
@ -1,7 +1,8 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<install4j version="9.0.6" transformSequenceNumber="9">
|
<install4j version="10.0.4" transformSequenceNumber="10">
|
||||||
<directoryPresets config="../../core/resources-src/pix/icon" />
|
<directoryPresets config="../../core/resources-src/pix/icon" />
|
||||||
<application name="OpenRocket 22.02.beta.05" applicationId="8434-9327-1469-6373" mediaDir="media" mediaFilePattern="${compiler:sys.shortName}_${compiler:sys.version}_${compiler:sys.platform}" shortName="OpenRocket" publisher="OpenRocket" publisherWeb="http://openrocket.info" version="22.02.beta.05" allPathsRelative="true" convertDotsToUnderscores="false" macVolumeId="5f58a2be20d8e22f" javaMinVersion="11" javaMaxVersion="11" jdkMode="jdk" jdkName="JDK 11.0">
|
<application name="OpenRocket 22.02.beta.05" applicationId="8434-9327-1469-6373" mediaDir="media" mediaFilePattern="${compiler:sys.shortName}_${compiler:sys.version}_${compiler:sys.platform}" shortName="OpenRocket" publisher="OpenRocket" publisherWeb="http://openrocket.info" version="22.02.beta.05" allPathsRelative="true" convertDotsToUnderscores="false" macVolumeId="5f58a2be20d8e22f" javaMinVersion="11" javaMaxVersion="11" jdkMode="jdk" jdkName="JDK 11.0">
|
||||||
|
<codeSigning macEnabled="true" macPkcs12File="./code_signing/OpenRocket_macOS.p12" windowsEnabled="true" windowsPkcs12File="./code_signing/OpenRocket_Windows.pfx" macNotarize="true" appleId="sibo.vangool@hotmail.com" />
|
||||||
<jreBundles jdkProviderId="Liberica" release="11/11.0.15+10">
|
<jreBundles jdkProviderId="Liberica" release="11/11.0.15+10">
|
||||||
<modules>
|
<modules>
|
||||||
<defaultModules set="jre" />
|
<defaultModules set="jre" />
|
||||||
@ -9,7 +10,7 @@
|
|||||||
</modules>
|
</modules>
|
||||||
</jreBundles>
|
</jreBundles>
|
||||||
</application>
|
</application>
|
||||||
<files preserveSymlinks="false">
|
<files>
|
||||||
<mountPoints>
|
<mountPoints>
|
||||||
<mountPoint id="58" />
|
<mountPoint id="58" />
|
||||||
</mountPoints>
|
</mountPoints>
|
||||||
@ -44,6 +45,9 @@
|
|||||||
<file path="../../core/resources-src/pix/icon/icon-256-1.png" />
|
<file path="../../core/resources-src/pix/icon/icon-256-1.png" />
|
||||||
<file path="../../core/resources-src/pix/icon/icon-256.png" />
|
<file path="../../core/resources-src/pix/icon/icon-256.png" />
|
||||||
</iconImageFiles>
|
</iconImageFiles>
|
||||||
|
<macStaticAssociations>
|
||||||
|
<fileAssociation extension="ork" description="OpenRocket Design" iconFile="./OpenRocket.icns" role="editor" />
|
||||||
|
</macStaticAssociations>
|
||||||
</launcher>
|
</launcher>
|
||||||
</launchers>
|
</launchers>
|
||||||
<installerGui>
|
<installerGui>
|
||||||
@ -311,12 +315,6 @@ return console.askOkCancel(message, true);
|
|||||||
<property name="description" type="string">OpenRocket Design</property>
|
<property name="description" type="string">OpenRocket Design</property>
|
||||||
<property name="extension" type="string">ork</property>
|
<property name="extension" type="string">ork</property>
|
||||||
<property name="launcherId" type="string">59</property>
|
<property name="launcherId" type="string">59</property>
|
||||||
<property name="macIconFile">
|
|
||||||
<object class="com.install4j.api.beans.ExternalFile">
|
|
||||||
<string>./OpenRocket.icns</string>
|
|
||||||
</object>
|
|
||||||
</property>
|
|
||||||
<property name="macRole" type="enum" class="com.install4j.runtime.beans.actions.desktop.MacAssociationRole" value="EDITOR" />
|
|
||||||
<property name="unix" type="boolean" value="true" />
|
<property name="unix" type="boolean" value="true" />
|
||||||
<property name="unixIconFile">
|
<property name="unixIconFile">
|
||||||
<object class="com.install4j.api.beans.ExternalFile">
|
<object class="com.install4j.api.beans.ExternalFile">
|
||||||
@ -652,7 +650,7 @@ return console.askYesNo(message, true);
|
|||||||
</styles>
|
</styles>
|
||||||
</installerGui>
|
</installerGui>
|
||||||
<mediaSets>
|
<mediaSets>
|
||||||
<windows name="Windows" id="60" mediaFileName="${compiler:sys.shortName}-${compiler:sys.version}-Windows">
|
<windows name="Windows" id="60" mediaFileName="${compiler:sys.shortName}-${compiler:sys.version}-Windows" architecture="64">
|
||||||
<jreBundle>
|
<jreBundle>
|
||||||
<modules>
|
<modules>
|
||||||
<module name="java.scripting" />
|
<module name="java.scripting" />
|
||||||
|
Loading…
x
Reference in New Issue
Block a user