Index: trunk/extensions/Maps/Maps.php |
— | — | @@ -33,7 +33,7 @@ |
34 | 34 | echo '<b>Warning:</b> You need to have <a href="http://www.mediawiki.org/wiki/Extension:Validator">Validator</a> installed in order to use <a href="http://www.mediawiki.org/wiki/Extension:Maps">Maps</a>.'; |
35 | 35 | } |
36 | 36 | else { |
37 | | - define('Maps_VERSION', '0.5.1 a8'); |
| 37 | + define('Maps_VERSION', '0.5.1 rc1'); |
38 | 38 | |
39 | 39 | $egMapsScriptPath = $wgScriptPath . '/extensions/Maps'; |
40 | 40 | $egMapsIP = $IP . '/extensions/Maps'; |
Index: trunk/extensions/Maps/Maps_Mapper.php |
— | — | @@ -48,7 +48,6 @@ |
49 | 49 | ), |
50 | 50 | 'default' => $egMapsMapHeight |
51 | 51 | ), |
52 | | - 'controls' => array(), |
53 | 52 | ); |
54 | 53 | } |
55 | 54 | |
Index: trunk/extensions/Maps/INSTALL |
— | — | @@ -1,4 +1,4 @@ |
2 | | -[[Maps 0.5]] |
| 2 | +[[Maps 0.5.1]] |
3 | 3 | |
4 | 4 | Once you have downloaded the code, place the 'Maps' directory within your MediaWiki 'extensions' directory. |
5 | 5 | Then add the following code to your LocalSettings.php file after the line that installs Semantic MediaWiki: |
Index: trunk/extensions/Maps/RELEASE-NOTES |
— | — | @@ -6,7 +6,29 @@ |
7 | 7 | http://www.mediawiki.org/wiki/Extension:Maps/Version_history#Maps_change_log |
8 | 8 | |
9 | 9 | |
| 10 | +=== Maps 0.5.1 === |
| 11 | +(2009-12-25) |
10 | 12 | |
| 13 | +==== New features ==== |
| 14 | + |
| 15 | +* Integrated further with Validator by holding into account the error level for coordinate validation in the display_ parser functions. |
| 16 | + |
| 17 | +* Added activatable= parameter to the static map support. |
| 18 | + |
| 19 | +==== Refactoring ==== |
| 20 | + |
| 21 | +* Cleaned up the static map code for OSM display_map. |
| 22 | + |
| 23 | +* Modified the parameter definitions to work with Validator 0.2 |
| 24 | + |
| 25 | +* Removed redundant (because of Validator 0.2) utility function calls from the mapping classes. |
| 26 | + |
| 27 | +* Removed redundant (because of Validator 0.2) utility functions from the mapping service files. |
| 28 | + |
| 29 | +==== Bug fixes ==== |
| 30 | + |
| 31 | +* Fixed issue with the hook system that caused code to get executed when it shouldn't. |
| 32 | + |
11 | 33 | === Maps 0.5 === |
12 | 34 | (2009-12-17) |
13 | 35 | |