Skip to content

Commit 2b167ed

Browse files
author
Bernie Jenny
committed
Added projections: Eckert II, VI, Nell, Putnins P2, Wagner I
1 parent 96c1039 commit 2b167ed

File tree

12 files changed

+58
-48
lines changed

12 files changed

+58
-48
lines changed

build.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
identifier="${main.class}"
8080
mainclassname="${main.class}"
8181
icon="mac/icon.icns"
82-
shortversion="1.0.2"
82+
shortversion="1.0.3"
8383
copyright="© Bernhard Jenny 2007–2017"
8484
applicationCategory="public.app-category.graphics-design">
8585
<classpath file="${dist.jar}" />
@@ -88,7 +88,7 @@
8888
<option value="-Dapple.awt.application.name=Flex Projector"/>
8989
<option value="-Xmx1000m"/>
9090
</macbundleapp>
91-
<zip destfile="mac/FlexProjectorMac.zip" level="9">
91+
<zip destfile="mac/Flex Projector macOS.zip" level="9">
9292
<zipfileset filemode="755" dir="mac/Flex Projector.app" prefix="Flex Projector.app" />
9393
</zip>
9494
</target>
@@ -120,7 +120,7 @@
120120
<launch4j configFile="win/FlexProjector.xml" />
121121

122122
<!-- Zip the generated exe file -->
123-
<zip destfile="win/FlexProjectorWin.zip">
123+
<zip destfile="win/Flex Projector Windows.zip">
124124
<fileset dir="." includes="win/FlexProjector.exe"/>
125125
</zip>
126126

@@ -130,9 +130,9 @@
130130

131131
<target name="-post-clean">
132132
<delete file="win/FlexProjector.exe"/>
133-
<delete file="win/FlexProjectorWin.zip"/>
133+
<delete file="win/Flex Projector Windows.zip"/>
134134
<delete file="FlexProjectorJar.zip"/>
135135
<delete file="mac/Flex Projector.app/Contents/Resources/Java/FlexProjector.jar"/>
136-
<delete file="mac/FlexProjectorMac.zip"/>
136+
<delete file="mac/Flex Projector macOS.zip"/>
137137
</target>
138138
</project>

build/built-jar.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Fri, 31 Mar 2017 12:06:51 +1100
1+
#Fri, 31 Mar 2017 14:10:57 +1100
22

33

44
/Users/jennyb/Documents/Java/FlexProjector=

build/classes/ika/app/Application.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ PreferencesPanel=ika.gui.FlexProjectorPreferencesPanel
1010
#The version of the application, numbers only in the format X.Y.Z, e.g. "1.12.5"
1111
#The last number is optional, i.e. "1.12" is valid.
1212
#The numbers can be followed by a string, such as "0.12 alpha"
13-
ApplicationVersion=1.0.2
13+
ApplicationVersion=1.0.3
1414

1515
#a small icon for display in information dialogs
1616
ApplicationIcon=logo64x64.png

build/classes/ika/data/projections.txt

Lines changed: 22 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,50 @@
11
Aitoff, true, approx
2-
Arden-Close, false
3-
Boggs Eumorphic, false
2+
Arden-Close, true
3+
Boggs Eumorphic, true
44
Compact Miller, true
55
Cylindrical Equal-Area, true
6-
Craster Parabolic (Putnins P4), false
6+
Craster Parabolic (Putnins P4), true
77
Denoyer Semi-elliptical, true, approx
8-
Eckert I, false
8+
Eckert I, true
9+
Eckert II, true, approx
910
Eckert III, true, approx
1011
Eckert IV, true
1112
Eckert V, true
12-
Eckert-Greifendorff, false, approx
13+
Eckert VI, true
14+
Eckert-Greifendorff, true, approx
1315
Equidistant Cylindrical (Plate Carrée), true
1416
Fahey, true, approx
15-
Foucaut, false,
16-
Foucaut Sinusoidal, false
17-
Gall (Gall Stereographic), false
17+
Foucaut, true,
18+
Foucaut Sinusoidal, true
19+
Gall (Gall Stereographic), true
1820
Ginzburg VIII (TsNIIGAiK 1944), true
19-
Goode Homolosine, false
21+
Goode Homolosine, true
2022
Hammer, true, approx
21-
Hölzel, false, approx
22-
Kavrayskiy I, false
23+
Hölzel, true, approx
24+
Kavrayskiy I, true
2325
Kavrayskiy V, true
2426
Kavrayskiy VII, true
2527
Larrivée, true, approx
26-
McBryde-Thomas Flat-Pole Sine (No. 2), false
28+
McBryde-Thomas Flat-Pole Sine (No. 2), true
2729
Mercator, true
2830
Miller Cylindrical I, true
2931
Mollweide, true
3032
Natural Earth, true, approx
3133
Natural Earth II, true, approx
34+
Nell, true
3235
Nell-Hammer, true
3336
Patterson, true
3437
Putnins P1, true
35-
Putnins P4', false
36-
Putnins P5', false
37-
Quartic Authalic, false
38+
Putnins P2, true
39+
Putnins P4', true
40+
Putnins P5', true
41+
Quartic Authalic, true
3842
Robinson, true
3943
Sinusoidal, true
4044
van der Grinten (I), true, approx
41-
Wagner II, false
42-
Wagner III, false
45+
Wagner I, true
46+
Wagner II, true
47+
Wagner III, true
4348
Wagner VI, true
4449
Wagner VII, true, approx
4550
Winkel I, true

dist/FlexProjector.jar

-34 Bytes
Binary file not shown.

mac/Flex Projector macOS.zip

3.16 MB
Binary file not shown.

mac/Flex Projector.app/Contents/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<key>CFBundlePackageType</key>
2020
<string>APPL</string>
2121
<key>CFBundleShortVersionString</key>
22-
<string>1.0.2</string>
22+
<string>1.0.3</string>
2323
<key>CFBundleSignature</key>
2424
<string>????</string>
2525
<key>CFBundleVersion</key>
-34 Bytes
Binary file not shown.

src/ika/app/Application.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ PreferencesPanel=ika.gui.FlexProjectorPreferencesPanel
1010
#The version of the application, numbers only in the format X.Y.Z, e.g. "1.12.5"
1111
#The last number is optional, i.e. "1.12" is valid.
1212
#The numbers can be followed by a string, such as "0.12 alpha"
13-
ApplicationVersion=1.0.2
13+
ApplicationVersion=1.0.3
1414

1515
#a small icon for display in information dialogs
1616
ApplicationIcon=logo64x64.png

src/ika/data/projections.txt

Lines changed: 22 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,50 @@
11
Aitoff, true, approx
2-
Arden-Close, false
3-
Boggs Eumorphic, false
2+
Arden-Close, true
3+
Boggs Eumorphic, true
44
Compact Miller, true
55
Cylindrical Equal-Area, true
6-
Craster Parabolic (Putnins P4), false
6+
Craster Parabolic (Putnins P4), true
77
Denoyer Semi-elliptical, true, approx
8-
Eckert I, false
8+
Eckert I, true
9+
Eckert II, true, approx
910
Eckert III, true, approx
1011
Eckert IV, true
1112
Eckert V, true
12-
Eckert-Greifendorff, false, approx
13+
Eckert VI, true
14+
Eckert-Greifendorff, true, approx
1315
Equidistant Cylindrical (Plate Carrée), true
1416
Fahey, true, approx
15-
Foucaut, false,
16-
Foucaut Sinusoidal, false
17-
Gall (Gall Stereographic), false
17+
Foucaut, true,
18+
Foucaut Sinusoidal, true
19+
Gall (Gall Stereographic), true
1820
Ginzburg VIII (TsNIIGAiK 1944), true
19-
Goode Homolosine, false
21+
Goode Homolosine, true
2022
Hammer, true, approx
21-
Hölzel, false, approx
22-
Kavrayskiy I, false
23+
Hölzel, true, approx
24+
Kavrayskiy I, true
2325
Kavrayskiy V, true
2426
Kavrayskiy VII, true
2527
Larrivée, true, approx
26-
McBryde-Thomas Flat-Pole Sine (No. 2), false
28+
McBryde-Thomas Flat-Pole Sine (No. 2), true
2729
Mercator, true
2830
Miller Cylindrical I, true
2931
Mollweide, true
3032
Natural Earth, true, approx
3133
Natural Earth II, true, approx
34+
Nell, true
3235
Nell-Hammer, true
3336
Patterson, true
3437
Putnins P1, true
35-
Putnins P4', false
36-
Putnins P5', false
37-
Quartic Authalic, false
38+
Putnins P2, true
39+
Putnins P4', true
40+
Putnins P5', true
41+
Quartic Authalic, true
3842
Robinson, true
3943
Sinusoidal, true
4044
van der Grinten (I), true, approx
41-
Wagner II, false
42-
Wagner III, false
45+
Wagner I, true
46+
Wagner II, true
47+
Wagner III, true
4348
Wagner VI, true
4449
Wagner VII, true, approx
4550
Winkel I, true

0 commit comments

Comments
 (0)