Add news.txt to store release notes, which will contain information about

API changes. Mention news.txt and doc/ files in readme.txt.


git-svn-id: http://svn.openlayers.org/branches/openlayers/2.0@1334 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
crschmidt
2006-08-22 19:45:28 +00:00
parent 9f0b0e0ed7
commit 2ed1ce98b3
2 changed files with 60 additions and 1 deletions

56
news.txt Normal file
View File

@@ -0,0 +1,56 @@
OpenLayers 2.0 Release Notes
* Deprecated Methods which were removed:
For details, see r1228
* OpenLayers.Map
* removed: getFullExtent() -- use getMaxExtent() instead
* removed: zoomToFullExtent() -- use zoomToMaxExtent() instead
* OpenLayers.Layer.Grid
* removed: setTileSize() -- user should instead pass a 'tileSize' property
as one of the options when initializing the Grid Layer. ex:
var url = "http://octo.metacarta.com/cgi-bin/mapserv";
var options = {tileSize: new OpenLayers.Size(500,50)};
var map = new OpenLayers.Map('map', options);
layer = new OpenLayers.Layer.WMS(name, url, params);
* OpenLayers.Layer.HTTPRequest
* removed: changeParams() -- use mergeNewParams() instead
* OpenLayers.Pixel
* removed: copyOf() -- use clone() instead
* OpenLayers.Size
* removed: copyOf() -- use clone() instead
* OpenLayers.LonLat
* removed: copyOf() -- use clone() instead
* OpenLayers.Bounds
* removed: copyOf() -- use clone() instead
* Array
* removed: copyOf() -- use clone() instead
* MouseWheel
* It is now possible to zoom in/out with the mouse wheel instead of clicks.
* Spiral Gridding
* Instead of loading from the top to bottom of the map, Openlayers will
now start loading tiles from the center of the map.
* Tile Re-Use
* In order to lower memory constraints and reduce element creation times,
OpenLayers now creates a single set of images/tiles and reuses them as
you scroll around the map.
* New Layer Support
* Google
* Virtual Earth
* GeoRSS (RSS 1.0 and 2.0 in FF, IE, RSS 2.0 in Safari)
* KaMap
* Untiled WMS
* Scale Based Methods
* It is now possible to set zooms based on the concept of scale. See
documentation in the options for the Map constructor.
OpenLayers 1.0
Initial release.

View File

@@ -38,7 +38,10 @@ Using OpenLayers in Your Own Website
The examples/ directory is full of useful examples.
There is some documentation at http://trac.openlayers.org/ as well.
Dcumentation is available in the doc/ directory: to build an HTML version
of the documentation, run ./docs.sh in the build/ directory.
Information on changes in the API is available in news.txt.
--------------------------
Contributing to OpenLayers