diff --git a/CHANGELOG.md b/CHANGELOG.md index 681809a..de74546 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ This changelog only shows recent version history, because of the lack of documentation from the former maintainers. The very first changelog (1.0.2) is likely incomplete. ## Version 2 +### 2.0.1 +* New offset parameter in oredictsearch for continuation (#34). +* oredictsearch no longer sorts by entry ID as the key; it is now an array of hashes. +* oredictentry and oredictsearch now return the entry ID with the rest of the data. +* Fix oredictsearch registration in the entry point (not the extension.json) +* Improve oredictsearch API query. +* Fix oredictsearch limit issues (#35). +* Fix oredictsearch +* Clean up database things and improve security. + ### 2.0.0 * Fix OreDict entry shuffling and page loading issues related to that. * Database sanitization issues that could later turn into security holes. diff --git a/OreDict.php b/OreDict.php index 2fc75a1..cec2fd7 100755 --- a/OreDict.php +++ b/OreDict.php @@ -4,7 +4,7 @@ * * @file * @ingroup Extensions - * @version 2.0.0 + * @version 2.0.1 * @author Jinbobo * @license */ @@ -18,7 +18,7 @@ 'path' => __FILE__, 'name' => 'OreDict', 'descriptionmsg' => 'oredict-desc', - 'version' => '2.0.0', + 'version' => '2.0.1', 'author' => '[http://ftb.gamepedia.com/User:Jinbobo Jinbobo], Telshin, [http://ftb.gamepedia.com/User:Retep998 Retep998], [http://ftb.gamepedia.com/User:TheSatanicSanta SatanicSanta], noahm', 'url' => 'http://help.gamepedia.com/Extension:OreDict' ); diff --git a/extension.json b/extension.json index 43ec211..d2c97ff 100644 --- a/extension.json +++ b/extension.json @@ -1,6 +1,6 @@ { "name": "OreDict", - "version": "2.0.0", + "version": "2.0.1", "author": "[http://ftb.gamepedia.com/User:Jinbobo Jinbobo], Telshin, [http://ftb.gamepedia.com/User:Retep998 Retep998], [http://ftb.gamepedia.com/User:TheSatanicSanta Eli Foster], noahm, applehat", "url": "http://help.gamepedia.com/Extension:OreDict", "descriptionmsg": "oredict-desc",