Skip to content

Commit aad62fa

Browse files
committed
Release 0.2.4
1 parent a2e3877 commit aad62fa

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Change Log
22
==========
33

4+
Version 0.2.4
5+
----------------------------
6+
* Switch from unmaintained Stetho to the maintained forked repo: https://github.com/yinyinnie/stetho
7+
* Allows editing JS code from Chrome dev tools
8+
* Fixes the states when debugger is stuck in paused state by adding some extra checks and resuming it if happens.
9+
10+
411
Version 0.2.3
512
----------------------------
613
* Check if debugger has DevTools connection before sending messages from J2V8. If not, resume debugger (prevents getting stuck in paused state).

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ allprojects {
2626
Add dependency in *gradle.build* file of your app module
2727
```gradle
2828
dependencies {
29-
implementation ('com.github.AlexTrotsenko:j2v8-debugger:0.2.3') // {
29+
implementation ('com.github.AlexTrotsenko:j2v8-debugger:0.2.4') // {
3030
// optionally J2V8 can be excluded if specific version of j2v8 is needed or defined by other libs
3131
// exclude group: 'com.eclipsesource.j2v8'
3232
// }

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ org.gradle.jvmargs=-Xmx1536m
1616
kotlin.code.style=official
1717

1818
#publishing settings for Gradle build script
19-
VERSION_NAME=0.2.3
19+
VERSION_NAME=0.2.4
2020
#make group name of local build to be the same as by JitPack builds
2121
GROUP_NAME=com.github.AlexTrotsenko
2222
android.useAndroidX=true

0 commit comments

Comments
 (0)