6.2 KiB
Executable File
6.2 KiB
Executable File
0.3.3 (2014-12-16)
Bug Fixes
0.3.2 (2014-11-15)
- npm: nothing, it's only a blank release due to a network problem during the last
npm publish(f...ing npm doesn't allow a republish with the same version number npm-registry-couchapp#148).
0.3.1 (2014-11-15)
Bug Fixes
- npm: update package.json after (unclean) npm publish (ab8161c2, closes #52)
- sample: Send correct url params for the room link in booking view (876de49a)
0.3.0 (2014-10-29)
Bug Fixes
- organize state-level options in
ncyBreadcrumbkey instead ofdata(1ea436d3, closes #30) - curly braces appearing on title of sample app (855e76cb)
Features
- Add a global option to include abstract states (6f0461ea, closes #35, #28)
- $breadcrumb:
- ncyBreadcrumbLast: Add a new directive rendering the last step (1eef24fb, closes #37)
Breaking Changes
- state-level options has been moved under the custom key
ncyBreadcrumbin state's configuration.
To migrate the code follow the example below:
// Before
$stateProvider.state('A', {
url: '/a',
data: {
ncyBreadcrumbLabel: 'State A'
}
});
// After
$stateProvider.state('A', {
url: '/a',
ncyBreadcrumb: {
label: 'State A'
}
});
See API reference for more informations. (1ea436d3)
0.2.3 (2014-07-26)
Bug Fixes
0.2.2 (2014-06-23)
Bug Fixes
Features
0.2.1 (2014-05-16)
Bug Fixes
- $breadcrumb: check if a state has a parent when looking for an inheritated property (77e668b5, closes #11)
0.2.0 (2014-05-08)
Bug Fixes
- $breadcrumb: remove abstract states from breadcrumb (8a06c5ab, closes #8)
- ncyBreadcrumb: display the correct breadcrumb in case of direct access (e1f455ba, closes #10)