Skip to content

Latest commit

 

History

History
434 lines (280 loc) · 23.2 KB

CHANGELOG.md

File metadata and controls

434 lines (280 loc) · 23.2 KB

0.5.4 (2014-08-29)

Bug Fixes

  • navbar:
    • account for breaking change in ui-router (5b99e034)
    • show bpOverflow only w/ more than 3 bpActions (4ca24256)

0.5.3 (2014-06-29)

Bug Fixes

  • navbar: spawned toolbars of injected navbars appear part 2 (55a9fb73)

0.5.2 (2014-06-28)

Bug Fixes

  • navbar: spawned toolbars of injected navbars appear (ce4b22e1)
  • search: input is now type agnostic (4d709c99)

0.5.1 (2014-04-13)

Bug Fixes

  • icon: symbolize missing icon (99a7d182)

0.5.1-beta.4 (2014-03-28)

Bug Fixes

  • iscroll: make click compatible (fae1ed8d)

0.5.1-beta.3 (2014-03-28)

Bug Fixes

  • navbar: getUpFromState should detect up state even with params (0af3c3d6)

0.5.1-beta.2 (2014-03-27)

Bug Fixes

  • a11y:
    • ensure most important roles are applied first (fec78ae4)
    • add link role to sref and tap (932261bb)
    • not overwriting existing attributes (f8a141d4)
  • 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)

0.5.1-beta.1 (2014-03-21)

Bug Fixes

  • navbar:
    • log error when param in state url (21ba62b8)
    • only compile up button if up state is found (3c16bc18)
  • sref: evaluate on tap, rather than on load (d507a2fb)

0.5.0 (2014-03-15)

Bug Fixes

  • navbar: correct height on any platform/orientation (ad20c91f)
  • tabbar: bigger icons (5dc9a212)

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:
    • put the provider in the bp.iscroll module (478a6609)
    • make options configurable via provider (05a31f6a)
  • 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)

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:
    • only animate on slide (5f84f60f)
    • do not leak memory w/ configs (86289cc5)
    • do not expose configs to scope (1604d9bb)
    • compile injected navbar against view scope (8429e967)
  • scale: look more like android (ebd9ea5b)
  • scroll: fix scroll w/table (59b5630b)
  • table: prevent margin collapse in grouped (3f825b40)

Features

  • navbar: support state params for up button (65e08083)
  • sref:
    • extract parseSref in service (d19ed574)
    • allow ui-router style param definition (1106fd9c)
  • view: platform specific transition defaults (27e879cc)

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:
    • introduce view wrapper (b72f45a8)
    • use data from state to detect direction (a71fcbb0)

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 (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:
    • encapsulation for element (ba16497e)
    • better fallback for getCoordinates (d9f84764)
  • up: consistent renaming (24db5e16)
  • view:
    • store transition type in data object (6a1bed0a)
    • deprecate global to method. use sref instead (fe74633b)

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)

Breaking Changes

  • bpNavbar attributes no-center and no-button-split deprecated. bp-button and bp-icon renamed to bp-action.bp-button and bp-action.bp-icon. (bb0ae110)
  • You have to add a bp-app element or attribute. Body alone won't suffice. There is no more viewController. (dd3d2cc2)

v0.5.0-alpha.2 (2014-01-18)

v0.5.0-alpha.1 (2013-12-17)

Bug Fixes

  • slide: tweak easing function (3a26fb77)

v0.4.0 (2013-11-23)

v0.4.0-rc3 (2013-11-16)

Bug Fixes

  • scroll: address ios7 scroll bug (44f7b22a)
  • search: give explicit order after navbar (85b696a2)
  • tap: unbind handlers on destroy (e70800bd)

v0.4.0-rc2 (2013-11-13)

Bug Fixes

  • search: give explicit order after navbar (efac8f77)

v0.4.0-rc1 (2013-11-13)

Bug Fixes

  • correct viewport for android (504333ec)
  • animaions: adapt to ng1.2.0 animations (0db84a22)
  • animate: ng-animate directive is deprecated w/ ng-1.2 (98705ea3)
  • animations: bring back animations (d5a777a6)
  • config: adapt config to ng-1.2.0 (af3a0a04)
  • flip: deprecate till fixed (ac3fb1f5)
  • grunt: only build android and ios (411f4518)
  • platforms:
  • screen: fix view and screen hierachy for ng-1.2 (91d343b8)
  • typo: readable base font size (30ef626e)

Features

  • a11y: label back buttons with "Back to XYZ" (3df5a9f6)
  • iscroll: style scrollbar for iOS7 (fe2cc066)
  • loading-bar: add angular-loading-bar and custom styles (8ad3b072)
  • scroll: inital css only scroll directive (0e6700b6)
  • slide: update slide animation for iOS and ng-1.2 (e8707289)
  • view: update and refactor for ng-1.2 compat (bb4859ec)

v0.3.0 (2013-11-05)

Bug Fixes

  • encoding: remove unsafe "EN DASH" from source (080cd73a)
  • navbar: give navbar explicit box-ordinal-group (51faf577)
  • tabbar:
  • table: apply role "group" to subtables (36a3824c)
  • tap: support nesting (96e3b72d)

Features

  • detailDisclosure: initial (a629a61e)
  • tabbar: initial (c0392383)
  • typography: ios7 dynamic type support (82849638)
  • view:
    • introduce content wrapper that takes remaining space (8843f39e)
    • introduce content wrapper that takes remaining space (904258f9)

v0.2.5 (2013-09-23)

Bug Fixes

  • iscroll: use official form support (5971c6ee)

v0.2.4 (2013-09-13)

Bug Fixes

  • https reference lesshat dependency (e2cff5a2)
  • iscroll: form support (dae5c3a2)

v0.2.3 (2013-08-05)

Bug Fixes

  • iscroll: evented refresh and delay detection (ad888219)
  • search: $emit event on scope when text begin and ends editing (7c311c4d)
  • tap: back button detection in child states (b6bc2258)
  • viewService: direction detection for paramatarized URLs (4771df66)

v0.2.2 (2013-07-31)

Bug Fixes

  • view: fix slide animation w/ consistent backgrounds (18828a34)
  • viewService: detect direction for URL with trailing slash (9e5f7855)

v0.2.1 (2013-07-29)

Bug Fixes

  • body: add class from scope config (1f7d3079)
  • config: use provider instead of factories (963bccf6)
  • viewService: correct transition and direction detection (97352e61)

Features

v0.2.0 (2013-07-28)

Bug Fixes

  • iscroll: detect when instantiation delay is needed (fedaedee)
  • navbar: compile text, so one can bind vars to the title (082bdf12)
  • screen: consistent screen backgrounds (9b352cfe)
  • viewService: enable stateParams in to function (c9a4e6a3)

Features

  • tap: automatically style buttons that direct back (de2ec2f2)
  • viewService: detect transition direction (5fd4ca49)