update about 0.4.1

This commit is contained in:
Vladimir Agafonkin 2012-07-31 11:11:04 +03:00
parent aed9d473d1
commit 46eb40de6f
3 changed files with 19 additions and 5 deletions

View File

@ -188,6 +188,15 @@ And, of course, thanks to my amazing company, [CloudMade](http://cloudmade.com),
Sincerely, <br />
Vladimir Agafonkin, Leaflet maintainer.
<hr />
**Update (July 31)**: 0.4.1 hotfix was released with the following bugs fixed:
* Fixed a bug that caused marker shadows to appear as opaque black in IE6-8. [#850](https://github.com/CloudMade/Leaflet/issues/850)
* Fixed a bug with incorrect calculation of scale by the scale control. [#852](https://github.com/CloudMade/Leaflet/issues/852)
* Fixed broken L.tileLayer.wms class factory. [#856](https://github.com/CloudMade/Leaflet/issues/856)
* Improved retina detection for `TileLayer` `detectRetina` option. [#854](https://github.com/CloudMade/Leaflet/issues/854)
[LatLng]: ../../../reference.html#latlng
[LatLngBounds]: ../../../reference.html#latlngbounds

View File

@ -13,8 +13,8 @@ Besides the library itself, the download package contains full source code, unit
<th>Description</th>
</tr>
<tr>
<td class="width100"><a href="https://github.com/CloudMade/Leaflet/zipball/v0.4">Leaflet 0.4</a></td>
<td>Stable version, released on July 30, 2012</td>
<td class="width100"><a href="https://github.com/CloudMade/Leaflet/zipball/v0.4.1">Leaflet 0.4.1</a></td>
<td>Stable version, released on July 31, 2012</td>
</tr>
<tr>
<td class="width100"><a href="https://github.com/CloudMade/Leaflet/zipball/v0.3.1">Leaflet 0.3.1</a></td>
@ -35,12 +35,12 @@ Note that the master version can contain incompatible changes, so please read th
The latest stable release of Leaflet is hosted on a CDN — to start using
it straight away, place this code in the `head` section of your HTML:
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.4/leaflet.css" />
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.4.1/leaflet.css" />
<!--[if lte IE 8]>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.4/leaflet.ie.css" />
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.4.1/leaflet.ie.css" />
<![endif]-->
<script src="http://cdn.leafletjs.com/leaflet-0.4/leaflet.js"></script>
<script src="http://cdn.leafletjs.com/leaflet-0.4.1/leaflet.js"></script>
### Building Leaflet from the Source

View File

@ -4366,6 +4366,11 @@ L.map('map');</code></pre>
<td><code>Boolean</code></td>
<td><code><span class="literal">true</span></code> for all browsers on touch devices.</td>
</tr>
<tr>
<td><code><b>retina</b></code></td>
<td><code>Boolean</code></td>
<td><code><span class="literal">true</span></code> for devices with Retina screens.</td>
</tr>
</table>