Skip to content

Commit

Permalink
Final Product
Browse files Browse the repository at this point in the history
I finally got the exportations to all work. I'm ready for the release!
  • Loading branch information
jkunimune committed Apr 2, 2018
1 parent 522569a commit e307b6d
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2017 Justin Kunimune
Copyright (c) 2018 Justin Kunimune

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
Binary file modified MapAnalyzer.jar
Binary file not shown.
Binary file modified MapDesignerRaster.jar
Binary file not shown.
Binary file modified MapDesignerVector.jar
Binary file not shown.
18 changes: 9 additions & 9 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,22 +40,22 @@

<target name="deploy" depends="build">
<exec executable="javapackager">
<arg line="-deploy -native exe -srcfiles MapDesignerRaster.jar;LICENSE.md;input -appclass apps.MapDesignerRaster -outdir build -outfile MapDesignerRaster"/>
<arg line="-deploy -native exe -srcdir ${dir.jarfile} -srcfiles MapDesignerRaster.jar;LICENSE.md;input -appclass apps.MapDesignerRaster -outdir build -outfile MapDesignerRaster"/>
<arg line="-name &quot;Map Designer Raster&quot; -title &quot;Map Designer (Raster)&quot; -description &quot;Design oblique raster world maps in different projections&quot;"/>
<arg line="-vendor &quot;Justin Kunimune&quot; -Bcopyright=&quot;Copyright (c) 2017 Justin Kunimune&quot;"/>
<arg line="-BappVersion=3.2 -Bicon=res\raster.ico -BlicenseFile=LICENSE.md"/>
<arg line="-vendor &quot;Justin Kunimune&quot; -Bcopyright=&quot;Copyright (c) 2018 Justin Kunimune&quot;"/>
<arg line="-BappVersion=3.3 -Bicon=res\raster.ico -BlicenseFile=LICENSE.md"/>
</exec>
<exec executable="javapackager">
<arg line="-deploy -native exe -srcfiles MapDesignerVector.jar;LICENSE.md;input -appclass apps.MapDesignerVector -outdir build -outfile MapDesignerVector"/>
<arg line="-deploy -native exe -srcdir ${dir.jarfile} -srcfiles MapDesignerVector.jar;LICENSE.md;input -appclass apps.MapDesignerVector -outdir build -outfile MapDesignerVector"/>
<arg line="-name &quot;Map Designer Vector&quot; -title &quot;Map Designer (Vector)&quot; -description &quot;Design oblique vector world maps in different projections&quot;"/>
<arg line="-vendor &quot;Justin Kunimune&quot; -Bcopyright=&quot;Copyright (c) 2017 Justin Kunimune&quot;"/>
<arg line="-BappVersion=3.2 -Bicon=res\vector.ico -BlicenseFile=LICENSE.md"/>
<arg line="-vendor &quot;Justin Kunimune&quot; -Bcopyright=&quot;Copyright (c) 2018 Justin Kunimune&quot;"/>
<arg line="-BappVersion=3.3 -Bicon=res\vector.ico -BlicenseFile=LICENSE.md"/>
</exec>
<exec executable="javapackager">
<arg line="-deploy -native exe -srcfiles MapAnalyzer.jar;LICENSE.md;input -appclass apps.MapAnalyzer -outdir build -outfile MapAnalyzer"/>
<arg line="-deploy -native exe -srcdir ${dir.jarfile} -srcfiles MapAnalyzer.jar;LICENSE.md -appclass apps.MapAnalyzer -outdir build -outfile MapAnalyzer"/>
<arg line="-name &quot;Map Analyzer&quot; -title &quot;Map Analyzer&quot; -description &quot;Compare distortion graphs and metrics for different map projections.&quot;"/>
<arg line="-vendor &quot;Justin Kunimune&quot; -Bcopyright=&quot;Copyright (c) 2017 Justin Kunimune&quot;"/>
<arg line="-BappVersion=3.2 -Bicon=res\analyz.ico -BlicenseFile=LICENSE.md"/>
<arg line="-vendor &quot;Justin Kunimune&quot; -Bcopyright=&quot;Copyright (c) 2018 Justin Kunimune&quot;"/>
<arg line="-BappVersion=3.3 -Bicon=res\analyz.ico -BlicenseFile=LICENSE.md"/>
</exec>
</target>

Expand Down
2 changes: 1 addition & 1 deletion src/apps/MapAnalyzer.java
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public static final void main(String[] args) {

private static final double LN_10 = Math.log(10);

private static final int CHART_WIDTH = 420;
private static final int CHART_WIDTH = 500;
private static final int FINE_SAMP_NUM = 2048;
private static final double GLOBE_RES = .01;

Expand Down

0 comments on commit e307b6d

Please sign in to comment.