Index: trunk/extensions/SemanticMediaWiki/INSTALL |
— | — | @@ -1,4 +1,4 @@ |
2 | | -[[Semantic MediaWiki 1.5.3]] |
| 2 | +[[Semantic MediaWiki 1.5.4]] |
3 | 3 | |
4 | 4 | Install instructions for the latest SMW version are also online in a more |
5 | 5 | convenient format for reading: |
Index: trunk/extensions/SemanticMediaWiki/RELEASE-NOTES |
— | — | @@ -1,5 +1,11 @@ |
2 | 2 | For a documentation of all features, see http://semantic-mediawiki.org |
3 | 3 | |
| 4 | +== SMW 1.5.4 == |
| 5 | + |
| 6 | +* Fixed several bugs, including problems with #declare, the extra options |
| 7 | + on Special:Ask and the style of the factbox when using MW 1.17. |
| 8 | +* Various style and documentation improvements and translation updates. |
| 9 | + |
4 | 10 | == SMW 1.5.3 == |
5 | 11 | |
6 | 12 | * Compatibility with MediaWiki 1.17 |
Index: trunk/extensions/SemanticMediaWiki/includes/SMW_SetupLight.php |
— | — | @@ -14,7 +14,7 @@ |
15 | 15 | * @ingroup SMW |
16 | 16 | */ |
17 | 17 | |
18 | | -define( 'SMW_VERSION', '1.5.4-light alpha' ); |
| 18 | +define( 'SMW_VERSION', '1.5.4-light rc1' ); |
19 | 19 | |
20 | 20 | require_once( 'SMW_GlobalFunctions.php' ); |
21 | 21 | |
Index: trunk/extensions/SemanticMediaWiki/includes/storage/SMW_QueryResult.php |
— | — | @@ -83,7 +83,7 @@ |
84 | 84 | * Return the next result row as an array of SMWResultArray objects, and |
85 | 85 | * advance the internal pointer. |
86 | 86 | * |
87 | | - * @return SMWResultArray or false |
| 87 | + * @return array of SMWResultArray or false |
88 | 88 | */ |
89 | 89 | public function getNext() { |
90 | 90 | $page = current( $this->mResults ); |
Index: trunk/extensions/SemanticMediaWiki/includes/SMW_Setup.php |
— | — | @@ -8,7 +8,7 @@ |
9 | 9 | */ |
10 | 10 | |
11 | 11 | // The SMW version number. |
12 | | -define( 'SMW_VERSION', '1.5.4 alpha' ); |
| 12 | +define( 'SMW_VERSION', '1.5.4 rc1' ); |
13 | 13 | |
14 | 14 | // A flag used to indicate SMW defines a semantic extension type for extension crdits. |
15 | 15 | define( 'SEMANTIC_EXTENSION_TYPE', true ); |