Index: trunk/extensions/SemanticMediaWiki/RELEASE-NOTES |
— | — | @@ -1,6 +1,15 @@ |
2 | 2 | For a documentation of all features, see http://semantic-mediawiki.org |
3 | 3 | |
4 | 4 | |
| 5 | +== SMW 1.7.1 == |
| 6 | + |
| 7 | +THIS IS NOT A RELEASE YET |
| 8 | + |
| 9 | +Semantic MediaWiki 1.7.1 is currently in beta-quality and is not recommended for use in |
| 10 | +production until the actual release. |
| 11 | + |
| 12 | +* |
| 13 | + |
5 | 14 | == SMW 1.7.0.2 == |
6 | 15 | |
7 | 16 | Released on January 16, 2012. |
Index: trunk/extensions/SemanticMediaWiki/SMW_Settings.php |
— | — | @@ -23,10 +23,7 @@ |
24 | 24 | # web. Change it if required ($wgScriptPath is the path to the base directory |
25 | 25 | # of your wiki). No final slash. |
26 | 26 | ## |
27 | | -$smwgScriptPath = ( |
28 | | - ( version_compare( $wgVersion, '1.16', '>=' ) && isset( $wgExtensionAssetsPath ) && $wgExtensionAssetsPath ) |
29 | | - ? $wgExtensionAssetsPath : $wgScriptPath . '/extensions' |
30 | | - ) . '/SemanticMediaWiki'; |
| 27 | +$smwgScriptPath = ( $wgExtensionAssetsPath === false ? $wgScriptPath . '/extensions' : $wgExtensionAssetsPath ) . '/SemanticMediaWiki'; |
31 | 28 | ## |
32 | 29 | |
33 | 30 | ### |
Index: trunk/extensions/SemanticMediaWiki/SemanticMediaWiki.php |
— | — | @@ -34,7 +34,7 @@ |
35 | 35 | } |
36 | 36 | |
37 | 37 | // The SMW version number. |
38 | | -define( 'SMW_VERSION', '1.7.0.2' ); |
| 38 | +define( 'SMW_VERSION', '1.7.1 alpha3' ); |
39 | 39 | |
40 | 40 | // Registration of the extension credits, see Special:Version. |
41 | 41 | $wgExtensionCredits['semantic'][] = array( |