Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
Change Log
==========

## Version 1.3.1

_2016-02-25_

* **Major performance improvements in Elements tab**
Several performance, correctness, and stability improvements related to
how Stetho performs tree diffing.

* Fix #349: Fix dumpapp scripts under various edge cases.
* Fix #357: Remove static fields from exported view "styles".

## Version 1.3.0

_2016-01-20_
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,31 +15,31 @@ begin.
### Download
Download [the latest JARs](https://github.com/facebook/stetho/releases/latest) or grab via Gradle:
```groovy
compile 'com.facebook.stetho:stetho:1.3.0'
compile 'com.facebook.stetho:stetho:1.3.1'
```
or Maven:
```xml
<dependency>
<groupId>com.facebook.stetho</groupId>
<artifactId>stetho</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>
</dependency>
```

Only the main `stetho` dependency is strictly required; however, you may also wish to use one of the network helpers:

```groovy
compile 'com.facebook.stetho:stetho-okhttp3:1.3.0'
compile 'com.facebook.stetho:stetho-okhttp3:1.3.1'
```
or:
```groovy
compile 'com.facebook.stetho:stetho-urlconnection:1.3.0'
compile 'com.facebook.stetho:stetho-urlconnection:1.3.1'
```

You can also enable a JavaScript console with:

```groovy
compile 'com.facebook.stetho:stetho-js-rhino:1.3.0'
compile 'com.facebook.stetho:stetho-js-rhino:1.3.1'
```
For more details on how to customize the JavaScript runtime see [stetho-js-rhino](stetho-js-rhino/).

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VERSION_NAME=1.3.1-SNAPSHOT
VERSION_NAME=1.3.1
GROUP=com.facebook.stetho
4 changes: 2 additions & 2 deletions stetho-js-rhino/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ This [Stetho](https://facebook.github.io/stetho) plugin adds a JavaScript consol
### Download
Download [the latest JARs](https://github.com/facebook/stetho/releases/latest) or grab via Gradle:
```groovy
compile 'com.facebook.stetho:stetho-js-rhino:1.3.0'
compile 'com.facebook.stetho:stetho-js-rhino:1.3.1'
```
or Maven:
```xml
<dependency>
<groupId>com.facebook.stetho</groupId>
<artifactId>stetho-js-rhino</artifactId>
<version>1.3.0</version>
<version>1.3.1</version>
</dependency>
```

Expand Down