X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=RELEASE-NOTES;h=f19dfad2cf4dbe1c37226a785a5835f437204f95;hb=a89f49bc288adec941b59c9723a4cc4fe1c78fda;hp=6ec7b8f81c9cbdb8d820521d8159e621f901dad2;hpb=f6ceaa88b624d4d31d98ad399559233c7f7f96aa;p=lhc%2Fweb%2Fwiklou.git diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 6ec7b8f81c..f19dfad2cf 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -47,8 +47,16 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN image page already exists * $wgMaximumMovedPages restricts the number of pages that can be moved at once (default 100) with the new subpage-move functionality of Special:Movepage -* New option $wgPerLanguageCaching, for wikies with many translated system - messages in MediaWiki namespace +* Hooks display in Special:Version is now disabled by default, use + $wgSpecialVersionShowHooks = true; to enable it. +* $wgActiveUserEditCount sets the number of edits that must be performed over + a certain number of days to be considered active +* $wgActiveUserDays is that number of days +* $wgRateLimitsExcludedGroups has been deprecated in favor of + $wgGroupPermissions[]['noratelimit']. The former still works, however. +* New $wgGroupPermissions option 'move-subpages' added to control bulk-moving + subpages along with pages. Assigned to 'user' and 'sysop' by default. +* New $wgRC2UDPOmitBots allows user to omit bot edits from UDP output. Default: false === New features in 1.13 === @@ -126,10 +134,24 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * (bug 13232) importScript(), importStylesheet() funcs available to custom JS * (bug 13095) Search by first letters or digits in [[Special:Categories]] * Users moving a page can now move all subpages automatically as well +* (bug 14259) Localisation message for upload button on Special:Import is now + 'import-upload' instead of 'upload' +* Add information about user group membership to Special:Preferences +* (bug 14146) Wrap usage section on imagepages into
s. +* New layout for Special:Specialpages. Restricted pages are marked but not separated + from other pages in their group. +* (bug 14263) Show a diff of the revert on rollback notification page. +* (bug 13434) Show a warning when hash identical files exist * Sidebar is now cached for all languages -* Paging links on special pages now have CSS classes and are greyed out by default - when disabled - +* The User class now contains a public function called isActiveEditor. Figures + out if a user is active based on at least $wgActiveUserEditCount number of + edits in the last $wgActiveUserDays days. +* SpecialSearchResults hook now passes results by reference, so they can be + changed by extensions. +* Add a new hook LinkerMakeExternalLink to allow extensions to modify the output of + external links. +* (bug 14132) Allow user to disable bot edits from being output to UDP. + === Bug fixes in 1.13 === * (bug 10677) Add link to the file description page on the shared repository @@ -168,7 +190,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * (bug 13281) Treat X-Forwarded-For, Client-ip and User-Agent headers as case-insensitive names. * Adding the fix for lists in RTL wikis to more skins, and fixing the image toc -* (bug 8157) Remove redirects from Special:Unusedtemplates +* (bug 8157) Remove redirects from Special:Unusedtemplates. Patch by WebBoy. * (bug 10721) Duplicate section anchors with differing case now disambiguated for Internet Explorer's sake and standards compliance * (bug 13298) Tighter limits on Special:Newpages limits when embedding @@ -300,6 +322,44 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * (bug 14220) Disabling $wgCheckFileExtensions now works without also disabling $wgStrictFileExtensions * (bug 14241) Pages can no longer be protected to levels you are not in +* (bug 14296) Fix local name of ang: (Anglo-Saxon) +* (bug 4871) Hardcoded superscript in time zone preferences moved to message +* (bug 6957) E-mail confirmation links now using English special page name + for better compatibility and keeping the links shorter. Avoids problem + with corrupt links in Gmail on IE 6. +* (bug 14273) Fix for HTTP Accept header parsing with spaces as from Konqueror +* (bug 14312) Update LanguageKaa.php for handling transform issues with i to İ + and I to ı +* (bug 13826) MediaWiki:Defaultns accepts Wikicode +* (bug 14324) Creating an account is again possible with $wgEmailConfirmToEdit + set to true +* (bug 13034) Interwiki pages can now be reached using Go search button +* (bug 14362) Change interwiki names of Erzya and Moksha Wikipedias +* (bug 14370) When a grouppage-x message does not exist the entry on the + ListGroupRights special page now links to the project namespace page for it, + not the main namespace page. +* (bug 11659) Urldecode image names in galleries +* (bug 14258, 14368) Fix for subpage renames in replication environments +* (bug 14367) Failed block no longer adds phantom watchlist entry +* (bug 14385) "Move subpages" option no longer tries to move to invalid titles +* (bug 14386) Fix subpage namespace oddity when moving a talk page +* (bug 11771) Signup form now not shown if in read-only mode. +* (bug 12859) $wgRateLimitsExcludedGroups has been deprecated in favor of + $wgGroupPermissions[]['noratelimit']. +* (Bug 13828) Split parameter $1 of MediaWiki:Missingarticle into $1 (=title) + and $2 (=revision numbers) +* (bug 14401) Fix Safari access key tooltips for Windows and >3.1 Mac versions +* (bug 14432) Fix notice regression in Special:Newpages feed mode +* (bug 11951) EditPage::getEditToolbar() is now static. +* (bug 14392) Fix regression breaking table prefix in installer +* (bug 11084) $wgDBprefix replacement for updater SQL will now work for + extension tables using uppercase letters or digits in their names. +* (bug 12311) Fix regression with lists at start of undeletion preview +* (bug 14496) Fix regression with parseinline on Special:Upload. +* We no longer just give up on a missing upload base directory; it's now + created automatically if we have sufficient permissions! +* (bug 14479) MediaWiki:upload-maxfilesize should have a div id wrapper + === API changes in 1.13 === @@ -367,7 +427,11 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * Handled unrecognized values for parameters more gracefully * Handled requesting disallowed tokens more gracefully * (bug 14140) URL-encoded page titles are now decoded in edit summaries -* (bug 14243) Fixed a security leak in the edit api +* (bug 14243) Only accept post requests in action=edit; patch by HardDisk +* action=block now returns an ISO8601 timestamp, like all other modules do +* Added md5 parameter to action=edit +* (bug 14335) Logging in to unified account using API not possible +* Added action=emailuser to send an email to a user === Languages updated in 1.13 === @@ -375,6 +439,7 @@ MediaWiki supports over 300 languages. Many localisations are updated regularly. Below only new and removed languages are listed. * Egyptian Spoken Arabic (arz) (new) +* Southern Balochi (bcc) (new) * Middle Dutch (dum) (removed) * British English (en-gb) (new) * Fiji Hindi (Latin) (hif-latn) (new)