Releases: excellenteasy/bradypodion
Releases · excellenteasy/bradypodion
v0.5.1-beta.4
v0.5.1-beta.3
0.5.1-beta.3 (2014-03-28)
Bug Fixes
- navbar: getUpFromState should detect up state even with params (0af3c3d6)
v0.5.1-beta.2
0.5.1-beta.2 (2014-03-27)
Bug Fixes
- a11y:
- bpSref: remove bpSref, replace w/ uiSref (72d38e1d)
- bpTap: remove bpTap, replace w/ ngClick (08ff320a)
- navbar: on ios put single action on the left (98cc68b4)
Features
- uiSref: make it work w/o touch delay (0eb87130)
Breaking Changes
- bpSref is now named uiSref
before:
<bp-action bp-sref="somestate"></bp-action>
after:
<bp-action ui-sref="somestate"></bp-action>
This should be a search and replace migration.
(72d38e1d)
- bpTap is now named ngClick
before:
<bp-action bp-tap="doSomething()"></bp-action>
after:
<bp-action ng-click="doSomething()"></bp-action>
This should be a search and replace migration.
(08ff320a)
v0.5.1-beta.1
Brookesia
v0.5.0-beta.3
0.5.0-beta.3 (2014-03-12)
Bug Fixes
- prevent digest at end of timeouts for perf (daa9da73)
- app: move transition logic to directive closes #76 (5a2311b2)
- iscroll:
- navbar: hide wrapper if no navbar present (c79c7b32)
- navigation: no animation w/o direction (f4b1570e)
- tab: enable state params for tab state (1e7beda7)
- view: merge sref into view closes #77 (78dfa517)
Features
- navbar: read up state from url (7a258fa4)
v0.5.0-beta.2
0.5.0-beta.2 (2014-02-28)
Bug Fixes
- use controllers instead of scope (95578fa0)
- navbar: do not expose private helpers to scope, no isolate (fb166e14)
- navigation:
- scale: look more like android (ebd9ea5b)
- scroll: fix scroll w/table (59b5630b)
- table: prevent margin collapse in grouped (3f825b40)
Features
v0.5.0-beta.1
0.5.0-beta.1 (2014-02-25)
Bug Fixes
- action-overflow: unbind events on destroy (b51aa80d)
- navbar: should remove spawned toolbar on destroy (cbdf30d1)
- view: getDirection should return null if segments do not match (18327616)
Features
- action-overflow: initial (9c4c9e2b)
- navbar:
- navbar-config: allows to configure injected navbars (3017651b)
- navigation: navigation directive that injects navbars (d8679a2c)
- toolbar: initial (950726f5)
- view:
Breaking Changes
- getDirection method is now more strict about detecting the direction from URL segments.
It requires the URLs to be the same in but the one segment that they defer from one
another. Examples below illustrate URL changes and the returned value of getDirection
if fed with the respective URL segments.
Before:
/home -> /home/second returned 'normal'
/home/second -> /home returned 'reverse'
/home/second/third -> /home returned null
/home -> /home/second/third returned 'normal'
/home/second -> /crazy/bar/baz returned 'normal'
After:
/home -> /home/second returns 'normal'
/home/second -> /home returns 'reverse'
/home/second/third -> /home returns null
/home -> /home/second/third returns null
/home/second -> /crazy/bar/baz returns null
(18327616)
v0.5.0-alpha.3
v0.5.0-alpha.3 (2014-02-17)
Bug Fixes
- remove whitespace from templates (27e95a4c)
- action: remove buggy back label magic (4bd0ccac)
- back-button: deprecate old styles (1a52aa50)
- button: no icon artifact for ios buttons (7aff1ab4)
- controllers: remove artifacts from remove viewCtrl (8e15e295)
- cover: now with css animation (0eeea6a0)
- icon: reduce embedded icons and make them optional (68ea8f09)
- iscroll: don't destroy iscroll until transition ends (68ebf22f)
- navbar:
- search:
- sref: fix nestedTap (fb4dcb3c)
- tabbar: fix styles (6f31b81e)
- tap:
- up: consistent renaming (24db5e16)
- view:
Features
- bpSref: similiar to ui-sref, but tap enabled (0e8ad880)
- button:
- config: configurable on runtime (7667ac7c)
- navbar: inject up button from state (ba46277f)
- tabbar: now based on bp-sref (316ef554)