Skip to content

Commit 214aab4

Browse files
committed
Preparing for tagging 5.1.1
1 parent 6f1db1a commit 214aab4

31 files changed

+18
-4
lines changed

CHANGELOG

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
2014-06-18 dietrick <[email protected]>
2+
3+
* Tagged OpenMap 5.1.1
4+
5+
* Made some memory usage improvements to the MapBean rotation
6+
components, the rotated image buffer is reused under most
7+
conditions. Added more cleanup to BufferedImageRenderPolicy.
8+
9+
* Added comments/README to the WMS servlet components.
10+
11+
* Modified the SpatialIndex to use a separate ArrayList for entry
12+
traversal when responding to a projection change.
13+
114
2014-05-14 dietrick <[email protected]>
215

316
* Tagged OpenMap 5.1.0 - Since the API signatures have changed for

build.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
**/*.gif, **/*.png, **/IntersectionTest.java" />
1919
<property name="mac.app" value="OpenMap.app" />
2020
<property name="jar.excludes" value="${general.excludes}, **/*.java" />
21-
<property name="openmap_version" value="5.1.1b" />
21+
<property name="openmap_version" value="5.1.1" />
2222
<property name="openmap.ext" value="${openmap.home}/src/ext" />
2323
<property name="openmap.src" value="${openmap.home}/src/openmap" />
2424
<property name="svg.src" value="${openmap.home}/src/svg" />

doc/api/images/blue-ball-small.gif

-255 Bytes
Binary file not shown.

doc/api/images/blue-ball.gif

-925 Bytes
Binary file not shown.

doc/api/images/class-index.gif

-1.46 KB
Binary file not shown.

doc/api/images/constructor-index.gif

-1.67 KB
Binary file not shown.

doc/api/images/constructors.gif

-1.53 KB
Binary file not shown.

doc/api/images/cyan-ball-small.gif

-255 Bytes
Binary file not shown.

doc/api/images/cyan-ball.gif

-925 Bytes
Binary file not shown.

doc/api/images/error-index.gif

-1.4 KB
Binary file not shown.

doc/api/images/exception-index.gif

-1.67 KB
Binary file not shown.

doc/api/images/green-ball-small.gif

-102 Bytes
Binary file not shown.

doc/api/images/green-ball.gif

-886 Bytes
Binary file not shown.

doc/api/images/interface-index.gif

-1.61 KB
Binary file not shown.

doc/api/images/magenta-ball-small.gif

-104 Bytes
Binary file not shown.

doc/api/images/magenta-ball.gif

-896 Bytes
Binary file not shown.

doc/api/images/method-index.gif

-1.55 KB
Binary file not shown.

doc/api/images/methods.gif

-1.37 KB
Binary file not shown.

doc/api/images/package-index.gif

-1.57 KB
Binary file not shown.

doc/api/images/red-ball-small.gif

-255 Bytes
Binary file not shown.

doc/api/images/red-ball.gif

-527 Bytes
Binary file not shown.

doc/api/images/variable-index.gif

-1.54 KB
Binary file not shown.

doc/api/images/variables.gif

-1.35 KB
Binary file not shown.

doc/api/images/yellow-ball-small.gif

-255 Bytes
Binary file not shown.

doc/api/images/yellow-ball.gif

-925 Bytes
Binary file not shown.

doc/api/resources/background.gif

-2.26 KB
Binary file not shown.

doc/api/resources/tab.gif

-291 Bytes
Binary file not shown.

doc/api/resources/titlebar.gif

-10.5 KB
Binary file not shown.

doc/api/resources/titlebar_end.gif

-849 Bytes
Binary file not shown.

src/maptileservlet/build.xml

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<property name="ommaptile.dist" value="./dist" />
1111
<!-- YOU HAVE TO CHANGE THIS TO MATCH YOUR TOMCAT INSTALLATION -->
1212
<!--<property name="tomcat.home" value="/usr/local/java/jakarta-tomcat-4.0.1"/>-->
13-
<property name="tomcat.home" value="/usr/local/apache-tomcat-7.0.8" />
13+
<!--<property name="tomcat.home" value="/usr/local/apache-tomcat-7.0.8" />-->
1414

1515
<property name="javac.excludes" value="**/*.in, **/Makefile, **/*.bat,
1616
**/ChangeLog, **/*.html, **/*.txt,
@@ -20,7 +20,8 @@
2020
(servlet.jar), the second is the tomcat 5 version (servlet-api.jar).
2121
Use the one that fits what you have. -->
2222
<!--<property name="tomcat.jar" value="${tomcat.home}/common/lib/servlet.jar"/>-->
23-
<property name="tomcat.jar" value="${tomcat.home}/lib/servlet-api.jar" />
23+
<!--<property name="tomcat.jar" value="${tomcat.home}/lib/servlet-api.jar" />-->
24+
<property name="tomcat.jar" value="${openmap.home}/ext/apache/servlet-api.jar" />
2425
<property name="openmap.jar" value="${openmap.home}/lib/openmap.jar" />
2526
<property name="sqlite.jar" value="${openmap.home}/ext/sqlitejdbc/sqlitejdbc-v056.jar" />
2627
<property name="ommaptile.jar" value="${ommaptile.lib_dir}/openmap.jar" />

src/openmap/com/bbn/openmap/MapBean.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ public class MapBean extends JComponent implements ComponentListener, ContainerL
150150
/**
151151
* OpenMap version.
152152
*/
153-
public static final String version = "5.1.1b";
153+
public static final String version = "5.1.1";
154154

155155
/**
156156
* Suppress the copyright message on initialization.

0 commit comments

Comments
 (0)