Index: branches/SemanticMaps0.7.x/RELEASE-NOTES |
— | — | @@ -7,7 +7,15 @@ |
8 | 8 | http://www.mediawiki.org/wiki/Extension:Semantic_Maps/Version_history#Semantic_Maps_change_log |
9 | 9 | |
10 | 10 | |
| 11 | +=== Semantic Maps 0.7.7 === |
| 12 | +(2011-06-xx) |
11 | 13 | |
| 14 | +* Fixed handling of parameters in form inputs. |
| 15 | + |
| 16 | +* Fixed latitude/longitude mixup for the OpenLayers centre parameter in queries. |
| 17 | + |
| 18 | +* Removed dead code (initial code to support the RL, now used in SM 1.0 and later). |
| 19 | + |
12 | 20 | === Semantic Maps 0.7.6 === |
13 | 21 | (2011-03-21) |
14 | 22 | |
Index: branches/SemanticMaps0.7.x/includes/services/OpenLayers/SM_OpenLayersQP.php |
— | — | @@ -39,8 +39,8 @@ |
40 | 40 | MapsMapper::addInlineScript( $this->service, <<<EOT |
41 | 41 | initOpenLayer( |
42 | 42 | "$mapName", |
| 43 | + $this->centreLon, |
43 | 44 | $this->centreLat, |
44 | | - $this->centreLon, |
45 | 45 | $this->zoom, |
46 | 46 | {$this->layers}, |
47 | 47 | [$this->controls], |
Index: branches/SemanticMaps0.7.x/SemanticMaps.php |
— | — | @@ -40,7 +40,7 @@ |
41 | 41 | die( '<b>Error:</b> This version of Semantic Maps requires Semantic MediaWiki 1.5.x; use Semantic Maps 1.0 or above for SMW 1.6 or later.' ); |
42 | 42 | } |
43 | 43 | |
44 | | -define( 'SM_VERSION', '0.7.6.1' ); |
| 44 | +define( 'SM_VERSION', '0.7.7 rc' ); |
45 | 45 | |
46 | 46 | $wgExtensionCredits[defined( 'SEMANTIC_EXTENSION_TYPE' ) ? 'semantic' : 'other'][] = array( |
47 | 47 | 'path' => __FILE__, |