Skip to content

Commit

Permalink
release build: v04.00.00
Browse files Browse the repository at this point in the history
update: 'at.pardus.android.webview.gm.run.WebViewClientGm'

add implementation for methods:
  GM_cookie.delete
  GM_cookie.list
  GM_cookie.set

add v4 polyfill for methods:
  GM.cookie.delete
  GM.cookie.list
  GM.cookie.set
  GM.cookies.delete
  GM.cookies.list
  GM.cookies.set
  • Loading branch information
warren-bank committed Nov 25, 2023
1 parent bf8ceba commit 88914be
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ Builds upon the [WebView GM library](https://github.com/wbayer/webview-gm) demo
* supplements the list of supported Greasemonkey API functions:
- legacy:
* `GM_addElement`
* `GM_cookie.delete`
* `GM_cookie.list`
* `GM_cookie.set`
* `GM_fetch`
- drop-in replacement for `window.fetch` that uses `GM_xmlhttpRequest` to make network requests
* `GM_info`
Expand All @@ -37,6 +40,12 @@ Builds upon the [WebView GM library](https://github.com/wbayer/webview-gm) demo
- [GM 4](https://www.greasespot.net/2017/09/greasemonkey-4-for-script-authors.html):
* `GM.addElement`
* `GM.addStyle`
* `GM.cookie.delete`
* `GM.cookie.list`
* `GM.cookie.set`
* `GM.cookies.delete`
* `GM.cookies.list`
* `GM.cookies.set`
* `GM.deleteValue`
* `GM.fetch`
* `GM.getResourceText`
Expand Down
4 changes: 2 additions & 2 deletions android-studio-project/constants.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
project.ext {
releaseVersionCode = Integer.parseInt("003000108", 10) //Integer.MAX_VALUE == 2147483647
releaseVersion = '003.00.01-08API'
releaseVersionCode = Integer.parseInt("004000008", 10) //Integer.MAX_VALUE == 2147483647
releaseVersion = '004.00.00-08API'
javaVersion = JavaVersion.VERSION_1_8
minSdkVersion = 8
targetSdkVersion = 33
Expand Down

0 comments on commit 88914be

Please sign in to comment.