Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chromium: Fix checkver/autoupdate #2759

Merged
merged 6 commits into from
Aug 30, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 29 additions & 17 deletions bucket/chromium.json
Original file line number Diff line number Diff line change
@@ -1,37 +1,49 @@
{
"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": "Open-source browser project that aims to build a safer, faster, and more stable way for all users to experience the web.",
issaclin32 marked this conversation as resolved.
Show resolved Hide resolved
"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",
issaclin32 marked this conversation as resolved.
Show resolved Hide resolved
"extract_dir": "chrome-win32",
"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((?<main>[\\d.]+)-r\\d+)-Win64"
issaclin32 marked this conversation as resolved.
Show resolved Hide resolved
},
"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-$matchMain-x64.7z",
issaclin32 marked this conversation as resolved.
Show resolved Hide resolved
"hash": {
"url": "https://github.com/macchrome/winchrome/releases/latest",
"regex": "(?sm)$basename \\(64-bit\\)<br>\\nSHA1 $sha1</p>"
},
"extract_dir": "Chromium-$matchMain-x64"
issaclin32 marked this conversation as resolved.
Show resolved Hide resolved
},
"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-$matchMain-x86.7z",
issaclin32 marked this conversation as resolved.
Show resolved Hide resolved
"hash": {
"url": "https://github.com/macchrome/winchrome/releases/latest",
issaclin32 marked this conversation as resolved.
Show resolved Hide resolved
"regex": "(?sm)$basename \\(32-bit\\)<br>\\nSHA1 $sha1</p>"
},
"extract_dir": "Chromium-$matchMain-x86"
issaclin32 marked this conversation as resolved.
Show resolved Hide resolved
}
}
}
Expand Down