Skip to content

Commit

Permalink
Regenerate expired packaging cert
Browse files Browse the repository at this point in the history
  • Loading branch information
tconkling committed Aug 23, 2017
1 parent 840f237 commit 181e573
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,13 @@ version 1.5.3 - 2017-08-23
--------------------------
Exporter:
- Better error messages for movie parse failures
- Regenerate signing certificate

Runtime:
- Build against Starling 2.2

If you're upgrading from a previous version of the Flump Export tool, you'll likely need to completely uninstall your previous version first, because the signing certificate has been changed.


version 1.5.1 - 2016-09-30
--------------------------
Expand Down
14 changes: 13 additions & 1 deletion exporter/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,19 @@

<target name="genairkeystore" depends="prepare" description="Regenerates the signing certificate. You shouldn't have to run this.">
<fail unless="PASSWORD" message="Define the cert password with -DPASSWORD=pass to generate a cert"/>
<genairkeystore keystore="${keystore}" password="${PASSWORD}" orgname="Three Rings Design"/>
<sequential>
<requireair/>
<echo level="info">Generating ${keystore}</echo>
<java jar="${airsdk.dir}/lib/adt.jar" failonerror="true" fork="true" maxmemory="1024m">
<jvmarg value="-Djava.awt.headless=true"/>
<arg value="-certificate"/>
<arg value="-cn"/><arg value="SelfSigned"/>
<arg value="-o"/><arg value="Tim Conkling"/>
<arg value="2048-RSA"/>
<arg value="${keystore}"/>
<arg value="${PASSWORD}"/>
</java>
</sequential>
</target>

<target name="test" depends="prepare" description="Builds the test swf">
Expand Down
Binary file modified exporter/etc/flump-exporter.pfx
Binary file not shown.

0 comments on commit 181e573

Please sign in to comment.