liberica*: Fix checkver JSONPath (#590)

This commit is contained in:
Nacai 2026-04-27 21:54:18 +08:00 committed by GitHub
parent ad8ede60b6
commit f528bbfd28
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
49 changed files with 49 additions and 49 deletions

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?bundle-type=jdk-full&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}",
"reverse": true

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?bundle-type=jre-full&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}",
"reverse": true

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?bundle-type=jdk-full&version-modifier=latest&release-type=lts&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}",
"reverse": true

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?bundle-type=jre-full&version-modifier=latest&release-type=lts&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}",
"reverse": true

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?bundle-type=jdk&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}",
"reverse": true

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?bundle-type=jre&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}",
"reverse": true

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?bundle-type=jdk-lite&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}",
"reverse": true

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?bundle-type=jdk-lite&version-modifier=latest&release-type=lts&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}",
"reverse": true

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?bundle-type=jdk&version-modifier=latest&release-type=lts&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}",
"reverse": true

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?bundle-type=jre&version-modifier=latest&release-type=lts&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}",
"reverse": true

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=11&bundle-type=jdk-full&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=11&bundle-type=jre-full&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=11&bundle-type=jdk&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=11&bundle-type=jre&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=11&bundle-type=jdk-lite&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=16&bundle-type=jdk-full&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=16&bundle-type=jre-full&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=16&bundle-type=jdk&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=16&bundle-type=jre&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=16&bundle-type=jdk-lite&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=17&bundle-type=jdk-full&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=17&bundle-type=jre-full&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=17&bundle-type=jdk&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=17&bundle-type=jre&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=17&bundle-type=jdk-lite&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -24,7 +24,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=21&bundle-type=jdk-full&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -24,7 +24,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=21&bundle-type=jre-full&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -24,7 +24,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=21&bundle-type=jdk-full&version-modifier=latest&release-type=lts&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -24,7 +24,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=21&bundle-type=jre-full&version-modifier=latest&release-type=lts&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -24,7 +24,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=21&bundle-type=jdk&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -24,7 +24,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=21&bundle-type=jre&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -24,7 +24,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=21&bundle-type=jdk-lite&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -24,7 +24,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=21&bundle-type=jdk-lite&version-modifier=latest&release-type=lts&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -24,7 +24,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=21&bundle-type=jdk&version-modifier=latest&release-type=lts&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -24,7 +24,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=21&bundle-type=jre&version-modifier=latest&release-type=lts&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=25&bundle-type=jdk-full&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=25&bundle-type=jre-full&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=25&bundle-type=jdk-full&version-modifier=latest&release-type=lts&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=25&bundle-type=jre-full&version-modifier=latest&release-type=lts&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=25&bundle-type=jdk&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=25&bundle-type=jre&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=25&bundle-type=jdk-lite&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=25&bundle-type=jdk-lite&version-modifier=latest&release-type=lts&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=25&bundle-type=jdk&version-modifier=latest&release-type=lts&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=25&bundle-type=jre&version-modifier=latest&release-type=lts&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\d.]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=8&bundle-type=jdk-full&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\du]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=8&bundle-type=jre-full&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\du]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=8&bundle-type=jdk&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\du]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},

View File

@ -20,7 +20,7 @@
},
"checkver": {
"url": "https://api.bell-sw.com/v1/liberica/releases?version-feature=8&bundle-type=jre&version-modifier=latest&release-type=all&os=windows&arch=x86&installation-type=archive&package-type=zip&output=json&fields=version",
"jsonpath": "$.version",
"jsonpath": "$[*].version",
"regex": "(?<major>[\\du]+)(?:\\+)(?<build>[\\d]+)",
"replace": "${major}-${build}"
},