Skip to content

Commit

Permalink
Merge pull request #279 from jasta/release-v1.2.0
Browse files Browse the repository at this point in the history
Release v1.2.0
  • Loading branch information
jasta committed Sep 11, 2015
2 parents 93865e5 + d8b2436 commit f3e1c88
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 8 deletions.
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

0 comments on commit f3e1c88

Please sign in to comment.