Skip to content

Commit

Permalink
Chromium: Fix checkver/autoupdate (#2759)
Browse files Browse the repository at this point in the history
* Update chromium.json

* Autoupdate: Use version tag instead of "latest"

* Apply suggestions

Co-Authored-By: Jakub Čábera <cabera.jakub@gmail.com>

* Apply suggestion (description)

Co-Authored-By: Jakub Čábera <cabera.jakub@gmail.com>

* Apply suggestion (bin)

Co-Authored-By: Jakub Čábera <cabera.jakub@gmail.com>

* bin: fix bracket
  • Loading branch information
issaclin32 authored and rasa committed Aug 30, 2019
1 parent 4032cdd commit bab0b24
Showing 1 changed file with 36 additions and 18 deletions.
54 changes: 36 additions & 18 deletions bucket/chromium.json
Original file line number Diff line number Diff line change
@@ -1,37 +1,55 @@
{
"version": "75.0.3770.142-r652427",
"description": "An open-source browser project that aims to build a safer, faster, and more stable way for all users to experience the web.",
"##": "Check chromium.woolyss.com for different versions of Chromium releases.",
"version": "76.0.3809.100-r665002",
"description": "Browser aiming for safer, faster, and more stable way for all users to experience the web.",
"license": "BSD-3-Clause",
"homepage": "https://www.chromium.org",
"checkver": {
"url": "https://chromium.woolyss.com/api/v3/?os=windows&bit=64&type=stable-codecs-sync&out=string",
"re": "v([\\d.]+-r(?:\\d+))-win64"
"architecture": {
"64bit": {
"url": "https://github.com/macchrome/winchrome/releases/download/v76.0.3809.100-r665002-Win64/Chromium-76.0.3809.100-x64.7z",
"hash": "sha1:67fda51228441ec59bdbfa4de046f4ea4f4d551b",
"extract_dir": "Chromium-76.0.3809.100-x64"
},
"32bit": {
"url": "https://github.com/macchrome/winchrome/releases/download/v76.0.3809.100-r665002-Win64/Chromium-76.0.3809.100-x86.7z",
"hash": "sha1:b3a9c7bfaf220ba2f0868047e1043b74246a9c96",
"extract_dir": "Chromium-76.0.3809.100-x86"
}
},
"bin": "chrome.exe",
"extract_dir": "chrome-win32",
"bin": [
"chrome.exe",
[
"chrome.exe",
"chromium"
]
],
"shortcuts": [
[
"chrome.exe",
"Chromium"
]
],
"architecture": {
"64bit": {
"url": "https://github.com/henrypp/chromium/releases/download/v75.0.3770.142-r652427-win64/chromium-sync.zip",
"hash": "9b70c145471e8bcd4d717e0c6d736e1cb94c9710f18a5638f5cc1175418d9e0b"
},
"32bit": {
"url": "https://github.com/henrypp/chromium/releases/download/v75.0.3770.142-r652427-win32/chromium-sync.zip",
"hash": "bc33cf72da162dc90374957ed2d4e9e8026b51caca1290122a4e0cba218d04cb"
}
"checkver": {
"github": "https://github.com/macchrome/winchrome",
"regex": "v([\\d.]+-r\\d+)-Win64"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/henrypp/chromium/releases/download/v$version-win64/chromium-sync.zip"
"url": "https://github.com/macchrome/winchrome/releases/download/v$version-Win64/Chromium-$matchHead.$buildVersion-x64.7z",
"hash": {
"url": "https://github.com/macchrome/winchrome/releases/v$version-Win64",
"regex": "(?sm)$basename \\(64-bit\\)<br>\\nSHA1 $sha1</p>"
},
"extract_dir": "Chromium-$matchHead.$buildVersion-x64"
},
"32bit": {
"url": "https://github.com/henrypp/chromium/releases/download/v$version-win32/chromium-sync.zip"
"url": "https://github.com/macchrome/winchrome/releases/download/v$version-Win64/Chromium-$matchHead.$buildVersion-x86.7z",
"hash": {
"url": "https://github.com/macchrome/winchrome/releases/v$version-Win64",
"regex": "(?sm)$basename \\(32-bit\\)<br>\\nSHA1 $sha1</p>"
},
"extract_dir": "Chromium-$matchHead.$buildVersion-x86"
}
}
}
Expand Down

0 comments on commit bab0b24

Please sign in to comment.