Index: trunk/extensions/SemanticMaps/INSTALL |
— | — | @@ -1,4 +1,4 @@ |
2 | | -[[Semantic Maps 0.5.2]] |
| 2 | +[[Semantic Maps 0.5.3]] |
3 | 3 | |
4 | 4 | Make sure you have Semantic MediaWiki and Maps successfully installed before |
5 | 5 | proceeding with the installation. Once you have downloaded the code, place |
Index: trunk/extensions/SemanticMaps/RELEASE-NOTES |
— | — | @@ -6,6 +6,19 @@ |
7 | 7 | http://www.mediawiki.org/wiki/Extension:Semantic_Maps/Version_history#Semantic_Maps_change_log |
8 | 8 | |
9 | 9 | |
| 10 | +=== Semantic Maps 0.5.3 === |
| 11 | +(2010-02-01) |
| 12 | + |
| 13 | +==== Bug fixes ==== |
| 14 | + |
| 15 | +* Fixed issue with the type and types parameters in the Yahoo! Maps form input. |
| 16 | + |
| 17 | +* Fixed OpenLayers form input projection bug, causing the the coordinates to be wrongly interpreted. |
| 18 | + |
| 19 | +* Fixed marker display for the OpenLayers form inputs. |
| 20 | + |
| 21 | +* Fixed issue causing a fatal error when executing a query on Special:Ask with the "map" format. |
| 22 | + |
10 | 23 | === Semantic Maps 0.5.2 === |
11 | 24 | (2010-01-20) |
12 | 25 | |
— | — | @@ -13,6 +26,8 @@ |
14 | 27 | |
15 | 28 | * Added support for template= parameter to the result printers. |
16 | 29 | |
| 30 | +* Added support for showtitle= parameter to the result printers. |
| 31 | + |
17 | 32 | * Added icon parameter to the query printers, allowing you to set the icon for all markers that do not have a specific icon assigned via a compound query. |
18 | 33 | |
19 | 34 | ==== Bug fixes ==== |
Index: trunk/extensions/SemanticMaps/QueryPrinters/SM_MapPrinter.php |
— | — | @@ -91,9 +91,9 @@ |
92 | 92 | } |
93 | 93 | else { |
94 | 94 | // TODO: add warning when level high enough and append to error list? |
95 | | - } |
| 95 | + } |
96 | 96 | } |
97 | | - |
| 97 | + |
98 | 98 | return array($this->output . $this->errorList, 'noparse' => 'true', 'isHTML' => 'true'); |
99 | 99 | } |
100 | 100 | |