|
| 1 | +# 0.6.0 (2013-09-08) |
| 2 | + |
| 3 | +## Features |
| 4 | + |
| 5 | +- **modal:** |
| 6 | + - rewrite $dialog as $modal ([d7a48523](http://github.com/angular-ui/bootstrap/commit/d7a48523)) |
| 7 | + - add support for custom window settings ([015625d1](http://github.com/angular-ui/bootstrap/commit/015625d1)) |
| 8 | + - expose $close and $dismiss options on modal's scope ([8d153acb](http://github.com/angular-ui/bootstrap/commit/8d153acb)) |
| 9 | +- **pagination:** |
| 10 | + - `total-items` & optional `items-per-page` API ([e55d9063](http://github.com/angular-ui/bootstrap/commit/e55d9063)) |
| 11 | +- **rating:** |
| 12 | + - add support for custom icons per instance ([20ab01ad](http://github.com/angular-ui/bootstrap/commit/20ab01ad)) |
| 13 | +- **timepicker:** |
| 14 | + - plug into `ngModel` controller ([b08e993f](http://github.com/angular-ui/bootstrap/commit/b08e993f)) |
| 15 | + |
| 16 | +## Bug Fixes |
| 17 | + |
| 18 | +- **carousel:** |
| 19 | + - correct reflow triggering on FFox and Safari ([d34f2de1](http://github.com/angular-ui/bootstrap/commit/d34f2de1)) |
| 20 | +- **datepicker:** |
| 21 | + - correctly manage focus without jQuery present ([d474824b](http://github.com/angular-ui/bootstrap/commit/d474824b)) |
| 22 | + - compatibility with angular 1.1.5 and no jquery ([bf30898d](http://github.com/angular-ui/bootstrap/commit/bf30898d)) |
| 23 | + - use $setViewValue for inner changes ([dd99f35d](http://github.com/angular-ui/bootstrap/commit/dd99f35d)) |
| 24 | +- **modal:** |
| 25 | + - insert backdrop before modal window ([d870f212](http://github.com/angular-ui/bootstrap/commit/d870f212)) |
| 26 | + - ie8 fix after $modal rewrite ([ff9d969e](http://github.com/angular-ui/bootstrap/commit/ff9d969e)) |
| 27 | + - opening a modal should not change default options ([82532d1b](http://github.com/angular-ui/bootstrap/commit/82532d1b)) |
| 28 | + - backdrop should cover previously opened modals ([7fce2fe8](http://github.com/angular-ui/bootstrap/commit/7fce2fe8)) |
| 29 | + - allow replacing object with default options ([8e7fbf06](http://github.com/angular-ui/bootstrap/commit/8e7fbf06)) |
| 30 | +- **position:** |
| 31 | + - fallback for IE8's scrollTop/Left for offset ([9aecd4ed](http://github.com/angular-ui/bootstrap/commit/9aecd4ed)) |
| 32 | +- **tabs:** |
| 33 | + - add DI array-style annotations ([aac4a0dd](http://github.com/angular-ui/bootstrap/commit/aac4a0dd)) |
| 34 | + - evaluate `vertical` on parent scope ([9af6f96e](http://github.com/angular-ui/bootstrap/commit/9af6f96e)) |
| 35 | +- **timepicker:** |
| 36 | + - add type attribute for meridian button ([1f89fd4b](http://github.com/angular-ui/bootstrap/commit/1f89fd4b)) |
| 37 | +- **tooltip:** |
| 38 | + - remove placement='mouse' option ([17163c22](http://github.com/angular-ui/bootstrap/commit/17163c22)) |
| 39 | +- **typeahead:** |
| 40 | + - fix label rendering for equal model and items names ([5de71216](http://github.com/angular-ui/bootstrap/commit/5de71216)) |
| 41 | + - set validity flag for non-editable inputs ([366e0c8a](http://github.com/angular-ui/bootstrap/commit/366e0c8a)) |
| 42 | + - plug in front of existing parsers ([80cef614](http://github.com/angular-ui/bootstrap/commit/80cef614)) |
| 43 | + - highlight return match if no query ([45dd9be1](http://github.com/angular-ui/bootstrap/commit/45dd9be1)) |
| 44 | + - keep pop-up on clicking input ([5f9e270d](http://github.com/angular-ui/bootstrap/commit/5f9e270d)) |
| 45 | + - remove dependency on ng-bind-html-unsafe ([75893393](http://github.com/angular-ui/bootstrap/commit/75893393)) |
| 46 | + |
| 47 | +## Breaking Changes |
| 48 | + |
| 49 | +- **modal:** |
| 50 | + |
| 51 | +* `$dialog` service was refactored into `$modal` |
| 52 | +* `modal` directive was removed - use the `$modal` service instead |
| 53 | + |
| 54 | +Check the documentation for the `$modal` service to migrate from `$dialog` |
| 55 | + |
| 56 | +- **pagination:** |
| 57 | + API has undergone some changes in order to be easier to use. |
| 58 | + * `current-page` is replaced from `page`. |
| 59 | + * Number of pages is not defined by `num-pages`, but from `total-items` & |
| 60 | + `items-per-page` instead. If `items-per-page` is missing, default is 10. |
| 61 | + * `num-pages` still exists but is just readonly. |
| 62 | + |
| 63 | + Before: |
| 64 | + |
| 65 | +```html |
| 66 | + <pagination num-pages="10" ...></pagination> |
| 67 | +``` |
| 68 | + |
| 69 | + After: |
| 70 | + |
| 71 | +```html |
| 72 | + <pagination total-items="100" ...></pagination> |
| 73 | +``` |
| 74 | + |
| 75 | +- **tooltip:** |
| 76 | + |
| 77 | + |
| 78 | +The placment='mouse' is gone with no equivalent |
| 79 | + |
1 | 80 | # 0.5.0 (2013-08-04)
|
2 | 81 |
|
3 | 82 | ## Features
|
|
0 commit comments