Skip to content

Commit 245e7fc

Browse files
committed
release: 1.0.0-beta.6
1 parent 49f06f9 commit 245e7fc

File tree

3 files changed

+30
-2
lines changed

3 files changed

+30
-2
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
<a name="1.0.0-beta.6"></a>
2+
### 1.0.0-beta.6 "darmstadtium-dingo" (2014-05-21)
3+
4+
#### Bug Fixes
5+
6+
* **click:** fix mouseup click for ion-option-button ([29ee6407](https://github.com/driftyco/ionic/commit/29ee640701195b0eef1cb7a52f1b7112b08259f6))
7+
* **collectionRepeat:** fix rare NPE error on android 4.1 ([94f0b5b7](https://github.com/driftyco/ionic/commit/94f0b5b705d09fc17f2e34977c35e52747767bb1), closes [#1292](https://github.com/driftyco/ionic/issues/1292))
8+
* **input:** fix long input text adjusting left on focus ([e6b5ff22](https://github.com/driftyco/ionic/commit/e6b5ff223b005e933f2503e6122e26010019fb90), closes [#1390](https://github.com/driftyco/ionic/issues/1390))
9+
* **ionContent:** make content scrollable if it is a child of a non-scrollable content ([488bd5c0](https://github.com/driftyco/ionic/commit/488bd5c08cefda6acc91e5c4cc9ec837ae5d31f0), closes [#1421](https://github.com/driftyco/ionic/issues/1421))
10+
* **ionFooterBar:** properly offset content for bar-subfooter ([46e33664](https://github.com/driftyco/ionic/commit/46e3366498f2bb894b6c6a7564bf9f7ccdcd0fee))
11+
* **ionReorderButton:** fix onReorder not triggering an angular digest ([cc46735c](https://github.com/driftyco/ionic/commit/cc46735c82b7fe2e9ddcdec9a2aa09c6b9bb9dee))
12+
* **ionSlideBox:** fix regression allowing slide past boundaries ([ec5a2763](https://github.com/driftyco/ionic/commit/ec5a2763379fc5ee14261a086d80458e13488278), closes [#1414](https://github.com/driftyco/ionic/issues/1414), [#1405](https://github.com/driftyco/ionic/issues/1405), [#1409](https://github.com/driftyco/ionic/issues/1409), [#1321](https://github.com/driftyco/ionic/issues/1321))
13+
* **requirejs:** fix bug with requirejs & loading order of angular taps ([36181091](https://github.com/driftyco/ionic/commit/3618109187a07c03d5d192579366f14a3f2c239c))
14+
* **scrollView:**
15+
* make xy scrolling work on ionScroll and ionContent ([49f06f9c](https://github.com/driftyco/ionic/commit/49f06f9c3dc9c8ee68bdf91090df497dc5cbbc02), closes [#1462](https://github.com/driftyco/ionic/issues/1462))
16+
* fix clonedInputs not being removed for large textareas on keyboardshow ([88e41e1a](https://github.com/driftyco/ionic/commit/88e41e1aa55d0633513dd3f1ebdd61aa9e25ad52), closes [#1420](https://github.com/driftyco/ionic/issues/1420))
17+
* on desktop, make mousewheel only scroll the scrollView under the mouse ([3250d10d](https://github.com/driftyco/ionic/commit/3250d10da754a6e70535a79d9be5fa1b6570d69c), closes [#1376](https://github.com/driftyco/ionic/issues/1376))
18+
* stop memory-leak when destroying scrollView ([4a210130](https://github.com/driftyco/ionic/commit/4a210130b4babf759f1aab9ba45411ba306a2a9f), closes [#1096](https://github.com/driftyco/ionic/issues/1096))
19+
* **tap:** select tag not working in IE ([7059b818](https://github.com/driftyco/ionic/commit/7059b818ce1866a647b124440758fce601cf1cbe), closes [#1435](https://github.com/driftyco/ionic/issues/1435))
20+
21+
22+
#### Features
23+
24+
* **footer:** keyboard-attach attribute directive to position footer above keyboard ([09d1197a](https://github.com/driftyco/ionic/commit/09d1197acd97e7c9424969757d5c1bd1f60783ae))
25+
26+
127
<a name="1.0.0-beta.5b"></a>
228
### 1.0.0-beta.5b "cadmium-camel" (2014-05-14)
329

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ionic",
33
"private": false,
4-
"version": "1.0.0-beta.5b-nightly-22740",
4+
"version": "1.0.0-beta.6",
55
"codename": "cadmium-camel",
66
"repository": {
77
"url": "git://github.com/driftyco/ionic.git"

scripts/travis/release-new-version.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function push {
3333
cd $IONIC_DIR
3434

3535
# Get first codename in list
36-
CODENAME=readJsonProp "$PROJECT_DIR/package.json" "codename"
36+
CODENAME=$(readJsonProp "$PROJECT_DIR/package.json" "codename")
3737

3838
replaceJsonProp "bower.json" "version" "$VERSION"
3939
replaceJsonProp "component.json" "version" "$VERSION"
@@ -52,6 +52,7 @@ function push {
5252
echo "-- v$VERSION \"$CODENAME\" pushed to $RELEASE_REMOTE/master successfully!"
5353
}
5454

55+
# Unused. TODO remove and rewrite as node.js script
5556
function github {
5657
echo "-- Pushing out github release..."
5758

@@ -95,6 +96,7 @@ function github {
9596
echo "-- Github release pushed out successfully!"
9697
}
9798

99+
# Unused. TODO remove and rewrite as node.js script
98100
function discourse {
99101
CODENAME=$(readJsonProp "$IONIC_DIR/package.json" "codename")
100102
# Get only newest things in changelog - sed until previous version is hit

0 commit comments

Comments
 (0)