* Adjust page change animations to slide the page closed and then
open again.
* Add Railcraft to the standard set of mods
* Change every controller which uses an `ImageLoader` to only accept
it from a parent controller (with the router creating the one
shared instance).
* Fix several places where controllers need to refresh when the mod
pack changes
* Fix a few places which should be using the `ImageLoader` but were
not.
* Remove a number of animations which caused performance issues (esp.
animating individual items in item group views).
* Fix a bug where changing the current version of a mod didn't cause
the current crafting plan to be re-evaluated
* Simplify the name finder to allow regular expressions instead of
the current algorithm
* Flesh out the formerly incomplete ItemSlug class
* Convert all uses of text item slugs to use ItemSlug
* Move the ItemSlug class under models where it properly belongs
* Avoid the use of `slug` as a local variable or item attribute
wherever possible to avoid confusion between various kinds of slugs
* Merge the InventoryParser class into the Inventory class as it is
unlikely to need to support multiple versions
* Simplify the ModPack/Mod/ModVersion interfaces by replacing the use
of various "helper" methods with equivalent use of more generic
methods
* Update the various methods of ModPack/Mod/ModVersion to be able to
work with qualified or unqualified ItemSlugs
* Remove the unused BaseCollection class
* Add tests for ItemSlug and update all other tests to reflect
all the other changes
* Change default item URL to fall under /mod/<mod slug>/<item slug>
but kept the old URL pattern around with the old behavior (i.e.,
find the first item with that slug)
* Update Item to have a `qualifiedSlug` property which combines the
item's own slug with its Mod's slug. Updated a lot of code all
over to use this in preference to the plain slug.
* Add a `localizeTo` method to Inventory to allow non-qualified slugs
to be converted into qualified slugs within the inventory's stacks
* Update ModPack to work with either qualified or unqualified slugs
for relevant methods
* Fix model state changes to happen before related events are
triggered
* Add a debounce to the CraftingPlan object when triggering a recraft
due to changes in related objects (esp. its inventories)
* Update the Inventory's sort to keep items sorted by mod before name
with the Minecraft items sorted to the top
* Fix `ModPack.findItemByName` to actually recursively use the Mod's
method instead of slugifying the given name and looking for the
slug (since this won't necessarily work anymore).
* Ensure each Mod is assigned a reference to its containing ModPack
* Fix NameFinder to only consider an item non-gatherable if it is
also craftable
* Update ModVersionParserV1 to assign qualified slugs to recipes
for any items which are in the same mod (leaving any other slugs
unqualified)
* Add Underscore mixins for composing and decomposing slugs
* Update old tests for the use of qualified slugs, and some new tests
for the new methods added
Improve logging performance by using functions to delay when complex
strings are created until after the current logging level has been
checked to ensure that log statement is actually going to be printed.
There are many places where very complex objects are printed at lower
logging levels which this avoids.
* Refactor event handling in controllers to use a method to define
the hash (and thereby allow inheritance)
* Refactor link handling so that links which should be handled by the
router can be handled by the base class
* Change the router to throw out controllers for pages which aren't
on-screen (and thereby avoid a lot of weirdness)
* Create a nascent version of the mod detail page
* Make the slug mandatory for Mod instead of name, and load the name
from the data file
* Make the Feedback view universal on all pages
* Refactor the use of mod pack to have a single global object at the
router level which is shared between pages. Further, make this one
object load itself immediately and have it automatically load any
activated mod version
* Refactor the use of Storage related to mod pack versions into the
router as well.
* Add trace logging back in for events, but allow individual classes
to suppress it (as opposed to actually supressing the events)
* Fix a bug in ModVersion.eachItem where it would suggest so-called
items which are merely registered slugs without associated items
* Update the router to understand /item/:name routes in addition to
v1.0-style parameterized routes
* Add support for updating the current URL based upon the item being
viewed
* Change LandingPage* to ItemPage*