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

kafkio: Add version 1.1.1 #14291

Merged
merged 20 commits into from
Jan 23, 2025
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
a2e291e
i2pd browser 1.3.3
Slach Oct 31, 2023
695a498
Merge branch 'master' of github.com:ScoopInstaller/Extras
Slach Nov 23, 2023
e8f6aa4
Merge branch 'master' of github.com:ScoopInstaller/Extras
Slach Dec 4, 2023
7470bd3
Merge branch 'master' of github.com:Slach/scoop-extras-bucket
Slach Dec 25, 2023
974a48b
Merge branch 'master' of github.com:ScoopInstaller/Extras
Slach Dec 25, 2023
42e8f59
Merge branch 'master' of github.com:ScoopInstaller/Extras
Slach Dec 26, 2023
ccfacd0
Merge branch 'master' of github.com:ScoopInstaller/Extras
Slach Jan 19, 2024
a665e45
Merge branch 'master' of github.com:ScoopInstaller/Extras
Slach Jan 21, 2024
7b4a5e6
Merge branch 'master' of github.com:Slach/scoop-extras-bucket
Slach Jan 21, 2024
bf379d0
remove url to allow pass check
Slach Jan 21, 2024
5ce7db1
Merge branch 'master' of github.com:ScoopInstaller/Extras
Slach Jul 20, 2024
f2b1d00
Merge branch 'master' of github.com:ScoopInstaller/Extras
Slach Jul 31, 2024
d970e08
Merge branch 'master' of github.com:ScoopInstaller/Extras
Slach Oct 25, 2024
4d546ef
add kafkatopical 0.0.8
Slach Oct 25, 2024
4b4e24d
Merge branch 'master' of github.com:ScoopInstaller/Extras
Slach Nov 29, 2024
e2a3202
Merge branch 'master' of github.com:ScoopInstaller/Extras
Slach Jan 9, 2025
4d6ff51
Merge branch 'master' of github.com:ScoopInstaller/Extras
Slach Jan 22, 2025
e317510
Merge branch 'master' into add_kafkatopical
Slach Jan 22, 2025
0f04b66
rename kafkatopical to kafkio, update to 1.1.1 version
Slach Jan 22, 2025
cc4bf96
[email protected]: Simplify checkver, fix formatting, use extract_dir, add…
aliesbelik Jan 22, 2025
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
47 changes: 26 additions & 21 deletions bucket/kafkio.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,38 @@
{
"version": "1.1.1",
"description": "KafkIO - A Fast, Easy and Free Kafka Client for Mac, Windows and Linux",
"homepage": "https://www.kafkio.com/",
"description": "KafkIO - A Fast, Easy and Free Kafka Client For Mac, Windows and Linux",
"license": "Freeware",
"url": "https://www.kafkio.com/download/kafkio/1.1.1/KafkIO-win-1.1.1-x64.zip",
"hash": "sha256:f39060541c0216ac40f5ed1ec24c5f8be9452b8ac6cf016fd495d67dc1d079c0",
"pre_install": [
"if (Test-Path \"$dir\\KafkIO-win-$version-x64\") {",
" Move-Item \"$dir\\KafkIO-win-$version-x64\\*\" \"$dir\\\" -Force",
" Remove-Item \"$dir\\KafkIO-win-$version-x64\" -Force -Recurse",
"}"
],
"checkver": {
"script": [
"$url = 'https://www.kafkio.com/'",
"$response = Invoke-WebRequest -UseBasicParsing -Uri $url",
"$response.Content -match '\"softwareVersion\": ([\\d.]+)' | Out-Null",
"Write-Output $matches[1]"
],
"regex": "([\\d.]+)"
"license": {
"identifier": "Freeware",
"url": "https://www.kafkio.com/donate"
},
"autoupdate": {
"url": "https://www.kafkio.com/download/kafkio/$version/KafkIO-win-$version-x64.zip"
"architecture": {
"64bit": {
"url": "https://www.kafkio.com/download/kafkio/1.1.1/KafkIO-win-1.1.1-x64.zip",
"hash": "f39060541c0216ac40f5ed1ec24c5f8be9452b8ac6cf016fd495d67dc1d079c0",
"extract_dir": "KafkIO-win-1.1.1-x64"
}
},
"bin": "KafkIO.exe",
"shortcuts": [
[
"KafkIO.exe",
"KafkIO"
]
]
],
"checkver": {
"regex": "\"softwareVersion\": ([\\d.]+)"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://www.kafkio.com/download/kafkio/$version/KafkIO-win-$version-x64.zip",
"extract_dir": "KafkIO-win-$version-x64"
}
},
"hash": {
"url": "https://www.kafkio.com/download",
"find": "(?sm)$basename.*?SHA256:.*?$sha256"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i didn't know about this possibility ;) thanks

}
}
}