Index: trunk/extensions/Configure/CHANGELOG |
— | — | @@ -1,6 +1,9 @@ |
2 | 2 | This file lists changes on this extension. |
3 | 3 | Localisation updates are done on betawiki and aren't listed here. |
4 | 4 | |
| 5 | +0.6.5 - 28 July 2008 |
| 6 | + Added $wgHandheldStyle and $wgHandheldForIPhone. |
| 7 | + |
5 | 8 | 0.6.4 - 24 July 2008 |
6 | 9 | Added $wgExemptFromUserRobotsControl. |
7 | 10 | |
Index: trunk/extensions/Configure/Configure.settings-core.php |
— | — | @@ -219,6 +219,8 @@ |
220 | 220 | 'wgAllowUserJs' => 'bool', |
221 | 221 | 'wgUseSiteCss' => 'bool', |
222 | 222 | 'wgUseSiteJs' => 'bool', |
| 223 | + 'wgHandheldStyle' => 'text', |
| 224 | + 'wgHandheldForIPhone' => 'bool', |
223 | 225 | ), |
224 | 226 | ), |
225 | 227 | 'namespaces' => array( |
— | — | @@ -1127,6 +1129,8 @@ |
1128 | 1130 | 'wgDiff' => array( array( '1.13alpha', '>=' ) ), |
1129 | 1131 | # 1.14 |
1130 | 1132 | 'wgExemptFromUserRobotsControl' => array( array( '1.14alpha', '>=' ) ), |
| 1133 | + 'wgHandheldStyle' => array( array( '1.14alpha', '>=' ) ), |
| 1134 | + 'wgHandheldForIPhone' => array( array( '1.14alpha', '>=' ) ), |
1131 | 1135 | ## Obsolete |
1132 | 1136 | 'wgProfileSampleRate' => array( array( '1.8alpha', '<' ) ), |
1133 | 1137 | 'wgProfilerType' => array( array( '1.8alpha', '<' ) ), |
Index: trunk/extensions/Configure/Configure.php |
— | — | @@ -17,7 +17,7 @@ |
18 | 18 | 'url' => 'http://www.mediawiki.org/wiki/Extension:Configure', |
19 | 19 | 'description' => 'Allow authorised users to configure the wiki by a web-based interface', |
20 | 20 | 'descriptionmsg' => 'configure-desc', |
21 | | - 'version' => '0.6.4', |
| 21 | + 'version' => '0.6.5', |
22 | 22 | ); |
23 | 23 | |
24 | 24 | ## Configuration part |