Skip to content

Commit ac7627b

Browse files
committed
Prepping for 5.0.1 release.
1 parent 74268dc commit ac7627b

File tree

7 files changed

+61
-4
lines changed

7 files changed

+61
-4
lines changed

AUTHORS

+5-1
Original file line numberDiff line numberDiff line change
@@ -122,12 +122,16 @@ Sebastien Rosset of Cougaar Software
122122
Provided several patchs to improve the roads package, add arrow support for OMPoly, J3D API updates.
123123

124124
Tore Halset
125-
Provided the WMS layer and servlet code and various improvements to support those additions.
125+
Provided the WMS layer and servlet code and various improvements to support those additions, and continues to
126+
provide valuable support to these packages.
126127

127128
Todd Webb of L-3 Communications Titan Corporation
128129
Provided updates to the SwingWorker, OMGraphicHandlerLayer and ProjectionSupport that greatly increased
129130
the thread safety and interruptions due to rapid Projection changes.
130131

132+
Carsten Madsen
133+
Has provided many updates, updates and suggestions over the past years as a long-time user and supporter.
134+
131135
--------------------------------------
132136

133137
Thank you!

CHANGELOG

+54-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,56 @@
1+
2013-07-03 dietrick <[email protected]>
2+
3+
* Released OpenMap 5.0.1
4+
5+
2013-06-19 dietrick <[email protected]>
6+
7+
* Added NPE checks to BufferedImageRenderPolicy and OMScalingRaster.
8+
9+
* Added width acessors to OMText. Added Executor methods to
10+
TaskService to allow customization and control for Layer
11+
threading.
12+
13+
2013-05-20 dietrick <[email protected]>
14+
15+
* Updates to OMScalingRaster to gracefully handle memory
16+
exceptions if the scaled image is too big. Updated javadocs and
17+
java comments in these classes, added Logger for ScaleFilterLayer.
18+
19+
* Refactored the LayerHandler so it uses a List<Layer> internally
20+
to manage Layers. Created the LayerConfigurationListener interface
21+
and LayerConfigurationListenerSupport object, both of which are
22+
used by the LayerHandler to pre-notify components when the active
23+
layers for the application are about to change. The
24+
LayerConfigurationListener has the opportunity to make
25+
modifications to the layer configuration, or change visibility of
26+
other layers, etc. Added the BasicLayerConfigurationListener, an
27+
example component that changes the projection of the MapBean to
28+
CADRG if an RpfLayer is active.
29+
30+
2013-04-13 dietrick <[email protected]>
31+
32+
* Cleaned up debugging. Updated LOS code API for better control.
33+
Updated WMSPlugIn setProperties so the current values aren't
34+
zeroed out of they aren't set.
35+
36+
2013-04-23 dietrick <[email protected]>
37+
38+
* Moved the smarts for zoom levels out of the MapTileMaker class
39+
and put them in the MapTileCoordinateTransform classes. Added
40+
AbstractMapTileCoordinateTransform class to merge similar methods
41+
and functionality for existing mtct classes. Updated other
42+
classes to call mtc functions instead of MapTileMaker static
43+
functions.
44+
45+
2013-04-16 dietrick <[email protected]>
46+
47+
* Added RelayMapTileSet for MapTileServlet, which fetches tiles
48+
from a remote server and caches them locally. Updated
49+
TerrainLayer to eliminate some verbose error messages.
50+
51+
* Added Kevin's (kpfarr) fix to RpfTocHandler for merging entry
52+
coverages properly.
53+
154
2013-03-02 dietrick <[email protected]>
255

356
* Added the ClckOrDrgUndefinedState to the omGraphics.editable
@@ -37,7 +90,7 @@
3790

3891
2013-02-27 dietrick <[email protected]>
3992

40-
* Made a bunch of adjustmetns as recommended by FindBug, regarding
93+
* Made a bunch of adjustments as recommended by FindBug, regarding
4194
null pointer checks, equality checks, stuff like that.
4295

4396
* Added AzimuthPanner abstract class with Standard and Shapefile

doc/api/resources/background.gif

2.26 KB
Loading

doc/api/resources/tab.gif

291 Bytes
Loading

doc/api/resources/titlebar.gif

10.5 KB
Loading

doc/api/resources/titlebar_end.gif

849 Bytes
Loading

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public class MapBean
148148
/**
149149
* OpenMap version.
150150
*/
151-
public static final String version = "5.0.1b";
151+
public static final String version = "5.0.1";
152152

153153
/**
154154
* Suppress the copyright message on initialization.
@@ -160,7 +160,7 @@ public class MapBean
160160
private static boolean DEBUG_THREAD = true;
161161

162162
private static final String copyrightNotice = "OpenMap(tm) Version " + version + "\r\n"
163-
+ " Copyright (C) BBNT Solutions LLC. All rights reserved.\r\n" + " See http://openmap.bbn.com/ for details.\r\n";
163+
+ " Copyright (C) BBNT Solutions LLC. All rights reserved.\r\n" + " See http://code.google.com/p/openmap/ for details.\r\n";
164164

165165
public final static float DEFAULT_CENTER_LAT = 0.0f;
166166

0 commit comments

Comments
 (0)