Compare commits

...

6 commits

Author SHA1 Message Date
Fanboynz
a18ee33bb3
Merge e303f5af51 into 8f544e53bc 2026-02-25 06:43:31 +01:00
Raymond Hill
8f544e53bc
New revision for dev build 2026-02-24 08:59:17 -05:00
Raymond Hill
b230effdbc
Update changelog 2026-02-24 08:55:51 -05:00
Raymond Hill
98d3e9500a
Improve json-edit-related scriptlets 2026-02-24 08:50:41 -05:00
ryanbr
e303f5af51 Revert actions/checkout as requested 2025-04-27 00:43:21 +00:00
ryanbr
c4100c1ba3 gh workflow assign-pr: pin
Fix
2025-04-04 02:30:30 +00:00
4 changed files with 7 additions and 3 deletions

View file

@ -36,7 +36,7 @@ jobs:
sed -e 's/%version%/${{ env.VERSION }}/g' .github/workflows/RELEASE.HEAD.md >> release.body.txt
- name: Create GitHub release
id: create_release
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2.2.1
env:
GITHUB_TOKEN: ${{ github.token }}
with:

View file

@ -1,3 +1,4 @@
- [Improve `json-edit`-related scriptlets](https://github.com/gorhill/uBlock/commit/98d3e9500a)
- [Improve `trusted-create-html` scriptlet](https://github.com/gorhill/uBlock/commit/baffd32dab)
- [Improve `prevent-fetch` scriptlet](https://github.com/gorhill/uBlock/commit/2ce376cf1d)
- [Fix handling of `extraMatch` parameter in `trusted-click-element` scriptlet](https://github.com/gorhill/uBlock/commit/a8ad95394d)

2
dist/version vendored
View file

@ -1 +1 @@
1.69.1.4
1.69.1.5

View file

@ -486,7 +486,10 @@ export class JSONPath {
if ( outcome ) { return k; }
}
#modifyVal(obj, key) {
const { modify, rval } = this.#compiled;
let { modify, rval } = this.#compiled;
if ( typeof rval === 'string' ) {
rval = rval.replace('${now}', `${Date.now()}`);
}
switch ( modify ) {
case undefined:
obj[key] = rval;