├── .github ├── CODEOWNERS ├── stale.yml ├── dependabot.yml ├── ISSUE_TEMPLATE │ ├── config.yml │ └── hash-error.yml ├── workflows │ ├── pull_request.yml │ ├── excavator.yml │ ├── issue_comment.yml │ └── issues.yml └── pull_request_template.md ├── .gitignore ├── .markdownlint.json ├── .vscode ├── extensions.json └── settings.json ├── Scoop-Bucket.Tests.ps1 ├── scripts ├── zotero │ ├── uninstall-zotero-url-protocol.ps1 │ └── install-zotero-url-protocol.ps1 ├── vim │ ├── uninstall-context.reg │ └── install-context.reg ├── tachidesk-server-preview │ ├── tachidesk.ps1 │ ├── tachidesk-debug.ps1 │ └── tachidesk-electron.ps1 ├── geogebra5 │ ├── uninstall-associations.reg │ └── install-associations.reg ├── wezterm-nightly │ ├── uninstall-context.reg │ └── install-context.reg ├── windows-terminal-preview │ ├── uninstall-context.reg │ └── install-context.reg ├── everything │ ├── uninstall-context.reg │ └── install-context.reg ├── prismlauncher-git │ └── uninstall-associations.reg ├── prismlauncher-qt5-git │ └── uninstall-associations.reg ├── beyondcompare4 │ ├── uninstall-context.reg │ └── install-context-32bit.reg └── jetbrains │ └── portable.ps1 ├── bucket ├── oneget.json ├── lcow.json ├── flow030.json ├── flow031.json ├── phantomjs19.json ├── dartium-content-shell-dev.json ├── lightshot.json ├── de4dot-netcoreapp3.1.json ├── dartium-dev.json ├── selenium3.json ├── gradle4.json ├── gradle5.json ├── gradle6.json ├── gradle7.json ├── nuget3.json ├── xmind8.json ├── glslang-nightly.json ├── love6.json ├── edgedriver-legacy.json ├── love7.json ├── zip-beta.json ├── git19.json ├── steam-mover.json ├── rust-nightly.json ├── sbt013.json ├── rust-msvc-nightly.json ├── azuredatastudio-insiders.json ├── springboot15.json ├── audacity2.4.2.json ├── oh-my-posh2.json ├── orca3.json ├── de4dot-net35.json ├── de4dot-net45.json ├── helm2.json ├── ubisoftconnect.json ├── iperf3.5.json ├── premake4.json ├── uplay.json ├── ipfilter-nightly.json ├── premake5.json ├── lynx283.json ├── innounp-unicode.json ├── postman9.json ├── posh-git-beta.json ├── jdownloader.json ├── xdman-beta.json ├── gopass184.json ├── stunnel549.json ├── traefik1.json ├── gitversion-beta.json ├── openrgb-nightly.json ├── pester4.json ├── fluxctl.json ├── steam.json ├── fmedia16.json ├── pijul.json ├── aria2-134.json ├── aurora-rgb.json ├── sts396.json ├── posh-git-nightly.json ├── ffmpeg-shared-4.4.1.json ├── furmark1.json ├── tinymediamanager3.json ├── dotnet-nightly.json ├── ruby19.json ├── zeebe1.3.json ├── caret-beta.json ├── discord-canary.json ├── love9.json ├── arduino-ide-rc.json ├── love10.json ├── love8.json ├── camunda-operate1.3.json ├── v-weekly.json ├── neovide-dev.json ├── poppler068.json ├── wget120.json ├── spotdl-beta.json ├── maven3.json ├── stash-dev.json ├── discord-ptb.json ├── kopia-rc.json ├── greenshot-unstable.json ├── scala2.json ├── tesseract3-languages.json ├── atom-ng.json ├── influx2.json ├── slack-beta.json ├── spark33.json ├── tomcat6.json ├── cosmosdbexplorer-beta.json ├── ols-nightly.json ├── spark-hadoop3.json ├── v2rayn-selfcontained.json ├── kopiaui-rc.json ├── spotbugs-beta.json ├── emacs27.2.json ├── spotify-qt-nightly.json ├── beef-nightly.json ├── gitbutler-nightly.json ├── typora-dev.json ├── cuda9.1.json ├── cuda9.json ├── hyper-beta.json ├── cuda8.0.json ├── cuda8.json ├── cuda9.0.json ├── cuda9.2.json ├── spark-without-hadoop.json ├── ant19.json ├── scala212.json ├── spark-scala2.13.json ├── wixtoolset3.json ├── arduino18.json ├── cuda10.0.json ├── kdenlive-nightly.json ├── micaforeveryone-dev.json ├── cuda6.json ├── cuda10.2.json ├── cuda10.json ├── cuda6.5.json ├── wox-beta.json ├── cuda10.1.json ├── marknote-nightly.json ├── lapce-nightly.json ├── openscad-dev.json ├── mpv.net-beta.json ├── kate-nightly.json ├── cuda12.9.json ├── maven4.json ├── okular-nightly.json ├── brave-beta.json ├── qt-creator-beta.json ├── zed-nightly.json ├── freecad-weekly.json ├── brave-nightly.json ├── cuda11.6.json ├── cuda11.7.json ├── cuda11.8.json ├── influxdb1.json ├── zed-opengl-nightly.json ├── tomcat7.json ├── konversation-nightly.json ├── sharex-dev.json ├── dotnet2-sdk.json ├── filelight-nightly.json ├── assimp3.json ├── cuda7.5.json ├── cuda7.json ├── neochat-nightly.json ├── deepgit402.json ├── cuda11.0.json ├── cuda11.1.json ├── cuda11.2.json ├── cuda11.3.json ├── cuda11.4.json ├── cuda11.5.json ├── konsole-nightly.json ├── cloudcompare-alpha.json ├── tesseract4-languages.json ├── handbrake-cli-snapshot.json ├── ruby25.json ├── ruby27.json ├── espanso-pre.json ├── influxdb2.json ├── labplot-nightly.json └── multipar-beta.json ├── bin ├── checkver.ps1 ├── checkurls.ps1 ├── formatjson.ps1 ├── checkhashes.ps1 ├── missing-checkver.ps1 ├── auto-pr.ps1 └── test.ps1 ├── .gitattributes ├── .editorconfig ├── deprecated ├── emule-cv.json └── archi44.json ├── README.md └── LICENSE /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | /.github/workflows/ @ScoopInstaller/maintainers 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.sublime-workspace 2 | *~ 3 | ._* 4 | page.html 5 | checkver-*.html 6 | -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- 1 | # Use ScoopInstaller/.github/.github/stale.yml 2 | _extends: .github 3 | -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- 1 | { 2 | "MD013": false, 3 | "MD024": { 4 | "siblings_only": true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": [ 3 | "EditorConfig.EditorConfig", 4 | "ms-vscode.PowerShell" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /Scoop-Bucket.Tests.ps1: -------------------------------------------------------------------------------- 1 | if (!$env:SCOOP_HOME) { $env:SCOOP_HOME = Resolve-Path (scoop prefix scoop) } 2 | . "$env:SCOOP_HOME\test\Import-Bucket-Tests.ps1" 3 | -------------------------------------------------------------------------------- /scripts/zotero/uninstall-zotero-url-protocol.ps1: -------------------------------------------------------------------------------- 1 | Write-Host 'Unregistering the ''zotero://'' URL protocol...' 2 | Remove-Item 'HKCU:\SOFTWARE\Classes\zotero' -Recurse -Force 3 | Write-Host 'Done!' 4 | -------------------------------------------------------------------------------- /scripts/vim/uninstall-context.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [-HKEY_CURRENT_USER\Software\Classes\*\shell\Edit with &Vim] 4 | [-HKEY_CURRENT_USER\Software\Classes\*\shell\Edit with &Vim\command] 5 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # ~/.github/dependabot.yml 3 | version: 2 4 | updates: 5 | - package-ecosystem: "github-actions" 6 | directory: "/" # == /.github/workflows/ 7 | schedule: 8 | interval: "daily" 9 | -------------------------------------------------------------------------------- /scripts/tachidesk-server-preview/tachidesk.ps1: -------------------------------------------------------------------------------- 1 | $currentdir = (Get-Item -Path ".\").FullName 2 | Set-Location $PSScriptRoot 3 | $out = ".\Tachidesk Browser Launcher.bat" 4 | Start-Process $out -NoNewWindow 5 | Set-Location $currentdir 6 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | contact_links: 3 | - name: Scoop Community Support 4 | url: https://github.com/ScoopInstaller/Scoop/discussions 5 | about: Please ask Scoop related questions here. 6 | -------------------------------------------------------------------------------- /scripts/tachidesk-server-preview/tachidesk-debug.ps1: -------------------------------------------------------------------------------- 1 | $currentdir = (Get-Item -Path ".\").FullName 2 | Set-Location $PSScriptRoot 3 | $out = ".\Tachidesk Debug Launcher.bat" 4 | Start-Process $out -NoNewWindow 5 | Set-Location $currentdir 6 | -------------------------------------------------------------------------------- /scripts/tachidesk-server-preview/tachidesk-electron.ps1: -------------------------------------------------------------------------------- 1 | $currentdir = (Get-Item -Path ".\").FullName 2 | Set-Location $PSScriptRoot 3 | $out = ".\Tachidesk Electron Launcher.bat" 4 | Start-Process $out -NoNewWindow 5 | Set-Location $currentdir 6 | -------------------------------------------------------------------------------- /scripts/vim/install-context.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_CURRENT_USER\Software\Classes\*\shell\Edit with &Vim] 4 | @="Edit with &Vim" 5 | "Icon"="$vim" 6 | [HKEY_CURRENT_USER\Software\Classes\*\shell\Edit with &Vim\command] 7 | @="\"$vim\" \"%1\"" 8 | -------------------------------------------------------------------------------- /bucket/oneget.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "nightly", 3 | "description": "A package manager for Windows.", 4 | "homepage": "https://oneget.org", 5 | "license": "MIT", 6 | "url": "https://oneget.org/oneget.zip", 7 | "post_install": "Import-Module \"$dir\\OneGet.psd1\"" 8 | } 9 | -------------------------------------------------------------------------------- /bin/checkver.ps1: -------------------------------------------------------------------------------- 1 | if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = Resolve-Path (scoop prefix scoop) } 2 | $checkver = "$env:SCOOP_HOME/bin/checkver.ps1" 3 | $dir = "$PSScriptRoot/../bucket" # checks the parent dir 4 | Invoke-Expression -command "& '$checkver' -dir '$dir' $($args | ForEach-Object { "$_ " })" 5 | -------------------------------------------------------------------------------- /bin/checkurls.ps1: -------------------------------------------------------------------------------- 1 | if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = Resolve-Path (scoop prefix scoop) } 2 | $checkurls = "$env:SCOOP_HOME/bin/checkurls.ps1" 3 | $dir = "$PSScriptRoot/../bucket" # checks the parent dir 4 | Invoke-Expression -command "& '$checkurls' -dir '$dir' $($args | ForEach-Object { "$_ " })" 5 | -------------------------------------------------------------------------------- /bin/formatjson.ps1: -------------------------------------------------------------------------------- 1 | if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = Resolve-Path (scoop prefix scoop) } 2 | $formatjson = "$env:SCOOP_HOME/bin/formatjson.ps1" 3 | $path = "$PSScriptRoot/../bucket" # checks the parent dir 4 | Invoke-Expression -command "& '$formatjson' -dir '$path' $($args | ForEach-Object { "$_ " })" 5 | -------------------------------------------------------------------------------- /bin/checkhashes.ps1: -------------------------------------------------------------------------------- 1 | if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = Resolve-Path (scoop prefix scoop) } 2 | $checkhashes = "$env:SCOOP_HOME/bin/checkhashes.ps1" 3 | $dir = "$PSScriptRoot/../bucket" # checks the parent dir 4 | Invoke-Expression -Command "& '$checkhashes' -Dir '$dir' $($args | ForEach-Object { "$_ " })" 5 | -------------------------------------------------------------------------------- /bin/missing-checkver.ps1: -------------------------------------------------------------------------------- 1 | if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = Resolve-Path (scoop prefix scoop) } 2 | $missing_checkver = "$env:SCOOP_HOME/bin/missing-checkver.ps1" 3 | $dir = "$PSScriptRoot/../bucket" # checks the parent dir 4 | Invoke-Expression -command "& '$missing_checkver' -dir '$dir' $($args | ForEach-Object { "$_ " })" 5 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Since Scoop is a Windows-only tool, we can safely use CRLF line endings for all text files. 2 | # If Git decides that the content is text, its line endings will be normalized to CRLF in the working tree on checkout. 3 | # In the Git index/repository the files will always be stored with LF line endings. This is fine. 4 | * text=auto eol=crlf 5 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig (is awesome): http://EditorConfig.org 2 | 3 | # * top-most EditorConfig file 4 | root = true 5 | 6 | # default style settings 7 | [*] 8 | charset = utf-8 9 | end_of_line = crlf 10 | indent_size = 4 11 | indent_style = space 12 | insert_final_newline = true 13 | trim_trailing_whitespace = true 14 | 15 | [*.{yml,yaml}] 16 | indent_size = 2 17 | -------------------------------------------------------------------------------- /bucket/lcow.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "v4.14.35-v0.3.9", 3 | "description": "Linux containers on Windows built with LinuxKit.", 4 | "homepage": "https://github.com/linuxkit/lcow", 5 | "license": "Apache-2.0", 6 | "url": "https://github.com/linuxkit/lcow/releases/download/v4.14.35-v0.3.9/release.zip", 7 | "hash": "9d929afe79b4abd96ffa00841ed0b2178402f773bc85d4f177cdeb339afe44df" 8 | } 9 | -------------------------------------------------------------------------------- /scripts/geogebra5/uninstall-associations.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_CURRENT_USER\Software\Classes\.ggb\OpenWithProgIDs] 4 | "GeoGebra.File"=- 5 | 6 | [-HKEY_CURRENT_USER\SOFTWARE\Classes\GeoGebra.File] 7 | 8 | 9 | [HKEY_CURRENT_USER\SOFTWARE\Classes\.ggt\OpenWithProgIDs] 10 | "GeoGebra.Tool"=- 11 | 12 | [-HKEY_CURRENT_USER\SOFTWARE\Classes\GeoGebra.Tool] 13 | -------------------------------------------------------------------------------- /scripts/wezterm-nightly/uninstall-context.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [-HKEY_CURRENT_USER\SOFTWARE\Classes\Directory\shell\Open with &Wezterm] 4 | [-HKEY_CURRENT_USER\SOFTWARE\Classes\Directory\shell\Open with &Wezterm\command] 5 | [-HKEY_CURRENT_USER\SOFTWARE\Classes\Directory\Background\shell\Open with &Wezterm] 6 | [-HKEY_CURRENT_USER\SOFTWARE\Classes\Directory\Background\shell\Open with &Wezterm\command] 7 | -------------------------------------------------------------------------------- /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- 1 | on: 2 | pull_request_target: 3 | types: [ opened ] 4 | name: Pull Requests 5 | jobs: 6 | pullRequestHandler: 7 | name: PullRequestHandler 8 | runs-on: windows-latest 9 | steps: 10 | - uses: actions/checkout@main 11 | - name: PullRequestHandler 12 | uses: ScoopInstaller/GithubActions@main 13 | env: 14 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 15 | -------------------------------------------------------------------------------- /bin/auto-pr.ps1: -------------------------------------------------------------------------------- 1 | param( 2 | # overwrite upstream param 3 | [String]$upstream = 'ScoopInstaller/Versions:master' 4 | ) 5 | 6 | if (!$env:SCOOP_HOME) { $env:SCOOP_HOME = Resolve-Path (scoop prefix scoop) } 7 | $autopr = "$env:SCOOP_HOME/bin/auto-pr.ps1" 8 | $dir = "$PSScriptRoot/../bucket" # checks the parent dir 9 | Invoke-Expression -Command "& '$autopr' -dir '$dir' -upstream $upstream $($args | ForEach-Object { "$_ " })" 10 | -------------------------------------------------------------------------------- /bucket/flow030.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "v0.30.0", 3 | "description": "A static type checker for JavaScript code (version 0.30)", 4 | "homepage": "https://flowtype.org/", 5 | "license": "MIT", 6 | "url": "https://github.com/facebook/flow/releases/download/v0.30.0/flow-win64-v0.30.0.zip", 7 | "hash": "68a13e25372e6fcc9141ab076bc954c30c03ee61db8d34930f724afbdb380864", 8 | "bin": "flow.exe", 9 | "extract_dir": "flow" 10 | } 11 | -------------------------------------------------------------------------------- /bucket/flow031.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "v0.31.0", 3 | "description": "A static type checker for JavaScript code (version 0.31)", 4 | "homepage": "https://flowtype.org/", 5 | "license": "MIT", 6 | "url": "https://github.com/facebook/flow/releases/download/v0.31.0/flow-win64-v0.31.0.zip", 7 | "hash": "963a54553497f244164adfcf07a2d4c2f64a9fdb4fc66a44b2ba61e528391717", 8 | "bin": "flow.exe", 9 | "extract_dir": "flow" 10 | } 11 | -------------------------------------------------------------------------------- /scripts/windows-terminal-preview/uninstall-context.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [-HKEY_CURRENT_USER\SOFTWARE\Classes\Directory\Background\shell\Windows Terminal Preview] 4 | [-HKEY_CURRENT_USER\SOFTWARE\Classes\Directory\Background\shell\Windows Terminal Preview\command] 5 | [-HKEY_CURRENT_USER\SOFTWARE\Classes\Directory\shell\Windows Terminal Preview] 6 | [-HKEY_CURRENT_USER\SOFTWARE\Classes\Directory\shell\Windows Terminal Preview\command] 7 | -------------------------------------------------------------------------------- /.github/workflows/excavator.yml: -------------------------------------------------------------------------------- 1 | on: 2 | workflow_dispatch: 3 | schedule: 4 | # run every 4 hours 5 | - cron: '20 */4 * * *' 6 | name: Excavator 7 | jobs: 8 | excavate: 9 | name: Excavate 10 | runs-on: windows-latest 11 | steps: 12 | - uses: actions/checkout@main 13 | - name: Excavate 14 | uses: ScoopInstaller/GithubActions@main 15 | env: 16 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 17 | SKIP_UPDATED: '1' 18 | -------------------------------------------------------------------------------- /bucket/phantomjs19.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.9.8", 3 | "description": "A headless web browser scriptable with JavaScript (version 1.9)", 4 | "homepage": "https://phantomjs.org/", 5 | "license": "BSD-3-Clause", 6 | "hash": "da36853ece7d58b6f50813d3e598d8a16bb191b467ac32e1624a239a49de9104", 7 | "url": "https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-1.9.8-windows.zip", 8 | "extract_dir": "phantomjs-1.9.8-windows", 9 | "bin": "phantomjs.exe" 10 | } 11 | -------------------------------------------------------------------------------- /.github/workflows/issue_comment.yml: -------------------------------------------------------------------------------- 1 | on: 2 | issue_comment: 3 | types: [ created ] 4 | name: Commented Pull Request 5 | jobs: 6 | pullRequestHandler: 7 | name: PullRequestHandler 8 | runs-on: windows-latest 9 | steps: 10 | - uses: actions/checkout@main 11 | - name: PullRequestHandler 12 | uses: ScoopInstaller/GithubActions@main 13 | if: startsWith(github.event.comment.body, '/verify') 14 | env: 15 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 16 | -------------------------------------------------------------------------------- /bin/test.ps1: -------------------------------------------------------------------------------- 1 | #Requires -Version 5.1 2 | #Requires -Modules @{ ModuleName = 'BuildHelpers'; ModuleVersion = '2.0.1' } 3 | #Requires -Modules @{ ModuleName = 'Pester'; ModuleVersion = '5.2.0' } 4 | 5 | $pesterConfig = New-PesterConfiguration -Hashtable @{ 6 | Run = @{ 7 | Path = "$PSScriptRoot/.." 8 | PassThru = $true 9 | } 10 | Output = @{ 11 | Verbosity = 'Detailed' 12 | } 13 | } 14 | $result = Invoke-Pester -Configuration $pesterConfig 15 | exit $result.FailedCount 16 | -------------------------------------------------------------------------------- /scripts/everything/uninstall-context.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [-HKEY_CURRENT_USER\Software\Classes\Directory\shell\Everything] 4 | [-HKEY_CURRENT_USER\Software\Classes\Directory\shell\Everything\command] 5 | [-HKEY_CURRENT_USER\Software\Classes\Directory\Background\shell\Everything] 6 | [-HKEY_CURRENT_USER\Software\Classes\Directory\Background\shell\Everything\command] 7 | [-HKEY_CURRENT_USER\Software\Classes\Drive\shell\Everything] 8 | [-HKEY_CURRENT_USER\Software\Classes\Drive\shell\Everything\command] 9 | -------------------------------------------------------------------------------- /.github/workflows/issues.yml: -------------------------------------------------------------------------------- 1 | on: 2 | issues: 3 | types: [ opened, labeled ] 4 | name: Issues 5 | jobs: 6 | issueHandler: 7 | name: IssueHandler 8 | runs-on: windows-latest 9 | steps: 10 | - uses: actions/checkout@main 11 | - name: IssueHandler 12 | uses: ScoopInstaller/GithubActions@main 13 | if: github.event.action == 'opened' || (github.event.action == 'labeled' && contains(github.event.issue.labels.*.name, 'verify')) 14 | env: 15 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 16 | -------------------------------------------------------------------------------- /bucket/dartium-content-shell-dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.25.0-dev.6.0", 3 | "description": "A headless version of Dartium", 4 | "homepage": "https://dart.dev", 5 | "license": "BSD-3-Clause", 6 | "url": "https://storage.googleapis.com/dart-archive/channels/dev/release/1.25.0-dev.6.0/dartium/content_shell-windows-ia32-release.zip", 7 | "hash": "c3c53bfadc6cdc8e1c84d7219e76b569bd24f0d8673e66232199f3161af69ed6", 8 | "extract_dir": "drt-win-ia32-dev-1.25.0-dev.6.0.0", 9 | "bin": "content_shell.exe" 10 | } 11 | -------------------------------------------------------------------------------- /bucket/lightshot.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "nightly", 3 | "description": "A tool to take a customizable screenshot.", 4 | "homepage": "https://prnt.sc", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://app.prntscr.com/en/license.html" 8 | }, 9 | "url": "https://app.prntscr.com/build/setup-lightshot.exe", 10 | "innosetup": true, 11 | "bin": "Lightshot.exe", 12 | "shortcuts": [ 13 | [ 14 | "Lightshot.exe", 15 | "Lightshot" 16 | ] 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /bucket/de4dot-netcoreapp3.1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "3.1.41592.3405", 3 | "description": ".NET deobfuscator and unpacker. (for .NET Core 3.1 applications)", 4 | "homepage": "https://github.com/de4dot/de4dot", 5 | "license": "GPL-3.0-or-later", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://raw.githubusercontent.com/ScoopInstaller/Binary/master/de4dot/de4dot-netcoreapp3.1.zip", 9 | "hash": "a74ad2e188fcf0d32fda33011a3d812eaca27649c9c3e87d80ef0fdaac8193b1" 10 | } 11 | }, 12 | "bin": "de4dot.exe" 13 | } 14 | -------------------------------------------------------------------------------- /bucket/dartium-dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.25.0-dev.6.0", 3 | "description": "A special build of Chromium that includes the Dart VM", 4 | "homepage": "https://dart.dev", 5 | "license": "BSD-3-Clause", 6 | "url": "https://storage.googleapis.com/dart-archive/channels/dev/release/1.25.0-dev.6.0/dartium/dartium-windows-ia32-release.zip", 7 | "hash": "21b2d945372727c52b113d8261ca8971ab67145bd2d2224fd00015fe4444915b", 8 | "extract_dir": "dartium-win-ia32-dev-1.25.0-dev.6.0.0", 9 | "bin": [ 10 | [ 11 | "chrome.exe", 12 | "dartium" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /bucket/selenium3.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "3.141.59", 3 | "description": "A smart proxy server that allows Selenium tests to route commands to remote web browser instances", 4 | "homepage": "https://selenium.dev", 5 | "license": "Apache-2.0", 6 | "suggest": { 7 | "JDK": [ 8 | "java/openjdk", 9 | "java/oraclejdk" 10 | ] 11 | }, 12 | "url": "https://selenium-release.storage.googleapis.com/3.141/selenium-server-standalone-3.141.59.jar#/selenium.jar", 13 | "hash": "acf71b77d1b66b55db6fb0bed6d8bae2bbd481311bcbedfeff472c0d15e8f3cb", 14 | "bin": "selenium.jar" 15 | } 16 | -------------------------------------------------------------------------------- /scripts/wezterm-nightly/install-context.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_CURRENT_USER\SOFTWARE\Classes\Directory\shell\Open with &Wezterm] 4 | @="Open with &Wezterm" 5 | "Icon"="$weztermPath" 6 | 7 | [HKEY_CURRENT_USER\SOFTWARE\Classes\Directory\shell\Open with &Wezterm\command] 8 | @="\"$weztermPath\" start --cwd \"%v\"" 9 | 10 | [HKEY_CURRENT_USER\SOFTWARE\Classes\Directory\Background\shell\Open with &Wezterm] 11 | @="Open with &Wezterm" 12 | "Icon"="$weztermPath" 13 | 14 | [HKEY_CURRENT_USER\SOFTWARE\Classes\Directory\Background\shell\Open with &Wezterm\command] 15 | @="\"$weztermPath\" start --cwd \"%v\"" 16 | -------------------------------------------------------------------------------- /bucket/gradle4.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "4.10.3", 3 | "description": "An open-source build automation tool focused on flexibility and performance. (Source code and documentation boundled)", 4 | "homepage": "https://gradle.org", 5 | "license": "Apache-2.0", 6 | "hash": "336b6898b491f6334502d8074a6b8c2d73ed83b92123106bd4bf837f04111043", 7 | "url": "https://services.gradle.org/distributions/gradle-4.10.3-all.zip", 8 | "extract_dir": "gradle-4.10.3", 9 | "bin": "bin\\gradle.bat", 10 | "suggest": { 11 | "JDK": [ 12 | "java/oraclejdk", 13 | "java/openjdk" 14 | ] 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /bucket/gradle5.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "5.6.4", 3 | "description": "An open-source build automation tool focused on flexibility and performance. (Source code and documentation boundled)", 4 | "homepage": "https://gradle.org", 5 | "license": "Apache-2.0", 6 | "hash": "abc10bcedb58806e8654210f96031db541bcd2d6fc3161e81cb0572d6a15e821", 7 | "url": "https://services.gradle.org/distributions/gradle-5.6.4-all.zip", 8 | "extract_dir": "gradle-5.6.4", 9 | "bin": "bin\\gradle.bat", 10 | "suggest": { 11 | "JDK": [ 12 | "java/oraclejdk", 13 | "java/openjdk" 14 | ] 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /bucket/gradle6.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "6.9.2", 3 | "description": "An open-source build automation tool focused on flexibility and performance. (Source code and documentation boundled)", 4 | "homepage": "https://gradle.org", 5 | "license": "Apache-2.0", 6 | "hash": "8bde5c859a3ddf5d127ac77465fc24fa8a831d3d8d49e8248548f2cb87485ef1", 7 | "url": "https://services.gradle.org/distributions/gradle-6.9.2-all.zip", 8 | "extract_dir": "gradle-6.9.2", 9 | "bin": "bin\\gradle.bat", 10 | "suggest": { 11 | "JDK": [ 12 | "java/oraclejdk", 13 | "java/openjdk" 14 | ] 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /bucket/gradle7.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "7.6.1", 3 | "description": "An open-source build automation tool focused on flexibility and performance. (Source code and documentation boundled)", 4 | "homepage": "https://gradle.org", 5 | "license": "Apache-2.0", 6 | "hash": "518a863631feb7452b8f1b3dc2aaee5f388355cc3421bbd0275fbeadd77e84b2", 7 | "url": "https://services.gradle.org/distributions/gradle-7.6.1-all.zip", 8 | "extract_dir": "gradle-7.6.1", 9 | "bin": "bin\\gradle.bat", 10 | "suggest": { 11 | "JDK": [ 12 | "java/oraclejdk", 13 | "java/openjdk" 14 | ] 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /bucket/nuget3.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "3.5.0", 3 | "description": "The package manager for .NET (version 3)", 4 | "homepage": "https://www.nuget.org/", 5 | "license": "Apache-2.0", 6 | "url": "https://dist.nuget.org/win-x86-commandline/v3.5.0/NuGet.exe", 7 | "hash": "399ec24c26ed54d6887cde61994bb3d1cada7956c1b19ff880f06f060c039918", 8 | "bin": "NuGet.exe", 9 | "checkver": { 10 | "url": "https://dist.nuget.org/index.json", 11 | "regex": "v(3[\\d.]+)/nuget.exe" 12 | }, 13 | "autoupdate": { 14 | "url": "https://dist.nuget.org/win-x86-commandline/v$version/NuGet.exe" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /bucket/xmind8.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "3.7.9", 3 | "description": "A popular and classic mind mapping tool", 4 | "homepage": "https://www.xmind.net/xmind8-pro/", 5 | "license": { 6 | "identifier": "Shareware", 7 | "url": "https://www.xmind.net/terms/" 8 | }, 9 | "url": "https://www.xmind.net/xmind/downloads/xmind-8-update9-windows.zip", 10 | "hash": "126da4b6a5542f0b0846109d7163932ed32bdb6fb9c90382b4fc61c115ea80cf", 11 | "extract_dir": "XMind 8 Update 9", 12 | "shortcuts": [ 13 | [ 14 | "XMind.exe", 15 | "XMind" 16 | ] 17 | ], 18 | "persist": "workspace" 19 | } 20 | -------------------------------------------------------------------------------- /bucket/glslang-nightly.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "nightly", 3 | "description": "The official reference compiler front end for the OpenGL ES and OpenGL shading languages. (nightly version)", 4 | "homepage": "https://www.khronos.org/opengles/sdk/tools/Reference-Compiler/", 5 | "license": { 6 | "identifier": "Freeware,MIT,...", 7 | "url": "https://github.com/KhronosGroup/glslang/blob/master/LICENSE.txt" 8 | }, 9 | "url": "https://github.com/KhronosGroup/glslang/releases/download/master-tot/glslang-master-windows-x64-Release.zip", 10 | "bin": [ 11 | "bin\\glslangValidator.exe", 12 | "bin\\spirv-remap.exe" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /bucket/love6.json: -------------------------------------------------------------------------------- 1 | { 2 | "homepage": "https://love2d.org/", 3 | "description": "LÖVE is an open-source 2D game framework for Lua.", 4 | "version": "0.6.2", 5 | "license": "Zlib", 6 | "url": "https://github.com/love2d/love/releases/download/0.6.2/love-0.6.2-win-x86.zip", 7 | "hash": "f8725981e5d3437255fb4e4eb0fa308b3097d7689bd4abb699ce3dfba59bed4a", 8 | "extract_dir": "love", 9 | "bin": [ 10 | "love.exe", 11 | [ 12 | "love.exe", 13 | "love0.6" 14 | ] 15 | ], 16 | "shortcuts": [ 17 | [ 18 | "love.exe", 19 | "LÖVE 0.6" 20 | ] 21 | ] 22 | } 23 | -------------------------------------------------------------------------------- /bucket/edgedriver-legacy.json: -------------------------------------------------------------------------------- 1 | { 2 | "homepage": "https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver", 3 | "version": "6.17134", 4 | "license": { 5 | "identifier": "Freeware", 6 | "url": "https://az813057.vo.msecnd.net/eulas/webdriver-eula.pdf" 7 | }, 8 | "description": "Close the loop on your developer cycle by automating testing of your website in Microsoft Edge (EdgeHTML).", 9 | "url": "https://download.microsoft.com/download/F/8/A/F8AF50AB-3C3A-4BC4-8773-DC27B32988DD/MicrosoftWebDriver.exe", 10 | "hash": "6E8182697EA5189491B5519D8496A3392E43741B7C0515130F2F8205881D208E", 11 | "bin": "MicrosoftWebDriver.exe" 12 | } 13 | -------------------------------------------------------------------------------- /bucket/love7.json: -------------------------------------------------------------------------------- 1 | { 2 | "homepage": "https://love2d.org/", 3 | "description": "LÖVE is an open-source 2D game framework for Lua.", 4 | "version": "0.7.2", 5 | "license": "Zlib", 6 | "url": "https://github.com/love2d/love/releases/download/0.7.2/love-0.7.2-win-x86.zip", 7 | "hash": "2a12fefb0b68823cf039f1532ac51e0f1aee799bd94e8ad81c124d3698029964", 8 | "extract_dir": "love-0.7.2-win-x86", 9 | "bin": [ 10 | "love.exe", 11 | [ 12 | "love.exe", 13 | "love0.7" 14 | ] 15 | ], 16 | "shortcuts": [ 17 | [ 18 | "love.exe", 19 | "LÖVE 0.7" 20 | ] 21 | ] 22 | } 23 | -------------------------------------------------------------------------------- /bucket/zip-beta.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "3.1d26", 3 | "description": "Zip compression utilities (beta version)", 4 | "homepage": "http://infozip.sourceforge.net/", 5 | "license": "Info-ZIP", 6 | "bin": [ 7 | "zip.exe", 8 | "zipcloak.exe", 9 | "zipnote.exe", 10 | "zipsplit.exe" 11 | ], 12 | "url": "http://r.windows.random.supplies/zip3.1d26.zip", 13 | "hash": "822b1a808636e28d0c67e76572a21dc2bc1b2a1c092cc01c762c883e2c2cbd63", 14 | "architecture": { 15 | "64bit": { 16 | "extract_dir": "x64" 17 | }, 18 | "32bit": { 19 | "extract_dir": "x32" 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /scripts/windows-terminal-preview/install-context.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_CURRENT_USER\SOFTWARE\Classes\Directory\Background\shell\Windows Terminal Preview] 4 | @="Open in Windows &Terminal Preview" 5 | "Icon"="$wt\\WindowsTerminal.exe" 6 | [HKEY_CURRENT_USER\SOFTWARE\Classes\Directory\Background\shell\Windows Terminal Preview\command] 7 | @="\"$wt\\wt.exe\" -d \"%V\"" 8 | 9 | [HKEY_CURRENT_USER\SOFTWARE\Classes\Directory\shell\Windows Terminal Preview] 10 | @="Open in Windows &Terminal Preview" 11 | "Icon"="$wt\\WindowsTerminal.exe" 12 | [HKEY_CURRENT_USER\SOFTWARE\Classes\Directory\shell\Windows Terminal Preview\command] 13 | @="\"$wt\\wt.exe\" -d \"%V\"" 14 | -------------------------------------------------------------------------------- /scripts/prismlauncher-git/uninstall-associations.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [-HKEY_CURRENT_USER\Software\Classes\prismlauncher.exe] 4 | 5 | [-HKEY_CURRENT_USER\Software\Classes\Applications\prismlauncher.exe] 6 | 7 | [HKEY_CURRENT_USER\Software\RegisteredApplications] 8 | "Prism Launcher"=- 9 | 10 | [HKEY_CURRENT_USER\Software\Classes\.zip\OpenWithList] 11 | "prismlauncher.exe"=- 12 | 13 | [HKEY_CURRENT_USER\Software\Classes\.zip\OpenWithProgids] 14 | "prismlauncher.exe"=- 15 | 16 | [HKEY_CURRENT_USER\Software\Classes\.mrpack\OpenWithList] 17 | "prismlauncher.exe"=- 18 | 19 | [HKEY_CURRENT_USER\Software\Classes\.mrpack\OpenWithProgids] 20 | "prismlauncher.exe"=- 21 | -------------------------------------------------------------------------------- /scripts/prismlauncher-qt5-git/uninstall-associations.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [-HKEY_CURRENT_USER\Software\Classes\prismlauncher.exe] 4 | 5 | [-HKEY_CURRENT_USER\Software\Classes\Applications\prismlauncher.exe] 6 | 7 | [HKEY_CURRENT_USER\Software\RegisteredApplications] 8 | "Prism Launcher"=- 9 | 10 | [HKEY_CURRENT_USER\Software\Classes\.zip\OpenWithList] 11 | "prismlauncher.exe"=- 12 | 13 | [HKEY_CURRENT_USER\Software\Classes\.zip\OpenWithProgids] 14 | "prismlauncher.exe"=- 15 | 16 | [HKEY_CURRENT_USER\Software\Classes\.mrpack\OpenWithList] 17 | "prismlauncher.exe"=- 18 | 19 | [HKEY_CURRENT_USER\Software\Classes\.mrpack\OpenWithProgids] 20 | "prismlauncher.exe"=- 21 | -------------------------------------------------------------------------------- /bucket/git19.json: -------------------------------------------------------------------------------- 1 | { 2 | "homepage": "https://git-for-windows.github.io/", 3 | "description": "A free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.", 4 | "license": "GPL-2.0-only", 5 | "version": "1.9.5-preview20150319", 6 | "url": "https://github.com/msysgit/msysgit/releases/download/Git-1.9.5-preview20150319/PortableGit-1.9.5-preview20150319.7z", 7 | "hash": "26261872847b18d171a197c8e4b3f4c0e60b4310c4b8ef1f4d9884950288aa7c", 8 | "bin": [ 9 | "cmd\\git.exe", 10 | "cmd\\gitk.cmd" 11 | ], 12 | "post_install": "git config --global credential.helper wincred" 13 | } 14 | -------------------------------------------------------------------------------- /bucket/steam-mover.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.1", 3 | "description": "GUI for moving a folder and leaving a symbolic link/junction behind", 4 | "homepage": "https://www.traynier.com/software/steammover", 5 | "license": "Freeware", 6 | "notes": [ 7 | "This program has not been tested on Windows 10 and Windows 11.", 8 | "Things may break." 9 | ], 10 | "url": "https://github.com/traynier/traynier.github.io/raw/master/files/SteamMover_v0_1.zip", 11 | "hash": "1509EC0E10DCBB9E0CF3F730D5BD9FED24B3319202071850C1AF1AB0E8D6D810", 12 | "shortcuts": [ 13 | [ 14 | "SteamMover.exe", 15 | "Steam Mover" 16 | ] 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /bucket/rust-nightly.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "nightly", 3 | "description": "A language empowering everyone to build reliable and efficient software.", 4 | "homepage": "https://www.rust-lang.org", 5 | "license": "MIT|Apache-2.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://static.rust-lang.org/dist/rust-nightly-x86_64-pc-windows-gnu.msi" 9 | }, 10 | "32bit": { 11 | "url": "https://static.rust-lang.org/dist/rust-nightly-i686-pc-windows-gnu.msi" 12 | } 13 | }, 14 | "extract_dir": "Rust", 15 | "bin": [ 16 | "bin\\rustc.exe", 17 | "bin\\rustdoc.exe", 18 | "bin\\cargo.exe" 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /bucket/sbt013.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.13.16", 3 | "description": "A build tool for Scala, Java, and more (version 0.13)", 4 | "homepage": "https://www.scala-sbt.org/", 5 | "license": "Apache-2.0", 6 | "url": "https://cocl.us/sbt01316zip#/dl.zip", 7 | "hash": "e94d95ff2d64247b754782ea85e99187ea890dc4c918a7ba7dcb6091fdb5968c", 8 | "extract_dir": "sbt", 9 | "bin": "bin\\sbt.bat", 10 | "checkver": { 11 | "url": "https://www.scala-sbt.org/0.13/docs/index.html", 12 | "regex": "applies to sbt ([\\d.]+)\\." 13 | }, 14 | "autoupdate": { 15 | "url": "https://cocl.us/sbt$cleanVersionzip#/dl.zip", 16 | "extract_dir": "sbt" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /bucket/rust-msvc-nightly.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "nightly", 3 | "description": "A language empowering everyone to build reliable and efficient software.", 4 | "homepage": "https://www.rust-lang.org", 5 | "license": "MIT|Apache-2.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://static.rust-lang.org/dist/rust-nightly-x86_64-pc-windows-msvc.msi" 9 | }, 10 | "32bit": { 11 | "url": "https://static.rust-lang.org/dist/rust-nightly-i686-pc-windows-msvc.msi" 12 | } 13 | }, 14 | "extract_dir": "Rust", 15 | "bin": [ 16 | "bin\\rustc.exe", 17 | "bin\\rustdoc.exe", 18 | "bin\\cargo.exe" 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /bucket/azuredatastudio-insiders.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "nightly", 3 | "description": "A cross-platform database tool for data professionals using the Microsoft family of on-premises and cloud data platforms.", 4 | "homepage": "https://docs.microsoft.com/en-us/sql/azure-data-studio", 5 | "license": "MIT", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://azuredatastudio-update.azurewebsites.net/latest/win32-x64-archive/insider#/dl.7z" 9 | } 10 | }, 11 | "bin": "bin\\azuredatastudio-insiders.cmd", 12 | "shortcuts": [ 13 | [ 14 | "azuredatastudio-insiders.exe", 15 | "Azure Data Studio - Insiders" 16 | ] 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /bucket/springboot15.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.5.22", 3 | "description": "Create stand-alone, production-grade Spring based Applications that you can \"just run\". (version 1.5)", 4 | "homepage": "https://spring.io/projects/spring-boot", 5 | "license": "Apache-2.0", 6 | "hash": "96be1826be364f04cdc267aad74134ef46cc8c46a0b795f91aca2c4af831d11f", 7 | "url": "https://repo.spring.io/release/org/springframework/boot/spring-boot-cli/1.5.22.RELEASE/spring-boot-cli-1.5.22.RELEASE-bin.zip", 8 | "extract_dir": "spring-1.5.22.RELEASE", 9 | "bin": "bin\\spring.bat", 10 | "suggest": { 11 | "JDK": [ 12 | "java/oraclejdk", 13 | "java/openjdk" 14 | ] 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /bucket/audacity2.4.2.json: -------------------------------------------------------------------------------- 1 | { 2 | "##": "The last version of Audacity that does not collect user data.", 3 | "version": "2.4.2", 4 | "description": "Audacity is an easy-to-use, multi-track audio editor and recorder for Windows, macOS, GNU/Linux and other operating systems. (version 2.4.2)", 5 | "homepage": "https://www.audacityteam.org", 6 | "license": "GPL-2.0-or-later", 7 | "url": "https://raw.githubusercontent.com/ScoopInstaller/Binary/master/audacity/audacity-2.4.2.zip", 8 | "hash": "0c14f7c6850c93b9dacc14fe66876b8dc3397d92dbd849898783a21bad1fff55", 9 | "bin": "audacity.exe", 10 | "shortcuts": [ 11 | [ 12 | "audacity.exe", 13 | "Audacity" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /bucket/oh-my-posh2.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0.496", 3 | "description": "A prompt theming engine for Powershell running in ConEmu", 4 | "homepage": "https://github.com/JanDeDobbeleer/oh-my-posh2", 5 | "license": "MIT", 6 | "notes": [ 7 | "Deprecated. Use 'main/oh-my-posh3'", 8 | "Oh-My-Posh must be manually enabled (add to $Profile to make it permanent):", 9 | "Import-Module oh-my-posh" 10 | ], 11 | "depends": "extras/posh-git", 12 | "url": "https://github.com/JanDeDobbeleer/oh-my-posh2/releases/download/2.0.496/oh-my-posh.zip", 13 | "hash": "48d20c92cd97f4ac513f632a67b5a24c8362e1f0d0d990d336ac22159abdc7d7", 14 | "psmodule": { 15 | "name": "oh-my-posh" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /bucket/orca3.json: -------------------------------------------------------------------------------- 1 | { 2 | "homepage": "https://msdn.microsoft.com/en-us/library/windows/desktop/aa370557(v=vs.85).aspx", 3 | "version": "3.1.4000.1830", 4 | "license": "Freeware(MS-EULA)", 5 | "description": "Windows Installer Table Editor", 6 | "notes": "Orca is now part of the Windows SDK. https://developer.microsoft.com/en-us/windows/downloads/windows-10-sdk", 7 | "url": "https://raw.githubusercontent.com/ScoopInstaller/Binary/master/orca/Orca.Msi", 8 | "hash": "119FC6D2D9A872477A4B12DD43C637E8DD9F7705A26CD9A79A9F0C90C2AA9F45", 9 | "post_install": [ 10 | "# Copy binaries to db location", 11 | "copy \"$dir\\Orca\\*.*\" \"$dir\\Orca\\WinNT\"" 12 | ], 13 | "bin": "Orca\\WinNT\\Orca.exe" 14 | } 15 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/hash-error.yml: -------------------------------------------------------------------------------- 1 | name: 🔢 Hash Error 2 | description: Open an issue about a package's hash is incorrect. 3 | labels: ["bug"] 4 | body: 5 | - type: checkboxes 6 | attributes: 7 | label: Prerequisites 8 | options: 9 | - label: I have used the predefined issue title. (e.g. "xxx@xxx: hash check failed") 10 | required: true 11 | - label: I have verified that I am using the latest version of Scoop and corresponding bucket. 12 | required: true 13 | - type: input 14 | attributes: 15 | label: Package Name and Version 16 | description: Name and version of package (install name) which has incorrect hash. 17 | placeholder: e.g. 7zip@21.00 (not '7-Zip') 18 | validations: 19 | required: true 20 | -------------------------------------------------------------------------------- /bucket/de4dot-net35.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "3.1.41592.3405", 3 | "description": ".NET deobfuscator and unpacker. (for .NET 3.5 applications)", 4 | "homepage": "https://github.com/de4dot/de4dot", 5 | "license": "GPL-3.0-or-later", 6 | "url": "https://raw.githubusercontent.com/ScoopInstaller/Binary/master/de4dot/de4dot-net35.zip", 7 | "hash": "edfa47b3c2d6367a7aca5ac51d0fa12a9a7d809f689acdf7a6466895e2bce9e6", 8 | "architecture": { 9 | "64bit": { 10 | "bin": [ 11 | [ 12 | "de4dot-x64.exe", 13 | "de4dot" 14 | ] 15 | ] 16 | }, 17 | "32bit": { 18 | "bin": "de4dot.exe" 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /bucket/de4dot-net45.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "3.1.41592.3405", 3 | "description": ".NET deobfuscator and unpacker. (for .NET 4.5 applications)", 4 | "homepage": "https://github.com/de4dot/de4dot", 5 | "license": "GPL-3.0-or-later", 6 | "url": "https://raw.githubusercontent.com/ScoopInstaller/Binary/master/de4dot/de4dot-net45.zip", 7 | "hash": "2d8942d0a63fab2d8e78827488c5cb7e2b6a8108ab2e5c3194359779a611f5ba", 8 | "architecture": { 9 | "64bit": { 10 | "bin": [ 11 | [ 12 | "de4dot-x64.exe", 13 | "de4dot" 14 | ] 15 | ] 16 | }, 17 | "32bit": { 18 | "bin": "de4dot.exe" 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /bucket/helm2.json: -------------------------------------------------------------------------------- 1 | { 2 | "homepage": "https://helm.sh", 3 | "description": "The package manager for Kubernetes", 4 | "license": "Apache-2.0", 5 | "notes": "Helm 2 reached End of Life on November 13, 2020. To migrate to v3, read the guide here: https://helm.sh/docs/topics/v2_v3_migration/", 6 | "version": "2.17.0", 7 | "architecture": { 8 | "64bit": { 9 | "url": "https://get.helm.sh/helm-v2.17.0-windows-amd64.zip", 10 | "hash": "048147ef523f88753ba34170f2f6acd01ac6ec688c6f5973b0e5ffb0b113a232" 11 | } 12 | }, 13 | "extract_dir": "windows-amd64", 14 | "bin": [ 15 | "helm.exe", 16 | [ 17 | "helm.exe", 18 | "helm2" 19 | ] 20 | ] 21 | } 22 | -------------------------------------------------------------------------------- /scripts/beyondcompare4/uninstall-context.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [-HKEY_CURRENT_USER\Software\Classes\CLSID\{57FA2D12-D22D-490A-805A-5CB48E84F12A}] 4 | [-HKEY_CURRENT_USER\Software\Wow6432Node\Classes\CLSID\{57FA2D12-D22D-490A-805A-5CB48E84F12A}] 5 | 6 | [-HKEY_CURRENT_USER\Software\Classes\*\shellex\ContextMenuHandlers\CirrusShellEx] 7 | [-HKEY_CURRENT_USER\Software\Classes\Directory\shellex\ContextMenuHandlers\CirrusShellEx] 8 | [-HKEY_CURRENT_USER\Software\Classes\Folder\shellex\ContextMenuHandlers\CirrusShellEx] 9 | [-HKEY_CURRENT_USER\Software\Classes\lnkfile\shellex\ContextMenuHandlers\CirrusShellEx] 10 | 11 | [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Shell Extensions\Approved] 12 | "{57FA2D12-D22D-490A-805A-5CB48E84F12A}"=- 13 | -------------------------------------------------------------------------------- /scripts/zotero/install-zotero-url-protocol.ps1: -------------------------------------------------------------------------------- 1 | Write-Host 'Registering the ''zotero://'' URL protocol...' 2 | New-Item 'HKCU:\SOFTWARE\Classes\zotero' -Value 'Zotero Protocol' -Force | Out-Null 3 | New-Item 'HKCU:\SOFTWARE\Classes\zotero\DefaultIcon' -Value "REPLACE_HERE\zotero.exe,1" -Force | Out-Null 4 | New-Item 'HKCU:\SOFTWARE\Classes\zotero\shell\open\command' -Value """REPLACE_HERE\zotero.exe"" -url ""%1""" -Force | Out-Null 5 | New-ItemProperty 'HKCU:\SOFTWARE\Classes\zotero' -Name 'FriendlyTypeName' -Value 'Zotero Protocol' -Force | Out-Null 6 | New-ItemProperty 'HKCU:\SOFTWARE\Classes\zotero' -Name 'URL Protocol' -Value '' -Force | Out-Null 7 | New-ItemProperty 'HKCU:\SOFTWARE\Classes\zotero' -Name 'EditFlags' -PropertyType 'DWord' -Value '2' -Force | Out-Null 8 | Write-Host 'Done!' 9 | -------------------------------------------------------------------------------- /bucket/ubisoftconnect.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "nightly", 3 | "description": "Ubisoft PC games Launcher", 4 | "homepage": "https://ubisoftconnect.com", 5 | "license": { 6 | "identifier": "Shareware", 7 | "url": "https://legal.ubi.com/termsofuse/" 8 | }, 9 | "url": "https://ubistatic3-a.akamaihd.net/orbit/launcher_installer/UbisoftConnectInstaller.exe#/dl.7z", 10 | "pre_install": "Remove-Item \"$dir\\`$*\", \"$dir\\Uninstall*\" -Force -Recurse", 11 | "shortcuts": [ 12 | [ 13 | "UbisoftConnect.exe", 14 | "Ubisoft Connect" 15 | ] 16 | ], 17 | "persist": [ 18 | "games", 19 | "savegames", 20 | "cache\\download", 21 | "cache\\installers" 22 | ] 23 | } 24 | -------------------------------------------------------------------------------- /bucket/iperf3.5.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "3.5", 3 | "description": "Tool for measuring the maximum achievable bandwidth on IP networks (last 32bit version)", 4 | "homepage": "https://iperf.fr/", 5 | "license": "BSD-3-Clause", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://files.budman.pw/iperf3.5_64.zip", 9 | "hash": "94a0ec4e486904a6a8ebe390eca37871f47a097599908c3647d6ad1d0bbdff59", 10 | "extract_dir": "iperf3.5_64" 11 | }, 12 | "32bit": { 13 | "url": "https://files.budman.pw/iperf3.5_32.zip", 14 | "hash": "bf4b95a58e54ceda101e33b0b908c581df1ce4a217f233e1092dc3278572de43", 15 | "extract_dir": "iperf3.5_32" 16 | } 17 | }, 18 | "bin": "iperf3.exe" 19 | } 20 | -------------------------------------------------------------------------------- /bucket/premake4.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "4.4-beta5", 3 | "description": "Automatically generate build configurations for multiple and widely used toolsets using one universal definition. (version 4)", 4 | "homepage": "https://premake.github.io/", 5 | "license": "BSD-3-Clause", 6 | "url": "https://downloads.sourceforge.net/project/premake/Premake/4.4/premake-4.4-beta5-windows.zip", 7 | "hash": "sha1:25e4ddb022944ae7064d73467b38f5b75823aaf1", 8 | "bin": "premake4.exe", 9 | "checkver": { 10 | "url": "https://premake.github.io/download.html", 11 | "regex": "premake-(4[0-9a-z.-]+)-windows" 12 | }, 13 | "autoupdate": { 14 | "url": "https://downloads.sourceforge.net/project/premake/Premake/$matchHead/premake-$version-windows.zip" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /bucket/uplay.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "nightly", 3 | "description": "Your home for Ubisoft PC games.", 4 | "homepage": "https://uplay.ubisoft.com", 5 | "license": { 6 | "identifier": "Shareware", 7 | "url": "https://legal.ubi.com/termsofuse/" 8 | }, 9 | "notes": "Deprecated. Install using extras/ubisoftconnect", 10 | "url": "https://ubistatic3-a.akamaihd.net/orbit/launcher_installer/UplayInstaller.exe#/dl.7z", 11 | "post_install": "Remove-Item \"$dir\\`$PLUGINSDIR\" -Force -Recurse", 12 | "persist": [ 13 | "games", 14 | "savegames", 15 | "cache\\installers" 16 | ], 17 | "bin": "Uplay.exe", 18 | "shortcuts": [ 19 | [ 20 | "Uplay.exe", 21 | "Uplay" 22 | ] 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /bucket/ipfilter-nightly.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1766553050", 3 | "description": "Protects privacy and security when using Bit Torrent by blocking a list of potentially malicious peers.", 4 | "homepage": "https://www.ipfilter.app/", 5 | "license": "MIT", 6 | "url": "https://github.com/DavidMoore/ipfilter/releases/download/lists/ipfilter.zip", 7 | "hash": "7085dded031339818864271f0fbe27702ea6d466dc117954415df9404d737dbe", 8 | "checkver": { 9 | "script": "try { Get-Date (Invoke-RestMethod https://api.github.com/repositories/487352/releases/tags/lists).assets[0].updated_at -UFormat %s } catch { '' }", 10 | "regex": "\\A(\\d+)\\Z" 11 | }, 12 | "autoupdate": { 13 | "url": "https://github.com/DavidMoore/ipfilter/releases/download/lists/ipfilter.zip" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /bucket/premake5.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "5.0.0-alpha15", 3 | "description": "Automatically generate build configurations for multiple and widely used toolsets using one universal definition. (version 5)", 4 | "homepage": "https://premake.github.io/", 5 | "license": "BSD-3-Clause", 6 | "url": "https://github.com/premake/premake-core/releases/download/v5.0.0-alpha15/premake-5.0.0-alpha15-windows.zip", 7 | "hash": "a8b9fc87ec06b8fa52587f62be2574bf151c5facadbad99db31b7d4ce6ef1eab", 8 | "bin": "premake5.exe", 9 | "checkver": { 10 | "url": "https://premake.github.io/download.html", 11 | "regex": "v(5[0-9a-z.-]+)" 12 | }, 13 | "autoupdate": { 14 | "url": "https://github.com/premake/premake-core/releases/download/v$version/premake-$version-windows.zip" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /bucket/lynx283.json: -------------------------------------------------------------------------------- 1 | { 2 | "##": "moved from https://raw.githubusercontent.com/ScoopInstaller/scoop/dc859edce45c7cf723fbcda9f6c462028ca7e2f6/bucket/lynx.json", 3 | "version": "2.8.3", 4 | "description": "Text web browser (version 2.8.3)", 5 | "homepage": "https://invisible-island.net/lynx/lynx.html", 6 | "license": "GPL-2.0-only", 7 | "extract_dir": "lynx_w32", 8 | "url": "http://www.vordweb.co.uk/standards/lynx_v283.zip", 9 | "hash": "552bc68afd2ff9a5de88f26d76f55dd8697cf6082c6afb01b3d1a9942f4d3ee0", 10 | "bin": "lynx.cmd", 11 | "persist": "$dir/lynx.cfg", 12 | "pre_install": [ 13 | "$q = [char]34", 14 | "set-content \"$dir/lynx.cfg\" -value $null", 15 | "set-content \"$dir/lynx.cmd\" -value \"@$q$dir\\lynx.exe$q --cfg=$q$dir\\lynx.cfg$q %*\"" 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /bucket/innounp-unicode.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.66.1", 3 | "description": "Inno Setup Unpacker (Unicode)", 4 | "homepage": "https://www.rathlev-home.de/tools/prog-e.html#unpack", 5 | "license": "GPL-3.0-only", 6 | "url": "https://raw.githubusercontent.com/jrathlev/InnoUnpacker-Windows-GUI/refs/heads/master/innounp-2/bin/innounp-2.zip", 7 | "hash": "0c9f832cf20fac178e46d843b921c5fc3eb110b381894d21455feb01e56c8910", 8 | "bin": "innounp.exe", 9 | "checkver": { 10 | "url": "https://raw.githubusercontent.com/jrathlev/InnoUnpacker-Windows-GUI/refs/heads/master/innounp-2/docs/innounp.htm", 11 | "regex": ">Version ([\\d.]+)" 12 | }, 13 | "autoupdate": { 14 | "url": "https://raw.githubusercontent.com/jrathlev/InnoUnpacker-Windows-GUI/refs/heads/master/innounp-2/bin/innounp-2.zip" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /scripts/jetbrains/portable.ps1: -------------------------------------------------------------------------------- 1 | param([Parameter(Mandatory)][String] $dir, [Parameter(Mandatory)][String] $persist_dir) 2 | 3 | if (!(Test-Path "$persist_dir\IDE\bin\idea.properties")) { 4 | info 'Copying idea.properties file...' 5 | 6 | $current = (Split-Path $dir | Join-Path -ChildPath 'current') -replace '\\', '/' 7 | 8 | $CONT = Get-Content "$dir\IDE\bin\idea.properties" 9 | $CONT = $CONT -replace '^#\s*(idea.config.path=).*$', "`$1$current/profile/config" 10 | $CONT = $CONT -replace '^#\s*(idea.system.path=).*$', "`$1$current/profile/system" 11 | $CONT = $CONT -replace '^#\s*(idea.plugins.path=).*$', '$1${idea.config.path}/plugins' 12 | $CONT = $CONT -replace '^#\s*(idea.log.path=).*$', '$1${idea.system.path}/log' 13 | 14 | Set-Content -LiteralPath "$dir\IDE\bin\idea.properties" -Value $CONT -Encoding 'Ascii' -Force 15 | } 16 | -------------------------------------------------------------------------------- /bucket/postman9.json: -------------------------------------------------------------------------------- 1 | { 2 | "##": "The reason for this manifest's existence is because postman v10 is currently unusable.", 3 | "version": "9.31.0", 4 | "description": "An early version of the complete API development environment.", 5 | "homepage": "https://www.getpostman.com/", 6 | "license": { 7 | "identifier": "Freeware", 8 | "url": "https://www.getpostman.com/licenses/postman_eula" 9 | }, 10 | "architecture": { 11 | "64bit": { 12 | "url": "https://dl.pstmn.io/download/9.31.0/Postman-win64-9.31.0-full.nupkg", 13 | "hash": "29CD778C52D64C4AFAB765ADDA1849308D86F363579C4BE0C15C041447F099AB" 14 | } 15 | }, 16 | "extract_dir": "lib\\net45", 17 | "shortcuts": [ 18 | [ 19 | "Postman.exe", 20 | "Postman" 21 | ] 22 | ] 23 | } 24 | -------------------------------------------------------------------------------- /bucket/posh-git-beta.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.1.0", 3 | "description": "A PowerShell module which provides Git/PowerShell integration. (beta version)", 4 | "homepage": "https://dahlbyk.github.io/posh-git/", 5 | "license": "MIT", 6 | "url": "https://github.com/dahlbyk/posh-git/archive/refs/tags/v1.1.0.zip", 7 | "hash": "36b13c1b52aab5cd411c7c333ededfcb5c4b3d2b1ef895f2f13cede203cfe73a", 8 | "extract_dir": "posh-git-1.1.0\\src", 9 | "psmodule": { 10 | "name": "posh-git" 11 | }, 12 | "checkver": { 13 | "url": "https://github.com/dahlbyk/posh-git/releases", 14 | "regex": "releases/tag/v([\\d.]+(?:-beta\\w*)?)" 15 | }, 16 | "autoupdate": { 17 | "url": "https://github.com/dahlbyk/posh-git/archive/refs/tags/v$version.zip", 18 | "extract_dir": "posh-git-$version\\src" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /bucket/jdownloader.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "nightly", 3 | "description": "Download management tool", 4 | "homepage": "https://jdownloader.org", 5 | "license": "Shareware|AGPL-3.0-only", 6 | "suggest": { 7 | "JRE": "java/temurin8-jre" 8 | }, 9 | "url": [ 10 | "http://installer.jdownloader.org/JDownloader.jar", 11 | "http://jdownloader.org/lib/tpl/arctic/images/favicon.ico#/icon.ico" 12 | ], 13 | "pre_install": "Set-Content \"$dir\\JDownloader.bat\" '@start javaw.exe -jar \"%~dp0JDownloader.jar\"' -Encoding Ascii", 14 | "bin": "JDownloader.jar", 15 | "shortcuts": [ 16 | [ 17 | "JDownloader.bat", 18 | "JDownloader", 19 | "", 20 | "icon.ico" 21 | ] 22 | ], 23 | "persist": [ 24 | "cfg", 25 | "logs" 26 | ] 27 | } 28 | -------------------------------------------------------------------------------- /bucket/xdman-beta.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "8.0.29", 3 | "homepage": "https://xtremedownloadmanager.com/", 4 | "description": "Beta builds of Xtreme Download Manager.", 5 | "license": "GPL-2.0-only", 6 | "url": "https://github.com/subhra74/xdm/releases/download/8.0.29/xdmsetup-8.0.29.msi", 7 | "hash": "aee7da204fcdb137275c9a2d13fc0f8dc961cbd7a2b42adf3d86145b604b5857", 8 | "extract_dir": "XDM", 9 | "bin": "xdm-app.exe", 10 | "shortcuts": [ 11 | [ 12 | "xdm-app.exe", 13 | "Xtreme Download Manager" 14 | ] 15 | ], 16 | "checkver": { 17 | "url": "https://api.github.com/repos/subhra74/xdm/releases", 18 | "jsonpath": "$[0].tag_name" 19 | }, 20 | "autoupdate": { 21 | "url": "https://github.com/subhra74/xdm/releases/download/$version/xdmsetup-$version.msi" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | // Configure PSScriptAnalyzer settings 2 | { 3 | "[powershell]": { 4 | "editor.formatOnSave": true 5 | }, 6 | "powershell.scriptAnalysis.settingsPath": "PSScriptAnalyzerSettings.psd1", 7 | "powershell.codeFormatting.preset": "OTBS", 8 | "powershell.codeFormatting.alignPropertyValuePairs": true, 9 | "powershell.codeFormatting.ignoreOneLineBlock": true, 10 | "json.schemas": [ 11 | { 12 | "url": "https://raw.githubusercontent.com/ScoopInstaller/Scoop/master/schema.json", 13 | "fileMatch": [ 14 | "bucket/**/*.json" 15 | ] 16 | } 17 | ], 18 | "files.exclude": { 19 | "**/.git": true, 20 | "**/.svn": true, 21 | "**/.hg": true, 22 | "**/CVS": true, 23 | "**/.DS_Store": true, 24 | "**/tmp": true 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /bucket/gopass184.json: -------------------------------------------------------------------------------- 1 | { 2 | "homepage": "https://www.gopass.pw/", 3 | "description": "The slightly more awesome standard unix password manager for teams", 4 | "version": "1.8.4", 5 | "license": "MIT", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/gopasspw/gopass/releases/download/v1.8.4/gopass-1.8.4-windows-amd64.zip", 9 | "hash": "e524eaebbbc706f33970da3fd595298bba66a3e989d436966ec23979e842c87e", 10 | "extract_dir": "gopass-1.8.4-windows-amd64" 11 | }, 12 | "32bit": { 13 | "url": "https://github.com/gopasspw/gopass/releases/download/v1.8.4/gopass-1.8.4-windows-386.zip", 14 | "hash": "5df88f9097f6fc9d7e9b125da1c55cd52a7b1ba375f1600341cbe37fe1084ad9", 15 | "extract_dir": "gopass-1.8.4-windows-386" 16 | } 17 | }, 18 | "bin": "gopass.exe" 19 | } 20 | -------------------------------------------------------------------------------- /bucket/stunnel549.json: -------------------------------------------------------------------------------- 1 | { 2 | "homepage": "https://www.stunnel.org", 3 | "version": "5.49", 4 | "license": "GPL-2.0-or-later", 5 | "description": "A multiplatform GNU/GPL-licensed proxy encrypting arbitrary TCP connections with SSL/TLS", 6 | "url": "https://www.stunnel.org/downloads/archive/5.x/stunnel-5.49-win32-installer.exe#/dl.7z", 7 | "hash": "459bbb212baf0b9821c80e0664c830246ef6e97c7329fb08160e87ff11ae9692", 8 | "bin": "bin\\stunnel.exe", 9 | "persist": "config", 10 | "uninstaller": { 11 | "script": [ 12 | "stunnel -stop -quiet", 13 | "stunnel -uninstall -quiet", 14 | "stunnel -exit -quiet" 15 | ] 16 | }, 17 | "notes": "Run \"stunnel -install\" in the directory where a configured stunnel.conf is located (eg C:\\ProgramData\\scoop\\persist\\stunnel\\config) to create a native Windows service" 18 | } 19 | -------------------------------------------------------------------------------- /bucket/traefik1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.7.20", 3 | "description": "HTTP reverse proxy and load balancer (version 1)", 4 | "homepage": "https://traefik.io/", 5 | "license": "MIT", 6 | "notes": "Run with a configuration file 'traefik -c ' or 'traefik --help' for all options.", 7 | "architecture": { 8 | "64bit": { 9 | "url": "https://github.com/containous/traefik/releases/download/v1.7.17/traefik_windows-amd64.exe#/traefik.exe", 10 | "hash": "b19f331e5b92f3399422ff60d2bc2950ab4007c945d506ce74ab5e9fe5502e4a" 11 | }, 12 | "32bit": { 13 | "url": "https://github.com/containous/traefik/releases/download/v1.7.17/traefik_windows-386.exe#/traefik.exe", 14 | "hash": "804ef8a7dc876e0a8e32a7d1653435067414039246968e35cc3b979438cfe203" 15 | } 16 | }, 17 | "bin": "traefik.exe" 18 | } 19 | -------------------------------------------------------------------------------- /deprecated/emule-cv.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.51b", 3 | "description": "One of the biggest and most reliable peer-to-peer file sharing clients around the world. (community version)", 4 | "homepage": "https://www.emule-project.net", 5 | "license": "GPL-2.0-only", 6 | "url": "https://files.emule-project.net/eMule0.51b-Installer.exe#/dl.7z", 7 | "hash": "86cdc796a03a6ef057c43ab59db97a29b9d7e8b69f583a1ac0173557013008cc", 8 | "pre_install": [ 9 | " Remove-Item -Recurse $dir\\`$PLUGINSDIR ", 10 | " movedir \"$dir\\`$LOCALAPPDATA\\eMule\\config\" \"$dir\\config\" " 11 | ], 12 | "bin": "emule.exe", 13 | "shortcuts": [ 14 | [ 15 | "emule.exe", 16 | "eMule" 17 | ], 18 | [ 19 | "LinkCreator.exe", 20 | "LinkCreator" 21 | ] 22 | ], 23 | "persist": "config" 24 | } 25 | -------------------------------------------------------------------------------- /bucket/gitversion-beta.json: -------------------------------------------------------------------------------- 1 | { 2 | "homepage": "https://github.com/GitTools/GitVersion", 3 | "description": "Easy Semantic Versioning for projects using Git.", 4 | "license": "MIT", 5 | "version": "6.5.1", 6 | "url": "https://packages.chocolatey.org/GitVersion.Portable.6.5.1.nupkg", 7 | "hash": "41f528ab51b3ead6dc73cb0cc8752e8c00717fa8a1f1e0954bab3745ef6df8ef", 8 | "extract_dir": "tools", 9 | "bin": "GitVersion.exe", 10 | "checkver": { 11 | "url": "https://chocolatey.org/packages/GitVersion.Portable", 12 | "regex": "GitVersion ([\\w.-]+)" 13 | }, 14 | "autoupdate": { 15 | "url": "https://packages.chocolatey.org/GitVersion.Portable.$version.nupkg", 16 | "hash": { 17 | "url": "https://chocolatey.org/packages/GitVersion.Portable/$version", 18 | "regex": "$sha256/analysis/\">$basename" 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /bucket/openrgb-nightly.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "nightly", 3 | "description": "RGB lighting control that does not depend on manufacturer software.", 4 | "homepage": "https://openrgb.org", 5 | "license": "GPL-2.0-only", 6 | "suggest": { 7 | "vcredist": "extras/vcredist2022" 8 | }, 9 | "architecture": { 10 | "64bit": { 11 | "url": "https://gitlab.com/Calcprogrammer1/OpenRGB/-/jobs/artifacts/master/download?job=Windows+64#/dl.zip", 12 | "extract_dir": "OpenRGB Windows 64-bit" 13 | }, 14 | "32bit": { 15 | "url": "https://gitlab.com/Calcprogrammer1/OpenRGB/-/jobs/artifacts/master/download?job=Windows+32#/dl.zip", 16 | "extract_dir": "OpenRGB Windows 32-bit" 17 | } 18 | }, 19 | "shortcuts": [ 20 | [ 21 | "OpenRGB.exe", 22 | "OpenRGB" 23 | ] 24 | ] 25 | } 26 | -------------------------------------------------------------------------------- /bucket/pester4.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "4.10.1", 3 | "description": "Pester. A test and mock framework for PowerShell. (version 4)", 4 | "homepage": "https://pester.dev", 5 | "license": "Apache-2.0", 6 | "notes": [ 7 | "'Pester' is currently installed as a PS module", 8 | "For more information, visit: 'https://pester.dev/docs/quick-start'" 9 | ], 10 | "url": "https://globalcdn.nuget.org/packages/pester.4.10.1.nupkg", 11 | "hash": "6c996dc4dc8bef068cefb1680292154f45577c66fb0600dd0fb50939bbf8a3a3", 12 | "extract_dir": "tools", 13 | "psmodule": { 14 | "name": "Pester" 15 | }, 16 | "checkver": { 17 | "url": "https://api.github.com/repositories/1213474/tags?per_page=100", 18 | "regex": "tags/(4[\\d.]+)\"" 19 | }, 20 | "autoupdate": { 21 | "url": "https://globalcdn.nuget.org/packages/pester.$version.nupkg" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | 11 | 16 | 17 | - [ ] Use conventional PR title: `: ` 18 | - [ ] I have read the [Contributing Guide](https://github.com/ScoopInstaller/.github/blob/main/.github/CONTRIBUTING.md) 19 | -------------------------------------------------------------------------------- /bucket/fluxctl.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.25.4", 3 | "description": "Manage Flux (v1) from the Command Line.", 4 | "homepage": "https://fluxcd.io/legacy/flux", 5 | "license": "Apache-2.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/fluxcd/flux/releases/download/1.25.4/fluxctl_windows_amd64#/fluxctl.exe", 9 | "hash": "10519d15910a053485eeb7e4aa896837b642b366e54be6719fcb3942f69ef649" 10 | } 11 | }, 12 | "bin": "fluxctl.exe", 13 | "checkver": { 14 | "github": "https://github.com/fluxcd/flux" 15 | }, 16 | "autoupdate": { 17 | "architecture": { 18 | "64bit": { 19 | "url": "https://github.com/fluxcd/flux/releases/download/$version/fluxctl_windows_amd64#/fluxctl.exe" 20 | } 21 | } 22 | }, 23 | "notes": "For Flux v2, please install 'flux' instead." 24 | } 25 | -------------------------------------------------------------------------------- /bucket/steam.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "nightly", 3 | "description": "The ultimate entertainment platform.", 4 | "homepage": "https://store.steampowered.com/", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://store.steampowered.com/legal/" 8 | }, 9 | "notes": "Changing Steam library folder is HIGHLY recommended.", 10 | "url": "https://steamcdn-a.akamaihd.net/client/installer/SteamSetup.exe#/dl.7z", 11 | "pre_install": "Remove-Item \"$dir\\`$PLUGINSDIR\" -Force -Recurse", 12 | "uninstaller": { 13 | "file": "uninstall.exe", 14 | "args": "/S" 15 | }, 16 | "bin": "Steam.exe", 17 | "shortcuts": [ 18 | [ 19 | "Steam.exe", 20 | "Steam", 21 | "-dev" 22 | ] 23 | ], 24 | "persist": [ 25 | "skins", 26 | "steamapps", 27 | "userdata" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /scripts/everything/install-context.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_CURRENT_USER\Software\Classes\Directory\shell\Everything] 4 | @="Search with &Everything" 5 | "Icon"="$app_path" 6 | 7 | [HKEY_CURRENT_USER\Software\Classes\Directory\shell\Everything\command] 8 | @="$app_path -path \"%1\"" 9 | 10 | [HKEY_CURRENT_USER\Software\Classes\Directory\Background\shell\Everything] 11 | @="Search with &Everything" 12 | "Icon"="$app_path" 13 | 14 | ; %v – For verbs that are none implies all. If there is no parameter passed this is the working directory. 15 | [HKEY_CURRENT_USER\Software\Classes\Directory\Background\shell\Everything\command] 16 | @="$app_path -path \"%V\"" 17 | 18 | [HKEY_CURRENT_USER\Software\Classes\Drive\shell\Everything] 19 | @="Search with &Everything" 20 | "Icon"="$app_path" 21 | 22 | [HKEY_CURRENT_USER\Software\Classes\Drive\shell\Everything\command] 23 | @="$app_path -path \"%1\"" 24 | -------------------------------------------------------------------------------- /bucket/fmedia16.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.6", 3 | "description": "A fast media player/recorder/converter", 4 | "homepage": "https://web.archive.org/web/20190820034904/http://fmedia.firmdev.com/", 5 | "license": "GPL-3.0-only", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://www.videohelp.com/download/fmedia-1.6-win-x64.zip", 9 | "hash": "ce7d7e74b091e3aa111615b473d85b1137301979a6cb4ec500942da3ac3e5dbb" 10 | }, 11 | "32bit": { 12 | "url": "https://www.videohelp.com/download/fmedia-1.6-win-x86.zip", 13 | "hash": "bf7f0d7c9a9c38c1ebf2c4a49c36656e80cb5b433de5b36d12692c985b62bf42" 14 | } 15 | }, 16 | "extract_dir": "fmedia", 17 | "bin": "fmedia.exe", 18 | "shortcuts": [ 19 | [ 20 | "fmedia-gui.exe", 21 | "fmedia" 22 | ] 23 | ], 24 | "persist": "fmedia.conf" 25 | } 26 | -------------------------------------------------------------------------------- /bucket/pijul.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0.0-beta.9", 3 | "description": "A fast and scalable distributed version control system, based on a theory of patches.", 4 | "homepage": "https://pijul.org", 5 | "license": "GPL-2.0-only", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/boringcactus/pijul-windows-builds/releases/download/1.0.0-beta.9/pijul.exe", 9 | "hash": "1f688e8f4d7f76a50049edd0bddcf0f3c8caabbb54c71f7d913f5f254ac69036" 10 | } 11 | }, 12 | "bin": "pijul.exe", 13 | "checkver": { 14 | "github": "https://github.com/boringcactus/pijul-windows-builds/", 15 | "regex": "(?[\\d\\w.-]+)/pijul\\.exe" 16 | }, 17 | "autoupdate": { 18 | "architecture": { 19 | "64bit": { 20 | "url": "https://github.com/boringcactus/pijul-windows-builds/releases/download/$version/pijul.exe" 21 | } 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /bucket/aria2-134.json: -------------------------------------------------------------------------------- 1 | { 2 | "homepage": "https://aria2.github.io/", 3 | "description": "Lightweight multi-protocol & multi-source command-line download utility, LAST version with SSLv3.0 and TLSv1.0 support", 4 | "license": "GPL-2.0-or-later", 5 | "version": "1.34.0-1", 6 | "architecture": { 7 | "32bit": { 8 | "url": "https://github.com/aria2/aria2/releases/download/release-1.34.0/aria2-1.34.0-win-32bit-build1.zip", 9 | "hash": "736e8e54ec21bdf5d4806378107c8b515cd37509bc9dfc1e697fb900ddbe7fad", 10 | "extract_dir": "aria2-1.34.0-win-32bit-build1" 11 | }, 12 | "64bit": { 13 | "url": "https://github.com/aria2/aria2/releases/download/release-1.34.0/aria2-1.34.0-win-64bit-build1.zip", 14 | "hash": "2452e15b638be11c2919a5d1c15c0405a83eb8260c0f3853e8d195774dbdde61", 15 | "extract_dir": "aria2-1.34.0-win-64bit-build1" 16 | } 17 | }, 18 | "bin": "aria2c.exe" 19 | } 20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Scoop Versions [![Tests](https://github.com/ScoopInstaller/Versions/actions/workflows/ci.yml/badge.svg)](https://github.com/ScoopInstaller/Versions/actions/workflows/ci.yml) [![Excavator](https://github.com/ScoopInstaller/Versions/actions/workflows/excavator.yml/badge.svg)](https://github.com/ScoopInstaller/Versions/actions/workflows/excavator.yml) 2 | 3 | Alternative manifests for [Scoop](https://scoop.sh), the Windows command-line installer. For alpha, beta, nightly, dev, canary, insiders, release candidates, and frozen/older versions of app manifests. 4 | 5 | How do I install these manifests? 6 | --------------------------------- 7 | 8 | To add this bucket, run `scoop bucket add versions`. To install, do `scoop install `. 9 | 10 | How do I contribute new manifests? 11 | ---------------------------------- 12 | 13 | To make a new manifest contribution, please read the [Contributing Guide](https://github.com/ScoopInstaller/.github/blob/main/.github/CONTRIBUTING.md). 14 | -------------------------------------------------------------------------------- /bucket/aurora-rgb.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "358", 3 | "description": "A fork of Aurora, providing unified lighting effects across multiple brands and various games", 4 | "homepage": "https://www.project-aurora.com/", 5 | "license": "MIT", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/Aurora-RGB/Aurora/releases/download/v358/Aurora-v358.zip", 9 | "hash": "cfe308fde67c4d06757f6a48061e971ffb8f11c3f3ab95ce73a90ecd3f6dfbce" 10 | } 11 | }, 12 | "shortcuts": [ 13 | [ 14 | "AuroraRgb.exe", 15 | "Aurora" 16 | ] 17 | ], 18 | "checkver": { 19 | "github": "https://github.com/Aurora-RGB/Aurora" 20 | }, 21 | "autoupdate": { 22 | "architecture": { 23 | "64bit": { 24 | "url": "https://github.com/Aurora-RGB/Aurora/releases/download/v$version/Aurora-v$version.zip" 25 | } 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /deprecated/archi44.json: -------------------------------------------------------------------------------- 1 | { 2 | "##": "Last 32bit version. Latest version is at https://github.com/lukesampson/scoop-extras/blob/master/bucket/archi.json", 3 | "homepage": "https://www.archimatetool.com/", 4 | "license": "MIT", 5 | "description": "Archi® is a free, open source, cross-platform tool and editor to create ArchiMate models.", 6 | "version": "4.4.0", 7 | "architecture": { 8 | "64bit": { 9 | "url": "https://www.archimatetool.com/downloads/4.4.0/Archi-Win64-4.4.0.zip", 10 | "hash": "md5:7abae71a730b2dadfa5df560180bb340" 11 | }, 12 | "32bit": { 13 | "url": "https://www.archimatetool.com/downloads/4.4.0/Archi-Win32-4.4.0.zip", 14 | "hash": "md5:3a60951584467e16c547218f85920f32" 15 | } 16 | }, 17 | "extract_dir": "Archi", 18 | "bin": "archi.exe", 19 | "shortcuts": [ 20 | [ 21 | "archi.exe", 22 | "Archi" 23 | ] 24 | ] 25 | } 26 | -------------------------------------------------------------------------------- /bucket/sts396.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "3.9.6", 3 | "description": "Spring Tools for Eclipse (version 3.9.6)", 4 | "homepage": "https://spring.io/tools/sts", 5 | "license": "EPL-1.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "http://download.springsource.com/release/STS/3.9.6.RELEASE/dist/e4.9/spring-tool-suite-3.9.6.RELEASE-e4.9.0-win32-x86_64.zip", 9 | "hash": "sha1:59de36dcbd94c56ce544c7551c324b4be295e8a3" 10 | }, 11 | "32bit": { 12 | "url": "http://download.springsource.com/release/STS/3.9.6.RELEASE/dist/e4.9/spring-tool-suite-3.9.6.RELEASE-e4.9.0-win32.zip", 13 | "hash": "sha1:1f136696cf2982cdd089e89bf997d1b2472e7297" 14 | } 15 | }, 16 | "extract_dir": "sts-bundle", 17 | "pre_install": "mv \"$dir\\sts-$version.RELEASE\" \"$dir\\sts\"", 18 | "shortcuts": [ 19 | [ 20 | "sts\\STS.exe", 21 | "Spring Tool Suite 3 " 22 | ] 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /bucket/posh-git-nightly.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "bbc5ac3800", 3 | "description": "A PowerShell module which provides Git/PowerShell integration. (nightly version)", 4 | "homepage": "https://dahlbyk.github.io/posh-git/", 5 | "license": "MIT", 6 | "url": "https://github.com/dahlbyk/posh-git/archive/bbc5ac380018239e0ac70411a59f4e367ca87f2d.zip", 7 | "hash": "1d0e3a8a5af0a9d0c8fe3736e4c81d9680824296cf53313a35c836d7bab13580", 8 | "extract_dir": "posh-git-bbc5ac380018239e0ac70411a59f4e367ca87f2d\\src", 9 | "psmodule": { 10 | "name": "posh-git" 11 | }, 12 | "checkver": { 13 | "url": "https://github.com/dahlbyk/posh-git/commits/master.atom", 14 | "regex": "(?ms)]*>\\s*\\S+/(?(?[0-9a-f]{10})[0-9a-f]*)\\s*", 15 | "replace": "${shortSha}" 16 | }, 17 | "autoupdate": { 18 | "url": "https://github.com/dahlbyk/posh-git/archive/$matchSha.zip", 19 | "extract_dir": "posh-git-$matchSha\\src" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /bucket/ffmpeg-shared-4.4.1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "4.4.1", 3 | "description": "A complete, cross-platform solution to record, convert and stream audio and video.", 4 | "homepage": "https://ffmpeg.org", 5 | "license": "GPL-3.0-or-later", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/GyanD/codexffmpeg/releases/download/4.4.1/ffmpeg-4.4.1-full_build-shared.7z", 9 | "hash": "146d0d5ab6ba50e6813bab47518bdc582abe122bb2d41bcc5609314890df460c", 10 | "extract_dir": "ffmpeg-4.4.1-full_build-shared" 11 | } 12 | }, 13 | "post_install": [ 14 | "# Workaround for https://github.com/ScoopInstaller/Main/issues/2611", 15 | "Remove-Item \"$scoopdir\\shims\\ffmpeg.ps1\", \"$scoopdir\\shims\\ffplay.ps1\", \"$scoopdir\\shims\\ffprobe.ps1\" -ErrorAction SilentlyContinue" 16 | ], 17 | "persist": "fonts", 18 | "bin": [ 19 | "bin\\ffmpeg.exe", 20 | "bin\\ffplay.exe", 21 | "bin\\ffprobe.exe" 22 | ] 23 | } 24 | -------------------------------------------------------------------------------- /bucket/furmark1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.39.3.0", 3 | "description": "A GPU Stress Test and OpenGL Benchmark", 4 | "homepage": "https://geeks3d.com/furmark/", 5 | "license": "Freeware", 6 | "url": "https://geeks3d.com/dl/get/788#/FurMark_1.39.3.0_Setup.exe", 7 | "hash": "54bc46c73462dd37fcda5d3c6326472999dbb95df9c08cdd8140e1d44841065f", 8 | "notes": "This manifest may fail to download under Powershell 5.x for now.", 9 | "innosetup": true, 10 | "shortcuts": [ 11 | [ 12 | "FurMark.exe", 13 | "FurMark" 14 | ] 15 | ], 16 | "checkver": { 17 | "url": "https://geeks3d.com/furmark/downloads/", 18 | "regex": "(?sm)>FurMark 1<.*dl/show/(?\\d+)\".*>v([\\d.]+) - win32" 19 | }, 20 | "autoupdate": { 21 | "url": "https://geeks3d.com/dl/get/$matchPage#/FurMark_$version_Setup.exe", 22 | "hash": { 23 | "url": "https://geeks3d.com/dl/show/$matchPage", 24 | "regex": "$sha256" 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /bucket/tinymediamanager3.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "3.1.17", 3 | "description": "Completely free but older version(v3) of tinyMediaManager, a media management tool written to provide metadata for the Kodi Media Center (formerly known as XBMC), MediaPortal and Plex media server.", 4 | "homepage": "https://www.tinymediamanager.org/", 5 | "license": { 6 | "identifier": "Apache-2.0", 7 | "url": "https://github.com/tinyMediaManager/tinyMediaManager/blob/master/LICENSE" 8 | }, 9 | "suggest": { 10 | "JRE": "java/openjdk" 11 | }, 12 | "url": "https://archive.tinymediamanager.org/v3.1.17/tmm_3.1.17_win.zip", 13 | "hash": "3443e95d23f2d51ede18e794c2d7cd67ff5fcdbb4374de0e4ddcb485e916a063", 14 | "bin": "tinyMediaManagerCMD.exe", 15 | "shortcuts": [ 16 | [ 17 | "tinyMediaManager.exe", 18 | "tinyMediaManager" 19 | ] 20 | ], 21 | "persist": [ 22 | "logs", 23 | "data", 24 | "cache", 25 | "backup" 26 | ] 27 | } 28 | -------------------------------------------------------------------------------- /bucket/dotnet-nightly.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "nightly", 3 | "description": ".NET is a free, cross-platform, open source developer platform for building many different types of applications.", 4 | "homepage": "http://dotnet.github.io/", 5 | "license": "MIT", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://dotnetcli.blob.core.windows.net/dotnet/dev/Installers/Latest/dotnet-win-x64.latest.msi" 9 | } 10 | }, 11 | "extract_dir": "dotnet", 12 | "bin": "bin\\dotnet.exe", 13 | "env_set": { 14 | "DOTNET_HOME": "$dir" 15 | }, 16 | "notes": [ 17 | "dotnet cli has the following prerequisites:", 18 | "- Visual C++ Redistributable for Visual Studio 2015 (All Systems)", 19 | " https://www.microsoft.com/en-us/download/confirmation.aspx?id=48145", 20 | "- Visual C++ Redistributable for Visual Studio 2012 Update 4 (Windows 7 or Windows Server 2008 only)", 21 | " https://www.microsoft.com/en-us/download/confirmation.aspx?id=30679" 22 | ] 23 | } 24 | -------------------------------------------------------------------------------- /bucket/ruby19.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.9.3-p551", 3 | "description": "Ruby, a dynamic programming language with a focus on simplicity and productivity. (version 1.9)", 4 | "homepage": "https://rubyinstaller.org", 5 | "license": "BSD-3-Clause", 6 | "url": [ 7 | "https://github.com/oneclick/rubyinstaller/releases/download/ruby-1.9.3-p551/ruby-1.9.3-p551-i386-mingw32.7z#/dl.7z", 8 | "https://github.com/oneclick/rubyinstaller/releases/download/DevKit-tdm-32-4.5.2/DevKit-tdm-32-4.5.2-20111229-1559-sfx.exe#/dl2.7z" 9 | ], 10 | "hash": [ 11 | "207fdb5b2f9436ad1ac27bf51918b913c14c443d1b83cd910cf5a59acaeab756", 12 | "6c3af5487dafda56808baf76edd262b2020b1b25ab86aabf972629f4a6a54491" 13 | ], 14 | "extract_dir": "ruby-1.9.3-p551-i386-mingw32", 15 | "extract_to": [ 16 | "", 17 | "devkit" 18 | ], 19 | "env_add_path": "bin", 20 | "post_install": "pushd \"$dir\\devkit\";ruby dk.rb init > $null;echo \"- $dir\" | out-file config.yml -a -enc default; ruby dk.rb install;popd;" 21 | } 22 | -------------------------------------------------------------------------------- /bucket/zeebe1.3.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.3.7", 3 | "description": "Distributed Workflow Engine for Microservices Orchestration", 4 | "homepage": "https://camunda.com/products/cloud/workflow-engine/", 5 | "license": { 6 | "identifier": "Zeebe Community License v1.0", 7 | "url": "https://camunda.com/legal/terms/cloud-terms-and-conditions/zeebe-community-license-v1-0/" 8 | }, 9 | "suggest": { 10 | "JDK": "java/openjdk" 11 | }, 12 | "architecture": { 13 | "64bit": { 14 | "url": "https://github.com/camunda-cloud/zeebe/releases/download/1.3.7/camunda-cloud-zeebe-1.3.7.zip", 15 | "hash": "sha1:9be66c8c91ab3aeb07b1861f40a29e6b4f183ffc" 16 | } 17 | }, 18 | "extract_dir": "camunda-cloud-zeebe-1.3.7", 19 | "bin": [ 20 | [ 21 | "bin\\broker.bat", 22 | "zeebe-broker" 23 | ], 24 | [ 25 | "bin\\gateway.bat", 26 | "zeebe-gateway" 27 | ], 28 | "bin\\zbctl.exe" 29 | ] 30 | } 31 | -------------------------------------------------------------------------------- /bucket/caret-beta.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "4.0.0-rc23", 3 | "description": "Caret Beta: Markdown editor for Mac, Windows and Linux", 4 | "homepage": "https://caret.io/", 5 | "license": { 6 | "identifier": "Proprietary", 7 | "url": "https://caret.io/terms" 8 | }, 9 | "url": "https://github.com/careteditor/releases-beta/releases/download/4.0.0-rc23/caret-beta-4.0.0-rc23-full.nupkg", 10 | "hash": "5061ffe73b426d2d1924db53f671b16d9d6e1b3677577793b06e29c96c164cab", 11 | "extract_dir": "lib\\net45", 12 | "shortcuts": [ 13 | [ 14 | "caret-beta.exe", 15 | "Caret Beta" 16 | ] 17 | ], 18 | "checkver": { 19 | "github": "https://github.com/careteditor/releases-beta", 20 | "regex": "tag/([\\w\\.-]+)" 21 | }, 22 | "autoupdate": { 23 | "url": "https://github.com/careteditor/releases-beta/releases/download/$version/caret-beta-$version-full.nupkg", 24 | "hash": { 25 | "url": "$baseurl/RELEASES" 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /bucket/discord-canary.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.0.316", 3 | "description": "Free Voice and Text Chat", 4 | "homepage": "https://discordapp.com/", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://discordapp.com/terms" 8 | }, 9 | "url": "http://dl-canary.discordapp.net/apps/win/DiscordCanary-0.0.316-full.nupkg#/dl.7z", 10 | "hash": "sha1:e56b6ce33dffde16fbc63c2da986d5bac4716651", 11 | "extract_dir": "lib\\net45", 12 | "bin": "DiscordCanary.exe", 13 | "shortcuts": [ 14 | [ 15 | "DiscordCanary.exe", 16 | "Discord Canary" 17 | ] 18 | ], 19 | "checkver": { 20 | "url": "https://discordapp.com/api/updates/canary/RELEASES", 21 | "regex": "DiscordCanary-([\\d.]+)" 22 | }, 23 | "autoupdate": { 24 | "url": "http://dl-canary.discordapp.net/apps/win/DiscordCanary-$version-full.nupkg#/dl.7z", 25 | "hash": { 26 | "url": "https://discordapp.com/api/updates/canary/RELEASES" 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /bucket/love9.json: -------------------------------------------------------------------------------- 1 | { 2 | "homepage": "https://love2d.org/", 3 | "description": "LÖVE is an open-source 2D game framework for Lua.", 4 | "version": "0.9.2", 5 | "license": "Zlib", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/love2d/love/releases/download/0.9.2/love-0.9.2-win64.zip", 9 | "hash": "51e73d8ab2f76b5c8ba4454d4af6a4934efe9437cea0a7cd7cebf5831c787a1c", 10 | "extract_dir": "love-0.9.2-win64" 11 | }, 12 | "32bit": { 13 | "url": "https://github.com/love2d/love/releases/download/0.9.2/love-0.9.2-win32.zip", 14 | "hash": "f635772f7755ff60b8a7b5af5f94b34a599ae4c772231c8d0fb32f79aabb37de", 15 | "extract_dir": "love-0.9.2-win32" 16 | } 17 | }, 18 | "bin": [ 19 | "love.exe", 20 | [ 21 | "love.exe", 22 | "love0.9" 23 | ] 24 | ], 25 | "shortcuts": [ 26 | [ 27 | "love.exe", 28 | "LÖVE 0.9" 29 | ] 30 | ] 31 | } 32 | -------------------------------------------------------------------------------- /bucket/arduino-ide-rc.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.3.7", 3 | "description": "Official Arduino IDE (Release Candidate)", 4 | "homepage": "https://www.arduino.cc/en/software", 5 | "license": "AGPL-3.0-or-later", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/arduino/arduino-ide/releases/download/2.3.7/arduino-ide_2.3.7_Windows_64bit.zip", 9 | "hash": "06ce437eb10653c4c65ac8d3fd559e89e8d262afb75d5be42bbacb92887f4c6c" 10 | } 11 | }, 12 | "shortcuts": [ 13 | [ 14 | "Arduino IDE.exe", 15 | "Arduino IDE" 16 | ] 17 | ], 18 | "checkver": { 19 | "url": "https://api.github.com/repositories/337042139/releases", 20 | "regex": "tag/([\\d.]+(-rc\\d+)?)" 21 | }, 22 | "autoupdate": { 23 | "architecture": { 24 | "64bit": { 25 | "url": "https://github.com/arduino/arduino-ide/releases/download/$version/arduino-ide_$version_Windows_64bit.zip" 26 | } 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /bucket/love10.json: -------------------------------------------------------------------------------- 1 | { 2 | "homepage": "https://love2d.org/", 3 | "description": "LÖVE is an open-source 2D game framework for Lua.", 4 | "version": "0.10.2", 5 | "license": "Zlib", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/love2d/love/releases/download/0.10.2/love-0.10.2-win64.zip", 9 | "hash": "a9603b1e1fb353bc0d5608629ea4c0d2e94df3598f3cc4c2e9e84723e6a5a2b9", 10 | "extract_dir": "love-0.10.2-win64" 11 | }, 12 | "32bit": { 13 | "url": "https://github.com/love2d/love/releases/download/0.10.2/love-0.10.2-win32.zip", 14 | "hash": "31132c176cd03e3eb2952c4b837e1049e907b8542deaa297d8efcd31cfa6a46a", 15 | "extract_dir": "love-0.10.2-win32" 16 | } 17 | }, 18 | "bin": [ 19 | "love.exe", 20 | [ 21 | "love.exe", 22 | "love0.10" 23 | ] 24 | ], 25 | "shortcuts": [ 26 | [ 27 | "love.exe", 28 | "LÖVE 0.10" 29 | ] 30 | ] 31 | } 32 | -------------------------------------------------------------------------------- /bucket/love8.json: -------------------------------------------------------------------------------- 1 | { 2 | "homepage": "https://love2d.org/", 3 | "description": "LÖVE is an open-source 2D game framework for Lua.", 4 | "version": "0.8.0", 5 | "license": "Zlib", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/love2d/love/releases/download/0.8.0/love-0.8.0-win-x64.zip", 9 | "hash": "8042e7b62e6da5cdc000641eaac144d378845fb78bfce7e880e86f7c2925f385", 10 | "extract_dir": "love-0.8.0-win-x64" 11 | }, 12 | "32bit": { 13 | "url": "https://github.com/love2d/love/releases/download/0.8.0/love-0.8.0-win-x86.zip", 14 | "hash": "cc9dbd6f174b55f17a404a5c3d331e1bf82748f0ea5a14edca4bcde862eb9ff1", 15 | "extract_dir": "love-0.8.0-win-x86" 16 | } 17 | }, 18 | "bin": [ 19 | "love.exe", 20 | [ 21 | "love.exe", 22 | "love0.8" 23 | ] 24 | ], 25 | "shortcuts": [ 26 | [ 27 | "love.exe", 28 | "LÖVE 0.8" 29 | ] 30 | ] 31 | } 32 | -------------------------------------------------------------------------------- /bucket/camunda-operate1.3.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.3.7", 3 | "description": "Camunda workflow instance monitor/manager (version 1.3)", 4 | "homepage": "https://docs.camunda.io/docs/product-manuals/zeebe/zeebe-overview/", 5 | "license": { 6 | "identifier": "Zeebe Community License v1.0", 7 | "url": "https://camunda.com/legal/terms/cloud-terms-and-conditions/zeebe-community-license-v1-0/" 8 | }, 9 | "suggest": { 10 | "JDK": "java/openjdk", 11 | "Zeebe": "versions/zeebe1.3", 12 | "ElasticSearch": "extras/elasticsearch" 13 | }, 14 | "architecture": { 15 | "64bit": { 16 | "url": "https://github.com/camunda-cloud/zeebe/releases/download/1.3.7/camunda-cloud-operate-1.3.7.zip", 17 | "hash": "sha1:579246f9ca77a72ce484415997c4024d502347f9" 18 | } 19 | }, 20 | "extract_dir": "camunda-cloud-operate-1.3.7", 21 | "bin": [ 22 | [ 23 | "bin\\operate.bat", 24 | "camunda-operate" 25 | ] 26 | ], 27 | "persist": "config" 28 | } 29 | -------------------------------------------------------------------------------- /bucket/v-weekly.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2025.52", 3 | "description": "The V programming language (weekly release channel)", 4 | "homepage": "https://vlang.io", 5 | "license": "MIT", 6 | "notes": "Windows SDK is required, you can either install it using Visual Studio Installer, or download from: https://developer.microsoft.com/en-us/windows/downloads/sdk-archive/", 7 | "architecture": { 8 | "64bit": { 9 | "url": "https://github.com/vlang/v/releases/download/weekly.2025.52/v_windows.zip", 10 | "hash": "b9b4dd08fb905a926ffea7ca14c15f3bc6ebbe2da56c6fa5895bc60054cf6db9" 11 | } 12 | }, 13 | "extract_dir": "v", 14 | "bin": "v.exe", 15 | "checkver": { 16 | "url": "https://github.com/vlang/v/releases", 17 | "regex": "releases/tag/weekly\\.([\\d.]+)" 18 | }, 19 | "autoupdate": { 20 | "architecture": { 21 | "64bit": { 22 | "url": "https://github.com/vlang/v/releases/download/weekly.$version/v_windows.zip" 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /bucket/neovide-dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.15.2", 3 | "description": "A simple GUI for Neovim (prerelease version)", 4 | "homepage": "https://github.com/Kethku/neovide", 5 | "license": "MIT", 6 | "suggest": { 7 | "neovim": "neovim" 8 | }, 9 | "architecture": { 10 | "64bit": { 11 | "url": "https://github.com/neovide/neovide/releases/download/0.15.2/neovide.exe.zip", 12 | "hash": "8ad43abbb2d012aa9d89585349f589723cf01dc65607d417059923c623afd922" 13 | } 14 | }, 15 | "bin": "neovide.exe", 16 | "shortcuts": [ 17 | [ 18 | "neovide.exe", 19 | "Neovide" 20 | ] 21 | ], 22 | "checkver": { 23 | "url": "https://api.github.com/repositories/226408450/releases", 24 | "jsonpath": "$[0].tag_name" 25 | }, 26 | "autoupdate": { 27 | "architecture": { 28 | "64bit": { 29 | "url": "https://github.com/neovide/neovide/releases/download/$version/neovide.exe.zip" 30 | } 31 | } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /bucket/poppler068.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.68.0", 3 | "description": "PDF rendering library", 4 | "homepage": "http://blog.alivate.com.au/poppler-windows/", 5 | "license": "GPL-2.0-only", 6 | "extract_dir": "poppler-0.68.0", 7 | "url": "http://blog.alivate.com.au/wp-content/uploads/2018/10/poppler-0.68.0_x86.7z", 8 | "hash": "6a8fd0c4e7284dfa208c6f435a0a5cfd6d7445e59f29cae76e79dc079abf74d4", 9 | "checkver": "Latest.*uploads/(?\\d{4}/\\d{2})/poppler-(?[\\d.]+)_x86.7z", 10 | "bin": [ 11 | "bin/pdfdetach.exe", 12 | "bin/pdffonts.exe", 13 | "bin/pdfimages.exe", 14 | "bin/pdfinfo.exe", 15 | "bin/pdfseparate.exe", 16 | "bin/pdftocairo.exe", 17 | "bin/pdftohtml.exe", 18 | "bin/pdftoppm.exe", 19 | "bin/pdftops.exe", 20 | "bin/pdftotext.exe", 21 | "bin/pdfunite.exe" 22 | ], 23 | "autoupdate": { 24 | "url": "http://blog.alivate.com.au/wp-content/uploads/$matchDate/poppler-$version_x86.7z", 25 | "extract_dir": "poppler-$version" 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /bucket/wget120.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.20", 3 | "description": "A command-line utility for retrieving files using HTTP, HTTPS, FTP, and FTPS protocols. (version 1.20)", 4 | "homepage": "https://eternallybored.org/misc/wget/", 5 | "license": "GPL-3.0-or-later", 6 | "notes": "Version 1.20.3 has issues. See https://github.com/lukesampson/scoop/issues/3331 and https://eternallybored.org/misc/wget/", 7 | "depends": "cacert", 8 | "architecture": { 9 | "64bit": { 10 | "url": "https://eternallybored.org/misc/wget/releases/old/wget-1.20-win64.zip", 11 | "hash": "2414cc1c00140c0773a7933dd517cf99c462a034101a002277656fff3240ec23" 12 | }, 13 | "32bit": { 14 | "url": "https://eternallybored.org/misc/wget/releases/old/wget-1.20-win32.zip", 15 | "hash": "96d7dfe0467a7ca9d443792dd58da93fe550a91a4d6184a07087b48362bfd6f8" 16 | } 17 | }, 18 | "bin": "wget.exe", 19 | "post_install": "\"ca_certificate=$(appdir cacert $global)\\current\\cacert.pem\" | out-file \"$dir\\wget.ini\" -encoding default" 20 | } 21 | -------------------------------------------------------------------------------- /bucket/spotdl-beta.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "4.4.3", 3 | "description": "Download your Spotify playlists and songs along with album art and metadata (from YouTube if a match is found).", 4 | "homepage": "https://github.com/spotDL/spotify-downloader", 5 | "license": "MIT", 6 | "url": "https://github.com/spotDL/spotify-downloader/releases/download/v4.4.3/spotdl-4.4.3-win32.exe", 7 | "hash": "8d833f87d41b5f0ac8f0d341db01f02267fa34ffa469bca5e2824b71f48f4881", 8 | "bin": [ 9 | [ 10 | "spotdl-4.4.3-win32.exe", 11 | "spotdl" 12 | ] 13 | ], 14 | "checkver": { 15 | "url": "https://github.com/spotDL/spotify-downloader/releases/latest", 16 | "regex": "\\/releases\\/tag\\/(?:v|V)?([\\d.\\-a-zA-Z]+)" 17 | }, 18 | "autoupdate": { 19 | "url": "https://github.com/spotDL/spotify-downloader/releases/download/v$version/spotdl-$version-win32.exe", 20 | "bin": [ 21 | [ 22 | "spotdl-$version-win32.exe", 23 | "spotdl" 24 | ] 25 | ] 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /bucket/maven3.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "3.9.12", 3 | "description": "Software project management and comprehension tool", 4 | "homepage": "https://maven.apache.org/", 5 | "license": "Apache-2.0", 6 | "suggest": { 7 | "JDK": "java/openjdk" 8 | }, 9 | "url": "https://archive.apache.org/dist/maven/maven-3/3.9.12/binaries/apache-maven-3.9.12-bin.zip", 10 | "hash": "sha512:0ef0d074761a55e7b982fd7f2cd6ea2da028289c73156ebd488c0513efbff8a64ac5bc0c11c3b8bbced930ce15238ecef344b0e065ae54f7cdca8c86cf39e736", 11 | "extract_dir": "apache-maven-3.9.12", 12 | "env_add_path": "bin", 13 | "persist": [ 14 | "conf", 15 | "lib\\ext" 16 | ], 17 | "checkver": { 18 | "url": "https://maven.apache.org/docs/history.html", 19 | "regex": "(3.[\\d.]+)" 20 | }, 21 | "autoupdate": { 22 | "url": "https://archive.apache.org/dist/maven/maven-3/$version/binaries/apache-maven-$version-bin.zip", 23 | "hash": { 24 | "url": "$url.sha512" 25 | }, 26 | "extract_dir": "apache-maven-$version" 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /bucket/stash-dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.30.0-17-gb23b0267", 3 | "description": "An organizer for your porn. (Dev release channel)", 4 | "homepage": "https://stashapp.cc", 5 | "license": "AGPL-3.0-only", 6 | "suggest": { 7 | "ffmpeg": "ffmpeg" 8 | }, 9 | "url": "https://github.com/stashapp/stash/releases/download/latest_develop/stash-win.exe", 10 | "hash": "a9a36d8b59667f35a38d5ac49b8f83475970958257080d5e2363e92847a899b7", 11 | "bin": [ 12 | [ 13 | "stash-win.exe", 14 | "stash-win", 15 | "-c \"$dir\\config\\config.yml\"" 16 | ], 17 | [ 18 | "stash-win.exe", 19 | "stash", 20 | "-c \"$dir\\config\\config.yml\"" 21 | ] 22 | ], 23 | "persist": "config", 24 | "checkver": { 25 | "url": "https://github.com/stashapp/stash/releases/tag/latest_develop", 26 | "regex": "Release v([\\w.-]+)" 27 | }, 28 | "autoupdate": { 29 | "url": "https://github.com/stashapp/stash/releases/download/latest_develop/stash-win.exe" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /scripts/beyondcompare4/install-context-32bit.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{57FA2D12-D22D-490A-805A-5CB48E84F12A}] 4 | @="CirrusShellEx" 5 | 6 | [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{57FA2D12-D22D-490A-805A-5CB48E84F12A}\InProcServer32] 7 | @="$install_dir\\BCShellEx.dll" 8 | "ThreadingModel"="Apartment" 9 | 10 | [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\*\shellex\ContextMenuHandlers\CirrusShellEx] 11 | @="{57FA2D12-D22D-490A-805A-5CB48E84F12A}" 12 | 13 | [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\shellex\ContextMenuHandlers\CirrusShellEx] 14 | @="{57FA2D12-D22D-490A-805A-5CB48E84F12A}" 15 | 16 | [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shellex\ContextMenuHandlers\CirrusShellEx] 17 | @="{57FA2D12-D22D-490A-805A-5CB48E84F12A}" 18 | 19 | [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\lnkfile\shellex\ContextMenuHandlers\CirrusShellEx] 20 | @="{57FA2D12-D22D-490A-805A-5CB48E84F12A}" 21 | 22 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Approved] 23 | "{57FA2D12-D22D-490A-805A-5CB48E84F12A}"="Beyond Compare 4 Shell Extension" 24 | -------------------------------------------------------------------------------- /bucket/discord-ptb.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0.1160-30", 3 | "description": "Free Voice and Text Chat", 4 | "homepage": "https://discordapp.com/", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://discordapp.com/terms" 8 | }, 9 | "url": "https://github.com/portapps/discord-ptb-portable/releases/download/1.0.1160-30/discord-ptb-portable-win64-1.0.1160-30.7z", 10 | "hash": "8e0ea4d210d99f673b71d2db4cad95e890fc46ce5368caacb69ca87d68a3ed26", 11 | "shortcuts": [ 12 | [ 13 | "discord-ptb-portable.exe", 14 | "Discord PTB" 15 | ] 16 | ], 17 | "persist": [ 18 | "data", 19 | "log" 20 | ], 21 | "checkver": { 22 | "github": "https://github.com/portapps/discord-ptb-portable", 23 | "regex": "tag/([\\d.-]+)" 24 | }, 25 | "autoupdate": { 26 | "url": "https://github.com/portapps/discord-ptb-portable/releases/download/$version/discord-ptb-portable-win64-$version.7z", 27 | "hash": { 28 | "url": "$baseurl/checksums.txt" 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /bucket/kopia-rc.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.22.3", 3 | "description": "Fast and secure open source backup.", 4 | "homepage": "https://kopia.io/", 5 | "license": "Apache-2.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/kopia/kopia/releases/download/v0.22.3/kopia-0.22.3-windows-x64.zip", 9 | "hash": "afe1b84a1b5b138c5fa97581c5d168d68d4c0cee35b5c184b57b7f6f0e55b9fa", 10 | "extract_dir": "kopia-0.22.3-windows-x64" 11 | } 12 | }, 13 | "bin": "kopia.exe", 14 | "checkver": { 15 | "github": "https://github.com/kopia/kopia", 16 | "regex": "tag/v([\\w.-]+)" 17 | }, 18 | "autoupdate": { 19 | "architecture": { 20 | "64bit": { 21 | "url": "https://github.com/kopia/kopia/releases/download/v$version/kopia-$version-windows-x64.zip", 22 | "extract_dir": "kopia-$version-windows-x64" 23 | } 24 | }, 25 | "hash": { 26 | "url": "$baseurl/checksums.txt", 27 | "regex": "$sha256\\s+$basename" 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /bucket/greenshot-unstable.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.3.303", 3 | "description": "Light-weight screenshot software.", 4 | "homepage": "https://getgreenshot.org", 5 | "license": "GPL-3.0-only", 6 | "url": "https://github.com/greenshot/greenshot/releases/download/v1.3.303/Greenshot-INSTALLER-1.3.303-UNSTABLE-UNSIGNED.exe", 7 | "hash": "309b9dcd8c7109852434da464957a46bd9fccd4bab24a18ebf1093025ca949a0", 8 | "innosetup": true, 9 | "pre_install": "if (!(Test-Path \"$persist_dir\\greenshot.ini\")) { New-Item -ItemType File \"$dir\\greenshot.ini\" | Out-Null }", 10 | "bin": "Greenshot.exe", 11 | "shortcuts": [ 12 | [ 13 | "Greenshot.exe", 14 | "Greenshot" 15 | ] 16 | ], 17 | "persist": "greenshot.ini", 18 | "checkver": { 19 | "url": "https://api.github.com/repositories/36756917/releases", 20 | "regex": "Greenshot-INSTALLER-([\\d.]+)-UNSTABLE-UNSIGNED" 21 | }, 22 | "autoupdate": { 23 | "url": "https://github.com/greenshot/greenshot/releases/download/v$version/Greenshot-INSTALLER-$version-UNSTABLE-UNSIGNED.exe" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /bucket/scala2.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.13.16", 3 | "description": "A modern multi-paradigm programming language designed to express common programming patterns in a concise, elegant, and type-safe way.", 4 | "homepage": "https://www.scala-lang.org/", 5 | "license": "BSD-3-Clause", 6 | "suggest": { 7 | "JDK": "java/openjdk" 8 | }, 9 | "url": "https://downloads.typesafe.com/scala/2.13.16/scala-2.13.16.zip", 10 | "hash": "638b1c747c6933bf3e632c8677904eb84ff07c8cebec41b70d092d3f6d7fe67f", 11 | "extract_dir": "scala-2.13.16", 12 | "bin": [ 13 | "bin\\fsc.bat", 14 | "bin\\scala.bat", 15 | "bin\\scalac.bat", 16 | "bin\\scaladoc.bat", 17 | "bin\\scalap.bat" 18 | ], 19 | "env_set": { 20 | "SCALA_HOME": "$dir" 21 | }, 22 | "checkver": { 23 | "url": "https://www.scala-lang.org/download/all.html", 24 | "regex": "/download/(2[\\d.]+)\\.html" 25 | }, 26 | "autoupdate": { 27 | "url": "https://downloads.typesafe.com/scala/$version/scala-$version.zip", 28 | "extract_dir": "scala-$version" 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /bucket/tesseract3-languages.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "3.04.00", 3 | "description": "Trained models for the Tesseract Open Source OCR Engine (version 3)", 4 | "homepage": "https://github.com/tesseract-ocr/tessdata_fast", 5 | "license": "Apache-2.0", 6 | "notes": [ 7 | "This packages has overwritten the 'TESSDATA_PREFIX' environment variable with \"$dir\".", 8 | "After updating \"tesseract3\" please run \"scoop reset tesseract3-languages\" to update the environment variable!" 9 | ], 10 | "depends": "versions/tesseract3", 11 | "url": [ 12 | "https://github.com/tesseract-ocr/tessdata/archive/3.04.00.zip", 13 | "https://raw.githubusercontent.com/USCDataScience/counterfeit-electronics-tesseract/319a6eeacff181dad5c02f3e7a3aff804eaadeca/Training%20Tesseract/snum.traineddata" 14 | ], 15 | "hash": [ 16 | "2823e7b1299d7f9a0ff0197b8fe827195ebbba3c4a1a92758b3100a75e655d49", 17 | "36f772980ff17c66a767f584a0d80bf2302a1afa585c01a226c1863afcea1392" 18 | ], 19 | "extract_dir": "tessdata-3.04.00", 20 | "env_set": { 21 | "TESSDATA_PREFIX": "$dir" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /bucket/atom-ng.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.66.12", 3 | "description": "The hackable text editor for the 21st century (community maintained fork)", 4 | "homepage": "https://thorium.rocks/atom-ng/", 5 | "license": "MIT", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/Alex313031/atom-ng/releases/download/v1.66.12/Atom-ng_win64_1.66.12_AVX.zip", 9 | "hash": "aeb16537b0b504d2a9b34a8ae2284b4f010ca35154e2988909e2ae29573a9aaf", 10 | "extract_dir": "Atom-ng_1.66.12_x64" 11 | } 12 | }, 13 | "bin": [ 14 | "resources\\cli\\atom.cmd", 15 | "resources\\app\\apm\\bin\\apm.cmd" 16 | ], 17 | "shortcuts": [ 18 | [ 19 | "atom-ng.exe", 20 | "Atom NG" 21 | ] 22 | ], 23 | "persist": ".atom", 24 | "checkver": { 25 | "github": "https://github.com/Alex313031/atom-ng" 26 | }, 27 | "autoupdate": { 28 | "url": "https://github.com/Alex313031/atom-ng/releases/download/v$version/Atom-ng_win64_$version_AVX.zip", 29 | "extract_dir": "Atom-ng_$version_x64" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /bucket/influx2.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.7.5", 3 | "description": "CLI for InfluxDB 2.1+", 4 | "homepage": "https://www.influxdata.com/", 5 | "license": "MIT", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://dl.influxdata.com/influxdb/releases/influxdb2-client-2.7.5-windows-amd64.zip", 9 | "hash": "7b965ea00514fc329a9b09d277445629f3bb5394e500ef4ae2c3dddd296de699" 10 | } 11 | }, 12 | "bin": "influx.exe", 13 | "checkver": { 14 | "url": "https://www.influxdata.com/versions.json", 15 | "jsonpath": "$.influxdb2_cloud_cli.version", 16 | "regex": "([\\d.]+)" 17 | }, 18 | "autoupdate": { 19 | "architecture": { 20 | "64bit": { 21 | "url": "https://dl.influxdata.com/influxdb/releases/influxdb2-client-$version-windows-amd64.zip", 22 | "hash": { 23 | "url": "https://www.influxdata.com/versions.json", 24 | "jsonpath": "$.influxdb2_cloud_cli.downloads[?(@.platform =~ /^Windows/)].sha256" 25 | } 26 | } 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /bucket/slack-beta.json: -------------------------------------------------------------------------------- 1 | { 2 | "homepage": "https://slack.com", 3 | "description": "A collaboration hub for work.", 4 | "version": "4.5.0", 5 | "license": "Freeware", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://downloads.slack-edge.com/releases_beta_x64/slack-4.5.0-full.nupkg", 9 | "hash": "sha1:46b3c98b011d3ae83af138406c5f2719c36fe191" 10 | } 11 | }, 12 | "extract_dir": "lib\\net45", 13 | "bin": "slack.exe", 14 | "shortcuts": [ 15 | [ 16 | "slack.exe", 17 | "Slack" 18 | ] 19 | ], 20 | "checkver": { 21 | "url": "https://downloads.slack-edge.com/releases_beta_x64/RELEASES", 22 | "regex": "slack-([0-9.]+(-beta[0-9a-f]+)?)-full.nupkg", 23 | "reverse": true 24 | }, 25 | "autoupdate": { 26 | "architecture": { 27 | "64bit": { 28 | "url": "https://downloads.slack-edge.com/releases_beta_x64/slack-$version-full.nupkg" 29 | } 30 | }, 31 | "hash": { 32 | "url": "$baseurl/RELEASES" 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /bucket/spark33.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "3.3.4", 3 | "description": "A unified analytics engine for large-scale data processing.", 4 | "homepage": "https://spark.apache.org/", 5 | "license": "Apache-2.0", 6 | "suggest": { 7 | "JDK": "java/openjdk" 8 | }, 9 | "url": "https://archive.apache.org/dist/spark/spark-3.3.4/spark-3.3.4-bin-hadoop3.tgz", 10 | "hash": "sha512:a3874e340a113e95898edfa145518648700f799ffe2d1ce5dde7743e88fdf5559d79d9bcb1698fdfa5296a63c1d0fc4c8e32a93529ed58cd5dcf0721502a1fc7", 11 | "extract_dir": "spark-3.3.4-bin-hadoop3", 12 | "env_add_path": "bin", 13 | "env_set": { 14 | "SPARK_HOME": "$dir" 15 | }, 16 | "persist": "conf", 17 | "checkver": { 18 | "url": "https://archive.apache.org/dist/spark/", 19 | "regex": "spark-(3.3.\\d)", 20 | "reverse": true 21 | }, 22 | "autoupdate": { 23 | "url": "https://archive.apache.org/dist/spark/spark-$version/spark-$version-bin-hadoop3.tgz", 24 | "hash": { 25 | "url": "$url.sha512" 26 | }, 27 | "extract_dir": "spark-$version-bin-hadoop3" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /bucket/tomcat6.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "6.0.53", 3 | "description": "Tomcat, an open source implementation of the Java Servlet, JavaServer Pages, Java Expression Language and Java WebSocket technologies. (version 6)", 4 | "homepage": "https://tomcat.apache.org/", 5 | "license": "Apache-2.0", 6 | "suggest": { 7 | "JDK": "java/openjdk" 8 | }, 9 | "architecture": { 10 | "64bit": { 11 | "url": "https://archive.apache.org/dist/tomcat/tomcat-6/v6.0.53/bin/apache-tomcat-6.0.53-windows-x64.zip", 12 | "hash": "sha1:d1e46e3760ea02eca20a89d86a37ef382ee060eb" 13 | }, 14 | "32bit": { 15 | "url": "https://archive.apache.org/dist/tomcat/tomcat-6/v6.0.53/bin/apache-tomcat-6.0.53-windows-x86.zip", 16 | "hash": "sha1:74feb07d4bc275a0dac551b1f7bb7c2252e5505a" 17 | } 18 | }, 19 | "extract_dir": "apache-tomcat-6.0.53", 20 | "env_set": { 21 | "CATALINA_BASE": "$dir", 22 | "CATALINA_HOME": "$dir" 23 | }, 24 | "bin": "bin\\catalina.bat", 25 | "persist": [ 26 | "conf", 27 | "webapps" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /bucket/cosmosdbexplorer-beta.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.9.10-beta", 3 | "description": "A nice client explorer for Microsoft Cosmos DB. It mimics the Data Explorer available on the Azure Portal on the desktop.", 4 | "homepage": "https://github.com/sachabruttin/CosmosDbExplorer", 5 | "license": "MIT", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/sachabruttin/CosmosDbExplorer/releases/download/v0.9.10-beta/CosmosDbExplorer.zip", 9 | "hash": "ecd373dff1474ed3e9e67da826de5a386e329ee32eba8f820b777fc1809567f2" 10 | } 11 | }, 12 | "shortcuts": [ 13 | [ 14 | "CosmosDbExplorer.exe", 15 | "CosmosDB Explorer Beta" 16 | ] 17 | ], 18 | "checkver": { 19 | "url": "https://api.github.com/repositories/113423601/releases", 20 | "regex": "v([\\d.]+(-beta)?)" 21 | }, 22 | "autoupdate": { 23 | "architecture": { 24 | "64bit": { 25 | "url": "https://github.com/sachabruttin/CosmosDbExplorer/releases/download/v$version/CosmosDbExplorer.zip" 26 | } 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /bucket/ols-nightly.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "20251221-g3fae1fa", 3 | "description": "Language server for Odin.", 4 | "homepage": "https://github.com/DanielGavin/ols", 5 | "license": "MIT", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/DanielGavin/ols/releases/download/nightly/ols-x86_64-pc-windows-msvc.zip", 9 | "hash": "eb20bc271bb077927cb027a276cffc889c2c2efcae72f78abc3aa9dd02a604a8" 10 | } 11 | }, 12 | "bin": [ 13 | [ 14 | "ols-x86_64-pc-windows-msvc.exe", 15 | "ols" 16 | ] 17 | ], 18 | "checkver": { 19 | "url": "https://github.com/DanielGavin/ols/releases/tag/nightly", 20 | "regex": "datetime=\"(?[0-9]{4})-(?[0-9]{2})-(?[0-9]{2})(.*\\n)*?.*/commit/(?[0-9a-f]{7})", 21 | "replace": "${year}${month}${day}-g${commit}" 22 | }, 23 | "autoupdate": { 24 | "architecture": { 25 | "64bit": { 26 | "url": "https://github.com/DanielGavin/ols/releases/download/nightly/ols-x86_64-pc-windows-msvc.zip" 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /bucket/spark-hadoop3.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "4.0.1", 3 | "description": "A unified analytics engine for large-scale data processing.", 4 | "homepage": "https://spark.apache.org/", 5 | "license": "Apache-2.0", 6 | "suggest": { 7 | "JDK": "java/openjdk" 8 | }, 9 | "url": "https://dlcdn.apache.org/spark/spark-4.0.1/spark-4.0.1-bin-hadoop3.tgz", 10 | "hash": "sha512:9198602c6b931b46686f32a25793b3bb58b522cd98a5b6a94d2484bae32e3e7b520d60f4bffe72ba29ff5c9ecd862443841ee47dde0f2f9e1bf52539f7baef41", 11 | "extract_dir": "spark-4.0.1-bin-hadoop3", 12 | "env_add_path": "bin", 13 | "env_set": { 14 | "SPARK_HOME": "$dir" 15 | }, 16 | "persist": "conf", 17 | "checkver": { 18 | "url": "https://spark.apache.org/downloads.html", 19 | "regex": "version: ([\\d.]+)" 20 | }, 21 | "autoupdate": { 22 | "url": "https://dlcdn.apache.org/spark/spark-$version/spark-$version-bin-hadoop3.tgz", 23 | "hash": { 24 | "url": "$url.sha512", 25 | "regex": "$basename: ([A-F0-9\\s]+)$" 26 | }, 27 | "extract_dir": "spark-$version-bin-hadoop3" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /bucket/v2rayn-selfcontained.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "7.16.8", 3 | "description": "v2rayN (WPF-based, .NET 8 self-contained version) is a GUI client for V2Ray, with support for Xray, sing-box, and other compatible cores.", 4 | "homepage": "https://github.com/2dust/v2rayN", 5 | "license": "GPL-3.0-only", 6 | "suggest": { 7 | "v2fly-core": "v2ray" 8 | }, 9 | "architecture": { 10 | "64bit": { 11 | "url": "https://github.com/2dust/v2rayN/releases/download/7.16.8/v2rayN-windows-64-SelfContained.zip", 12 | "hash": "5e2780e88b4b9db8ecf1b794887a201f25dfdd6320f156417097da96698d4cf9", 13 | "extract_dir": "v2rayN-windows-64-SelfContained" 14 | } 15 | }, 16 | "shortcuts": [ 17 | [ 18 | "v2rayN.exe", 19 | "v2rayN" 20 | ] 21 | ], 22 | "persist": "guiConfigs", 23 | "checkver": "github", 24 | "autoupdate": { 25 | "architecture": { 26 | "64bit": { 27 | "url": "https://github.com/2dust/v2rayN/releases/download/$version/v2rayN-windows-64-SelfContained.zip" 28 | } 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /bucket/kopiaui-rc.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.22.3", 3 | "description": "Fast and secure open source backup.", 4 | "homepage": "https://kopia.io/", 5 | "license": "Apache-2.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/kopia/kopia/releases/download/v0.22.3/KopiaUI-0.22.3-win.zip", 9 | "hash": "c126b64791eda867071266a9df6fcd444ca2e1cd4284025de1ad14b314654cde" 10 | } 11 | }, 12 | "bin": "resources\\server\\kopia.exe", 13 | "shortcuts": [ 14 | [ 15 | "KopiaUI.exe", 16 | "KopiaUI" 17 | ] 18 | ], 19 | "checkver": { 20 | "github": "https://github.com/kopia/kopia", 21 | "regex": "tag/v([\\w.-]+)" 22 | }, 23 | "autoupdate": { 24 | "architecture": { 25 | "64bit": { 26 | "url": "https://github.com/kopia/kopia/releases/download/v$version/KopiaUI-$version-win.zip", 27 | "hash": { 28 | "url": "$baseurl/checksums.txt", 29 | "regex": "$sha256\\s+$basename" 30 | } 31 | } 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /bucket/spotbugs-beta.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "4.9.8", 3 | "description": "Static analysis tool for Java", 4 | "homepage": "https://spotbugs.github.io/", 5 | "license": "LGPL-2.1-only", 6 | "suggest": { 7 | "JDK": [ 8 | "java/oraclejdk", 9 | "java/openjdk" 10 | ] 11 | }, 12 | "url": "https://repo.maven.apache.org/maven2/com/github/spotbugs/spotbugs/4.9.8/spotbugs-4.9.8.zip", 13 | "hash": "e13d476403cf69074f415e35ebcc2f865f7a1ea444c1e659516bc0260e74dfa5", 14 | "extract_dir": "spotbugs-4.9.8", 15 | "bin": "bin\\spotbugs.bat", 16 | "shortcuts": [ 17 | [ 18 | "bin\\spotbugs.bat", 19 | "SpotBugs", 20 | "", 21 | "bin\\spotbugs.ico" 22 | ] 23 | ], 24 | "persist": "plugin", 25 | "checkver": { 26 | "url": "https://api.github.com/repositories/72889410/releases", 27 | "jsonpath": "$[0].tag_name" 28 | }, 29 | "autoupdate": { 30 | "url": "https://repo.maven.apache.org/maven2/com/github/spotbugs/spotbugs/$version/spotbugs-$version.zip", 31 | "extract_dir": "spotbugs-$version" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /bucket/emacs27.2.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "27.2", 3 | "description": "An extensible, customizable, free/libre text editor.", 4 | "homepage": "https://www.gnu.org/software/emacs/", 5 | "license": "GPL-3.0-or-later", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://ftpmirror.gnu.org/gnu/emacs/windows/emacs-27/emacs-27.2-x86_64.zip", 9 | "hash": "5396aa4239c9ac2f65a6b084ccf588d01bdd6ddb701419b7fda5b97b45846093" 10 | }, 11 | "32bit": { 12 | "url": "https://ftpmirror.gnu.org/gnu/emacs/windows/emacs-27/emacs-27.2-i686.zip", 13 | "hash": "626792ea6c4c5347e1f17960072440af1cb05cb6767389fc8195a744a0b428ca" 14 | } 15 | }, 16 | "bin": [ 17 | "bin\\runemacs.exe", 18 | "bin\\emacs.exe", 19 | "bin\\emacsclientw.exe", 20 | "bin\\etags.exe", 21 | "bin\\ctags.exe" 22 | ], 23 | "shortcuts": [ 24 | [ 25 | "bin\\runemacs.exe", 26 | "Emacs" 27 | ], 28 | [ 29 | "bin\\emacsclientw.exe", 30 | "Emacs Client", 31 | "-c -n -a \"\"" 32 | ] 33 | ] 34 | } 35 | -------------------------------------------------------------------------------- /bucket/spotify-qt-nightly.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "4.0.1-dev.14", 3 | "description": "Nightly builds for spotify-qt", 4 | "homepage": "https://github.com/kraxarn/spotify-qt-nightly", 5 | "license": "GPL-3.0-only", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/kraxarn/spotify-qt-nightly/releases/download/latest/spotify-qt-v4.0.1-dev.14-win64.zip", 9 | "hash": "aef39b715c74644459218b7427bd3a1653755c0c69eadc94137ccdc2918c5b99" 10 | } 11 | }, 12 | "shortcuts": [ 13 | [ 14 | "spotify-qt.exe", 15 | "spotify-qt" 16 | ] 17 | ], 18 | "bin": "spotify-qt.exe", 19 | "checkver": { 20 | "url": "https://api.github.com/repositories/458937795/releases/latest", 21 | "jsonpath": "$.assets[0].name", 22 | "regex": "\\Aspotify-qt-v([\\w.-]+)-win(?:64|32)\\.zip\\Z" 23 | }, 24 | "autoupdate": { 25 | "architecture": { 26 | "64bit": { 27 | "url": "https://github.com/kraxarn/spotify-qt-nightly/releases/download/latest/spotify-qt-v$version-win64.zip" 28 | } 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /bucket/beef-nightly.json: -------------------------------------------------------------------------------- 1 | { 2 | "homepage": "https://www.beeflang.org/", 3 | "description": "Beef programming language compiler. (nightly version)", 4 | "version": "0.43.6.12222025", 5 | "license": "MIT", 6 | "architecture": { 7 | "64bit": { 8 | "url": "http://nightly.beeflang.org/BeefSetup_0_43_6__12_22_2025.exe#/dl.7z", 9 | "hash": "80ed6d8294b2b586a35f4f038275e94588ec4e18059c05a72ce224595265e010" 10 | } 11 | }, 12 | "bin": [ 13 | [ 14 | "bin\\BeefIDE.exe", 15 | "beefn" 16 | ], 17 | [ 18 | "bin\\BeefBuild.exe", 19 | "BeefBuildN" 20 | ] 21 | ], 22 | "checkver": { 23 | "url": "http://nightly.beeflang.org/index.html", 24 | "regex": "(?s)BeefSetup_(\\d+)_(\\d+)_(\\d+)__(\\d{2})_(\\d{2})_(\\d{4})", 25 | "replace": "${1}.${2}.${3}.${4}${5}${6}" 26 | }, 27 | "autoupdate": { 28 | "architecture": { 29 | "64bit": { 30 | "url": "http://nightly.beeflang.org/BeefSetup_$match1_$match2_$match3__$match4_$match5_$match6.exe#/dl.7z" 31 | } 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /bucket/gitbutler-nightly.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.5.1705", 3 | "description": "A Git client for simultaneous branches on top of your existing workflow.", 4 | "homepage": "https://gitbutler.com/", 5 | "license": "FSL-1.1-MIT", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://releases.gitbutler.com/releases/nightly/0.5.1705-2636/windows/x86_64/GitButler_Nightly_0.5.1705_x64_en-US.msi", 9 | "hash": "f295317ed8d02439da9cdd9f651a712138058b4f06b104a60d6fa61dd078a187", 10 | "extract_dir": "PFiles/GitButler Nightly" 11 | } 12 | }, 13 | "shortcuts": [ 14 | [ 15 | "gitbutler-tauri.exe", 16 | "GitButler Nightly" 17 | ] 18 | ], 19 | "checkver": { 20 | "url": "https://app.gitbutler.com/downloads", 21 | "regex": "releases/nightly/([\\d.-]+)-(?[\\d]+)" 22 | }, 23 | "autoupdate": { 24 | "architecture": { 25 | "64bit": { 26 | "url": "https://releases.gitbutler.com/releases/nightly/$version-$matchBuild/windows/x86_64/GitButler_Nightly_$version_x64_en-US.msi" 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /bucket/typora-dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.11.3-dev", 3 | "description": "A minimal Markdown editor and reader", 4 | "homepage": "https://typora.io", 5 | "license": { 6 | "identifier": "Proprietary", 7 | "url": "https://support.typora.io/License-Agreement/" 8 | }, 9 | "architecture": { 10 | "64bit": { 11 | "url": "https://download.typora.io/windows/typora-setup-x64-1.11.3-dev.exe", 12 | "hash": "218565f876ae354dd1309cdba86193c0e03a9c2b7cc4d59f63068e3c54e10694" 13 | } 14 | }, 15 | "innosetup": true, 16 | "bin": [ 17 | [ 18 | "Typora.exe", 19 | "typora-dev" 20 | ] 21 | ], 22 | "shortcuts": [ 23 | [ 24 | "Typora.exe", 25 | "Typora (dev)" 26 | ] 27 | ], 28 | "checkver": { 29 | "url": "https://typora.io/releases/dev", 30 | "regex": "

([\\d.]+-dev)" 31 | }, 32 | "autoupdate": { 33 | "architecture": { 34 | "64bit": { 35 | "url": "https://download.typora.io/windows/typora-setup-x64-$version.exe" 36 | } 37 | } 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/cuda9.1.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "9.1.85", 3 | "description": "A parallel computing platform and programming model invented by NVIDIA", 4 | "homepage": "https://developer.nvidia.com/cuda-toolkit", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://docs.nvidia.com/cuda/eula/index.html" 8 | }, 9 | "architecture": { 10 | "64bit": { 11 | "url": "https://developer.nvidia.com/compute/cuda/9.1/Prod/local_installers/cuda_9.1.85_win10#/dl.7z", 12 | "hash": "md5:2665de6228cfe76e421fe8ff6db8313f" 13 | } 14 | }, 15 | "installer": { 16 | "script": [ 17 | "$names = @('bin', 'extras', 'include', 'jre', 'lib', 'libnvvp', 'nvml', 'nvvm')", 18 | "foreach ($name in $names) {", 19 | " Copy-Item \"$dir\\*\\$name\" \"$dir\" -Recurse -Force", 20 | "}", 21 | "Get-ChildItem \"$dir\" -Exclude $names | Remove-Item -Recurse -Force" 22 | ] 23 | }, 24 | "env_add_path": [ 25 | "bin", 26 | "libnvvp" 27 | ], 28 | "env_set": { 29 | "CUDA_PATH": "$dir", 30 | "CUDA_PATH_V9_1": "$dir" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /bucket/cuda9.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "9.2.148", 3 | "description": "A parallel computing platform and programming model invented by NVIDIA", 4 | "homepage": "https://developer.nvidia.com/cuda-toolkit", 5 | "license": { 6 | "identifier": "Freeware", 7 | "url": "https://docs.nvidia.com/cuda/eula/index.html" 8 | }, 9 | "architecture": { 10 | "64bit": { 11 | "url": "https://developer.nvidia.com/compute/cuda/9.2/Prod2/local_installers2/cuda_9.2.148_win10#/dl.7z", 12 | "hash": "md5:f6c170a7452098461070dbba3e6e58f1" 13 | } 14 | }, 15 | "installer": { 16 | "script": [ 17 | "$names = @('bin', 'extras', 'include', 'jre', 'lib', 'libnvvp', 'nvml', 'nvvm')", 18 | "foreach ($name in $names) {", 19 | " Copy-Item \"$dir\\*\\$name\" \"$dir\" -Recurse -Force", 20 | "}", 21 | "Get-ChildItem \"$dir\" -Exclude $names | Remove-Item -Recurse -Force" 22 | ] 23 | }, 24 | "env_add_path": [ 25 | "bin", 26 | "libnvvp" 27 | ], 28 | "env_set": { 29 | "CUDA_PATH": "$dir", 30 | "CUDA_PATH_V9_2": "$dir" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /bucket/hyper-beta.json: -------------------------------------------------------------------------------- 1 | { 2 | "homepage": "https://hyper.is", 3 | "description": "A terminal built on web technologies", 4 | "version": "3.0.1-canary.4", 5 | "license": "MIT", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/zeit/hyper/releases/download/3.0.1-canary.4/hyper-3.0.1-canary4-full.nupkg", 9 | "hash": "sha1:921e7106ba4c521c55adafc89eb41dc8c704f45e" 10 | } 11 | }, 12 | "extract_dir": "lib\\net45", 13 | "bin": "resources\\bin\\hyper.cmd", 14 | "shortcuts": [ 15 | [ 16 | "hyper.exe", 17 | "Hyper" 18 | ] 19 | ], 20 | "checkver": { 21 | "url": "https://github.com/zeit/hyper/releases", 22 | "regex": "Pre-release[\\S\\s]+?tree/([\\d.]+-canary\\.(?
\\d+))"
23 |     },
24 |     "autoupdate": {
25 |         "architecture": {
26 |             "64bit": {
27 |                 "url": "https://github.com/zeit/hyper/releases/download/$version/hyper-$matchHead-canary$matchPre-full.nupkg",
28 |                 "hash": {
29 |                     "url": "$baseurl/RELEASES"
30 |                 }
31 |             }
32 |         }
33 |     }
34 | }
35 | 


--------------------------------------------------------------------------------
/bucket/cuda8.0.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "8.0.61",
 3 |     "description": "A parallel computing platform and programming model invented by NVIDIA",
 4 |     "homepage": "https://developer.nvidia.com/cuda-toolkit",
 5 |     "license": {
 6 |         "identifier": "Freeware",
 7 |         "url": "https://docs.nvidia.com/cuda/eula/index.html"
 8 |     },
 9 |     "architecture": {
10 |         "64bit": {
11 |             "url": "https://developer.nvidia.com/compute/cuda/8.0/Prod2/local_installers/cuda_8.0.61_win10-exe#/dl.7z",
12 |             "hash": "md5:f857c29b8121099090524b90290cfbf6"
13 |         }
14 |     },
15 |     "installer": {
16 |         "script": [
17 |             "$names = @('bin', 'extras', 'include', 'jre', 'lib', 'libnvvp', 'nvml', 'nvvm')",
18 |             "foreach ($name in $names) {",
19 |             "    Copy-Item \"$dir\\*\\$name\" \"$dir\" -Recurse -Force",
20 |             "}",
21 |             "Get-ChildItem \"$dir\" -Exclude $names | Remove-Item -Recurse -Force"
22 |         ]
23 |     },
24 |     "env_add_path": [
25 |         "bin",
26 |         "libnvvp"
27 |     ],
28 |     "env_set": {
29 |         "CUDA_PATH": "$dir",
30 |         "CUDA_PATH_V8_0": "$dir"
31 |     }
32 | }
33 | 


--------------------------------------------------------------------------------
/bucket/cuda8.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "8.0.61",
 3 |     "description": "A parallel computing platform and programming model invented by NVIDIA",
 4 |     "homepage": "https://developer.nvidia.com/cuda-toolkit",
 5 |     "license": {
 6 |         "identifier": "Freeware",
 7 |         "url": "https://docs.nvidia.com/cuda/eula/index.html"
 8 |     },
 9 |     "architecture": {
10 |         "64bit": {
11 |             "url": "https://developer.nvidia.com/compute/cuda/8.0/Prod2/local_installers/cuda_8.0.61_win10-exe#/dl.7z",
12 |             "hash": "md5:f857c29b8121099090524b90290cfbf6"
13 |         }
14 |     },
15 |     "installer": {
16 |         "script": [
17 |             "$names = @('bin', 'extras', 'include', 'jre', 'lib', 'libnvvp', 'nvml', 'nvvm')",
18 |             "foreach ($name in $names) {",
19 |             "    Copy-Item \"$dir\\*\\$name\" \"$dir\" -Recurse -Force",
20 |             "}",
21 |             "Get-ChildItem \"$dir\" -Exclude $names | Remove-Item -Recurse -Force"
22 |         ]
23 |     },
24 |     "env_add_path": [
25 |         "bin",
26 |         "libnvvp"
27 |     ],
28 |     "env_set": {
29 |         "CUDA_PATH": "$dir",
30 |         "CUDA_PATH_V8_0": "$dir"
31 |     }
32 | }
33 | 


--------------------------------------------------------------------------------
/bucket/cuda9.0.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "9.0.176",
 3 |     "description": "A parallel computing platform and programming model invented by NVIDIA",
 4 |     "homepage": "https://developer.nvidia.com/cuda-toolkit",
 5 |     "license": {
 6 |         "identifier": "Freeware",
 7 |         "url": "https://docs.nvidia.com/cuda/eula/index.html"
 8 |     },
 9 |     "architecture": {
10 |         "64bit": {
11 |             "url": "https://developer.nvidia.com/compute/cuda/9.0/Prod/local_installers/cuda_9.0.176_win10-exe#/dl.7z",
12 |             "hash": "md5:ecba5d6c7d86ab5c3c3be97330ca85a0"
13 |         }
14 |     },
15 |     "installer": {
16 |         "script": [
17 |             "$names = @('bin', 'extras', 'include', 'jre', 'lib', 'libnvvp', 'nvml', 'nvvm')",
18 |             "foreach ($name in $names) {",
19 |             "    Copy-Item \"$dir\\*\\$name\" \"$dir\" -Recurse -Force",
20 |             "}",
21 |             "Get-ChildItem \"$dir\" -Exclude $names | Remove-Item -Recurse -Force"
22 |         ]
23 |     },
24 |     "env_add_path": [
25 |         "bin",
26 |         "libnvvp"
27 |     ],
28 |     "env_set": {
29 |         "CUDA_PATH": "$dir",
30 |         "CUDA_PATH_V9_0": "$dir"
31 |     }
32 | }
33 | 


--------------------------------------------------------------------------------
/bucket/cuda9.2.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "9.2.148",
 3 |     "description": "A parallel computing platform and programming model invented by NVIDIA",
 4 |     "homepage": "https://developer.nvidia.com/cuda-toolkit",
 5 |     "license": {
 6 |         "identifier": "Freeware",
 7 |         "url": "https://docs.nvidia.com/cuda/eula/index.html"
 8 |     },
 9 |     "architecture": {
10 |         "64bit": {
11 |             "url": "https://developer.nvidia.com/compute/cuda/9.2/Prod2/local_installers2/cuda_9.2.148_win10#/dl.7z",
12 |             "hash": "md5:f6c170a7452098461070dbba3e6e58f1"
13 |         }
14 |     },
15 |     "installer": {
16 |         "script": [
17 |             "$names = @('bin', 'extras', 'include', 'jre', 'lib', 'libnvvp', 'nvml', 'nvvm')",
18 |             "foreach ($name in $names) {",
19 |             "    Copy-Item \"$dir\\*\\$name\" \"$dir\" -Recurse -Force",
20 |             "}",
21 |             "Get-ChildItem \"$dir\" -Exclude $names | Remove-Item -Recurse -Force"
22 |         ]
23 |     },
24 |     "env_add_path": [
25 |         "bin",
26 |         "libnvvp"
27 |     ],
28 |     "env_set": {
29 |         "CUDA_PATH": "$dir",
30 |         "CUDA_PATH_V9_2": "$dir"
31 |     }
32 | }
33 | 


--------------------------------------------------------------------------------
/bucket/spark-without-hadoop.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "4.0.1",
 3 |     "description": "A unified analytics engine for large-scale data processing.",
 4 |     "homepage": "https://spark.apache.org/",
 5 |     "license": "Apache-2.0",
 6 |     "suggest": {
 7 |         "JDK": "java/openjdk"
 8 |     },
 9 |     "url": "https://dlcdn.apache.org/spark/spark-4.0.1/spark-4.0.1-bin-without-hadoop.tgz",
10 |     "hash": "sha512:3cd10588a38060cd8b326bfb8d317f4f391b191f0c26489b0a7e13c12b8c79e42cf7b085454ea16abc04267b43fb2210a6e7f3b74a5e8966dbda1421eb171d2b",
11 |     "extract_dir": "spark-4.0.1-bin-without-hadoop",
12 |     "env_add_path": "bin",
13 |     "env_set": {
14 |         "SPARK_HOME": "$dir"
15 |     },
16 |     "persist": "conf",
17 |     "checkver": {
18 |         "url": "https://spark.apache.org/downloads.html",
19 |         "regex": "version: ([\\d.]+)"
20 |     },
21 |     "autoupdate": {
22 |         "url": "https://dlcdn.apache.org/spark/spark-$version/spark-$version-bin-without-hadoop.tgz",
23 |         "hash": {
24 |             "url": "$url.sha512",
25 |             "regex": "$basename: ([A-F0-9\\s]+)$"
26 |         },
27 |         "extract_dir": "spark-$version-bin-without-hadoop"
28 |     }
29 | }
30 | 


--------------------------------------------------------------------------------
/bucket/ant19.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "1.9.16",
 3 |     "description": "Apache Ant, a Java library and command-line tool for compiling, assembling, testing and running Java and non-Java applications. (version 1.9)",
 4 |     "homepage": "https://ant.apache.org/",
 5 |     "license": "Apache 2.0",
 6 |     "suggest": {
 7 |         "JDK": [
 8 |             "java/oraclejdk",
 9 |             "java/openjdk"
10 |         ]
11 |     },
12 |     "url": "https://www.apache.org/dist/ant/binaries/apache-ant-1.9.16-bin.zip",
13 |     "hash": "sha512:b9324cffeb5b113fa289126db1408b9a0125757b598d763f076fc5deec97fb43f27979974cadcac79b6573d84dcb2d1d5bf59b7972fb2abe5ed3d9fed445b04e",
14 |     "extract_dir": "apache-ant-1.9.16",
15 |     "env_add_path": "bin",
16 |     "env_set": {
17 |         "ANT_HOME": "$dir"
18 |     },
19 |     "checkver": {
20 |         "url": "https://ant.apache.org/bindownload.cgi",
21 |         "regex": "apache-ant-(1.9.\\d+)-bin.zip"
22 |     },
23 |     "autoupdate": {
24 |         "url": "https://www.apache.org/dist/ant/binaries/apache-ant-$version-bin.zip",
25 |         "hash": {
26 |             "url": "$url.sha512"
27 |         },
28 |         "extract_dir": "apache-ant-$version"
29 |     }
30 | }
31 | 


--------------------------------------------------------------------------------
/bucket/scala212.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "2.12.20",
 3 |     "description": "A modern multi-paradigm programming language designed to express common programming patterns in a concise, elegant, and type-safe way.",
 4 |     "homepage": "https://www.scala-lang.org/",
 5 |     "license": "BSD-3-Clause",
 6 |     "suggest": {
 7 |         "JDK": [
 8 |             "java/oraclejdk",
 9 |             "java/openjdk"
10 |         ]
11 |     },
12 |     "url": "https://downloads.lightbend.com/scala/2.12.20/scala-2.12.20.zip",
13 |     "hash": "fab2a5f87d58e641b5ea612b3752e70b8d6160c568546cc76c0b2b9e59dd079a",
14 |     "extract_dir": "scala-2.12.20",
15 |     "bin": [
16 |         "bin\\fsc.bat",
17 |         "bin\\scala.bat",
18 |         "bin\\scalac.bat",
19 |         "bin\\scaladoc.bat",
20 |         "bin\\scalap.bat"
21 |     ],
22 |     "env_set": {
23 |         "SCALA_HOME": "$dir"
24 |     },
25 |     "checkver": {
26 |         "url": " https://docs.scala-lang.org/api/all.html",
27 |         "regex": "Scala (2\\.12\\.[\\d.]+)"
28 |     },
29 |     "autoupdate": {
30 |         "url": "https://downloads.lightbend.com/scala/$version/scala-$version.zip",
31 |         "extract_dir": "scala-$version"
32 |     }
33 | }
34 | 


--------------------------------------------------------------------------------
/bucket/spark-scala2.13.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "3.5.5",
 3 |     "description": "A unified analytics engine for large-scale data processing.",
 4 |     "homepage": "https://spark.apache.org/",
 5 |     "license": "Apache-2.0",
 6 |     "suggest": {
 7 |         "JDK": "java/openjdk"
 8 |     },
 9 |     "url": "https://dlcdn.apache.org/spark/spark-3.5.5/spark-3.5.5-bin-hadoop3-scala2.13.tgz",
10 |     "hash": "sha512:a462656d2a87afcf81f24e4dea9a99e6666ed5c8ff7ba0cc9c936188498c549cf852d0ebb475325761d6cf645d1184d527be9a609503d587bb47d5532b533aa1",
11 |     "extract_dir": "spark-3.5.5-bin-hadoop3-scala2.13",
12 |     "env_add_path": "bin",
13 |     "env_set": {
14 |         "SPARK_HOME": "$dir"
15 |     },
16 |     "persist": "conf",
17 |     "checkver": {
18 |         "url": "https://spark.apache.org/downloads.html",
19 |         "regex": "version: ([\\d.]+)"
20 |     },
21 |     "autoupdate": {
22 |         "url": "https://dlcdn.apache.org/spark/spark-$version/spark-$version-bin-hadoop3-scala2.13.tgz",
23 |         "hash": {
24 |             "url": "$url.sha512",
25 |             "regex": "$basename: ([A-F0-9\\s]+)$"
26 |         },
27 |         "extract_dir": "spark-$version-bin-hadoop3-scala2.13"
28 |     }
29 | }
30 | 


--------------------------------------------------------------------------------
/bucket/wixtoolset3.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "3.14.1",
 3 |     "description": "Set of tools for windows installer creation.",
 4 |     "homepage": "https://wixtoolset.org/",
 5 |     "license": "MS-RL",
 6 |     "url": "https://github.com/wixtoolset/wix3/releases/download/wix3141rtm/wix314-binaries.zip",
 7 |     "hash": "6ac824e1642d6f7277d0ed7ea09411a508f6116ba6fae0aa5f2c7daa2ff43d31",
 8 |     "bin": [
 9 |         "candle.exe",
10 |         "dark.exe",
11 |         "heat.exe",
12 |         "insignia.exe",
13 |         "light.exe",
14 |         "lit.exe",
15 |         "lux.exe",
16 |         "melt.exe",
17 |         "nit.exe",
18 |         "pyro.exe",
19 |         "retina.exe",
20 |         "shine.exe",
21 |         "smoke.exe",
22 |         "ThmViewer.exe",
23 |         "torch.exe",
24 |         "WixCop.exe"
25 |     ],
26 |     "env_set": {
27 |         "WixToolPath": "$dir"
28 |     },
29 |     "checkver": {
30 |         "url": "https://github.com/wixtoolset/wix3/releases",
31 |         "regex": ">WiX Toolset v([\\d.]+)<"
32 |     },
33 |     "autoupdate": {
34 |         "url": "https://github.com/wixtoolset/wix3/releases/download/wix$cleanVersionrtm/wix$majorVersion$minorVersion-binaries.zip"
35 |     }
36 | }
37 | 


--------------------------------------------------------------------------------
/bucket/arduino18.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "1.8.19",
 3 |     "description": "Arduino is an open-source physical computing platform based on a simple I/O board and a development environment that implements the Processing/Wiring language.",
 4 |     "homepage": "https://www.arduino.cc/en/Main/Software",
 5 |     "license": "GPL-2.0-only",
 6 |     "url": "https://downloads.arduino.cc/arduino-1.8.19-windows.zip",
 7 |     "hash": "c704a821089eab2588f1deae775916219b1517febd1dd574ff29958dca873945",
 8 |     "extract_dir": "arduino-1.8.19",
 9 |     "bin": [
10 |         "arduino.exe",
11 |         "arduino_debug.exe",
12 |         "arduino-builder.exe"
13 |     ],
14 |     "shortcuts": [
15 |         [
16 |             "arduino.exe",
17 |             "Arduino 1.8"
18 |         ],
19 |         [
20 |             "arduino_debug.exe",
21 |             "Arduino Debug 1.8"
22 |         ]
23 |     ],
24 |     "persist": "portable",
25 |     "checkver": {
26 |         "url": "https://www.arduino.cc/en/software/",
27 |         "regex": "arduino-(1\\.8\\.\\d+)"
28 |     },
29 |     "autoupdate": {
30 |         "url": "https://downloads.arduino.cc/arduino-$version-windows.zip",
31 |         "extract_dir": "arduino-$version"
32 |     }
33 | }
34 | 


--------------------------------------------------------------------------------
/bucket/cuda10.0.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "10.0.130",
 3 |     "description": "A parallel computing platform and programming model invented by NVIDIA",
 4 |     "homepage": "https://developer.nvidia.com/cuda-toolkit",
 5 |     "license": {
 6 |         "identifier": "Freeware",
 7 |         "url": "https://docs.nvidia.com/cuda/eula/index.html"
 8 |     },
 9 |     "architecture": {
10 |         "64bit": {
11 |             "url": "https://developer.nvidia.com/compute/cuda/10.0/Prod/local_installers/cuda_10.0.130_411.31_win10#/dl.7z",
12 |             "hash": "9dae54904570272c1fcdb10f5f19c71196b4fdf3ad722afa0862a238d7c75e6f"
13 |         }
14 |     },
15 |     "installer": {
16 |         "script": [
17 |             "$names = @('bin', 'extras', 'include', 'jre', 'lib', 'libnvvp', 'nvml', 'nvvm')",
18 |             "foreach ($name in $names) {",
19 |             "    Copy-Item \"$dir\\*\\$name\" \"$dir\" -Recurse -Force",
20 |             "}",
21 |             "Get-ChildItem \"$dir\" -Exclude $names | Remove-Item -Recurse -Force"
22 |         ]
23 |     },
24 |     "env_add_path": [
25 |         "bin",
26 |         "libnvvp"
27 |     ],
28 |     "env_set": {
29 |         "CUDA_PATH": "$dir",
30 |         "CUDA_PATH_V10_0": "$dir"
31 |     }
32 | }
33 | 


--------------------------------------------------------------------------------
/bucket/kdenlive-nightly.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "11774",
 3 |     "description": "Video editing software based on the MLT Framework, KDE and Qt",
 4 |     "homepage": "https://kdenlive.org",
 5 |     "license": "GPL-2.0-only",
 6 |     "architecture": {
 7 |         "64bit": {
 8 |             "url": "https://cdn.kde.org/ci-builds/multimedia/kdenlive/master/windows/kdenlive-master-11774-windows-gcc-x86_64.7z",
 9 |             "hash": "ff4ab9e3a9e0a3072eb7fe65f1888fe1c30eaec081311aa10a3e78c24e590b66"
10 |         }
11 |     },
12 |     "bin": "bin\\kdenlive.exe",
13 |     "shortcuts": [
14 |         [
15 |             "bin\\kdenlive.exe",
16 |             "Kdenlive Nightly"
17 |         ]
18 |     ],
19 |     "checkver": {
20 |         "url": "https://cdn.kde.org/ci-builds/multimedia/kdenlive/master/windows/",
21 |         "regex": "kdenlive-master-(\\d+)-windows-gcc-x86_64\\.7z"
22 |     },
23 |     "autoupdate": {
24 |         "architecture": {
25 |             "64bit": {
26 |                 "url": "https://cdn.kde.org/ci-builds/multimedia/kdenlive/master/windows/kdenlive-master-$version-windows-gcc-x86_64.7z"
27 |             }
28 |         },
29 |         "hash": {
30 |             "url": "$url.sha256"
31 |         }
32 |     }
33 | }
34 | 


--------------------------------------------------------------------------------
/bucket/micaforeveryone-dev.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "1.0.6.3",
 3 |     "description": "Enables the backdrop effect on titlebar of Win32 apps on Windows 10/11",
 4 |     "homepage": "https://github.com/minusium/MicaForEveryone",
 5 |     "license": "MIT",
 6 |     "notes": ".NET Core 3.1 Desktop Runtime is required for this application.",
 7 |     "architecture": {
 8 |         "64bit": {
 9 |             "url": "https://github.com/minusium/MicaForEveryone/releases/download/v1.0.6.3/MicaForEveryone-v1.0.6.3-x64-Release.zip",
10 |             "hash": "f3bd1b8a15c1d92785ba979ba87b44371fb7da8a70320027e967ee0b7dfead3c"
11 |         }
12 |     },
13 |     "shortcuts": [
14 |         [
15 |             "MicaForEveryone.exe",
16 |             "MicaForEveryone"
17 |         ]
18 |     ],
19 |     "checkver": {
20 |         "url": "https://github.com/minusium/MicaForEveryone/releases",
21 |         "regex": "/v(.+)/MicaForEveryone-v(?.+)-x64-Release\\.zip"
22 |     },
23 |     "autoupdate": {
24 |         "architecture": {
25 |             "64bit": {
26 |                 "url": "https://github.com/minusium/MicaForEveryone/releases/download/v$version/MicaForEveryone-v$matchBuild-x64-Release.zip"
27 |             }
28 |         }
29 |     }
30 | }
31 | 


--------------------------------------------------------------------------------
/bucket/cuda6.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "6.5.14",
 3 |     "description": "A parallel computing platform and programming model invented by NVIDIA",
 4 |     "homepage": "https://developer.nvidia.com/cuda-toolkit",
 5 |     "license": {
 6 |         "identifier": "Freeware",
 7 |         "url": "https://docs.nvidia.com/cuda/eula/index.html"
 8 |     },
 9 |     "architecture": {
10 |         "64bit": {
11 |             "url": "http://developer.download.nvidia.com/compute/cuda/6_5/rel/installers/cuda_6.5.14_windows_general_64.exe#/dl.7z",
12 |             "hash": "f3e2c3c13ce0ecc67a5f7d7367f18d5ee0abfd50a7b6cdd10e0feb7b823fde6d"
13 |         }
14 |     },
15 |     "installer": {
16 |         "script": [
17 |             "$names = @('bin', 'extras', 'include', 'jre', 'lib', 'libnvvp', 'nvml', 'nvvm')",
18 |             "foreach ($name in $names) {",
19 |             "    Copy-Item \"$dir\\*\\$name\" \"$dir\\\" -Recurse -Force",
20 |             "}",
21 |             "Get-ChildItem \"$dir\" -Exclude $names | Remove-Item -Force -Recurse"
22 |         ]
23 |     },
24 |     "env_add_path": [
25 |         "bin",
26 |         "libnvvp"
27 |     ],
28 |     "env_set": {
29 |         "CUDA_PATH": "$dir",
30 |         "CUDA_PATH_V6_5": "$dir"
31 |     }
32 | }
33 | 


--------------------------------------------------------------------------------
/bucket/cuda10.2.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "10.2.89",
 3 |     "description": "A parallel computing platform and programming model invented by NVIDIA",
 4 |     "homepage": "https://developer.nvidia.com/cuda-toolkit",
 5 |     "license": {
 6 |         "identifier": "Freeware",
 7 |         "url": "https://docs.nvidia.com/cuda/eula/index.html"
 8 |     },
 9 |     "architecture": {
10 |         "64bit": {
11 |             "url": "http://developer.download.nvidia.com/compute/cuda/10.2/Prod/local_installers/cuda_10.2.89_441.22_win10.exe#/dl.7z",
12 |             "hash": "b538271c4d9ffce1a8520bf992d9bd23854f0f29cee67f48c6139e4cf301e253"
13 |         }
14 |     },
15 |     "installer": {
16 |         "script": [
17 |             "$names = @('bin', 'extras', 'include', 'jre', 'lib', 'libnvvp', 'nvml', 'nvvm')",
18 |             "foreach ($name in $names) {",
19 |             "    Copy-Item \"$dir\\*\\$name\" \"$dir\" -Recurse -Force",
20 |             "}",
21 |             "Get-ChildItem \"$dir\" -Exclude $names | Remove-Item -Recurse -Force"
22 |         ]
23 |     },
24 |     "env_add_path": [
25 |         "bin",
26 |         "libnvvp"
27 |     ],
28 |     "env_set": {
29 |         "CUDA_PATH": "$dir",
30 |         "CUDA_PATH_V10_2": "$dir"
31 |     }
32 | }
33 | 


--------------------------------------------------------------------------------
/bucket/cuda10.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "10.2.89",
 3 |     "description": "A parallel computing platform and programming model invented by NVIDIA",
 4 |     "homepage": "https://developer.nvidia.com/cuda-toolkit",
 5 |     "license": {
 6 |         "identifier": "Freeware",
 7 |         "url": "https://docs.nvidia.com/cuda/eula/index.html"
 8 |     },
 9 |     "architecture": {
10 |         "64bit": {
11 |             "url": "http://developer.download.nvidia.com/compute/cuda/10.2/Prod/local_installers/cuda_10.2.89_441.22_win10.exe#/dl.7z",
12 |             "hash": "b538271c4d9ffce1a8520bf992d9bd23854f0f29cee67f48c6139e4cf301e253"
13 |         }
14 |     },
15 |     "installer": {
16 |         "script": [
17 |             "$names = @('bin', 'extras', 'include', 'jre', 'lib', 'libnvvp', 'nvml', 'nvvm')",
18 |             "foreach ($name in $names) {",
19 |             "    Copy-Item \"$dir\\*\\$name\" \"$dir\" -Recurse -Force",
20 |             "}",
21 |             "Get-ChildItem \"$dir\" -Exclude $names | Remove-Item -Recurse -Force"
22 |         ]
23 |     },
24 |     "env_add_path": [
25 |         "bin",
26 |         "libnvvp"
27 |     ],
28 |     "env_set": {
29 |         "CUDA_PATH": "$dir",
30 |         "CUDA_PATH_V10_2": "$dir"
31 |     }
32 | }
33 | 


--------------------------------------------------------------------------------
/bucket/cuda6.5.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "6.5.14",
 3 |     "description": "A parallel computing platform and programming model invented by NVIDIA",
 4 |     "homepage": "https://developer.nvidia.com/cuda-toolkit",
 5 |     "license": {
 6 |         "identifier": "Freeware",
 7 |         "url": "https://docs.nvidia.com/cuda/eula/index.html"
 8 |     },
 9 |     "architecture": {
10 |         "64bit": {
11 |             "url": "http://developer.download.nvidia.com/compute/cuda/6_5/rel/installers/cuda_6.5.14_windows_general_64.exe#/dl.7z",
12 |             "hash": "f3e2c3c13ce0ecc67a5f7d7367f18d5ee0abfd50a7b6cdd10e0feb7b823fde6d"
13 |         }
14 |     },
15 |     "installer": {
16 |         "script": [
17 |             "$names = @('bin', 'extras', 'include', 'jre', 'lib', 'libnvvp', 'nvml', 'nvvm')",
18 |             "foreach ($name in $names) {",
19 |             "    Copy-Item \"$dir\\*\\$name\" \"$dir\\\" -Recurse -Force",
20 |             "}",
21 |             "Get-ChildItem \"$dir\" -Exclude $names | Remove-Item -Force -Recurse"
22 |         ]
23 |     },
24 |     "env_add_path": [
25 |         "bin",
26 |         "libnvvp"
27 |     ],
28 |     "env_set": {
29 |         "CUDA_PATH": "$dir",
30 |         "CUDA_PATH_V6_5": "$dir"
31 |     }
32 | }
33 | 


--------------------------------------------------------------------------------
/bucket/wox-beta.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "2.0.0-beta.7",
 3 |     "description": "A full-featured launcher, access programs and web contents as you type.",
 4 |     "homepage": "http://www.wox.one",
 5 |     "license": "MIT",
 6 |     "suggest": {
 7 |         "Python3": "python",
 8 |         "Everything": "extras/everything"
 9 |     },
10 |     "architecture": {
11 |         "64bit": {
12 |             "url": "https://github.com/Wox-launcher/Wox/releases/download/v2.0.0-beta.7/wox-windows-amd64.exe",
13 |             "hash": "858fe47d64a707c89d4f089da4475b5c1a62ed71e6c7841abad3de486f35fa1f"
14 |         }
15 |     },
16 |     "installer": {
17 |         "script": "Rename-Item \"$dir\\wox-windows-amd64.exe\" 'Wox.exe'"
18 |     },
19 |     "shortcuts": [
20 |         [
21 |             "Wox.exe",
22 |             "Wox"
23 |         ]
24 |     ],
25 |     "checkver": {
26 |         "url": "https://github.com/Wox-launcher/Wox/releases",
27 |         "regex": "tree/v([\\d.]+-beta\\.\\d+)"
28 |     },
29 |     "autoupdate": {
30 |         "architecture": {
31 |             "64bit": {
32 |                 "url": "https://github.com/Wox-launcher/Wox/releases/download/v$version/wox-windows-amd64.exe"
33 |             }
34 |         }
35 |     }
36 | }
37 | 


--------------------------------------------------------------------------------
/bucket/cuda10.1.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "10.1.243",
 3 |     "description": "A parallel computing platform and programming model invented by NVIDIA",
 4 |     "homepage": "https://developer.nvidia.com/cuda-toolkit",
 5 |     "license": {
 6 |         "identifier": "Freeware",
 7 |         "url": "https://docs.nvidia.com/cuda/eula/index.html"
 8 |     },
 9 |     "architecture": {
10 |         "64bit": {
11 |             "url": "http://developer.download.nvidia.com/compute/cuda/10.1/Prod/local_installers/cuda_10.1.243_426.00_win10.exe#/dl.7z",
12 |             "hash": "35d3c99c58dd601b2a2caa28f44d828cae1eaf8beb70702732585fa001cd8ad7"
13 |         }
14 |     },
15 |     "installer": {
16 |         "script": [
17 |             "$names = @('bin', 'extras', 'include', 'jre', 'lib', 'libnvvp', 'nvml', 'nvvm')",
18 |             "foreach ($name in $names) {",
19 |             "    Copy-Item \"$dir\\*\\$name\" \"$dir\" -Recurse -Force",
20 |             "}",
21 |             "Get-ChildItem \"$dir\" -Exclude $names | Remove-Item -Recurse -Force"
22 |         ]
23 |     },
24 |     "env_add_path": [
25 |         "bin",
26 |         "libnvvp"
27 |     ],
28 |     "env_set": {
29 |         "CUDA_PATH": "$dir",
30 |         "CUDA_PATH_V10_1": "$dir"
31 |     }
32 | }
33 | 


--------------------------------------------------------------------------------
/bucket/marknote-nightly.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "938",
 3 |     "description": "A simple markdown note-taking app developed by KDE",
 4 |     "homepage": "https://apps.kde.org/marknote/",
 5 |     "license": "GPL-2.0-or-later",
 6 |     "architecture": {
 7 |         "64bit": {
 8 |             "url": "https://cdn.kde.org/ci-builds/office/marknote/master/windows/marknote-master-938-windows-cl-msvc2022-x86_64.7z",
 9 |             "hash": "b208a735a7777a9c23d31f44266171d0c26379cd75d13202a0a41e93764a07ba"
10 |         }
11 |     },
12 |     "bin": "bin\\marknote.exe",
13 |     "shortcuts": [
14 |         [
15 |             "bin\\marknote.exe",
16 |             "Marknote Nightly"
17 |         ]
18 |     ],
19 |     "checkver": {
20 |         "url": "https://cdn.kde.org/ci-builds/office/marknote/master/windows/",
21 |         "regex": "marknote-master-(\\d+)-windows-cl-(?\\w+)-x86_64\\.7z"
22 |     },
23 |     "autoupdate": {
24 |         "architecture": {
25 |             "64bit": {
26 |                 "url": "https://cdn.kde.org/ci-builds/office/marknote/master/windows/marknote-master-$version-windows-cl-$matchLib-x86_64.7z"
27 |             }
28 |         },
29 |         "hash": {
30 |             "url": "$url.sha256"
31 |         }
32 |     }
33 | }
34 | 


--------------------------------------------------------------------------------
/bucket/lapce-nightly.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "1766537148",
 3 |     "description": "Lightning-fast and Powerful Code Editor written in Rust",
 4 |     "homepage": "https://lapce.dev/",
 5 |     "license": "Apache-2.0",
 6 |     "architecture": {
 7 |         "64bit": {
 8 |             "url": "https://github.com/lapce/lapce/releases/download/nightly/Lapce-windows-portable.zip",
 9 |             "hash": "497ffffd35dcccd5e3357d644c742a65bb9539b4db152731d587d75edf88125f"
10 |         }
11 |     },
12 |     "bin": [
13 |         [
14 |             "lapce.exe",
15 |             "lapce-nightly"
16 |         ]
17 |     ],
18 |     "shortcuts": [
19 |         [
20 |             "lapce.exe",
21 |             "Lapce Nightly"
22 |         ]
23 |     ],
24 |     "persist": "lapce-data",
25 |     "checkver": {
26 |         "script": "try { Get-Date (Invoke-RestMethod https://api.github.com/repositories/120425779/releases/tags/nightly).published_at -UFormat %s } catch { '' }",
27 |         "regex": "\\A(\\d+)\\Z"
28 |     },
29 |     "autoupdate": {
30 |         "architecture": {
31 |             "64bit": {
32 |                 "url": "https://github.com/lapce/lapce/releases/download/nightly/Lapce-windows-portable.zip"
33 |             }
34 |         }
35 |     }
36 | }
37 | 


--------------------------------------------------------------------------------
/bucket/openscad-dev.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "2025.12.23",
 3 |     "description": "The Programmers Solid 3D CAD Modeller",
 4 |     "homepage": "https://www.openscad.org/",
 5 |     "license": "GPL-2.0-or-later",
 6 |     "architecture": {
 7 |         "64bit": {
 8 |             "url": "https://files.openscad.org/snapshots/OpenSCAD-2025.12.23-x86-64.zip",
 9 |             "hash": "sha512:d8eefdadf670cfe218479b01abd68d866d87e9cd1566fc546baf909b3ab275d522356271732e375db94b7c15ba4567e50add5f0ff02f3e8dccd3182174457702",
10 |             "extract_dir": "OpenSCAD-2025.12.23-x86-64"
11 |         }
12 |     },
13 |     "shortcuts": [
14 |         [
15 |             "openscad.exe",
16 |             "OpenSCAD Snapshot"
17 |         ]
18 |     ],
19 |     "checkver": {
20 |         "url": "https://files.openscad.org/snapshots/.snapshot_win64.js",
21 |         "regex": "OpenSCAD-([\\d.]+)"
22 |     },
23 |     "autoupdate": {
24 |         "architecture": {
25 |             "64bit": {
26 |                 "url": "https://files.openscad.org/snapshots/OpenSCAD-$version-x86-64.zip",
27 |                 "extract_dir": "OpenSCAD-$version-x86-64"
28 |             }
29 |         },
30 |         "hash": {
31 |             "url": "$url.sha512"
32 |         }
33 |     }
34 | }
35 | 


--------------------------------------------------------------------------------
/bucket/mpv.net-beta.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "7.1.1.5",
 3 |     "description": "A modern media player for Windows that works just like mpv",
 4 |     "homepage": "https://github.com/mpvnet-player/mpv.net/",
 5 |     "license": "GPL-2.0-or-later",
 6 |     "architecture": {
 7 |         "64bit": {
 8 |             "url": "https://github.com/mpvnet-player/mpv.net/releases/download/v7.1.1.5-beta/mpv.net-v7.1.1.5-beta-portable-x64.zip",
 9 |             "hash": "aff8add9fa335c61eb88228d2b52ee00dc45642601ac403d359a06e7b9818a04"
10 |         }
11 |     },
12 |     "bin": "mpvnet.com",
13 |     "shortcuts": [
14 |         [
15 |             "mpvnet.exe",
16 |             "mpv.net"
17 |         ]
18 |     ],
19 |     "persist": "portable_config",
20 |     "checkver": {
21 |         "url": "https://api.github.com/repositories/101537172/releases",
22 |         "jsonpath": "$..browser_download_url",
23 |         "regex": "download/v(?[\\d.]+-beta)/mpv.net-v([\\d.]+)-beta-portable-x64.zip"
24 |     },
25 |     "autoupdate": {
26 |         "architecture": {
27 |             "64bit": {
28 |                 "url": "https://github.com/mpvnet-player/mpv.net/releases/download/v$matchTag/mpv.net-v$version-beta-portable-x64.zip"
29 |             }
30 |         }
31 |     }
32 | }
33 | 


--------------------------------------------------------------------------------
/bucket/kate-nightly.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "10795",
 3 |     "description": "Multi-document editor",
 4 |     "homepage": "https://apps.kde.org/kate",
 5 |     "license": "LGPL-2.0-only",
 6 |     "architecture": {
 7 |         "64bit": {
 8 |             "url": "https://cdn.kde.org/ci-builds/utilities/kate/master/windows/kate-master-10795-windows-cl-msvc2022-x86_64.7z",
 9 |             "hash": "43b228eb94968372b6167a73024e4dcf04e53ad1e06d8b03f33b493a9bdcba6f"
10 |         }
11 |     },
12 |     "bin": [
13 |         [
14 |             "bin\\kate.exe",
15 |             "kate"
16 |         ]
17 |     ],
18 |     "shortcuts": [
19 |         [
20 |             "bin\\kate.exe",
21 |             "Kate Nightly"
22 |         ]
23 |     ],
24 |     "checkver": {
25 |         "url": "https://cdn.kde.org/ci-builds/utilities/kate/master/windows/",
26 |         "regex": "kate-master-(\\d+)-windows-cl-(?\\w+)-x86_64\\.7z"
27 |     },
28 |     "autoupdate": {
29 |         "architecture": {
30 |             "64bit": {
31 |                 "url": "https://cdn.kde.org/ci-builds/utilities/kate/master/windows/kate-master-$version-windows-cl-$matchLib-x86_64.7z"
32 |             }
33 |         },
34 |         "hash": {
35 |             "url": "$url.sha256"
36 |         }
37 |     }
38 | }
39 | 


--------------------------------------------------------------------------------
/bucket/cuda12.9.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "12.9.1",
 3 |     "description": "A parallel computing platform and programming model invented by NVIDIA (version 12.9)",
 4 |     "homepage": "https://developer.nvidia.com/cuda-toolkit",
 5 |     "license": {
 6 |         "identifier": "Freeware",
 7 |         "url": "https://docs.nvidia.com/cuda/eula/index.html"
 8 |     },
 9 |     "architecture": {
10 |         "64bit": {
11 |             "url": "http://developer.download.nvidia.com/compute/cuda/12.9.1/local_installers/cuda_12.9.1_576.57_windows.exe#/dl.7z",
12 |             "hash": "md5:9475f337896805cbe66935cbb8504d6f"
13 |         }
14 |     },
15 |     "installer": {
16 |         "script": [
17 |             "$names = @('bin', 'extras', 'include', 'lib', 'libnvvp', 'nvml', 'nvvm', 'compute-sanitizer')",
18 |             "foreach ($name in $names) {",
19 |             "    Copy-Item \"$dir\\cuda_*\\*\\$name\" \"$dir\" -Recurse -Force",
20 |             "    Copy-Item \"$dir\\lib*\\*\\$name\" \"$dir\" -Recurse -Force",
21 |             "}",
22 |             "Get-ChildItem \"$dir\" -Exclude $names | Remove-Item -Recurse -Force"
23 |         ]
24 |     },
25 |     "env_add_path": "bin",
26 |     "env_set": {
27 |         "CUDA_PATH": "$dir",
28 |         "CUDA_PATH_V12_9": "$dir"
29 |     }
30 | }
31 | 


--------------------------------------------------------------------------------
/bucket/maven4.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "4.0.0-rc-5",
 3 |     "description": "Software project management and comprehension tool",
 4 |     "homepage": "https://maven.apache.org/",
 5 |     "license": "Apache-2.0",
 6 |     "suggest": {
 7 |         "JDK": "java/openjdk"
 8 |     },
 9 |     "url": "https://archive.apache.org/dist/maven/maven-4/4.0.0-rc-5/binaries/apache-maven-4.0.0-rc-5-bin.zip",
10 |     "hash": "sha512:3e947180e44f1cb059b5a3bb8b0a543bb97f645bfda85a22d8226f1db6536e77ff737dca7fe808f47fad4f5e42ad0c584d91fa0ead9856692053b0c322d22152",
11 |     "extract_dir": "apache-maven-4.0.0-rc-5",
12 |     "env_add_path": "bin",
13 |     "persist": [
14 |         "conf",
15 |         "lib\\ext"
16 |     ],
17 |     "checkver": {
18 |         "url": "https://maven.apache.org/docs/history.html",
19 |         "regex": "(4[\\w.-]+)"
20 |     },
21 |     "bin": [
22 |         "bin\\mvn.cmd",
23 |         [
24 |             "bin\\mvn.cmd",
25 |             "mvn4"
26 |         ]
27 |     ],
28 |     "autoupdate": {
29 |         "url": "https://archive.apache.org/dist/maven/maven-$majorVersion/$version/binaries/apache-maven-$version-bin.zip",
30 |         "hash": {
31 |             "url": "$url.sha512"
32 |         },
33 |         "extract_dir": "apache-maven-$version"
34 |     }
35 | }
36 | 


--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
 1 | This is free and unencumbered software released into the public domain.
 2 | 
 3 | Anyone is free to copy, modify, publish, use, compile, sell, or
 4 | distribute this software, either in source code form or as a compiled
 5 | binary, for any purpose, commercial or non-commercial, and by any
 6 | means.
 7 | 
 8 | In jurisdictions that recognize copyright laws, the author or authors
 9 | of this software dedicate any and all copyright interest in the
10 | software to the public domain. We make this dedication for the benefit
11 | of the public at large and to the detriment of our heirs and
12 | successors. We intend this dedication to be an overt act of
13 | relinquishment in perpetuity of all present and future rights to this
14 | software under copyright law.
15 | 
16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19 | IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 | OTHER DEALINGS IN THE SOFTWARE.
23 | 
24 | For more information, please refer to 
25 | 


--------------------------------------------------------------------------------
/bucket/okular-nightly.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "7050",
 3 |     "description": "Universal document viewer",
 4 |     "homepage": "https://okular.kde.org",
 5 |     "license": "LGPL-2.0-only",
 6 |     "architecture": {
 7 |         "64bit": {
 8 |             "url": "https://cdn.kde.org/ci-builds/graphics/okular/master/windows/okular-master-7050-windows-cl-msvc2022-x86_64.7z",
 9 |             "hash": "09bb61d451adb3eba7a5f70543e72fa1d2fcb344582a5d7cae45b3d80ac6ff83"
10 |         }
11 |     },
12 |     "bin": [
13 |         [
14 |             "bin\\okular.exe",
15 |             "okular"
16 |         ]
17 |     ],
18 |     "shortcuts": [
19 |         [
20 |             "bin\\okular.exe",
21 |             "Okular Nightly"
22 |         ]
23 |     ],
24 |     "checkver": {
25 |         "url": "https://cdn.kde.org/ci-builds/graphics/okular/master/windows/",
26 |         "regex": "okular-master-(\\d+)-windows-cl-(?\\w+)-x86_64\\.7z"
27 |     },
28 |     "autoupdate": {
29 |         "architecture": {
30 |             "64bit": {
31 |                 "url": "https://cdn.kde.org/ci-builds/graphics/okular/master/windows/okular-master-$version-windows-cl-$matchLib-x86_64.7z"
32 |             }
33 |         },
34 |         "hash": {
35 |             "url": "$url.sha256"
36 |         }
37 |     }
38 | }
39 | 


--------------------------------------------------------------------------------
/bucket/brave-beta.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "homepage": "https://brave.com",
 3 |     "version": "1.86.122",
 4 |     "description": "Secure, Fast & Private Web Browser with Adblocker (beta release)",
 5 |     "license": {
 6 |         "identifier": "Freeware,BSD-3-Clause,GPL-3.0-only,...",
 7 |         "url": "https://github.com/brave/brave-browser/blob/master/LICENSE"
 8 |     },
 9 |     "architecture": {
10 |         "64bit": {
11 |             "url": "https://github.com/brave/brave-browser/releases/download/v1.86.122/brave-v1.86.122-win32-x64.zip",
12 |             "hash": "d6120d32b9e60df3b5cd4835992b1b2c21c3f8c80ff2a4aea0d8c35f95f6e628"
13 |         }
14 |     },
15 |     "bin": [
16 |         [
17 |             "brave.exe",
18 |             "brave-beta"
19 |         ]
20 |     ],
21 |     "shortcuts": [
22 |         [
23 |             "brave.exe",
24 |             "Brave Beta"
25 |         ]
26 |     ],
27 |     "checkver": {
28 |         "url": "https://github.com/brave/brave-browser/releases",
29 |         "regex": "Beta v([\\d.]+)"
30 |     },
31 |     "autoupdate": {
32 |         "architecture": {
33 |             "64bit": {
34 |                 "url": "https://github.com/brave/brave-browser/releases/download/v$version/brave-v$version-win32-x64.zip"
35 |             }
36 |         }
37 |     }
38 | }
39 | 


--------------------------------------------------------------------------------
/bucket/qt-creator-beta.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "9.0.2",
 3 |     "description": "IDE for development with the Qt framework",
 4 |     "homepage": "https://doc.qt.io/qtcreator/index.html",
 5 |     "license": "GPL-3.0-only",
 6 |     "suggest": {
 7 |         "vcredist": "extras/vcredist2022"
 8 |     },
 9 |     "architecture": {
10 |         "64bit": {
11 |             "url": "https://github.com/qt-creator/qt-creator/releases/download/v9.0.2/qtcreator-Windows-MSVC-4241715008.7z",
12 |             "hash": "4cf0ebe4b492b69bc89483cd02f187b9116cc90fc3340adb890343b724792608"
13 |         }
14 |     },
15 |     "bin": "bin\\qtcreator.exe",
16 |     "shortcuts": [
17 |         [
18 |             "bin\\qtcreator.exe",
19 |             "Qt Creator"
20 |         ]
21 |     ],
22 |     "checkver": {
23 |         "url": "https://api.github.com/repositories/9881671/releases/latest",
24 |         "jsonpath": "$.assets[0].browser_download_url",
25 |         "regex": "/releases/download/v([\\w.-]+)/qt-creator-\\w+-(?\\d+)\\.\\w+$"
26 |     },
27 |     "autoupdate": {
28 |         "architecture": {
29 |             "64bit": {
30 |                 "url": "https://github.com/qt-creator/qt-creator/releases/download/v$version/qtcreator-Windows-MSVC-$matchNums.7z"
31 |             }
32 |         }
33 |     }
34 | }
35 | 


--------------------------------------------------------------------------------
/bucket/zed-nightly.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "2025-12-24",
 3 |     "description": "Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter. It's also open source.",
 4 |     "homepage": "https://zed.dev/",
 5 |     "license": "AGPL-3.0, Apache-2.0, GPL-3.0",
 6 |     "architecture": {
 7 |         "64bit": {
 8 |             "url": "https://github.com/deevus/zed-windows-builds/releases/download/12-24-2025/zed.zip",
 9 |             "hash": "d8bdfd68063843e5f7b0374943a09dacfb401b1b3fa480cbf283be5bf0cd0396"
10 |         }
11 |     },
12 |     "extract_dir": "zed",
13 |     "bin": "bin\\zed.exe",
14 |     "shortcuts": [
15 |         [
16 |             "zed.exe",
17 |             "Zed Nightly"
18 |         ]
19 |     ],
20 |     "checkver": {
21 |         "url": "https://api.github.com/repos/deevus/zed-windows-builds/releases",
22 |         "regex": "(?(?\\d{2})-(?\\d{2})-(?\\d{4}))",
23 |         "replace": "${year}-${month}-${day}"
24 |     },
25 |     "autoupdate": {
26 |         "url": "https://github.com/deevus/zed-windows-builds/releases/download/$matchVersion/zed.zip",
27 |         "hash": {
28 |             "url": "https://github.com/deevus/zed-windows-builds/releases/download/$matchVersion/sha256sums.txt"
29 |         }
30 |     }
31 | }
32 | 


--------------------------------------------------------------------------------
/bucket/freecad-weekly.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "2025.12.24",
 3 |     "description": "A free and open-source multi-platform parametric 3D modeler.",
 4 |     "homepage": "https://www.freecadweb.org",
 5 |     "license": "LGPL-2.0-or-later",
 6 |     "architecture": {
 7 |         "64bit": {
 8 |             "url": "https://github.com/FreeCAD/FreeCAD/releases/download/weekly-2025.12.24/FreeCAD_weekly-2025.12.24-Windows-x86_64-py311.7z",
 9 |             "hash": "8b429e485f2d68a47331e0975f97ed4c6c1f6a3c82f407d9f2abab4f5875fa05"
10 |         }
11 |     },
12 |     "extract_dir": "FreeCAD_weekly-2025.12.24-Windows-x86_64-py311",
13 |     "bin": "bin\\FreeCADCmd.exe",
14 |     "shortcuts": [
15 |         [
16 |             "bin\\FreeCAD.exe",
17 |             "FreeCAD"
18 |         ]
19 |     ],
20 |     "checkver": {
21 |         "url": "https://api.github.com/repos/FreeCAD/FreeCAD/releases",
22 |         "regex": "FreeCAD_weekly-([\\d.]+)-Windows-x86_64"
23 |     },
24 |     "autoupdate": {
25 |         "architecture": {
26 |             "64bit": {
27 |                 "url": "https://github.com/FreeCAD/FreeCAD/releases/download/weekly-$version/FreeCAD_weekly-$version-Windows-x86_64-py311.7z"
28 |             }
29 |         },
30 |         "extract_dir": "FreeCAD_weekly-$version-Windows-x86_64-py311"
31 |     }
32 | }
33 | 


--------------------------------------------------------------------------------
/bucket/brave-nightly.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "homepage": "https://brave.com",
 3 |     "version": "1.87.110",
 4 |     "description": "Secure, Fast & Private Web Browser with Adblocker (nightly release)",
 5 |     "license": {
 6 |         "identifier": "Freeware,BSD-3-Clause,GPL-3.0-only,...",
 7 |         "url": "https://github.com/brave/brave-browser/blob/master/LICENSE"
 8 |     },
 9 |     "architecture": {
10 |         "64bit": {
11 |             "url": "https://github.com/brave/brave-browser/releases/download/v1.87.110/brave-v1.87.110-win32-x64.zip",
12 |             "hash": "fe389ce4c102ff14b1271a7b484c8c2e90abc98bb484cf6a1cf6335a5d47f2c4"
13 |         }
14 |     },
15 |     "bin": [
16 |         [
17 |             "brave.exe",
18 |             "brave-nightly"
19 |         ]
20 |     ],
21 |     "shortcuts": [
22 |         [
23 |             "brave.exe",
24 |             "Brave Nightly"
25 |         ]
26 |     ],
27 |     "checkver": {
28 |         "url": "https://github.com/brave/brave-browser/releases",
29 |         "regex": "Nightly v([\\d.]+)"
30 |     },
31 |     "autoupdate": {
32 |         "architecture": {
33 |             "64bit": {
34 |                 "url": "https://github.com/brave/brave-browser/releases/download/v$version/brave-v$version-win32-x64.zip"
35 |             }
36 |         }
37 |     }
38 | }
39 | 


--------------------------------------------------------------------------------
/bucket/cuda11.6.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "11.6.2",
 3 |     "description": "A parallel computing platform and programming model invented by NVIDIA (version 11.6)",
 4 |     "homepage": "https://developer.nvidia.com/cuda-toolkit",
 5 |     "license": {
 6 |         "identifier": "Freeware",
 7 |         "url": "https://docs.nvidia.com/cuda/eula/index.html"
 8 |     },
 9 |     "architecture": {
10 |         "64bit": {
11 |             "url": "http://developer.download.nvidia.com/compute/cuda/11.6.2/local_installers/cuda_11.6.2_511.65_windows.exe#/dl.7z",
12 |             "hash": "07209206d11cd5a2ad9227fe0be0f145113416db619fbddee1e76d2a388a56e9"
13 |         }
14 |     },
15 |     "installer": {
16 |         "script": [
17 |             "$names = @('bin', 'extras', 'include', 'lib', 'libnvvp', 'nvml', 'nvvm', 'compute-sanitizer')",
18 |             "foreach ($name in $names) {",
19 |             "    Copy-Item \"$dir\\cuda_*\\*\\$name\" \"$dir\" -Recurse -Force",
20 |             "    Copy-Item \"$dir\\lib*\\*\\$name\" \"$dir\" -Recurse -Force",
21 |             "}",
22 |             "Get-ChildItem \"$dir\" -Exclude $names | Remove-Item -Recurse -Force"
23 |         ]
24 |     },
25 |     "env_add_path": "bin",
26 |     "env_set": {
27 |         "CUDA_PATH": "$dir",
28 |         "CUDA_PATH_V11_6": "$dir"
29 |     }
30 | }
31 | 


--------------------------------------------------------------------------------
/bucket/cuda11.7.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "11.7.1",
 3 |     "description": "A parallel computing platform and programming model invented by NVIDIA (version 11.7)",
 4 |     "homepage": "https://developer.nvidia.com/cuda-toolkit",
 5 |     "license": {
 6 |         "identifier": "Freeware",
 7 |         "url": "https://docs.nvidia.com/cuda/eula/index.html"
 8 |     },
 9 |     "architecture": {
10 |         "64bit": {
11 |             "url": "http://developer.download.nvidia.com/compute/cuda/11.7.1/local_installers/cuda_11.7.1_516.94_windows.exe#/dl.7z",
12 |             "hash": "22d6899b2d8851e7db54bdea201b280c544d0c1867da0128a659e2a223bc36c2"
13 |         }
14 |     },
15 |     "installer": {
16 |         "script": [
17 |             "$names = @('bin', 'extras', 'include', 'lib', 'libnvvp', 'nvml', 'nvvm', 'compute-sanitizer')",
18 |             "foreach ($name in $names) {",
19 |             "    Copy-Item \"$dir\\cuda_*\\*\\$name\" \"$dir\" -Recurse -Force",
20 |             "    Copy-Item \"$dir\\lib*\\*\\$name\" \"$dir\" -Recurse -Force",
21 |             "}",
22 |             "Get-ChildItem \"$dir\" -Exclude $names | Remove-Item -Recurse -Force"
23 |         ]
24 |     },
25 |     "env_add_path": "bin",
26 |     "env_set": {
27 |         "CUDA_PATH": "$dir",
28 |         "CUDA_PATH_V11_7": "$dir"
29 |     }
30 | }
31 | 


--------------------------------------------------------------------------------
/bucket/cuda11.8.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "11.8.0",
 3 |     "description": "A parallel computing platform and programming model invented by NVIDIA (version 11.8)",
 4 |     "homepage": "https://developer.nvidia.com/cuda-toolkit",
 5 |     "license": {
 6 |         "identifier": "Freeware",
 7 |         "url": "https://docs.nvidia.com/cuda/eula/index.html"
 8 |     },
 9 |     "architecture": {
10 |         "64bit": {
11 |             "url": "http://developer.download.nvidia.com/compute/cuda/11.8.0/local_installers/cuda_11.8.0_522.06_windows.exe#/dl.7z",
12 |             "hash": "b70f38f27321c0a53993438a91970a2e3c426f46da4c42eceff1eeea031a6555"
13 |         }
14 |     },
15 |     "installer": {
16 |         "script": [
17 |             "$names = @('bin', 'extras', 'include', 'lib', 'libnvvp', 'nvml', 'nvvm', 'compute-sanitizer')",
18 |             "foreach ($name in $names) {",
19 |             "    Copy-Item \"$dir\\cuda_*\\*\\$name\" \"$dir\" -Recurse -Force",
20 |             "    Copy-Item \"$dir\\lib*\\*\\$name\" \"$dir\" -Recurse -Force",
21 |             "}",
22 |             "Get-ChildItem \"$dir\" -Exclude $names | Remove-Item -Recurse -Force"
23 |         ]
24 |     },
25 |     "env_add_path": "bin",
26 |     "env_set": {
27 |         "CUDA_PATH": "$dir",
28 |         "CUDA_PATH_V11_8": "$dir"
29 |     }
30 | }
31 | 


--------------------------------------------------------------------------------
/scripts/geogebra5/install-associations.reg:
--------------------------------------------------------------------------------
 1 | Windows Registry Editor Version 5.00
 2 | 
 3 | [HKEY_CURRENT_USER\Software\Classes\.ggb\OpenWithProgIDs]
 4 | "GeoGebra.File"=hex(0):
 5 | 
 6 | 
 7 | [HKEY_CURRENT_USER\SOFTWARE\Classes\GeoGebra.File]
 8 | @="GeoGebra File"
 9 | "FriendlyTypeName"="GeoGebra File"
10 | 
11 | [HKEY_CURRENT_USER\SOFTWARE\Classes\GeoGebra.File\DefaultIcon]
12 | @="\"{{geogebra_dir}}\\GeoGebra.exe\",0"
13 | 
14 | [HKEY_CURRENT_USER\SOFTWARE\Classes\GeoGebra.File\shell]
15 | 
16 | [HKEY_CURRENT_USER\SOFTWARE\Classes\GeoGebra.File\shell\open]
17 | 
18 | [HKEY_CURRENT_USER\SOFTWARE\Classes\GeoGebra.File\shell\open\command]
19 | @="\"{{geogebra_dir}}\\GeoGebra.exe\" \"%1\""
20 | 
21 | 
22 | 
23 | [HKEY_CURRENT_USER\SOFTWARE\Classes\.ggt\OpenWithProgIDs]
24 | "GeoGebra.Tool"=hex(0):
25 | 
26 | 
27 | [HKEY_CURRENT_USER\SOFTWARE\Classes\GeoGebra.Tool]
28 | @="GeoGebra Tool"
29 | "FriendlyTypeName"="GeoGebra Tool"
30 | 
31 | [HKEY_CURRENT_USER\SOFTWARE\Classes\GeoGebra.Tool\DefaultIcon]
32 | @="\"{{geogebra_dir}}\\GeoGebra.exe\",0"
33 | 
34 | [HKEY_CURRENT_USER\SOFTWARE\Classes\GeoGebra.Tool\shell]
35 | 
36 | [HKEY_CURRENT_USER\SOFTWARE\Classes\GeoGebra.Tool\shell\open]
37 | 
38 | [HKEY_CURRENT_USER\SOFTWARE\Classes\GeoGebra.Tool\shell\open\command]
39 | @="\"{{geogebra_dir}}\\GeoGebra.exe\" \"%1\""
40 | 


--------------------------------------------------------------------------------
/bucket/influxdb1.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "1.12.2",
 3 |     "description": "Scalable datastore for metrics, events, and real-time analytics.",
 4 |     "homepage": "https://www.influxdata.com/",
 5 |     "license": "MIT",
 6 |     "architecture": {
 7 |         "64bit": {
 8 |             "url": "https://download.influxdata.com/influxdb/releases/v1.12.2/influxdb-1.12.2-windows.zip",
 9 |             "hash": "bd2bd7a7c1a9aee521a814448b292bb2be1cab2b49dbff069abc70f4920de28a"
10 |         }
11 |     },
12 |     "bin": [
13 |         "influx.exe",
14 |         "influx_inspect.exe",
15 |         "influxd.exe"
16 |     ],
17 |     "persist": "influxdb.conf",
18 |     "checkver": {
19 |         "url": "https://www.influxdata.com/versions.json",
20 |         "jsonpath": "$.influxdb_stable.version",
21 |         "regex": "(1\\.[\\d.]+)"
22 |     },
23 |     "autoupdate": {
24 |         "architecture": {
25 |             "64bit": {
26 |                 "url": "https://download.influxdata.com/influxdb/releases/v$version/influxdb-$version-windows.zip",
27 |                 "hash": {
28 |                     "url": "https://www.influxdata.com/versions.json",
29 |                     "jsonpath": "$.influxdb_stable.downloads[?(@.platform =~ /^Windows/)].sha256"
30 |                 }
31 |             }
32 |         }
33 |     }
34 | }
35 | 


--------------------------------------------------------------------------------
/bucket/zed-opengl-nightly.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "2025-12-24",
 3 |     "description": "Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter. It's also open source.",
 4 |     "homepage": "https://zed.dev/",
 5 |     "license": "AGPL-3.0, Apache-2.0, GPL-3.0",
 6 |     "architecture": {
 7 |         "64bit": {
 8 |             "url": "https://github.com/deevus/zed-windows-builds/releases/download/12-24-2025/zed-opengl.zip",
 9 |             "hash": "c1d30ccd67bf4ae396f6601ae6474a696cf775bcb3949249f06b76d80ce96108"
10 |         }
11 |     },
12 |     "extract_dir": "zed",
13 |     "bin": "bin\\zed.exe",
14 |     "shortcuts": [
15 |         [
16 |             "zed.exe",
17 |             "Zed Nightly"
18 |         ]
19 |     ],
20 |     "checkver": {
21 |         "url": "https://api.github.com/repos/deevus/zed-windows-builds/releases",
22 |         "regex": "(?(?\\d{2})-(?\\d{2})-(?\\d{4}))",
23 |         "replace": "${year}-${month}-${day}"
24 |     },
25 |     "autoupdate": {
26 |         "url": "https://github.com/deevus/zed-windows-builds/releases/download/$matchVersion/zed-opengl.zip",
27 |         "hash": {
28 |             "url": "https://github.com/deevus/zed-windows-builds/releases/download/$matchVersion/sha256sums.txt"
29 |         }
30 |     }
31 | }
32 | 


--------------------------------------------------------------------------------
/bucket/tomcat7.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "7.0.109",
 3 |     "description": "Tomcat, an open source implementation of the Java Servlet, JavaServer Pages, Java Expression Language and Java WebSocket technologies. (version 7)",
 4 |     "homepage": "https://tomcat.apache.org/",
 5 |     "license": "Apache-2.0",
 6 |     "suggest": {
 7 |         "JDK": "java/openjdk"
 8 |     },
 9 |     "architecture": {
10 |         "64bit": {
11 |             "url": "https://archive.apache.org/dist/tomcat/tomcat-7/v7.0.109/bin/apache-tomcat-7.0.109-windows-x64.zip",
12 |             "hash": "sha512:444b384fd6eff3210842e74b1470e31674dd43723903ebf65a037c9bcd2d6d0bc94d5fad97e840dea892b991ff37b12a35342593bbddc92f0aa36c9b1bbd2025"
13 |         },
14 |         "32bit": {
15 |             "url": "https://archive.apache.org/dist/tomcat/tomcat-7/v7.0.109/bin/apache-tomcat-7.0.109-windows-x86.zip",
16 |             "hash": "sha512:e3ad4fb5c736092f4783a1285b8589eb610c21077883445a0e769b110a1f4e6da653ba671c3d55f25e4033beff683b4858dfa9f1e319819ebe6f0cb6aef2395a"
17 |         }
18 |     },
19 |     "extract_dir": "apache-tomcat-7.0.109",
20 |     "env_set": {
21 |         "CATALINA_BASE": "$dir",
22 |         "CATALINA_HOME": "$dir"
23 |     },
24 |     "bin": "bin\\catalina.bat",
25 |     "persist": [
26 |         "conf",
27 |         "webapps"
28 |     ]
29 | }
30 | 


--------------------------------------------------------------------------------
/bucket/konversation-nightly.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "1555",
 3 |     "description": "A user-friendly Internet Relay Chat (IRC) client by KDE",
 4 |     "homepage": "https://konversation.kde.org",
 5 |     "license": "GPL-2.0-or-later",
 6 |     "architecture": {
 7 |         "64bit": {
 8 |             "url": "https://cdn.kde.org/ci-builds/network/konversation/master/windows/konversation-master-1555-windows-cl-msvc2022-x86_64.7z",
 9 |             "hash": "3a98d18008ba2f174721bfb827535ae60125fb7d30e58d351bae6cf5ef73c105"
10 |         }
11 |     },
12 |     "bin": "bin\\konversation.exe",
13 |     "shortcuts": [
14 |         [
15 |             "bin\\konversation.exe",
16 |             "Konversation"
17 |         ]
18 |     ],
19 |     "checkver": {
20 |         "url": "https://cdn.kde.org/ci-builds/network/konversation/master/windows/",
21 |         "regex": "konversation-master-(\\d+)-windows-cl-(?\\w+)-x86_64\\.7z"
22 |     },
23 |     "autoupdate": {
24 |         "architecture": {
25 |             "64bit": {
26 |                 "url": "https://cdn.kde.org/ci-builds/network/konversation/master/windows/konversation-master-$version-windows-cl-$matchLib-x86_64.7z"
27 |             }
28 |         },
29 |         "hash": {
30 |             "url": "$url.sha256",
31 |             "regex": "$sha256"
32 |         }
33 |     }
34 | }
35 | 


--------------------------------------------------------------------------------
/bucket/sharex-dev.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "18.0.2.736",
 3 |     "description": "Screen capture, file sharing and productivity tool. (Dev. Version)",
 4 |     "homepage": "https://getsharex.com",
 5 |     "license": "GPL-3.0-only",
 6 |     "url": "https://github.com/ShareX/DevBuilds/releases/download/v18.0.2.736/ShareX-18.0.2.736-portable.zip",
 7 |     "hash": "c239b274414d164849369b2e00371d79db0d23fb2a415040fb097bb19c6dc384",
 8 |     "pre_install": "if (!(Test-Path \"$persist_dir\\PersonalPath.cfg\")) { New-Item \"$dir\\PersonalPath.cfg\" | Out-Null }",
 9 |     "bin": "ShareX.exe",
10 |     "shortcuts": [
11 |         [
12 |             "ShareX.exe",
13 |             "ShareX Dev"
14 |         ]
15 |     ],
16 |     "persist": [
17 |         "PersonalPath.cfg",
18 |         "ShareX"
19 |     ],
20 |     "checkver": {
21 |         "url": "https://api.github.com/repositories/538422110/releases",
22 |         "jsonpath": "$..tag_name",
23 |         "regex": "v([\\d.]+)"
24 |     },
25 |     "autoupdate": {
26 |         "url": "https://github.com/ShareX/DevBuilds/releases/download/v$version/ShareX-$version-portable.zip",
27 |         "hash": {
28 |             "url": "https://github.com/ShareX/DevBuilds/releases",
29 |             "regex": "ShareX-$version-portable.zip\\s*$sha256"
30 |         }
31 |     }
32 | }
33 | 


--------------------------------------------------------------------------------
/bucket/dotnet2-sdk.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "2.1.818",
 3 |     "description": ".NET is a free, cross-platform, open source developer platform for building many different types of applications.",
 4 |     "homepage": "https://www.microsoft.com/net/",
 5 |     "license": "MIT",
 6 |     "suggest": {
 7 |         "vcredist": "extras/vcredist2022"
 8 |     },
 9 |     "architecture": {
10 |         "64bit": {
11 |             "url": "https://dotnetcli.azureedge.net/dotnet/Sdk/2.1.818/dotnet-sdk-2.1.818-win-x64.zip",
12 |             "hash": "sha512:ee0c000eb6b22e72cd6a49db0b139f2f49b2f74ce7e44f6308182a9e9f3ecadfa96b08084347c209997e4bf410c0d8beafbbaa600276118d9b23b43c0f09ec46"
13 |         },
14 |         "32bit": {
15 |             "url": "https://dotnetcli.azureedge.net/dotnet/Sdk/2.1.818/dotnet-sdk-2.1.818-win-x86.zip",
16 |             "hash": "sha512:23432b04c348af12e65ce2bd2abf4b2312a361279acb9fde9a21cc74a13f53bc71716ad940ef0a4c84ec68f72c78ed441e55ad8390b660b3efcbd8eb65446369"
17 |         }
18 |     },
19 |     "env_add_path": ".",
20 |     "env_set": {
21 |         "DOTNET_ROOT": "$dir",
22 |         "MSBuildSDKsPath": "$dir\\sdk\\$version\\Sdks"
23 |     },
24 |     "pre_uninstall": "info 'If the uninstall fails with a message saying that access is denied, you may need to log out of your current account, log back in and try again.'"
25 | }
26 | 


--------------------------------------------------------------------------------
/bucket/filelight-nightly.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "1969",
 3 |     "description": "Disk usage visualizer",
 4 |     "homepage": "https://apps.kde.org/filelight",
 5 |     "license": "LGPL-2.0-only",
 6 |     "architecture": {
 7 |         "64bit": {
 8 |             "url": "https://cdn.kde.org/ci-builds/utilities/filelight/master/windows/filelight-master-1969-windows-cl-msvc2022-x86_64.7z",
 9 |             "hash": "dc6c4e870dbc5f692025ade569550c515ebfbab3ef298153394629ac8580615d"
10 |         }
11 |     },
12 |     "bin": [
13 |         [
14 |             "bin\\filelight.exe",
15 |             "filelight"
16 |         ]
17 |     ],
18 |     "shortcuts": [
19 |         [
20 |             "bin\\filelight.exe",
21 |             "Filelight Nightly"
22 |         ]
23 |     ],
24 |     "checkver": {
25 |         "url": "https://cdn.kde.org/ci-builds/utilities/filelight/master/windows/",
26 |         "regex": "filelight-master-(\\d+)-windows-cl-(?\\w+)-x86_64\\.7z"
27 |     },
28 |     "autoupdate": {
29 |         "architecture": {
30 |             "64bit": {
31 |                 "url": "https://cdn.kde.org/ci-builds/utilities/filelight/master/windows/filelight-master-$version-windows-cl-$matchLib-x86_64.7z"
32 |             }
33 |         },
34 |         "hash": {
35 |             "url": "$url.sha256"
36 |         }
37 |     }
38 | }
39 | 


--------------------------------------------------------------------------------
/bucket/assimp3.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "3.3.1",
 3 |     "description": "Open Asset Importer Library. Loads 40+ 3D-file-formats into one unified and clean data structure. (version 3)",
 4 |     "homepage": "https://www.assimp.org/",
 5 |     "license": {
 6 |         "identifier": "Freeware",
 7 |         "url": "https://github.com/assimp/assimp/blob/master/LICENSE"
 8 |     },
 9 |     "url": "https://github.com/assimp/assimp/releases/download/v3.3.1/assimp-sdk-3.3.1-setup_vs2017.exe",
10 |     "hash": "d368b053f55c1557d0c265f9fd5f625fc1a401f9d8d0913dae440f2993bdf59a",
11 |     "suggest": {
12 |         "vcredist": "extras/vcredist2022"
13 |     },
14 |     "innosetup": true,
15 |     "pre_install": "Remove-Item \"$dir\\stub\\vc_redist*.exe\"",
16 |     "architecture": {
17 |         "64bit": {
18 |             "bin": "bin\\x64\\assimp.exe",
19 |             "shortcuts": [
20 |                 [
21 |                     "bin\\x64\\assimp_viewer.exe",
22 |                     "Assimp Viewer"
23 |                 ]
24 |             ]
25 |         },
26 |         "32bit": {
27 |             "bin": "bin\\x86\\assimp.exe",
28 |             "shortcuts": [
29 |                 [
30 |                     "bin\\x86\\assimp_viewer.exe",
31 |                     "Assimp Viewer"
32 |                 ]
33 |             ]
34 |         }
35 |     }
36 | }
37 | 


--------------------------------------------------------------------------------
/bucket/cuda7.5.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "7.5.18",
 3 |     "description": "A parallel computing platform and programming model invented by NVIDIA",
 4 |     "homepage": "https://developer.nvidia.com/cuda-toolkit",
 5 |     "license": {
 6 |         "identifier": "Freeware",
 7 |         "url": "https://docs.nvidia.com/cuda/eula/index.html"
 8 |     },
 9 |     "architecture": {
10 |         "64bit": {
11 |             "url": "http://developer.download.nvidia.com/compute/cuda/7.5/Prod/local_installers/cuda_7.5.18_win10.exe#/dl.7z",
12 |             "hash": "04d0d1c98692b16d16f776328b30c74a42ec45f08edd8ce175a872ab5e2653a2"
13 |         }
14 |     },
15 |     "installer": {
16 |         "script": [
17 |             "$names = @('bin', 'extras', 'include', 'jre', 'lib', 'libnvvp', 'nvml', 'nvvm')",
18 |             "foreach ($name in $names) {",
19 |             "    Copy-Item \"$dir\\*\\$name\" \"$dir\\\" -Recurse -Force",
20 |             "}",
21 |             "Copy-Item \"$dir\\GDK\\gdk_win7_amd64_release\\nvml\\*\" \"$dir\\\" -Force -Recurse",
22 |             "Get-ChildItem \"$dir\" -Exclude $names | Remove-Item -Force -Recurse"
23 |         ]
24 |     },
25 |     "env_add_path": [
26 |         "bin",
27 |         "libnvvp"
28 |     ],
29 |     "env_set": {
30 |         "CUDA_PATH": "$dir",
31 |         "CUDA_PATH_V7_5": "$dir"
32 |     }
33 | }
34 | 


--------------------------------------------------------------------------------
/bucket/cuda7.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "7.5.18",
 3 |     "description": "A parallel computing platform and programming model invented by NVIDIA",
 4 |     "homepage": "https://developer.nvidia.com/cuda-toolkit",
 5 |     "license": {
 6 |         "identifier": "Freeware",
 7 |         "url": "https://docs.nvidia.com/cuda/eula/index.html"
 8 |     },
 9 |     "architecture": {
10 |         "64bit": {
11 |             "url": "http://developer.download.nvidia.com/compute/cuda/7.5/Prod/local_installers/cuda_7.5.18_win10.exe#/dl.7z",
12 |             "hash": "04d0d1c98692b16d16f776328b30c74a42ec45f08edd8ce175a872ab5e2653a2"
13 |         }
14 |     },
15 |     "installer": {
16 |         "script": [
17 |             "$names = @('bin', 'extras', 'include', 'jre', 'lib', 'libnvvp', 'nvml', 'nvvm')",
18 |             "foreach ($name in $names) {",
19 |             "    Copy-Item \"$dir\\*\\$name\" \"$dir\\\" -Recurse -Force",
20 |             "}",
21 |             "Copy-Item \"$dir\\GDK\\gdk_win7_amd64_release\\nvml\\*\" \"$dir\\\" -Force -Recurse",
22 |             "Get-ChildItem \"$dir\" -Exclude $names | Remove-Item -Force -Recurse"
23 |         ]
24 |     },
25 |     "env_add_path": [
26 |         "bin",
27 |         "libnvvp"
28 |     ],
29 |     "env_set": {
30 |         "CUDA_PATH": "$dir",
31 |         "CUDA_PATH_V7_5": "$dir"
32 |     }
33 | }
34 | 


--------------------------------------------------------------------------------
/bucket/neochat-nightly.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "13781",
 3 |     "description": "A client for Matrix, the decentralized communication protocol",
 4 |     "homepage": "https://apps.kde.org/neochat/",
 5 |     "license": "GPL-3.0",
 6 |     "architecture": {
 7 |         "64bit": {
 8 |             "url": "https://cdn.kde.org/ci-builds/network/neochat/master/windows/neochat-master-13781-windows-cl-msvc2022-x86_64.7z",
 9 |             "hash": "d300c81ebe5fd9a8c1b2814d1787db9d4ac2d6e286ffa505926667ccca8ca04a"
10 |         }
11 |     },
12 |     "bin": [
13 |         [
14 |             "bin\\neochat.exe",
15 |             "neochat"
16 |         ]
17 |     ],
18 |     "shortcuts": [
19 |         [
20 |             "bin\\neochat.exe",
21 |             "NeoChat Nightly"
22 |         ]
23 |     ],
24 |     "checkver": {
25 |         "url": "https://cdn.kde.org/ci-builds/network/neochat/master/windows/",
26 |         "regex": "neochat-master-(\\d+)-windows-cl-(?\\w+)-x86_64\\.7z"
27 |     },
28 |     "autoupdate": {
29 |         "architecture": {
30 |             "64bit": {
31 |                 "url": "https://cdn.kde.org/ci-builds/network/neochat/master/windows/neochat-master-$version-windows-cl-$matchLib-x86_64.7z"
32 |             }
33 |         },
34 |         "hash": {
35 |             "url": "$url.sha256"
36 |         }
37 |     }
38 | }
39 | 


--------------------------------------------------------------------------------
/bucket/deepgit402.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "4.0.2",
 3 |     "description": "Git Archaeology Tool.",
 4 |     "homepage": "https://www.syntevo.com/deepgit/",
 5 |     "license": {
 6 |         "identifier": "Proprietary",
 7 |         "url": "https://www.syntevo.com/documents/deepgit-license.html"
 8 |     },
 9 |     "url": "https://www.syntevo.com/downloads/deepgit/deepgit-portable-4_0_2.7z",
10 |     "hash": "sha1:9c8999ac4e51bf2f42fe017006cb99b255b60c10",
11 |     "extract_dir": "DeepGit",
12 |     "architecture": {
13 |         "64bit": {
14 |             "bin": [
15 |                 [
16 |                     "bin\\deepgitc.exe",
17 |                     "deepgit"
18 |                 ]
19 |             ],
20 |             "shortcuts": [
21 |                 [
22 |                     "bin\\deepgit.exe",
23 |                     "DeepGit"
24 |                 ]
25 |             ]
26 |         },
27 |         "32bit": {
28 |             "bin": [
29 |                 [
30 |                     "bin\\deepgitc32.exe",
31 |                     "deepgit"
32 |                 ]
33 |             ],
34 |             "shortcuts": [
35 |                 [
36 |                     "bin\\deepgit32.exe",
37 |                     "DeepGit"
38 |                 ]
39 |             ]
40 |         }
41 |     },
42 |     "persist": ".settings"
43 | }
44 | 


--------------------------------------------------------------------------------
/bucket/cuda11.0.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "11.0.3",
 3 |     "description": "A parallel computing platform and programming model invented by NVIDIA",
 4 |     "homepage": "https://developer.nvidia.com/cuda-toolkit",
 5 |     "license": {
 6 |         "identifier": "Freeware",
 7 |         "url": "https://docs.nvidia.com/cuda/eula/index.html"
 8 |     },
 9 |     "architecture": {
10 |         "64bit": {
11 |             "url": "https://developer.download.nvidia.com/compute/cuda/11.0.3/local_installers/cuda_11.0.3_451.82_win10.exe#/dl.7z",
12 |             "hash": "a639e0c097717c5f544f7a81b7162b4cb49243a30fd892f3267bc5532c8e2584"
13 |         }
14 |     },
15 |     "installer": {
16 |         "script": [
17 |             "$names = @('bin', 'extras', 'include', 'lib', 'libnvvp', 'nvml', 'nvvm', 'compute-sanitizer')",
18 |             "foreach ($name in $names) {",
19 |             "    Copy-Item \"$dir\\cuda_*\\*\\$name\" \"$dir\" -Recurse -Force",
20 |             "    Copy-Item \"$dir\\lib*\\*\\$name\" \"$dir\" -Recurse -Force",
21 |             "}",
22 |             "Get-ChildItem \"$dir\" -Exclude $names | Remove-Item -Recurse -Force"
23 |         ]
24 |     },
25 |     "env_add_path": [
26 |         "bin",
27 |         "libnvvp"
28 |     ],
29 |     "env_set": {
30 |         "CUDA_PATH": "$dir",
31 |         "CUDA_PATH_V11_0": "$dir"
32 |     }
33 | }
34 | 


--------------------------------------------------------------------------------
/bucket/cuda11.1.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "11.1.1",
 3 |     "description": "A parallel computing platform and programming model invented by NVIDIA",
 4 |     "homepage": "https://developer.nvidia.com/cuda-toolkit",
 5 |     "license": {
 6 |         "identifier": "Freeware",
 7 |         "url": "https://docs.nvidia.com/cuda/eula/index.html"
 8 |     },
 9 |     "architecture": {
10 |         "64bit": {
11 |             "url": "https://developer.download.nvidia.com/compute/cuda/11.1.1/local_installers/cuda_11.1.1_456.81_win10.exe#/dl.7z",
12 |             "hash": "c05b81319a272a8edd7a5e26bddcb4719071837c438be76e586da289b50ef853"
13 |         }
14 |     },
15 |     "installer": {
16 |         "script": [
17 |             "$names = @('bin', 'extras', 'include', 'lib', 'libnvvp', 'nvml', 'nvvm', 'compute-sanitizer')",
18 |             "foreach ($name in $names) {",
19 |             "    Copy-Item \"$dir\\cuda_*\\*\\$name\" \"$dir\" -Recurse -Force",
20 |             "    Copy-Item \"$dir\\lib*\\*\\$name\" \"$dir\" -Recurse -Force",
21 |             "}",
22 |             "Get-ChildItem \"$dir\" -Exclude $names | Remove-Item -Recurse -Force"
23 |         ]
24 |     },
25 |     "env_add_path": [
26 |         "bin",
27 |         "libnvvp"
28 |     ],
29 |     "env_set": {
30 |         "CUDA_PATH": "$dir",
31 |         "CUDA_PATH_V11_1": "$dir"
32 |     }
33 | }
34 | 


--------------------------------------------------------------------------------
/bucket/cuda11.2.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "11.2.2",
 3 |     "description": "A parallel computing platform and programming model invented by NVIDIA",
 4 |     "homepage": "https://developer.nvidia.com/cuda-toolkit",
 5 |     "license": {
 6 |         "identifier": "Freeware",
 7 |         "url": "https://docs.nvidia.com/cuda/eula/index.html"
 8 |     },
 9 |     "architecture": {
10 |         "64bit": {
11 |             "url": "https://developer.download.nvidia.com/compute/cuda/11.2.2/local_installers/cuda_11.2.2_461.33_win10.exe#/dl.7z",
12 |             "hash": "e572654ac90ea720b73cf72f14af6b175dddf4ff282af822e32c19d63f0284c4"
13 |         }
14 |     },
15 |     "installer": {
16 |         "script": [
17 |             "$names = @('bin', 'extras', 'include', 'lib', 'libnvvp', 'nvml', 'nvvm', 'compute-sanitizer')",
18 |             "foreach ($name in $names) {",
19 |             "    Copy-Item \"$dir\\cuda_*\\*\\$name\" \"$dir\" -Recurse -Force",
20 |             "    Copy-Item \"$dir\\lib*\\*\\$name\" \"$dir\" -Recurse -Force",
21 |             "}",
22 |             "Get-ChildItem \"$dir\" -Exclude $names | Remove-Item -Recurse -Force"
23 |         ]
24 |     },
25 |     "env_add_path": [
26 |         "bin",
27 |         "libnvvp"
28 |     ],
29 |     "env_set": {
30 |         "CUDA_PATH": "$dir",
31 |         "CUDA_PATH_V11_2": "$dir"
32 |     }
33 | }
34 | 


--------------------------------------------------------------------------------
/bucket/cuda11.3.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "11.3.1",
 3 |     "description": "A parallel computing platform and programming model invented by NVIDIA",
 4 |     "homepage": "https://developer.nvidia.com/cuda-toolkit",
 5 |     "license": {
 6 |         "identifier": "Freeware",
 7 |         "url": "https://docs.nvidia.com/cuda/eula/index.html"
 8 |     },
 9 |     "architecture": {
10 |         "64bit": {
11 |             "url": "https://developer.download.nvidia.com/compute/cuda/11.3.1/local_installers/cuda_11.3.1_465.89_win10.exe#/dl.7z",
12 |             "hash": "ff5beed6004e968dd413200535168559e90d7d870e8cf7189786cd32cd78cf01"
13 |         }
14 |     },
15 |     "installer": {
16 |         "script": [
17 |             "$names = @('bin', 'extras', 'include', 'lib', 'libnvvp', 'nvml', 'nvvm', 'compute-sanitizer')",
18 |             "foreach ($name in $names) {",
19 |             "    Copy-Item \"$dir\\cuda_*\\*\\$name\" \"$dir\" -Recurse -Force",
20 |             "    Copy-Item \"$dir\\lib*\\*\\$name\" \"$dir\" -Recurse -Force",
21 |             "}",
22 |             "Get-ChildItem \"$dir\" -Exclude $names | Remove-Item -Recurse -Force"
23 |         ]
24 |     },
25 |     "env_add_path": [
26 |         "bin",
27 |         "libnvvp"
28 |     ],
29 |     "env_set": {
30 |         "CUDA_PATH": "$dir",
31 |         "CUDA_PATH_V11_3": "$dir"
32 |     }
33 | }
34 | 


--------------------------------------------------------------------------------
/bucket/cuda11.4.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "11.4.4",
 3 |     "description": "A parallel computing platform and programming model invented by NVIDIA",
 4 |     "homepage": "https://developer.nvidia.com/cuda-toolkit",
 5 |     "license": {
 6 |         "identifier": "Freeware",
 7 |         "url": "https://docs.nvidia.com/cuda/eula/index.html"
 8 |     },
 9 |     "architecture": {
10 |         "64bit": {
11 |             "url": "https://developer.download.nvidia.com/compute/cuda/11.4.4/local_installers/cuda_11.4.4_472.50_windows.exe#/dl.7z",
12 |             "hash": "414985a2f70580f5aa1e59f670db29e438e9d91961eecf4e7402faa5a376987f"
13 |         }
14 |     },
15 |     "installer": {
16 |         "script": [
17 |             "$names = @('bin', 'extras', 'include', 'lib', 'libnvvp', 'nvml', 'nvvm', 'compute-sanitizer')",
18 |             "foreach ($name in $names) {",
19 |             "    Copy-Item \"$dir\\cuda_*\\*\\$name\" \"$dir\" -Recurse -Force",
20 |             "    Copy-Item \"$dir\\lib*\\*\\$name\" \"$dir\" -Recurse -Force",
21 |             "}",
22 |             "Get-ChildItem \"$dir\" -Exclude $names | Remove-Item -Recurse -Force"
23 |         ]
24 |     },
25 |     "env_add_path": [
26 |         "bin",
27 |         "libnvvp"
28 |     ],
29 |     "env_set": {
30 |         "CUDA_PATH": "$dir",
31 |         "CUDA_PATH_V11_4": "$dir"
32 |     }
33 | }
34 | 


--------------------------------------------------------------------------------
/bucket/cuda11.5.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "11.5.2",
 3 |     "description": "A parallel computing platform and programming model invented by NVIDIA",
 4 |     "homepage": "https://developer.nvidia.com/cuda-toolkit",
 5 |     "license": {
 6 |         "identifier": "Freeware",
 7 |         "url": "https://docs.nvidia.com/cuda/eula/index.html"
 8 |     },
 9 |     "architecture": {
10 |         "64bit": {
11 |             "url": "https://developer.download.nvidia.com/compute/cuda/11.5.2/local_installers/cuda_11.5.2_496.13_windows.exe#/dl.7z",
12 |             "hash": "56df108c56efed72241777b34aba8f6dcea540fb56a9d8545679225dd3c1950d"
13 |         }
14 |     },
15 |     "installer": {
16 |         "script": [
17 |             "$names = @('bin', 'extras', 'include', 'lib', 'libnvvp', 'nvml', 'nvvm', 'compute-sanitizer')",
18 |             "foreach ($name in $names) {",
19 |             "    Copy-Item \"$dir\\cuda_*\\*\\$name\" \"$dir\" -Recurse -Force",
20 |             "    Copy-Item \"$dir\\lib*\\*\\$name\" \"$dir\" -Recurse -Force",
21 |             "}",
22 |             "Get-ChildItem \"$dir\" -Exclude $names | Remove-Item -Recurse -Force"
23 |         ]
24 |     },
25 |     "env_add_path": [
26 |         "bin",
27 |         "libnvvp"
28 |     ],
29 |     "env_set": {
30 |         "CUDA_PATH": "$dir",
31 |         "CUDA_PATH_V11_5": "$dir"
32 |     }
33 | }
34 | 


--------------------------------------------------------------------------------
/bucket/konsole-nightly.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "4430",
 3 |     "description": "Konsole is a terminal to run a command shell. It provides a command line interface for directly controlling your computer.",
 4 |     "homepage": "https://apps.kde.org/konsole/",
 5 |     "license": "GPL-2.0+",
 6 |     "architecture": {
 7 |         "64bit": {
 8 |             "url": "https://cdn.kde.org/ci-builds/utilities/konsole/master/windows/konsole-master-4430-windows-cl-msvc2022-x86_64.7z",
 9 |             "hash": "ed1889c3bc932281c3928dc28c5739c28171207775da5e0a895ad8f4402cfe35"
10 |         }
11 |     },
12 |     "bin": "bin\\konsole.exe",
13 |     "shortcuts": [
14 |         [
15 |             "bin\\konsole.exe",
16 |             "Konsole Nightly"
17 |         ]
18 |     ],
19 |     "checkver": {
20 |         "url": "https://cdn.kde.org/ci-builds/utilities/konsole/master/windows/",
21 |         "regex": "konsole-master-([\\d]+)-windows-cl-msvc(?[\\d]+)-x86_64"
22 |     },
23 |     "autoupdate": {
24 |         "architecture": {
25 |             "64bit": {
26 |                 "url": "https://cdn.kde.org/ci-builds/utilities/konsole/master/windows/konsole-master-$version-windows-cl-msvc$matchYear-x86_64.7z",
27 |                 "hash": {
28 |                     "url": "$url.sha256"
29 |                 }
30 |             }
31 |         }
32 |     }
33 | }
34 | 


--------------------------------------------------------------------------------
/bucket/cloudcompare-alpha.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "2.14.beta",
 3 |     "description": "3D point cloud and mesh processing software",
 4 |     "homepage": "https://cloudcompare.org/",
 5 |     "license": "GPL-2.0-or-later,LGPL-2.0-only",
 6 |     "architecture": {
 7 |         "64bit": {
 8 |             "url": "https://cloudcompare.org/release/CloudCompare_v2.14.beta_bin_x64.7z",
 9 |             "hash": "2bc6bc272a1f938db9d15ec1a540aa4b159eb27987a6cb95bf403aec250ed970"
10 |         }
11 |     },
12 |     "extract_dir": "CloudCompare_v2.14.beta_bin_x64",
13 |     "shortcuts": [
14 |         [
15 |             "CloudCompare.exe",
16 |             "CloudCompare beta"
17 |         ]
18 |     ],
19 |     "checkver": {
20 |         "url": "https://cloudcompare.org/release/",
21 |         "regex": "Latest\\s+.*(?alpha|beta).*\\s*release:\\s*(?[\\d.]+[a-z]+)\\s\\((?[^\\)]+)\\)"
22 |     },
23 |     "autoupdate": {
24 |         "architecture": {
25 |             "64bit": {
26 |                 "url": "https://cloudcompare.org/release/CloudCompare_v$version_bin_x64.7z"
27 |             }
28 |         },
29 |         "extract_dir": "CloudCompare_v$version_bin_x64",
30 |         "shortcuts": [
31 |             [
32 |                 "CloudCompare.exe",
33 |                 "CloudCompare $matchStage"
34 |             ]
35 |         ]
36 |     }
37 | }
38 | 


--------------------------------------------------------------------------------
/bucket/tesseract4-languages.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "4.1.0",
 3 |     "description": "Fast integer versions of trained models for the Tesseract Open Source OCR Engine (version 4)",
 4 |     "homepage": "https://github.com/tesseract-ocr/tessdata_fast",
 5 |     "license": "Apache-2.0",
 6 |     "notes": [
 7 |         "This packages has overwritten the 'TESSDATA_PREFIX' environment variable with \"$dir\".",
 8 |         "After updating \"tesseract4\" please run \"scoop reset tesseract4-languages\" to update the environment variable!"
 9 |     ],
10 |     "depends": "versions/tesseract4",
11 |     "url": [
12 |         "https://github.com/tesseract-ocr/tessdata_fast/archive/4.1.0.zip",
13 |         "https://raw.githubusercontent.com/tesseract-ocr/tessdata/d87b3cbc75555bd3282e0cadab5e159e2d468396/equ.traineddata",
14 |         "https://raw.githubusercontent.com/USCDataScience/counterfeit-electronics-tesseract/319a6eeacff181dad5c02f3e7a3aff804eaadeca/Training%20Tesseract/snum.traineddata"
15 |     ],
16 |     "hash": [
17 |         "46ae18d17bd9583392ae7c047b751846233d4e030264a551e71ff4f25e035548",
18 |         "8f660323d8a7b7a0e8d2fae1a3439e6e470222bfbb990b2ab7fe9e1fb4791c0b",
19 |         "36f772980ff17c66a767f584a0d80bf2302a1afa585c01a226c1863afcea1392"
20 |     ],
21 |     "extract_dir": "tessdata_fast-4.1.0",
22 |     "env_set": {
23 |         "TESSDATA_PREFIX": "$dir"
24 |     }
25 | }
26 | 


--------------------------------------------------------------------------------
/bucket/handbrake-cli-snapshot.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "20251217072639-c16ca51b9",
 3 |     "description": "Snapshot releases of the video transcoder with extensive support for multiple formats. (CLI version)",
 4 |     "homepage": "https://handbrake.fr",
 5 |     "license": "GPL-2.0-only",
 6 |     "architecture": {
 7 |         "64bit": {
 8 |             "url": "https://github.com/HandBrake/HandBrake-snapshots/releases/download/win/HandBrakeCLI-20251217072639-c16ca51b9-master-win-x86_64.zip",
 9 |             "hash": "9ee311e2a5162a9c39434ac468d5746afecaa504ca541361d9e4f9999a0cc1bd"
10 |         }
11 |     },
12 |     "bin": "HandBrakeCLI.exe",
13 |     "checkver": {
14 |         "url": "https://github.com/HandBrake/handbrake-snapshots/releases/tag/win",
15 |         "regex": "HandBrakeCLI-([\\d]+-[\\w]+)-master-win-x86_64.zip"
16 |     },
17 |     "autoupdate": {
18 |         "architecture": {
19 |             "64bit": {
20 |                 "url": "https://github.com/HandBrake/HandBrake-snapshots/releases/download/win/HandBrakeCLI-$version-master-win-x86_64.zip",
21 |                 "hash": {
22 |                     "url": "https://github.com/HandBrake/handbrake-snapshots/releases/tag/win",
23 |                     "regex": "$sha256\\s+HandBrakeCLI-([\\d]+-[\\w]+)-master-win-x86_64.zip"
24 |                 }
25 |             }
26 |         }
27 |     }
28 | }
29 | 


--------------------------------------------------------------------------------
/bucket/ruby25.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "2.5.9-1",
 3 |     "description": "Ruby, a dynamic programming language with a focus on simplicity and productivity. (version 2.5)",
 4 |     "homepage": "https://rubyinstaller.org",
 5 |     "license": "BSD-3-Clause",
 6 |     "architecture": {
 7 |         "64bit": {
 8 |             "url": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.5.9-1/rubyinstaller-2.5.9-1-x64.7z",
 9 |             "hash": "ed0c4970c87eb0e77e4cdba5cac8a7bd197233dbcdbb182b7cbcfabc25cdfb4a",
10 |             "extract_dir": "rubyinstaller-2.5.9-1-x64"
11 |         },
12 |         "32bit": {
13 |             "url": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.5.9-1/rubyinstaller-2.5.9-1-x86.7z",
14 |             "hash": "421372160b30c4354bb27529a726fcbf61e8aa4efc62cdf9e1d9438b3d166826",
15 |             "extract_dir": "rubyinstaller-2.5.9-1-x86"
16 |         }
17 |     },
18 |     "persist": "gems",
19 |     "env_add_path": [
20 |         "bin",
21 |         "gems\\bin"
22 |     ],
23 |     "env_set": {
24 |         "GEM_HOME": "$dir\\gems",
25 |         "GEM_PATH": "$dir\\gems"
26 |     },
27 |     "suggest": {
28 |         "MSYS2": "msys2"
29 |     },
30 |     "post_install": "gem install rake",
31 |     "notes": "Install MSYS2 via 'scoop install msys2' and then run 'ridk install' to install the toolchain!"
32 | }
33 | 


--------------------------------------------------------------------------------
/bucket/ruby27.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "2.7.7-1",
 3 |     "description": "Ruby, a dynamic programming language with a focus on simplicity and productivity. (version 2.7)",
 4 |     "homepage": "https://rubyinstaller.org",
 5 |     "license": "BSD-3-Clause",
 6 |     "notes": "Install MSYS2 via 'scoop install msys2' and then run 'ridk install' to install the toolchain!",
 7 |     "suggest": {
 8 |         "MSYS2": "msys2"
 9 |     },
10 |     "architecture": {
11 |         "64bit": {
12 |             "url": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.7.7-1/rubyinstaller-2.7.7-1-x64.7z",
13 |             "hash": "c2e6034015048b0d1ee4dd63929417e10ff4217295730b77af3559862effe68a",
14 |             "extract_dir": "rubyinstaller-2.7.7-1-x64"
15 |         },
16 |         "32bit": {
17 |             "url": "https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-2.7.7-1/rubyinstaller-2.7.7-1-x86.7z",
18 |             "hash": "e9d8f2e23cb776405910ca576cf6a4580b2399e3b8f8ab14c70c4f77c9a8a8ec",
19 |             "extract_dir": "rubyinstaller-2.7.7-1-x86"
20 |         }
21 |     },
22 |     "post_install": "gem install rake",
23 |     "env_add_path": [
24 |         "bin",
25 |         "gems\\bin"
26 |     ],
27 |     "env_set": {
28 |         "GEM_HOME": "$dir\\gems",
29 |         "GEM_PATH": "$dir\\gems"
30 |     },
31 |     "persist": "gems"
32 | }
33 | 


--------------------------------------------------------------------------------
/bucket/espanso-pre.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "2.1.7-beta",
 3 |     "description": "Text expander",
 4 |     "homepage": "https://espanso.org",
 5 |     "license": "GPL-3.0-only",
 6 |     "suggest": {
 7 |         "vcredist": "extras/vcredist2022"
 8 |     },
 9 |     "architecture": {
10 |         "64bit": {
11 |             "url": "https://github.com/federico-terzi/espanso/releases/download/v2.1.7-beta/Espanso-Win-Portable-x86_64.zip",
12 |             "hash": "d5c06af09615e989cdc917ce8373f32a33969b5fce41352a91a2a38aa8846ca8"
13 |         }
14 |     },
15 |     "extract_dir": "espanso-portable",
16 |     "bin": [
17 |         "espansod.exe",
18 |         "espanso.cmd"
19 |     ],
20 |     "shortcuts": [
21 |         [
22 |             "espansod.exe",
23 |             "Espanso",
24 |             "launcher"
25 |         ]
26 |     ],
27 |     "persist": ".espanso",
28 |     "checkver": {
29 |         "url": "https://github.com/federico-terzi/espanso/releases",
30 |         "regex": "v([\\d.]+(?:-alpha|-beta))"
31 |     },
32 |     "autoupdate": {
33 |         "architecture": {
34 |             "64bit": {
35 |                 "url": "https://github.com/federico-terzi/espanso/releases/download/v$version/Espanso-Win-Portable-x86_64.zip",
36 |                 "hash": {
37 |                     "url": "$url.sha256.txt"
38 |                 }
39 |             }
40 |         }
41 |     }
42 | }
43 | 


--------------------------------------------------------------------------------
/bucket/influxdb2.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "2.8.0",
 3 |     "description": "Scalable datastore for metrics, events, and real-time analytics.",
 4 |     "homepage": "https://www.influxdata.com/",
 5 |     "license": "MIT",
 6 |     "notes": [
 7 |         "InfluxDB v1 has been moved to 'Versions' bucket, use 'scoop install versions/influxdb1' to install it.",
 8 |         "For CLI, please install 'versions/influx2'."
 9 |     ],
10 |     "architecture": {
11 |         "64bit": {
12 |             "url": "https://download.influxdata.com/influxdb/releases/v2.8.0/influxdb2-2.8.0-windows_amd64.zip",
13 |             "hash": "464d1240a7764c1c024021b5c5ac4a9943570929d615beec83a12f5e793becae"
14 |         }
15 |     },
16 |     "bin": "influxd.exe",
17 |     "checkver": {
18 |         "url": "https://www.influxdata.com/versions.json",
19 |         "jsonpath": "$.influxdb2.version",
20 |         "regex": "([\\d.]+)"
21 |     },
22 |     "autoupdate": {
23 |         "architecture": {
24 |             "64bit": {
25 |                 "url": "https://download.influxdata.com/influxdb/releases/v$version/influxdb2-$version-windows_amd64.zip",
26 |                 "hash": {
27 |                     "url": "https://www.influxdata.com/versions.json",
28 |                     "jsonpath": "$.influxdb2.downloads[?(@.platform =~ /^Windows/)].sha256"
29 |                 }
30 |             }
31 |         }
32 |     }
33 | }
34 | 


--------------------------------------------------------------------------------
/bucket/labplot-nightly.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "9861",
 3 |     "homepage": "https://labplot.kde.org/",
 4 |     "description": "A free, open source, and cross-platform Data Visualization and Analysis software accessible to everyone.",
 5 |     "license": "Apache-2.0,BSD-3-Clause,CC0-1.0,CC-BY-3.0,GPL-2.0-only,GPL-2.0-or-later,GPL-3.0-only,GPL-3.0-or-later,LGPL-3.0-or-later,MIT",
 6 |     "architecture": {
 7 |         "64bit": {
 8 |             "url": "https://cdn.kde.org/ci-builds/education/labplot/master/windows/labplot-master-9861-windows-cl-msvc2022-x86_64.7z",
 9 |             "hash": "ce14a3bf93adb1ddc4303e9fb3d43646b11cab112a85df0247515c93796020d6"
10 |         }
11 |     },
12 |     "shortcuts": [
13 |         [
14 |             "bin\\labplot2.exe",
15 |             "LabPlot2 Nightly"
16 |         ]
17 |     ],
18 |     "checkver": {
19 |         "url": "https://cdn.kde.org/ci-builds/education/labplot/master/windows/",
20 |         "regex": "labplot-master-(\\d+)-windows-cl-(?\\w+)-x86_64\\.7z"
21 |     },
22 |     "autoupdate": {
23 |         "architecture": {
24 |             "64bit": {
25 |                 "url": "https://cdn.kde.org/ci-builds/education/labplot/master/windows/labplot-master-$version-windows-cl-$matchLib-x86_64.7z",
26 |                 "hash": {
27 |                     "url": "$url.sha256"
28 |                 }
29 |             }
30 |         }
31 |     }
32 | }
33 | 


--------------------------------------------------------------------------------
/bucket/multipar-beta.json:
--------------------------------------------------------------------------------
 1 | {
 2 |     "version": "1.3.3.5",
 3 |     "description": "A tool for creating and using parchive files to detect damage in data files and repair them if necessary.",
 4 |     "homepage": "https://hp.vector.co.jp/authors/VA021385/",
 5 |     "license": "Freeware",
 6 |     "notes": "Some Python script files are provided in $dir\\tool folder.",
 7 |     "url": "https://github.com/Yutaka-Sawada/MultiPar/releases/download/v1.3.3.5/MultiPar1335.zip",
 8 |     "hash": "md5:22f3840cdca56cdbfa39e872d337b460",
 9 |     "pre_install": "if (!(Test-Path \"$persist_dir\\MultiPar.ini\")) { New-Item \"$dir\\MultiPar.ini\" -ItemType File | Out-Null }",
10 |     "bin": [
11 |         "par1j.exe",
12 |         "par2j.exe",
13 |         "par2j64.exe",
14 |         "sfv_md5.exe"
15 |     ],
16 |     "shortcuts": [
17 |         [
18 |             "MultiPar.exe",
19 |             "MultiPar"
20 |         ]
21 |     ],
22 |     "persist": "MultiPar.ini",
23 |     "checkver": {
24 |         "github": "https://github.com/Yutaka-Sawada/MultiPar"
25 |     },
26 |     "autoupdate": {
27 |         "url": "https://github.com/Yutaka-Sawada/MultiPar/releases/download/v$version/MultiPar$cleanVersion.zip",
28 |         "hash": {
29 |             "url": "https://github.com/Yutaka-Sawada/MultiPar/releases/tag/v$version/",
30 |             "regex": "$basename
\\nMD5:\\s$md5" 31 | } 32 | } 33 | } 34 | --------------------------------------------------------------------------------