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
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,42 @@
Change Log
==========

## Version 1.2.0

_2015-09-11_

* **View properties support!**
The "Styles" and "Computed" sub-tabs in "Elements" are now implemented,
complete with the box model diagram and a summary of the most useful view
properties.

* **Screencasting**
Click the small screen icon in the upper right to view a live preview of
your phone's screen while using Stetho! Coming soon: mouse/keyboard
support.

* **Console tab support**
Arbitrary Java/JavaScript support added to the Console with the optional
`stetho-js-rhino` dependency. See
[`stetho-sample/build.gradle`](stetho-sample/build.gradle) for details.

* **New simpler initialization and customization API**
Most callers can now just use `Stetho.initializeWithDefaults(context)`.

* New #218: Ability to pass pretty printers for binary data in the Network tab.
* New #248: Implement transparent request decompression.
* New #225: Ability to search View hierarchy (invoke with CTRL+F on the Elements tab).
* New #238: Add EXPLAIN support in SQL console.
* New #222: Add PRAGMA support in SQL console.
* New #207: Add `dumpapp files` plugin.
* New #181: Highlight view margins and padding when hovering over DOM entry.
* New #211: Implement DialogFragment in Elements tab.
* Fix #231: Sort database and shared preferences entries by name.
* Fix #206: Fix small memory leak in View hierarchy support.
* Fix #204: Use DOM tree diffing to fix ListView and a number of other edge
case view hierarchies.
* Fix #183: Fix Fragment support in Elements tab.

## Version 1.1.1

_2015-05-01_
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.1.1'
compile 'com.facebook.stetho:stetho:1.2.0'
```
or Maven:
```xml
<dependency>
<groupId>com.facebook.stetho</groupId>
<artifactId>stetho</artifactId>
<version>1.1.1</version>
<version>1.2.0</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-okhttp:1.1.1'
compile 'com.facebook.stetho:stetho-okhttp:1.2.0'
```
or:
```groovy
compile 'com.facebook.stetho:stetho-urlconnection:1.1.1'
compile 'com.facebook.stetho:stetho-urlconnection:1.2.0'
```

You can also enable a JavaScript console with:

```groovy
compile 'com.facebook.stetho:stetho-js-rhino:1.1.1'
compile 'com.facebook.stetho:stetho-js-rhino:1.2.0'
```
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.2.0-SNAPSHOT
VERSION_NAME=1.2.0
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.1.1'
compile 'com.facebook.stetho:stetho-js-rhino:1.2.0'
```
or Maven:
```xml
<dependency>
<groupId>com.facebook.stetho</groupId>
<artifactId>stetho-js-rhino</artifactId>
<version>1.1.1</version>
<version>1.2.0</version>
</dependency>
```

Expand Down