This repository has been archived by the owner on Jun 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge Release/0.24 into master (#2478)
* [jsfm] Fix the lint error in Document (#2368) Remove the useless temporary variable `result` in the `fireEvent` method. * [iOS] Fix mtl target build script. (#2369) * Update version for 0.24 release * Update release script * Add release_candiate.sh * Chmod publish_release_candiate.sh to 755 * Update publish.sh * Update push tag * Update publish srcript * Update license header and build script for apache release. * Update file header for source file from Webkit and chromium * Update webkit version. * update publish script. * Update push tag * update publish script * Update rule for release_files. * Add Ninja build dep (#2459) * Update publish_release_official script. * Update license * Update release script * Update comment doc release script. * Update readme * Update Readme.md * [Android] Check weexVersion (#2451) * [Android] Check weexVersion 1. The version must have 4 sections. 2. The leading three section must be number, and the last section is odd number with or without suffix string. * [Android] Add ignoreVersionCheck (cherry picked from commit 151c469) * [Android] Copy so. (#2454) Use a dedicated way to copy unstripped .so file without the importable file path. (cherry picked from commit 4da0cea) * Remove ios/sdk/WeexTests/dependency from Apache release. * Update build.gradle
- Loading branch information
1 parent
c146abe
commit e31e956
Showing
124 changed files
with
14,176 additions
and
1,606 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,78 @@ | ||
## [Unreleased] | ||
# Abstract | ||
## Feature | ||
* Support direction:rtl | ||
* For international useage, support [direction:rtl](https://developer.mozilla.org/en-US/docs/Web/CSS/direction) | ||
* Pull Request: https://github.com/apache/incubator-weex/pull/1664 | ||
|
||
### Changed | ||
- [android]Move DOM and render to separate Action Object | ||
- [android]Move Animation(animation module and css style) to seperate Action Object | ||
- [android]Reserve `transformOrigin`'s last time state. | ||
- [android]Refactor list-component sticky, use `List` instead of `Stack` to store sticky information. | ||
* Support richtext component | ||
* Support richtext component [richtext](http://weex-project.io/cn/references/components/richtext.html) | ||
* Pull Request: https://github.com/apache/incubator-weex/pull/1796 | ||
|
||
* Performance optimization(init) | ||
* rm useless log && reduce reflection | ||
* Pull Request: https://github.com/apache/incubator-weex/pull/1844 | ||
|
||
* **Major change** refine weex code:(integration code from weex_core and weex_v8core) | ||
* pr : https://github.com/apache/incubator-weex/pull/1999 | ||
* change log: | ||
* Modify file naming from capitalized hump to lowercase | ||
* Modify the header file inclusion method, mainly based on google style | ||
* Change the file directory and move the basic function files to the base directory | ||
* Merge jssengine code into WeexCore repository, integrate compilation | ||
* Add libWTF.so to adapt to compile | ||
* send interaction time with event(after 8s) | ||
* Pull Request : | ||
* https://github.com/apache/incubator-weex/pull/2000 | ||
* https://github.com/apache/incubator-weex/pull/2002 | ||
|
||
* JsEngine multi-threaded | ||
* The jss sub-process adds I/O Thread, which is specially used to handle IPC message forwarding. Move the IPC operation originally attached to jsThread to I/O Thread. | ||
* The jss sub-process adds a JSThread to execute the tag. The page instance for use_back_thread=true holds a VM for each thread, independent of each other. The two threads do not interfere with each other, so that they can run in parallel. | ||
|
||
* ***Major change** Remove AutoConfigScan | ||
* Pull Request: https://github.com/apache/incubator-weex/pull/2142 | ||
|
||
* Throws the exception in the componentHooks callback and hands it over to the client. | ||
* Pull Request: https://github.com/apache/incubator-weex/pull/2285 | ||
|
||
* Add completion callback for registerService. | ||
* Pull Request: https://github.com/apache/incubator-weex/pull/1776 | ||
|
||
* Supprot devtool show the new performance info | ||
* Pull Request : <https://github.com/apache/incubator-weex/pull/1751> | ||
|
||
* Support change device width and height by external interface | ||
* Pull Request: <https://github.com/apache/incubator-weex/pull/2263> | ||
|
||
## Bugfix | ||
* Emoji not show on Android 9.0(init) | ||
* Emoji not show on Android 9.0(init) | ||
* Pull Request: https://github.com/apache/incubator-weex/pull/1804/files | ||
|
||
* Support ontouch event on scroller component | ||
* Pull Request: https://github.com/apache/incubator-weex/pull/1896 | ||
|
||
* Fix NPE && No such Element Exception | ||
* Pull Request: https://github.com/apache/incubator-weex/pull/1896 | ||
|
||
* Bugfix java.lang.NullPointerException: println needs a message | ||
* Pull Request: https://github.com/apache/incubator-weex/pull/1925 | ||
|
||
* ignore fixed element for interactionTime | ||
* Pull Request:https://github.com/apache/incubator-weex/pull/1900 | ||
|
||
* Use JSON to find bundleType | ||
* Pull Request:https://github.com/apache/incubator-weex/pull/1927 | ||
|
||
* Upload attribute information if list's column count equals or smaller than 0 | ||
* Pull Request: https://github.com/apache/incubator-weex/pull/1957/files | ||
|
||
* try to fix threadpool rejectexception cause shutdown | ||
* Pull Request:https://github.com/apache/incubator-weex/pull/2001 | ||
|
||
* try to fix js exception: scroll event.xxx undefined | ||
* Pull Request: https://github.com/apache/incubator-weex/pull/2034 | ||
|
||
* fix multithread crash : task excute after instance destroy | ||
* Pull Request: https://github.com/apache/incubator-weex/pull/2029 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Apache Weex | ||
Copyright 2018 The Apache Software Foundation | ||
Copyright 2019 The Apache Software Foundation | ||
|
||
This product includes software developed at | ||
The Apache Software Foundation (http://www.apache.org/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.