Skip to content
This repository has been archived by the owner on Nov 24, 2022. It is now read-only.

Commit

Permalink
[new version] v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
linfaxin committed Jan 30, 2016
1 parent 53f9562 commit 2200571
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 11 deletions.
2 changes: 1 addition & 1 deletion dist/android-ui.es5.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/android-ui.es5.js.map

Large diffs are not rendered by default.

18 changes: 11 additions & 7 deletions dist/android-ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ var androidui;
(function (androidui) {
androidui.sdk_version_info = `
AndroidUI4Web: https://github.com/linfaxin/AndroidUI4Web
version: 0.2.0
version: 0.2.1
release type: Pre-release
release date: 2016-01-25
release date: 2016-01-31
`;
})(androidui || (androidui = {}));
var java;
Expand Down Expand Up @@ -1909,11 +1909,15 @@ var android;
return tmp;
}
static reset(mtx) {
for (let i = 0, k = 0; i < 3; i++) {
for (let j = 0; j < 3; j++, k++) {
mtx[k] = ((i == j) ? 1 : 0);
}
}
mtx[0] = 1;
mtx[1] = 0;
mtx[2] = 0;
mtx[3] = 0;
mtx[4] = 1;
mtx[5] = 0;
mtx[6] = 0;
mtx[7] = 0;
mtx[8] = 1;
}
computeTypeMask() {
let mask = 0;
Expand Down
4 changes: 2 additions & 2 deletions src/sdk_version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
module androidui {
export var sdk_version_info = `
AndroidUI4Web: https://github.com/linfaxin/AndroidUI4Web
version: 0.2.0
version: 0.2.1
release type: Pre-release
release date: 2016-01-25
release date: 2016-01-31
`;
}

0 comments on commit 2200571

Please sign in to comment.