Index: trunk/extensions/SemanticMediaWiki/RELEASE-NOTES |
— | — | @@ -1,6 +1,14 @@ |
2 | 2 | For a documentation of all features, see http://semantic-mediawiki.org |
3 | 3 | |
4 | 4 | |
| 5 | +== SMW 1.6.3 == |
| 6 | + |
| 7 | +* Added native "internal objects" that can be set using #setobject. |
| 8 | +* Fixed the default result format for #show. |
| 9 | +* Fixed display of table headers when they are all empty. |
| 10 | +* Migrated all query printers to use the new param handling, |
| 11 | + which fixes some issues introduced in 1.6.2. |
| 12 | + |
5 | 13 | == SMW 1.6.2 == |
6 | 14 | |
7 | 15 | Released on September 20, 2011. |
— | — | @@ -15,6 +23,7 @@ |
16 | 24 | * Fixed hide query functionality on Special:Ask (bug 30768). |
17 | 25 | * Fixed display of internal SMW helper constants in certain queries (bug 30969). |
18 | 26 | * Fixed some issues with the category result format (including bug 30761). |
| 27 | +* Dropped compatibility with old-style (SMW < 1.6) query printers. |
19 | 28 | |
20 | 29 | == SMW 1.6.1 == |
21 | 30 | |
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.6.2.1 alpha light' ); |
| 18 | +define( 'SMW_VERSION', '1.6.3 alpha light' ); |
19 | 19 | |
20 | 20 | require_once( 'SMW_GlobalFunctions.php' ); |
21 | 21 | |
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.6.2.1 alpha' ); |
| 12 | +define( 'SMW_VERSION', '1.6.3 alpha' ); |
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 ); |