Skip to content

Commit

Permalink
Release 0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexTrotsenko committed Feb 4, 2025
1 parent a2e3877 commit aad62fa
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Change Log
==========

Version 0.2.4
----------------------------
* Switch from unmaintained Stetho to the maintained forked repo: https://github.com/yinyinnie/stetho
* Allows editing JS code from Chrome dev tools
* Fixes the states when debugger is stuck in paused state by adding some extra checks and resuming it if happens.


Version 0.2.3
----------------------------
* Check if debugger has DevTools connection before sending messages from J2V8. If not, resume debugger (prevents getting stuck in paused state).
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ allprojects {
Add dependency in *gradle.build* file of your app module
```gradle
dependencies {
implementation ('com.github.AlexTrotsenko:j2v8-debugger:0.2.3') // {
implementation ('com.github.AlexTrotsenko:j2v8-debugger:0.2.4') // {
// optionally J2V8 can be excluded if specific version of j2v8 is needed or defined by other libs
// exclude group: 'com.eclipsesource.j2v8'
// }
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ org.gradle.jvmargs=-Xmx1536m
kotlin.code.style=official

#publishing settings for Gradle build script
VERSION_NAME=0.2.3
VERSION_NAME=0.2.4
#make group name of local build to be the same as by JitPack builds
GROUP_NAME=com.github.AlexTrotsenko
android.useAndroidX=true
Expand Down

0 comments on commit aad62fa

Please sign in to comment.