cherrytree
Advanced tools
Changelog
v2.4.1
npm run release
failed to package correctlyChangelog
v2.4.0
transitionTo('anAbstractRoute')
and generate('anAbstractRoute')
in cases where the abstract route has a corresponding index route. This can be more intuitive in some cases.Changelog
v2.2.1
Changelog
v2.1.0
Changelog
v2.0.0-rc4
Changelog
v2.0.0-rc3
Breaking changes:
HistoryLocation
has been renamed to BrowserLocation
. Location in cherrytree is the place that stores the current location of the app. Location is updated with the new path when cherytree transitions. Location also triggers updates when someone changes the location externally (e.g. by navigating with back/forward buttons or updating the URL). BrowserLocation
is a more apt name since this location implementation represents browser's location bar and is configurable to use pushState or hashchange. This way, the other location that ships with cherrytree, MemoryLocation
- also makes more sense, in this case we're saying the URL is simply stored in this in memory object and not really connected to the browser (which is what makes it useful on the server, for example).