├── .github └── workflows │ ├── comment-commands.yml │ ├── pull-request.yml │ └── schedule.yml ├── README.md ├── bin ├── auto-pr.ps1 ├── checkurls.ps1 ├── checkver.ps1 ├── formatjson.ps1 ├── missing-checkver.ps1 └── test.ps1 └── bucket ├── air.json ├── chezmoi-modify-manager.json ├── chrome-headless-shell.json ├── dashlane-cli.json ├── fq.json ├── ollama.json ├── positron-daily.json ├── positron-prerelease.json ├── positron.json ├── pstree.json ├── py.exe.json ├── quarto-prerelease.json ├── quarto.json ├── qvm.json ├── r-devel.json ├── r-release.json ├── rig.json ├── rstudio-1.2.json ├── rstudio-1.3.json ├── rstudio-1.4.json ├── rstudio-2022.02.json ├── rstudio-2022.07.json ├── rstudio-2022.12.json ├── rstudio-2023.03.json ├── rstudio-2023.06.json ├── rstudio-2023.09.json ├── rstudio-2023.12.json ├── rstudio-2024.04.json ├── rstudio-daily-electron.json ├── rstudio-daily.json ├── rstudio-preview.json ├── rstudio-pro-daily.json ├── rstudio-pro-preview.json ├── rstudio-pro-release.json ├── rstudio-release.json ├── rv.json ├── sass-migrator.json ├── tinitex.json ├── tinytex-extra.json ├── tinytex-min.json ├── tinytex.json └── tree.json /.github/workflows/comment-commands.yml: -------------------------------------------------------------------------------- 1 | on: 2 | issue_comment: 3 | types: [ created ] 4 | name: Pull requests comment 5 | jobs: 6 | pullRequestHandler: 7 | name: Pull Request Validator 8 | runs-on: windows-latest 9 | steps: 10 | - uses: actions/checkout@main 11 | - name: Pull Request Validator 12 | uses: ScoopInstaller/Scoop-GithubActions@main 13 | if: startsWith(github.event.comment.body, '/verify') 14 | env: 15 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 16 | -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- 1 | on: 2 | pull_request: 3 | types: [ opened ] 4 | name: Pull requests 5 | jobs: 6 | pullRequestHandler: 7 | name: Pull Request Validator 8 | runs-on: windows-latest 9 | steps: 10 | - uses: actions/checkout@main 11 | - name: Pull Request Validator 12 | uses: ScoopInstaller/Scoop-GithubActions@main 13 | env: 14 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} -------------------------------------------------------------------------------- /.github/workflows/schedule.yml: -------------------------------------------------------------------------------- 1 | on: 2 | schedule: 3 | # https://crontab.guru/ 4 | - cron: '0 */2 */1 * *' 5 | # for manual update 6 | workflow_dispatch: 7 | name: Excavator 8 | jobs: 9 | excavate: 10 | name: Excavate 11 | runs-on: windows-latest 12 | steps: 13 | - uses: actions/checkout@v3 14 | - name: Excavator 15 | uses: ScoopInstaller/Scoop-GithubActions@main 16 | env: 17 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 18 | SKIP_UPDATED: '1' 19 | THROW_ERROR: '0' 20 | # We have some faulty hash so recompute them each time 21 | recompute-hash: 22 | needs: excavate 23 | name: Recompute Hash 24 | runs-on: windows-latest 25 | steps: 26 | - uses: actions/checkout@v4 27 | - name: Install Scoop 28 | run: | 29 | Invoke-WebRequest -useb get.scoop.sh -outfile 'install.ps1' 30 | .\install.ps1 -RunAsAdmin 31 | Join-Path (Resolve-Path ~).Path "scoop\shims" >> $Env:GITHUB_PATH 32 | - name: recompute Hash 33 | run: | 34 | .\bin\checkver.ps1 -ForceUpdate 35 | # Commit all changed files back to the repository 36 | - uses: EndBug/add-and-commit@v9 # You can change this to use a specific version. 37 | with: 38 | add: 'bucket' 39 | commit: --signoff 40 | default_author: github_actions 41 | pull: --rebase --autostash 42 | message: 'Updating hashes (Automated by Github Actions)' -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![](https://github.com/cderv/r-bucket/workflows/Excavator/badge.svg) 2 | # Scoop bucket for an R user 3 | 4 | This repos contains some manifests I use to quickly install and update some applications useful for an R user that I don't find in any other bucket. 5 | 6 | - [Apps in this bucket](#apps-in-this-bucket) 7 | - [RStudio IDE](#rstudio-ide) 8 | - [Daily versions](#daily-versions) 9 | - [Preview versions](#preview-versions) 10 | - [Released versions](#released-versions) 11 | - [Branched versions](#branched-versions) 12 | - [Positron](#positron) 13 | - [Site-available versions](#site-available-versions) 14 | - [Prereleases (Monthly build)](#prereleases-monthly-build) 15 | - [Dailies (Nightly build)](#dailies-nightly-build) 16 | - [TinyTeX - Tex Live distribution](#tinytex---tex-live-distribution) 17 | - [R](#r) 18 | - [R devel](#r-devel) 19 | - [rig - R Installation Manager](#rig---r-installation-manager) 20 | - [R release and old releases](#r-release-and-old-releases) 21 | - [rv - new R package installer](#rv---new-r-package-installer) 22 | - [Quarto CLI](#quarto-cli) 23 | - [Stable version](#stable-version) 24 | - [Pre-release version](#pre-release-version) 25 | - [Switching between stable and pre-release](#switching-between-stable-and-pre-release) 26 | - [Quarto Versions Manager - QVM](#quarto-versions-manager---qvm) 27 | - [Should I install `quarto` using `qvm` or install `quarto` with scoop directly ?](#should-i-install-quarto-using-qvm-or-install-quarto-with-scoop-directly-) 28 | - [Sass migrator](#sass-migrator) 29 | - [air](#air) 30 | - [Chrome Headless Shell](#chrome-headless-shell) 31 | - [To install scoop](#to-install-scoop) 32 | - [Add this scoop bucket](#add-this-scoop-bucket) 33 | - [Install an app](#install-an-app) 34 | - [List installed apps](#list-installed-apps) 35 | - [Update an app](#update-an-app) 36 | - [Uninstall an app](#uninstall-an-app) 37 | - [check if a tools is found in PATH](#check-if-a-tools-is-found-in-path) 38 | 39 | ## Apps in this bucket 40 | 41 | Below is a list of the app available through this bucket. This can also be found in [scoop.sh Apps listing](https://scoop.sh/#/apps?q=%22https%3A%2F%2Fgithub.com%2Fcderv%2Fr-bucket%22&o=false). 42 | 43 | ### RStudio IDE 44 | 45 | #### Daily versions 46 | 47 | * `rstudio-daily`: RStudio daily (installer-less) - Synced from https://dailies.rstudio.com/ 48 | * `rstudio-pro-daily`: RStudio Pro daily (installer-less) - Synced from https://dailies.rstudio.com/ 49 | 50 | #### Preview versions 51 | 52 | * `rstudio-preview`: RStudio Preview (installer-less) - Synced from https://rstudio.com/products/rstudio/download/preview/ 53 | * `rstudio-pro-preview`: RStudio Pro Preview (installer-less) - Synced from https://rstudio.com/products/rstudio/download/preview/ 54 | 55 | #### Released versions 56 | 57 | * `rstudio-release`: RStudio released version (installer-less) - Synced from https://rstudio.com/products/rstudio/download/ 58 | * `rstudio-pro-release`: RStudio Pro release version (installer-less) - Synced from https://rstudio.com/products/rstudio/download/ 59 | 60 | #### Branched versions 61 | 62 | Only available in this bucket on the Open Source version. 63 | Synced from https://dailies.rstudio.com/rstudio/ 64 | 65 | * `rstudio-1.2`: RStudio 1.2 (installer-less) - Freezed to last available 1.2 version 66 | * `rstudio-1.3`: RStudio 1.3 (installer-less) - Freezed to last available 1.3 version 67 | * `rstudio-1.4`: RStudio 1.3 (installer-less) - Freezed to last available 1.4 version (Ghost Orchid) 68 | * `rstudio-2022.02`: RStudio 2022.02 (installer-less) - Last available version for Prairie Trillium branch 69 | * `rstudio-2022.07`: RStudio 2022.06 (installer-less) - Last available version for Spotted Wakerobin branch 70 | * `rstudio-2022.12`: RStudio 2022.12 (installer-less) - Last available version for Elsbeth Geranium branch 71 | * `rstudio-2023.03`: RStudio 2023.03 (installer-less) - Last available version for Cherry Blossom branch 72 | * `rstudio-2023.06`: RStudio 2023.06 (installer-less) - Last available version for Mountain Hydrangea branch 73 | * `rstudio-2023.09`: RStudio 2023.09 (installer-less) - Last available version for Desert Sunflower branch 74 | * `rstudio-2023.12`: RStudio 2023.12 (installer-less) - Last available version for Ocean Storm branch 75 | * `rstudio-2024.04`: RStudio 2024.04 (installer-less) - Last available version for Desert Chocolate Cosmos branch 76 | 77 | 78 | ### Positron 79 | 80 | Positron () is : 81 | 82 | - a next-generation data science IDE built by Posit PBC 83 | - An extensible, polyglot tool for writing code and exploring data 84 | - A familiar environment for reproducible authoring and publishing 85 | 86 | > [!IMPORTANT] 87 | > Positron is an early stage project under active development and may [not yet be a good fit for you](https://github.com/posit-dev/positron/wiki#is-positron-for-me) ! 88 | 89 | #### Site-available versions 90 | 91 | This is the version offered to be downloaded at . It will be available in PATH as `positron`. 92 | 93 | ```powershell 94 | 95 | ````powershell 96 | # using r-bucket as in `scoop bucket add r-bucket https://github.com/cderv/r-bucket.git` when installing bucket 97 | scoop install r-bucket/positron 98 | ```` 99 | 100 | #### Prereleases (Monthly build) 101 | 102 | This version can't be used at the same time as the other positron pre-release install above as it will be available in PATH as `positron` also. 103 | It follows version published at `https://cdn.posit.co/positron/prereleases/` 104 | 105 | ```powershell 106 | scoop install positron-prerelease 107 | ``` 108 | 109 | #### Dailies (Nightly build) 110 | 111 | This version is the build pushed daily. It can be installed and use at the same time of other positron version, as it will be available in PATH as `positron-daily`. 112 | It follows version published at `https://cdn.posit.co/positron/dailies/` 113 | 114 | ```powershell 115 | scoop install positron-daily 116 | ``` 117 | 118 | ### TinyTeX - Tex Live distribution 119 | > Experimental - this could still change 120 | 121 | 3 binaries are available from [tinytex-releases](https://github.com/yihui/tinytex-releases) but only one can be installed at the same time. That is because a _shim_ for `tlmgr` command is added to _scoop_ and available to PATH, and that would be overriden. (And honestly, you only need one). 122 | 123 | * `tinytex` contains [several tex packages already installed](https://github.com/yihui/tinytex/blob/master/tools/pkgs-custom.txt) that are the main one used by Rmarkdown. If you are an R user we recommand this one. 124 | * `tinytex-min` is infra-only and contains only Tex Live with no package installed. Use this one if you want only Tex Live for Windows using [TinyTeX distribution](https://yihui.org/tinytex/) without the selected packages, for CI workflow for example. 125 | * `tinytex-extra` contains some extra packages installed compare to `tinytex`. 126 | 127 | See full documentation at https://yihui.org/tinytex/ and about the releases at https://github.com/yihui/tinytex-releases#scoop-package 128 | 129 | The binaries are synced from https://github.com/yihui/tinytex-releases/releases 130 | 131 | ### R 132 | 133 | #### R devel 134 | 135 | You can install R devel for Windows using this bucket containing the `r-devel` app. The version will be synced to https://cran.r-project.org/bin/windows/base/rdevel.html and you will always have the last available r-devel version, tracked by the version notation like r79818 for the current development snapshot of R. As any other app, a new version will be checked for daily. 136 | 137 | This scoop installed app will behave like with the apps in the _Versions_ bucket (https://github.com/ScoopInstaller/Versions): You can have several versions of R installed with scoop but only one in use. You will have to use [`scoop reset`](https://scoop-docs.now.sh/docs/misc/Switching-Ruby-and-Python-Versions.html#scoop-reset) to switch between installed versions. 138 | 139 | ```powershell 140 | # from this bucket 141 | scoop install r-devel 142 | rterm --version # r-devel 143 | 144 | # from the main bucket 145 | scoop install r-release 146 | rterm --version # r current release 147 | 148 | # switching back to use r-devel 149 | scoop reset r-devel 150 | rterm --version # r-devel 151 | ``` 152 | 153 | #### rig - R Installation Manager 154 | 155 | rig, the R Installation Manager, (https://github.com/r-lib/rig) is a tool to install, remove, configure R versions. 156 | 157 | This bucket contains the manifest to install and update easily the [rig CLI](https://github.com/r-lib/rig/releases) for Windows. 158 | 159 | ```powershell 160 | # install 161 | scoop install rig 162 | 163 | # update 164 | scoop update rig 165 | ``` 166 | 167 | Using `rig`, you can then install and manage any R versions. See `rig help` for details. 168 | 169 | #### R release and old releases 170 | 171 | If you prefer installing R versions with scoop, you can can 172 | 173 | - install R current release. 174 | 175 | ```powershell 176 | scoop install r-release 177 | ``` 178 | 179 | - or install a previous release 180 | 181 | ```powershell 182 | scoop install r-release@3.5.2 183 | ``` 184 | 185 | You can then switch between R versions (including r-devel - see below) using 186 | 187 | ```powershell 188 | scoop reset r-release 189 | scoop reset r-release@3.5.2 190 | ``` 191 | 192 | [R Installation Manager (RIM)](#r-installation-manager-rim), installable from this bucket too, is a better tool for installing R versions. 193 | 194 | #### rv - new R package installer 195 | 196 | rv is a new way to manage and install your R packages in a reproducible, fast, and declarative way. See 197 | 198 | ```powershell 199 | # install 200 | scoop install rv 201 | 202 | # update 203 | scoop update rv 204 | ``` 205 | 206 | ### Quarto CLI 207 | 208 | Quarto (https://quarto.org/) is an open-source scientific and technical publishing system built on Pandoc. Quarto documents are authored using markdown, an easy to write plain text format. 209 | 210 | This bucket contains the manifests to install and update easily the [quarto CLI](https://github.com/quarto-dev/quarto-cli/releases) for Windows for stable versions and pre-release versions. 211 | 212 | #### Stable version 213 | 214 | ```powershell 215 | # install 216 | scoop install quarto 217 | 218 | # update 219 | scoop update quarto 220 | ``` 221 | 222 | You can also install and manage Quarto using [Quarto Versions Manager - qvm](#quarto-versions-manager---qvm) 223 | 224 | #### Pre-release version 225 | 226 | ```powershell 227 | scoop install quarto-prerelease 228 | 229 | scoop update quarto-prerelease 230 | ``` 231 | 232 | #### Switching between stable and pre-release 233 | 234 | `quarto` and `quarto-prerelease` will both make `quarto` binary available in PATH. Only one version can be used at the same time. To switch between version use the following: 235 | 236 | ```powershell 237 | scoop install quarto 238 | quarto --version # e.g 1.0.35 239 | 240 | # installing second 241 | scoop install quarto-prerelease 242 | quarto --version # e.g 1.1.3 243 | 244 | # Switching back to stable 245 | scoop reset quarto 246 | quarto --version # e.g 1.0.35 247 | 248 | # Switching again to pre-release 249 | scoop reset quarto-prerelease 250 | quarto --version # e.g 1.1.3 251 | ``` 252 | 253 | ### Quarto Versions Manager - QVM 254 | 255 | [Quarto Version Manager](https://github.com/dpastoor/qvm) is a CLI tools that allows to manage and switch between versions of Quarto easily. 256 | 257 | This bucket contains the manifest to install and update easily the [qvm releases](https://github.com/dpastoor/qvm/releases) for Windows. 258 | 259 | #### Should I install `quarto` using `qvm` or install `quarto` with scoop directly ? 260 | 261 | QVM is aimed toward developers using Quarto that quickly needs to switch between versions. For only installing quarto and staying up to date, install [quarto](#quarto-cli) directly from this bucket will be enough. **It is not recommended to have both installed**. 262 | 263 | ```powershell 264 | # install 265 | scoop install qvm 266 | 267 | # update 268 | scoop update qvm 269 | ``` 270 | 271 | ### Sass migrator 272 | 273 | [Sass Migrator](https://github.com/sass/migrator) is a CLI tool to help migrate old to new syntax. 274 | 275 | The Sass migrator automatically updates stylesheets that use deprecated behavior to the latest and greatest Sass features. 276 | 277 | See documentation on main website: https://sass-lang.com/documentation/cli/migrator/ 278 | 279 | ```powershell 280 | # install 281 | scoop install sass-migrator 282 | 283 | # update 284 | scoop install sass-migrator 285 | ``` 286 | 287 | ### air 288 | 289 | [air](https://github.com/posit-dev/air) is an R formatter and language server, written in Rust. 290 | **air is currently in alpha. Expect breaking changes both in the API and in formatting results.** 291 | 292 | As `air` is also a tool available in other scoop bucket, it needs to be namespaced to be installed 293 | 294 | ```powershell 295 | # install 296 | # using r-bucket as in `scoop bucket add r-bucket https://github.com/cderv/r-bucket.git` when installing bucket 297 | scoop install r-bucket/air 298 | 299 | # update 300 | scoop install air 301 | ``` 302 | 303 | ### Chrome Headless Shell 304 | 305 | `chrome-headless-shell` is a new binary based on old chrome headless mode, dedicated to screenshoting, pdf printing or web-scraping. See more at . 306 | 307 | ```powershell 308 | # install 309 | # using r-bucket as in `scoop bucket add r-bucket https://github.com/cderv/r-bucket.git` when installing bucket 310 | scoop install r-bucket/chrome-headless-shell 311 | 312 | # update 313 | scoop install chrome-headless-shell 314 | ```` 315 | 316 | ## To install scoop 317 | 318 | See https://github.com/lukesampson/scoop 319 | 320 | ## Add this scoop bucket 321 | 322 | ```powershell 323 | scoop bucket add r-bucket https://github.com/cderv/r-bucket.git 324 | ``` 325 | 326 | ## Install an app 327 | 328 | ```powershell 329 | scoop install rstudio-daily 330 | scoop install TinyTeX 331 | ``` 332 | 333 | You can also namespace app in this bucket if there is a conflict 334 | 335 | ```powershell 336 | # using r-bucket as in `scoop bucket add r-bucket https://github.com/cderv/r-bucket.git` when installing bucket 337 | scoop install r-bucket/air 338 | ``` 339 | 340 | ## List installed apps 341 | 342 | ```powershell 343 | scoop list 344 | ``` 345 | 346 | ## Update an app 347 | 348 | ```powershell 349 | # fetch update info 350 | scoop update 351 | # see outdated apps 352 | scoop status 353 | # update one app 354 | scoop update rstudio-daily 355 | # update all 356 | scoop update * 357 | ``` 358 | 359 | ## Uninstall an app 360 | 361 | ```powershell 362 | scoop uninstall rstudio-daily 363 | ``` 364 | 365 | ## check if a tools is found in PATH 366 | 367 | ```powershell 368 | scoop which tlmgr 369 | ``` 370 | -------------------------------------------------------------------------------- /bin/auto-pr.ps1: -------------------------------------------------------------------------------- 1 | param( 2 | # overwrite upstream param 3 | [String]$upstream = "ScoopInstaller/Main:master" 4 | ) 5 | 6 | if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = resolve-path (split-path (split-path (scoop which 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 | -------------------------------------------------------------------------------- /bin/checkurls.ps1: -------------------------------------------------------------------------------- 1 | if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = resolve-path (split-path (split-path (scoop which 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/checkver.ps1: -------------------------------------------------------------------------------- 1 | if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = resolve-path (split-path (split-path (scoop which 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/formatjson.ps1: -------------------------------------------------------------------------------- 1 | if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = resolve-path (split-path (split-path (scoop which 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/missing-checkver.ps1: -------------------------------------------------------------------------------- 1 | if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = resolve-path (split-path (split-path (scoop which 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 | -------------------------------------------------------------------------------- /bin/test.ps1: -------------------------------------------------------------------------------- 1 | #requires -Modules @{ ModuleName = 'Pester'; ModuleVersion = '4.4.0' } 2 | 3 | if(!$env:SCOOP_HOME) { $env:SCOOP_HOME = resolve-path (split-path (split-path (scoop which scoop))) } 4 | Invoke-Pester "$psscriptroot/.." 5 | -------------------------------------------------------------------------------- /bucket/air.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.7.0", 3 | "description": "An R formatter and language server, written in Rust.", 4 | "homepage": "https://github.com/posit-dev/air", 5 | "url": "https://github.com/posit-dev/air/releases/download/0.7.0/air-x86_64-pc-windows-msvc.zip", 6 | "hash": "042440866da7655c3c7346e32e2af5ef2b208866cb473cff40fa2b0afcea0f03", 7 | "bin": "air.exe", 8 | "checkver": "github", 9 | "autoupdate": { 10 | "url": "https://github.com/posit-dev/air/releases/download/$version/air-x86_64-pc-windows-msvc.zip", 11 | "hash": { 12 | "url": "$url.sha256" 13 | } 14 | }, 15 | "notes": "Air is currently in beta. Expect breaking changes both in the API and in formatting results." 16 | } 17 | -------------------------------------------------------------------------------- /bucket/chezmoi-modify-manager.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "3.5.3", 3 | "description": "chezmoi_modify_manager is an addon for chezmoi that deals with settings files that contain a mix of settings and state. So far handling INI-style files are supported.", 4 | "homepage": "https://vorpalblade.github.io/chezmoi_modify_manager/", 5 | "license": "GPL-3.0-only", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/VorpalBlade/chezmoi_modify_manager/releases/download/v3.5.3/chezmoi_modify_manager-v3.5.3-x86_64-pc-windows-msvc.zip", 9 | "hash": "cffd5ef72963ae97213c1c11cf0a762e10ce6873680fda591984ce0b288dbc57" 10 | } 11 | }, 12 | "bin": "chezmoi_modify_manager.exe", 13 | "depends": "chezmoi", 14 | "checkver": { 15 | "github": "https://github.com/VorpalBlade/chezmoi_modify_manager/" 16 | }, 17 | "autoupdate": { 18 | "architecture": { 19 | "64bit": { 20 | "url": "https://github.com/VorpalBlade/chezmoi_modify_manager/releases/download/v$version/chezmoi_modify_manager-v$version-x86_64-pc-windows-msvc.zip" 21 | } 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /bucket/chrome-headless-shell.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "138.0.7204.92", 3 | "homepage": "https://developer.chrome.com/blog/chrome-headless-shell", 4 | "description": "A lightweight wrapper around Chromium's //content module suitable for use cases such as automated screenshotting or web scraping.", 5 | "license": "Freeware", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://storage.googleapis.com/chrome-for-testing-public/138.0.7204.92/win64/chrome-headless-shell-win64.zip", 9 | "hash": "2b796a138d6f91e973331da9a99ee8a1aea300ed697c48e2e473a8b32b3c2597", 10 | "extract_dir": "chrome-headless-shell-win64" 11 | }, 12 | "32bit": { 13 | "url": "https://storage.googleapis.com/chrome-for-testing-public/138.0.7204.92/win32/chrome-headless-shell-win32.zip", 14 | "hash": "f67a2fc387da174000c2a54e3a417ae7818780e46e2544f93967704f17a27d4b", 15 | "extract_dir": "chrome-headless-shell-win32" 16 | } 17 | }, 18 | "bin": "chrome-headless-shell.exe", 19 | "checkver": { 20 | "url": "https://googlechromelabs.github.io/chrome-for-testing/last-known-good-versions-with-downloads.json", 21 | "jsonpath": "$.channels.Stable.version" 22 | }, 23 | "autoupdate": { 24 | "architecture": { 25 | "64bit": { 26 | "url": "https://storage.googleapis.com/chrome-for-testing-public/$version/win64/chrome-headless-shell-win64.zip" 27 | }, 28 | "32bit": { 29 | "url": "https://storage.googleapis.com/chrome-for-testing-public/$version/win32/chrome-headless-shell-win32.zip" 30 | } 31 | } 32 | }, 33 | "notes": "For licence, see $dir\\LICENSE.headless_shell" 34 | } 35 | -------------------------------------------------------------------------------- /bucket/dashlane-cli.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "6.2526.2", 3 | "description": "Dashlane CLI - Access your secrets in your terminal, servers and CI/CD", 4 | "homepage": "https://cli.dashlane.com/", 5 | "license": "Apache-2.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/Dashlane/dashlane-cli/releases/download/v6.2526.2/dcli-win-x64-signed.exe#/dcli.exe", 9 | "hash": "5b224f6031abc972ebcbf510cef5c3ee2f47a980e5382e58530c9f495815e11e" 10 | } 11 | }, 12 | "bin": "dcli.exe", 13 | "checkver": { 14 | "github": "https://github.com/Dashlane/dashlane-cli" 15 | }, 16 | "autoupdate": { 17 | "architecture": { 18 | "64bit": { 19 | "url": "https://github.com/Dashlane/dashlane-cli/releases/download/v$version/dcli-win-x64-signed.exe#/dcli.exe" 20 | } 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /bucket/fq.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.15.0", 3 | "description": "Tool, language and decoders for inspecting binary data.", 4 | "homepage": "https://github.com/wader/fq", 5 | "license": "https://github.com/wader/fq/blob/master/LICENSE", 6 | "url": "https://github.com/wader/fq/releases/download/v0.15.0/fq_0.15.0_windows_amd64.zip", 7 | "hash": "3f58b332a7afd86eacb6f1c11797e1f37818af61146463cb8a18f4bb46094ab4", 8 | "bin": "fq.exe", 9 | "checkver": "github", 10 | "autoupdate": { 11 | "url": "https://github.com/wader/fq/releases/download/v$version/fq_$version_windows_amd64.zip" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /bucket/ollama.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.9.5", 3 | "description": "Get up and running with Llama 2, Mistral, Gemma, and other large language models.", 4 | "homepage": "https://github.com/ollama/ollama", 5 | "license": "MIT", 6 | "url": "https://github.com/ollama/ollama/releases/download/v0.9.5/OllamaSetup.exe", 7 | "innosetup": true, 8 | "bin": "ollama.exe", 9 | "hash": "9fa20116448594f1790d36ea2c50414ced211af59e89eaeeb956f5636020b582", 10 | "checkver": "github", 11 | "autoupdate": { 12 | "url": "https://github.com/ollama/ollama/releases/download/v$version/OllamaSetup.exe" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /bucket/positron-daily.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2025.08.0-23", 3 | "description": "Daily version of Positron, a next-generation data science IDE.", 4 | "homepage": "https://positron.posit.co", 5 | "license": "Elastic-2.0", 6 | "url": "https://cdn.posit.co/positron/dailies/win/x86_64/Positron-2025.08.0-23-UserSetup.exe", 7 | "hash": "a98e6fae4c7c13214e9e9e8aa90aba70ba09afb5b58d2c0a4f54113c493e0a0f", 8 | "installer": { 9 | "args": [ 10 | "/VERYSILENT", 11 | "/DIR=$dir", 12 | "/NORESTART", 13 | "/TASKS=\"\"" 14 | ] 15 | }, 16 | "bin": [ 17 | [ 18 | "bin/positron.cmd", 19 | "positron-daily" 20 | ] 21 | ], 22 | "uninstaller": { 23 | "file": "unins000.exe", 24 | "args": [ 25 | "/VERYSILENT", 26 | "/NORESTART" 27 | ] 28 | }, 29 | "shortcuts": [ 30 | [ 31 | "Positron.exe", 32 | "Positron-daily" 33 | ] 34 | ], 35 | "checkver": { 36 | "url": "https://cdn.posit.co/positron/dailies/win/x86_64/user-releases.json", 37 | "jsonpath": "$.version" 38 | }, 39 | "autoupdate": { 40 | "url": "https://cdn.posit.co/positron/dailies/win/x86_64/Positron-$version-UserSetup.exe", 41 | "hash": { 42 | "url": "$baseurl/user-releases.json", 43 | "jsonpath": "$.sha256hash" 44 | } 45 | }, 46 | "notes": [ 47 | "Please review Positron's license agreement (https://github.com/posit-dev/positron?tab=License-1-ov-file#readme).", 48 | "Your acceptance of this license agreement is required as a condition to proceeding with your use of the software." 49 | ] 50 | } 51 | -------------------------------------------------------------------------------- /bucket/positron-prerelease.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2025.06.0-167", 3 | "description": "Prelease version of Positron, a next-generation data science IDE.", 4 | "homepage": "https://positron.posit.co", 5 | "license": "Elastic-2.0", 6 | "url": "https://cdn.posit.co/positron/prereleases/win/x86_64/Positron-2025.06.0-167-UserSetup.exe", 7 | "hash": "251c751e03db66e50bc6a1e7a359317256861fbdaca8a89996c117b8cc4492fc", 8 | "installer": { 9 | "args": [ 10 | "/VERYSILENT", 11 | "/DIR=$dir", 12 | "/NORESTART", 13 | "/TASKS=\"\"" 14 | ] 15 | }, 16 | "bin": "bin/positron.cmd", 17 | "uninstaller": { 18 | "file": "unins000.exe", 19 | "args": [ 20 | "/VERYSILENT", 21 | "/NORESTART" 22 | ] 23 | }, 24 | "shortcuts": [ 25 | [ 26 | "Positron.exe", 27 | "Positron" 28 | ] 29 | ], 30 | "checkver": { 31 | "url": "https://cdn.posit.co/positron/prereleases/win/x86_64/user-releases.json", 32 | "jsonpath": "$.version" 33 | }, 34 | "autoupdate": { 35 | "url": "https://cdn.posit.co/positron/prereleases/win/x86_64/Positron-$version-UserSetup.exe", 36 | "hash": { 37 | "url": "$baseurl/user-releases.json", 38 | "jsonpath": "$.sha256hash" 39 | } 40 | }, 41 | "notes": [ 42 | "Please review Positron's license agreement (https://github.com/posit-dev/positron?tab=License-1-ov-file#readme).", 43 | "Your acceptance of this license agreement is required as a condition to proceeding with your use of the software." 44 | ], 45 | "post_install": [ 46 | "if (Test-Path $(appdir positron)) { ", 47 | "Write-Host -ForegroundColor DarkBlue \"", 48 | "NOTES", 49 | "-----", 50 | "+ You already had a latest version of positron installed with scoop.", 51 | "+ Following this installation, 'positron' will point to the pre-release version", 52 | " + Use 'scoop reset positron' to switch back to stable release.", 53 | " + Use 'scoop reset positron-prerelease' after that to activate the pre-release version", 54 | "\"}" 55 | ] 56 | } 57 | -------------------------------------------------------------------------------- /bucket/positron.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2025.07.0-204", 3 | "description": "Positron, a next-generation data science IDE.", 4 | "homepage": "https://github.com/posit-dev/positron", 5 | "license": "Elastic-2.0", 6 | "url": "https://cdn.posit.co/positron/dailies/win/x86_64/Positron-2025.07.0-204-UserSetup.exe", 7 | "hash": "2ca1454f14eb4ec05d206fc83b3549e5c041525edb7a5d4e8565349885f20419", 8 | "installer": { 9 | "args": [ 10 | "/VERYSILENT", 11 | "/DIR=$dir", 12 | "/NORESTART", 13 | "/TASKS=\"\"" 14 | ] 15 | }, 16 | "bin": "bin/positron.cmd", 17 | "uninstaller": { 18 | "file": "unins000.exe", 19 | "args": [ 20 | "/VERYSILENT", 21 | "/NORESTART" 22 | ] 23 | }, 24 | "shortcuts": [ 25 | [ 26 | "Positron.exe", 27 | "Positron" 28 | ] 29 | ], 30 | "checkver": { 31 | "url": "https://positron.posit.co/download.html", 32 | "regex": "Positron-(\\d+\\.\\d+\\.\\d+-\\d+)-UserSetup.exe" 33 | }, 34 | "autoupdate": { 35 | "url": "https://cdn.posit.co/positron/dailies/win/x86_64/Positron-$version-UserSetup.exe", 36 | "hash": { 37 | "url": "https://cdn.posit.co/positron/prereleases/checksums/positron-$version-checksums.json", 38 | "jsonpath": "$.['Positron-$version-UserSetup.exe']" 39 | } 40 | }, 41 | "notes": [ 42 | "Please review Positron's license agreement (https://github.com/posit-dev/positron?tab=License-1-ov-file#readme).", 43 | "Your acceptance of this license agreement is required as a condition to proceeding with your use of the software." 44 | ], 45 | "post_install": [ 46 | "if (Test-Path $(appdir positron-prerelease)) { ", 47 | "Write-Host -ForegroundColor DarkGreen \"", 48 | "NOTES", 49 | "-----", 50 | "+ You already had a prelease version of Positron installed with scoop.", 51 | "+ Following this installation, 'quarto' will point to the stable version", 52 | " + Use 'scoop reset positron-prerelease' to switch back to pre-release version.", 53 | " + Use 'scoop reset positron' after that to activate the stable version", 54 | "\"}" 55 | ] 56 | } 57 | -------------------------------------------------------------------------------- /bucket/pstree.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0.1", 3 | "description": "List contents of directories in a tree-like format with colorization and lots of options", 4 | "homepage": "https://github.com/n8tb1t/Tree", 5 | "license": "MIT", 6 | "url": "https://psg-prod-eastus.azureedge.net/packages/tree.1.0.1.nupkg", 7 | "hash": "574bc5e81d55469f82858c9388609faad9f654d5e4d9ebae2ee57603f9242ccd", 8 | "pre_install": "Remove-Item \"$dir\\_rels\", \"$dir\\package\", \"$dir\\*Content_Types*.xml\" -Recurse", 9 | "psmodule": { 10 | "name": "Tree" 11 | }, 12 | "checkver": { 13 | "url": "https://www.powershellgallery.com/packages/Tree", 14 | "regex": "

([\\d\\.]+)

" 15 | }, 16 | "autoupdate": { 17 | "url": "https://psg-prod-eastus.azureedge.net/packages/tree.$version.nupkg" 18 | }, 19 | "depends": "r-bucket/tree" 20 | } 21 | -------------------------------------------------------------------------------- /bucket/py.exe.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "3.13.5", 3 | "description": "The Python launcher for Windows is a utility which aids in locating and executing of different Python versions.", 4 | "license": "PSF-2.0", 5 | "homepage": " https://docs.python.org/3/using/windows.html#launcher", 6 | "url": "https://www.python.org/ftp/python/3.13.5/win32/launcher.msi", 7 | "hash": "11f46cc0922b44abcb3efbdc42ec4a33ebcd4ed8c888195635b04730d3a61602", 8 | "bin": "py.exe", 9 | "checkver": { 10 | "url": "https://www.python.org/downloads/windows/", 11 | "regex": "Latest Python 3 Release - Python ([\\d.]+)" 12 | }, 13 | "autoupdate": { 14 | "url": "https://www.python.org/ftp/python/$version/win32/launcher.msi" 15 | }, 16 | "notes": "Python launcher is usually bundle with Python installer, but you can also install it separately. Please be aware this version could override the existing `py.exe` on your system.", 17 | "pre_install": [ 18 | "if (-not (Test-Path $(appdir py)) -and (Get-Command py.exe -ErrorAction SilentlyContinue) -ne $null) { ", 19 | "Write-Host -ForegroundColor Red \"", 20 | "NOTES", 21 | "-----", 22 | "+ You already have a `py.exe` version installed, possibly for a previous Python installation.", 23 | "+ Following this installation, 'py.exe' will point to the scoop installed version. ", 24 | " + Use 'scoop uninstall py.exe' to uninstall", 25 | "\"}" 26 | ] 27 | } 28 | -------------------------------------------------------------------------------- /bucket/quarto-prerelease.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.8.14", 3 | "description": "Open-source scientific and technical publishing system built on Pandoc", 4 | "homepage": "https://github.com/quarto-dev/quarto-cli", 5 | "license": "GPL-2.0", 6 | "url": "https://github.com/quarto-dev/quarto-cli/releases/download/v1.8.14/quarto-1.8.14-win.zip", 7 | "hash": "15a51f80725995eaa12a18e48976f6cd158f26c41c75f0d8cd7fc4e963462a41", 8 | "bin": "bin\\quarto.exe", 9 | "checkver": { 10 | "url": "https://quarto.org/docs/download/_prerelease.json", 11 | "jp": "$.version" 12 | }, 13 | "autoupdate": { 14 | "url": "https://github.com/quarto-dev/quarto-cli/releases/download/v$version/quarto-$version-win.zip", 15 | "hash": { 16 | "url": "https://quarto.org/docs/download/_prerelease.json", 17 | "jp": "$.assets[?(@.name =~ /\\.zip$/i)].checksum" 18 | } 19 | }, 20 | "post_install": [ 21 | "if (Test-Path $(appdir quarto)) { ", 22 | "Write-Host -ForegroundColor DarkBlue \"", 23 | "NOTES", 24 | "-----", 25 | "+ You already had a stable version of quarto installed with scoop.", 26 | "+ Following this installation, 'quarto' will point to the pre-release version", 27 | " + Use 'scoop reset quarto' to switch back to stable release.", 28 | " + Use 'scoop reset quarto-prerelease' after that to activate the pre-release version", 29 | "\"}" 30 | ] 31 | } 32 | -------------------------------------------------------------------------------- /bucket/quarto.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.7.32", 3 | "description": "Quarto is an academic, scientific, and technical publishing system built on Pandoc.", 4 | "homepage": "https://github.com/quarto-dev/quarto-cli", 5 | "license": "GPL-2.0", 6 | "url": "https://github.com/quarto-dev/quarto-cli/releases/download/v1.7.32/quarto-1.7.32-win.zip", 7 | "hash": "956d5162377d0138c2d1972eb3aa6634b5369aa9286871a95f4f3989e673854a", 8 | "bin": "bin\\quarto.exe", 9 | "checkver": "github", 10 | "autoupdate": { 11 | "url": "https://github.com/quarto-dev/quarto-cli/releases/download/v$version/quarto-$version-win.zip" 12 | }, 13 | "post_install": [ 14 | "if (Test-Path $(appdir quarto-prerelease)) { ", 15 | "Write-Host -ForegroundColor DarkGreen \"", 16 | "NOTES", 17 | "-----", 18 | "+ You already had a stable version of quarto installed with scoop.", 19 | "+ Following this installation, 'quarto' will point to the stable version", 20 | " + Use 'scoop reset quarto-prerelease' to switch back to pre-release version.", 21 | " + Use 'scoop reset quarto' after that to activate the stable version", 22 | "\"}" 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /bucket/qvm.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.3.0", 3 | "description": "Quarto Version Manager - manage and switch between versions of Quarto.", 4 | "homepage": "https://github.com/dpastoor/qvm", 5 | "license": "MIT", 6 | "url": "https://github.com/dpastoor/qvm/releases/download/v0.3.0/qvm_Windows_x86_64.zip", 7 | "bin": "qvm.exe", 8 | "hash": "b0ed90a988a090966ed4dbdbc3b11f05f750c9c6f86d29439be15fb5c92ac328", 9 | "checkver": "github", 10 | "autoupdate": { 11 | "url": "https://github.com/dpastoor/qvm/releases/download/v$version/qvm_Windows_x86_64.zip" 12 | }, 13 | "notes": [ 14 | "After installation, run `qvm init` and follow the instruction.", 15 | "You probably need to add the qvm bin directory (`qvm path active`) to your PATH, so that quarto CLI from qvm is found.", 16 | "", 17 | "Autocompletion for `qvm` on Windows is not yet available" 18 | ] 19 | } 20 | -------------------------------------------------------------------------------- /bucket/r-devel.json: -------------------------------------------------------------------------------- 1 | { 2 | "homepage": "https://cran.r-project.org/bin/windows/base/rdevel.html", 3 | "description": "A free software environment for statistical computing and graphics.", 4 | "version": "r88387", 5 | "license": "GPL-2.0-only", 6 | "url": "https://cloud.r-project.org/bin/windows/base/R-devel-win.exe", 7 | "hash": "md5:683c09ab9611ca44247a4d5b100bcb99", 8 | "innosetup": true, 9 | "architecture": { 10 | "64bit": { 11 | "bin": [ 12 | "bin\\x64\\R.exe", 13 | "bin\\x64\\Rcmd.exe", 14 | "bin\\x64\\Rgui.exe", 15 | "bin\\x64\\Rscript.exe", 16 | "bin\\x64\\Rterm.exe" 17 | ], 18 | "shortcuts": [ 19 | [ 20 | "bin\\x64\\Rgui.exe", 21 | "R-devel" 22 | ] 23 | ] 24 | } 25 | }, 26 | "notes": [ 27 | "For source packages installation, you will need to install Rtools if not already present, and add to PATH in your .Renviron: https://cran.r-project.org/bin/windows/Rtools", 28 | "", 29 | "You'll need to type 'r.ps1' or 'r.cmd' to run R, because in Powershell 'r' runs the last command. Alternatively 'rterm' can be used to start the interactive R terminal session.", 30 | "", 31 | "You can remove Powershell's 'r' command with:", 32 | " rm alias:\\r", 33 | "", 34 | "... but this only affects your current session: if you'd like to remove it for all future sessions you need to add the command above to your Powershell profile.", 35 | "", 36 | "Annoying, right?! You might want to check out Pshazz (scoop install pshazz)--this has a plugin to remove some crazy aliases from Powershell, as well as many other improvements." 37 | ], 38 | "checkver": { 39 | "url": "https://cran.r-project.org/bin/windows/base/rdevel.html", 40 | "regex": "(r\\d+)" 41 | }, 42 | "autoupdate": { 43 | "url": "https://cloud.r-project.org/bin/windows/base/R-devel-win.exe", 44 | "hash": { 45 | "url": "$baseurl/md5sum.R-devel.txt" 46 | } 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /bucket/r-release.json: -------------------------------------------------------------------------------- 1 | { 2 | "homepage": "https://cran.r-project.org/bin/windows/base/old/index.html", 3 | "description": "A free software environment for statistical computing and graphics.", 4 | "version": "4.5.1", 5 | "license": "GPL-2.0-only", 6 | "url": "https://cran.r-project.org/bin/windows/base/old/4.5.1/R-4.5.1-win.exe", 7 | "hash": "md5:ee82b26e6fae986fda2a9a73b2501f9f", 8 | "innosetup": true, 9 | "architecture": { 10 | "64bit": { 11 | "pre_install": "Rename-Item \"$dir\\bin\\R,2.exe\" 'R.exe'", 12 | "bin": [ 13 | "bin\\x64\\R.exe", 14 | "bin\\x64\\Rcmd.exe", 15 | "bin\\x64\\Rgui.exe", 16 | "bin\\x64\\Rscript.exe", 17 | "bin\\x64\\Rterm.exe" 18 | ], 19 | "shortcuts": [ 20 | [ 21 | "bin\\x64\\Rgui.exe", 22 | "R-release" 23 | ] 24 | ] 25 | }, 26 | "32bit": { 27 | "pre_install": "Rename-Item \"$dir\\bin\\R,1.exe\" 'R.exe'", 28 | "bin": [ 29 | "bin\\i386\\R.exe", 30 | "bin\\i386\\Rcmd.exe", 31 | "bin\\i386\\Rgui.exe", 32 | "bin\\i386\\Rscript.exe", 33 | "bin\\i386\\Rterm.exe" 34 | ], 35 | "shortcuts": [ 36 | [ 37 | "bin\\i386\\Rgui.exe", 38 | "R-release" 39 | ] 40 | ] 41 | } 42 | }, 43 | "installer": { 44 | "script": [ 45 | "Remove-Item \"$dir\\bin\\R,*.exe\" -Force", 46 | "Copy-Item \"$dir\\bin\\R.exe\" \"$dir\\bin\\Rscript.exe\"" 47 | ] 48 | }, 49 | "notes": [ 50 | "For source packages installation, you will need to install Rtools if not already present, and add to PATH in your .Renviron: https://cran.r-project.org/bin/windows/Rtools", 51 | "", 52 | "You'll need to type 'r.ps1' or 'r.cmd' to run R, because in Powershell 'r' runs the last command. Alternatively 'rterm' can be used to start the interactive R terminal session.", 53 | "", 54 | "You can remove Powershell's 'r' command with:", 55 | " rm alias:\\r", 56 | "", 57 | "... but this only affects your current session: if you'd like to remove it for all future sessions you need to add the command above to your Powershell profile.", 58 | "", 59 | "Annoying, right?! You might want to check out Pshazz (scoop install pshazz)--this has a plugin to remove some crazy aliases from Powershell, as well as many other improvements." 60 | ], 61 | "checkver": { 62 | "url": "https://cran.r-project.org/bin/windows/base/old/index.html", 63 | "regex": "R (\\d+[.]\\d+[.]\\d+)" 64 | }, 65 | "autoupdate": { 66 | "url": "https://cran.r-project.org/bin/windows/base/old/$version/R-$version-win.exe", 67 | "hash": { 68 | "url": "$baseurl/md5sum.R-$version.txt" 69 | } 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /bucket/rig.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.7.1", 3 | "description": "The R installation manager: Install, remove, configure R versions.", 4 | "homepage": "https://github.com/r-lib/rig", 5 | "license": "MIT", 6 | "url": "https://github.com/r-lib/rig/releases/download/v0.7.1/rig-windows-0.7.1.exe", 7 | "hash": "44a8bbe4fc8c6225c7eabe9b7110247b7cac8a5b53b7326e61e50b443a6aa88c", 8 | "bin": "rig.exe", 9 | "innosetup": true, 10 | "post_install": [ 11 | "$binDir=\"C:\\Program Files\\R\\bin\"", 12 | "$curPath = [System.Environment]::GetEnvironmentVariable(\"Path\",\"User\")", 13 | "$curPathArray=($oldPath) -split ';'", 14 | "if(-Not($curPathArray -Contains \"$binDir\")) {", 15 | " Write-Host -ForegroundColor Yellow \"Adding $binDir to User Path\"", 16 | " $newPath = \"$curPath;$binDir\" -replace ';+', ';'", 17 | " [System.Environment]::SetEnvironmentVariable(\"Path\",$newPath,\"User\")", 18 | "}" 19 | ], 20 | "checkver": "github", 21 | "autoupdate": { 22 | "url": "https://github.com/r-lib/rig/releases/download/v$version/rig-windows-$version.exe" 23 | }, 24 | "notes": [ 25 | "Usage: Add the following to the end of your PowerShell $profile to get autocompletion:", 26 | "", 27 | "# Scoop - rig autocompletion", 28 | "$rig_ac=$(try { Join-Path -Path $(scoop prefix rig) -ChildPath _rig.ps1 } catch { '' })", 29 | "if (Test-Path -Path $rig_ac) { & $rig_ac }" 30 | ] 31 | } 32 | -------------------------------------------------------------------------------- /bucket/rstudio-1.2.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.2.5042", 3 | "homepage": "https://www.rstudio.com/", 4 | "description": "An IDE for R, which includes a console, syntax-highlighting editor that supports direct code execution, as well as tools for plotting, history, debugging and workspace management.", 5 | "license": "AGPL-3.0-only", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://download1.rstudio.org/desktop/windows/RStudio-1.2.5042.zip", 9 | "hash": "76a7c2f2b6fc129f27bf70ea4a535175a839bd73065eba06ffcf78f1134bc2bf" 10 | } 11 | }, 12 | "bin": [ 13 | [ 14 | "bin\\rstudio.exe", 15 | "rstudio-1.2" 16 | ] 17 | ], 18 | "shortcuts": [ 19 | [ 20 | "bin\\rstudio.exe", 21 | "RStudio 1.2" 22 | ] 23 | ] 24 | } -------------------------------------------------------------------------------- /bucket/rstudio-1.3.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.2.1093", 3 | "homepage": "https://www.rstudio.com/", 4 | "description": "An IDE for R, which includes a console, syntax-highlighting editor that supports direct code execution, as well as tools for plotting, history, debugging and workspace management.", 5 | "license": "AGPL-3.0-only", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://download1.rstudio.org/desktop/windows/RStudio-1.3.1093.zip", 9 | "hash": "4abe0f7735dbf63bf2391a854ae39d6d09d9a101328c6f7f80c833504be3a987" 10 | } 11 | }, 12 | "bin": [ 13 | [ 14 | "bin\\rstudio.exe", 15 | "rstudio-1.3" 16 | ] 17 | ], 18 | "shortcuts": [ 19 | [ 20 | "bin\\rstudio.exe", 21 | "RStudio 1.3" 22 | ] 23 | ] 24 | } -------------------------------------------------------------------------------- /bucket/rstudio-1.4.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.4.1743", 3 | "homepage": "https://www.rstudio.com/", 4 | "description": "An IDE for R, which includes a console, syntax-highlighting editor that supports direct code execution, as well as tools for plotting, history, debugging and workspace management.", 5 | "license": "AGPL-3.0-only", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://s3.amazonaws.com/rstudio-ide-build/desktop/windows/RStudio-1.4.1743.zip", 9 | "hash": "dd96cf1193108c9cd46aa450e8948aa5df7c1ae065dc45219eac3870d05fb6bc" 10 | } 11 | }, 12 | "bin": [ 13 | [ 14 | "bin\\rstudio.exe", 15 | "rstudio-1.4" 16 | ] 17 | ], 18 | "shortcuts": [ 19 | [ 20 | "bin\\rstudio.exe", 21 | "RStudio 1.4" 22 | ] 23 | ], 24 | "checkver": { 25 | "url": "https://dailies.rstudio.com/rstudio/juliet-rose/index.json", 26 | "jsonpath": ".desktop.platforms['windows-xcopy'].version" 27 | }, 28 | "autoupdate": { 29 | "architecture": { 30 | "64bit": { 31 | "url": "https://s3.amazonaws.com/rstudio-ide-build/desktop/windows/RStudio-$version.zip", 32 | "hash": { 33 | "mode": "json", 34 | "jsonpath": ".desktop.platforms['windows-xcopy'].sha256", 35 | "url": "https://dailies.rstudio.com/rstudio/juliet-rose/index.json" 36 | } 37 | } 38 | } 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /bucket/rstudio-2022.02.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2022.02.4+500", 3 | "homepage": "https://www.rstudio.com/", 4 | "description": "An IDE for R, which includes a console, syntax-highlighting editor that supports direct code execution, as well as tools for plotting, history, debugging and workspace management.", 5 | "license": "AGPL-3.0-only", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://s3.amazonaws.com/rstudio-ide-build/desktop/windows/RStudio-2022.02.4-500.zip", 9 | "hash": "0a09a6b53ff0165f1c5b6f14f2bafae564bcd929d2c979135931fe5e98d7ef3e" 10 | } 11 | }, 12 | "bin": [ 13 | [ 14 | "bin\\rstudio.exe", 15 | "rstudio-2022.02" 16 | ] 17 | ], 18 | "shortcuts": [ 19 | [ 20 | "bin\\rstudio.exe", 21 | "RStudio 2022.02" 22 | ] 23 | ], 24 | "checkver": { 25 | "url": "https://dailies.rstudio.com/rstudio/prairie-trillium/index.json", 26 | "jsonpath": ".desktop.platforms['windows-xcopy'].version", 27 | "regex": "(?[\\d.]+)(?-(daily|preview))?\\+(?\\d+)", 28 | "replace": "${date}${type}+${build}" 29 | }, 30 | "autoupdate": { 31 | "architecture": { 32 | "64bit": { 33 | "url": "https://s3.amazonaws.com/rstudio-ide-build/desktop/windows/RStudio-$matchDate$matchType-$matchBuild.zip", 34 | "hash": { 35 | "mode": "json", 36 | "jsonpath": ".desktop.platforms['windows-xcopy'].sha256", 37 | "url": "https://dailies.rstudio.com/rstudio/prairie-trillium/index.json" 38 | } 39 | } 40 | } 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /bucket/rstudio-2022.07.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2022.07.2+576", 3 | "homepage": "https://www.rstudio.com/", 4 | "description": "An IDE for R, which includes a console, syntax-highlighting editor that supports direct code execution, as well as tools for plotting, history, debugging and workspace management.", 5 | "license": "AGPL-3.0-only", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://s3.amazonaws.com/rstudio-ide-build/desktop/windows/RStudio-2022.07.2-576.zip", 9 | "hash": "063ead1f62f773c3228c9213dbe75879a8c4d0d2f5cf49f170b8ab5ded060308" 10 | } 11 | }, 12 | "bin": [ 13 | [ 14 | "bin\\rstudio.exe", 15 | "rstudio-2022.07" 16 | ] 17 | ], 18 | "shortcuts": [ 19 | [ 20 | "bin\\rstudio.exe", 21 | "RStudio 2022.07" 22 | ] 23 | ], 24 | "checkver": { 25 | "url": "https://dailies.rstudio.com/rstudio/spotted-wakerobin/index.json", 26 | "jsonpath": ".desktop.platforms['windows-xcopy'].version", 27 | "regex": "(?[\\d.]+)(?-(daily|preview))?\\+(?\\d+)", 28 | "replace": "${date}+${build}${type}" 29 | }, 30 | "autoupdate": { 31 | "architecture": { 32 | "64bit": { 33 | "url": "https://s3.amazonaws.com/rstudio-ide-build/desktop/windows/RStudio-$matchDate$matchType-$matchBuild.zip", 34 | "hash": { 35 | "mode": "json", 36 | "jsonpath": ".desktop.platforms['windows-xcopy'].sha256", 37 | "url": "https://dailies.rstudio.com/rstudio/spotted-wakerobin/index.json" 38 | } 39 | } 40 | } 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /bucket/rstudio-2022.12.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2022.12.0+353", 3 | "homepage": "https://www.rstudio.com/", 4 | "description": "An IDE for R, which includes a console, syntax-highlighting editor that supports direct code execution, as well as tools for plotting, history, debugging and workspace management.", 5 | "license": "AGPL-3.0-only", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://s3.amazonaws.com/rstudio-ide-build/electron/windows/RStudio-2022.12.0-353.zip", 9 | "hash": "8c351ee495736d5d6352b437f329d5ce99daa3f7a112dd96a838a49073d72bc8" 10 | } 11 | }, 12 | "bin": [ 13 | [ 14 | "rstudio.exe", 15 | "rstudio-2022.12" 16 | ] 17 | ], 18 | "shortcuts": [ 19 | [ 20 | "rstudio.exe", 21 | "RStudio 2022.12" 22 | ] 23 | ], 24 | "checkver": { 25 | "url": "https://dailies.rstudio.com/rstudio/elsbeth-geranium/index.json", 26 | "jsonpath": ".electron.platforms['windows-xcopy'].version", 27 | "regex": "(?[\\d.]+)(?-(daily|preview))?\\+(?\\d+)", 28 | "replace": "${date}+${build}${type}" 29 | }, 30 | "autoupdate": { 31 | "architecture": { 32 | "64bit": { 33 | "url": "https://s3.amazonaws.com/rstudio-ide-build/electron/windows/RStudio-$matchDate$matchType-$matchBuild.zip", 34 | "hash": { 35 | "mode": "json", 36 | "jsonpath": ".electron.platforms['windows-xcopy'].sha256", 37 | "url": "https://dailies.rstudio.com/rstudio/elsbeth-geranium/index.json" 38 | } 39 | } 40 | } 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /bucket/rstudio-2023.03.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2023.03.2+454", 3 | "homepage": "https://www.rstudio.com/", 4 | "description": "An IDE for R, which includes a console, syntax-highlighting editor that supports direct code execution, as well as tools for plotting, history, debugging and workspace management.", 5 | "license": "AGPL-3.0-only", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://s3.amazonaws.com/rstudio-ide-build/electron/windows/RStudio-2023.03.2-454.zip", 9 | "hash": "49e677a1d50b2e62428270e3c3ecc36ba4d25ca755e05fbde09b939d7d657e87" 10 | } 11 | }, 12 | "bin": [ 13 | [ 14 | "rstudio.exe", 15 | "rstudio-2023.03" 16 | ] 17 | ], 18 | "shortcuts": [ 19 | [ 20 | "rstudio.exe", 21 | "RStudio 2023.03" 22 | ] 23 | ], 24 | "checkver": { 25 | "url": "https://dailies.rstudio.com/rstudio/cherry-blossom/index.json", 26 | "jsonpath": ".electron.platforms['windows-xcopy'].version", 27 | "regex": "(?[\\d.]+)(?-(daily|preview))?\\+(?\\d+)", 28 | "replace": "${date}+${build}${type}" 29 | }, 30 | "autoupdate": { 31 | "architecture": { 32 | "64bit": { 33 | "url": "https://s3.amazonaws.com/rstudio-ide-build/electron/windows/RStudio-$matchDate$matchType-$matchBuild.zip", 34 | "hash": { 35 | "mode": "json", 36 | "jsonpath": ".electron.platforms['windows-xcopy'].sha256", 37 | "url": "https://dailies.rstudio.com/rstudio/cherry-blossom/index.json" 38 | } 39 | } 40 | } 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /bucket/rstudio-2023.06.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2023.06.2+561", 3 | "homepage": "https://www.rstudio.com/", 4 | "description": "An IDE for R, which includes a console, syntax-highlighting editor that supports direct code execution, as well as tools for plotting, history, debugging and workspace management.", 5 | "license": "AGPL-3.0-only", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://s3.amazonaws.com/rstudio-ide-build/electron/windows/RStudio-2023.06.2-561.zip", 9 | "hash": "386e99ee36c2265f525fe238a7c945ae6adf335eb8148b5bf0d3426faba584bf" 10 | } 11 | }, 12 | "bin": [ 13 | [ 14 | "rstudio.exe", 15 | "rstudio-2023.06" 16 | ] 17 | ], 18 | "shortcuts": [ 19 | [ 20 | "rstudio.exe", 21 | "RStudio 2023.06" 22 | ] 23 | ], 24 | "checkver": { 25 | "url": "https://dailies.rstudio.com/rstudio/mountain-hydrangea/index.json", 26 | "jsonpath": ".electron.platforms['windows-xcopy'].version", 27 | "regex": "(?[\\d.]+)(?-(daily|preview))?\\+(?\\d+)", 28 | "replace": "${date}+${build}${type}" 29 | }, 30 | "autoupdate": { 31 | "architecture": { 32 | "64bit": { 33 | "url": "https://s3.amazonaws.com/rstudio-ide-build/electron/windows/RStudio-$matchDate$matchType-$matchBuild.zip", 34 | "hash": { 35 | "mode": "json", 36 | "jsonpath": ".electron.platforms['windows-xcopy'].sha256", 37 | "url": "https://dailies.rstudio.com/rstudio/mountain-hydrangea/index.json" 38 | } 39 | } 40 | } 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /bucket/rstudio-2023.09.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2023.09.1+494", 3 | "homepage": "https://www.rstudio.com/", 4 | "description": "An IDE for R, which includes a console, syntax-highlighting editor that supports direct code execution, as well as tools for plotting, history, debugging and workspace management.", 5 | "license": "AGPL-3.0-only", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://s3.amazonaws.com/rstudio-ide-build/electron/windows/RStudio-2023.09.1-494.zip", 9 | "hash": "febbfb58b861639b6401db7fa6db95ccb99b3f7a000d65f0b6cbffb46c491e09" 10 | } 11 | }, 12 | "bin": [ 13 | [ 14 | "bin\\rstudio.exe", 15 | "rstudio-2023.09" 16 | ] 17 | ], 18 | "shortcuts": [ 19 | [ 20 | "bin\\rstudio.exe", 21 | "RStudio 2023.09" 22 | ] 23 | ], 24 | "checkver": { 25 | "url": "https://dailies.rstudio.com/rstudio/desert-sunflower/index.json", 26 | "jsonpath": ".electron.platforms['windows-xcopy'].version", 27 | "regex": "(?[\\d.]+)(?-(daily|preview))?\\+(?\\d+)", 28 | "replace": "${date}+${build}${type}" 29 | }, 30 | "autoupdate": { 31 | "architecture": { 32 | "64bit": { 33 | "url": "https://s3.amazonaws.com/rstudio-ide-build/electron/windows/RStudio-$matchDate$matchType-$matchBuild.zip", 34 | "hash": { 35 | "mode": "json", 36 | "jsonpath": ".electron.platforms['windows-xcopy'].sha256", 37 | "url": "https://dailies.rstudio.com/rstudio/desert-sunflower/index.json" 38 | } 39 | } 40 | } 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /bucket/rstudio-2023.12.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2023.12.2+407", 3 | "homepage": "https://www.rstudio.com/", 4 | "description": "An IDE for R, which includes a console, syntax-highlighting editor that supports direct code execution, as well as tools for plotting, history, debugging and workspace management.", 5 | "license": "AGPL-3.0-only", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://s3.amazonaws.com/rstudio-ide-build/electron/windows/RStudio-2023.12.2-407.zip", 9 | "hash": "acb41933019546316593ec004291cc6a75887039884b6503fd5c52fa1d09b009" 10 | } 11 | }, 12 | "bin": [ 13 | [ 14 | "bin\\rstudio.exe", 15 | "rstudio-2023.09" 16 | ] 17 | ], 18 | "shortcuts": [ 19 | [ 20 | "bin\\rstudio.exe", 21 | "RStudio 2023.09" 22 | ] 23 | ], 24 | "checkver": { 25 | "url": "https://dailies.rstudio.com/rstudio/ocean-storm/index.json", 26 | "jsonpath": ".electron.platforms['windows-xcopy'].version", 27 | "regex": "(?[\\d.]+)(?-(daily|preview))?\\+(?\\d+)", 28 | "replace": "${date}+${build}${type}" 29 | }, 30 | "autoupdate": { 31 | "architecture": { 32 | "64bit": { 33 | "url": "https://s3.amazonaws.com/rstudio-ide-build/electron/windows/RStudio-$matchDate$matchType-$matchBuild.zip", 34 | "hash": { 35 | "mode": "json", 36 | "jsonpath": ".electron.platforms['windows-xcopy'].sha256", 37 | "url": "https://dailies.rstudio.com/rstudio/ocean-storm/index.json" 38 | } 39 | } 40 | } 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /bucket/rstudio-2024.04.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2024.04.3+776", 3 | "homepage": "https://www.rstudio.com/", 4 | "description": "An IDE for R, which includes a console, syntax-highlighting editor that supports direct code execution, as well as tools for plotting, history, debugging and workspace management.", 5 | "license": "AGPL-3.0-only", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://s3.amazonaws.com/rstudio-ide-build/electron/windows/RStudio-2024.04.3-776.zip", 9 | "hash": "a1172b0eba3b32a3d321f592d250937edf552c4ad1672cdf8ec464e5c9eb81ad" 10 | } 11 | }, 12 | "bin": [ 13 | [ 14 | "bin\\rstudio.exe", 15 | "rstudio-2023.09" 16 | ] 17 | ], 18 | "shortcuts": [ 19 | [ 20 | "bin\\rstudio.exe", 21 | "RStudio 2023.09" 22 | ] 23 | ], 24 | "checkver": { 25 | "url": "https://dailies.rstudio.com/rstudio/chocolate-cosmos/index.json", 26 | "jsonpath": ".electron.platforms['windows-xcopy'].version", 27 | "regex": "(?[\\d.]+)(?-(daily|preview))?\\+(?\\d+)", 28 | "replace": "${date}+${build}${type}" 29 | }, 30 | "autoupdate": { 31 | "architecture": { 32 | "64bit": { 33 | "url": "https://s3.amazonaws.com/rstudio-ide-build/electron/windows/RStudio-$matchDate$matchType-$matchBuild.zip", 34 | "hash": { 35 | "mode": "json", 36 | "jsonpath": ".electron.platforms['windows-xcopy'].sha256", 37 | "url": "https://dailies.rstudio.com/rstudio/chocolate-cosmos/index.json" 38 | } 39 | } 40 | } 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /bucket/rstudio-daily-electron.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2025.08.0+242-daily", 3 | "homepage": "https://www.rstudio.com/", 4 | "description": "An IDE for R, which includes a console, syntax-highlighting editor that supports direct code execution, as well as tools for plotting, history, debugging and workspace management.", 5 | "license": "AGPL-3.0-only", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://s3.amazonaws.com/rstudio-ide-build/electron/windows/RStudio-2025.08.0-daily-242.zip", 9 | "hash": "67952a11224d2dbb35b1cfd558db1f71eac4473c7ee6378946e1083e621bb7d9" 10 | } 11 | }, 12 | "bin": [ 13 | [ 14 | "rstudio.exe", 15 | "rstudio-daily-electron" 16 | ] 17 | ], 18 | "shortcuts": [ 19 | [ 20 | "rstudio.exe", 21 | "RStudio Daily Electron" 22 | ] 23 | ], 24 | "checkver": { 25 | "url": "https://dailies.rstudio.com/rstudio/latest/index.json", 26 | "jsonpath": ".products.electron.platforms['windows-xcopy'].version", 27 | "regex": "(?[\\d.]+)(?-(daily|preview))?\\+(?\\d+)", 28 | "replace": "${date}+${build}${type}" 29 | }, 30 | "autoupdate": { 31 | "architecture": { 32 | "64bit": { 33 | "url": "https://s3.amazonaws.com/rstudio-ide-build/electron/windows/RStudio-$matchDate$matchType-$matchBuild.zip", 34 | "hash": { 35 | "mode": "json", 36 | "jsonpath": ".products.electron.platforms['windows-xcopy'].sha256", 37 | "url": "https://dailies.rstudio.com/rstudio/latest/index.json" 38 | } 39 | } 40 | } 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /bucket/rstudio-daily.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2025.08.0+242-daily", 3 | "homepage": "https://www.rstudio.com/", 4 | "description": "An IDE for R, which includes a console, syntax-highlighting editor that supports direct code execution, as well as tools for plotting, history, debugging and workspace management.", 5 | "license": "AGPL-3.0-only", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://s3.amazonaws.com/rstudio-ide-build/electron/windows/RStudio-2025.08.0-daily-242.zip", 9 | "hash": "67952a11224d2dbb35b1cfd558db1f71eac4473c7ee6378946e1083e621bb7d9" 10 | } 11 | }, 12 | "bin": [ 13 | [ 14 | "rstudio.exe", 15 | "rstudio-daily" 16 | ] 17 | ], 18 | "shortcuts": [ 19 | [ 20 | "rstudio.exe", 21 | "RStudio Daily" 22 | ] 23 | ], 24 | "checkver": { 25 | "url": "https://dailies.rstudio.com/rstudio/latest/index.json", 26 | "jsonpath": ".products.electron.platforms['windows-xcopy'].version", 27 | "regex": "(?[\\d.]+)(?-(daily|preview))?\\+(?\\d+)", 28 | "replace": "${date}+${build}${type}" 29 | }, 30 | "autoupdate": { 31 | "architecture": { 32 | "64bit": { 33 | "url": "https://s3.amazonaws.com/rstudio-ide-build/electron/windows/RStudio-$matchDate$matchType-$matchBuild.zip", 34 | "hash": { 35 | "mode": "json", 36 | "jsonpath": ".products.electron.platforms['windows-xcopy'].sha256", 37 | "url": "https://dailies.rstudio.com/rstudio/latest/index.json" 38 | } 39 | } 40 | } 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /bucket/rstudio-preview.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2025.05.1+513", 3 | "homepage": "https://www.rstudio.com/", 4 | "description": "An IDE for R, which includes a console, syntax-highlighting editor that supports direct code execution, as well as tools for plotting, history, debugging and workspace management.", 5 | "license": "AGPL-3.0-only", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://s3.amazonaws.com/rstudio-ide-build/electron/windows/RStudio-2025.05.1-513.zip", 9 | "hash": "e4db9e2ad08bc74fe57c84e32e3ba3521fddaa7eb17ef51752b65859b35e8488" 10 | } 11 | }, 12 | "bin": [ 13 | [ 14 | "rstudio.exe", 15 | "rstudio-preview" 16 | ] 17 | ], 18 | "shortcuts": [ 19 | [ 20 | "rstudio.exe", 21 | "RStudio Preview" 22 | ] 23 | ], 24 | "checkver": { 25 | "url": "https://posit.co/wp-content/uploads/downloads.json", 26 | "jsonpath": ".rstudio['open_source'].preview.desktop.archive.windows.version", 27 | "regex": "(?[\\d.]+)(?-preview)?\\+(?\\d+)", 28 | "replace": "${date}+${build}${type}" 29 | }, 30 | "autoupdate": { 31 | "architecture": { 32 | "64bit": { 33 | "url": "https://s3.amazonaws.com/rstudio-ide-build/electron/windows/RStudio-$matchDate$matchType-$matchBuild.zip", 34 | "hash": { 35 | "mode": "json", 36 | "jsonpath": ".rstudio['open_source'].preview.desktop.archive.windows.sha256", 37 | "url": "https://posit.co/wp-content/uploads/downloads.json" 38 | } 39 | } 40 | } 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /bucket/rstudio-pro-daily.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2025.08.0+241.pro7-daily", 3 | "homepage": "https://www.rstudio.com/", 4 | "description": "An IDE for R, which includes a console, syntax-highlighting editor that supports direct code execution, as well as tools for plotting, history, debugging and workspace management.", 5 | "license": "https://rstudio.com/about/eula/", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://s3.amazonaws.com/rstudio-ide-build/electron/windows/RStudio-pro-2025.08.0-daily-241.pro7.zip", 9 | "hash": "5c9f711f376ec8a7afeefd68183ee58ec17e3e94fafd507c8163683c57326b74" 10 | } 11 | }, 12 | "bin": [ 13 | [ 14 | "bin\\rstudio.exe", 15 | "rstudio-pro-daily" 16 | ] 17 | ], 18 | "shortcuts": [ 19 | [ 20 | "bin\\rstudio.exe", 21 | "RStudio Pro Daily" 22 | ] 23 | ], 24 | "checkver": { 25 | "url": "https://dailies.rstudio.com/rstudio/latest/index.json", 26 | "jsonpath": ".products['electron-pro'].platforms['windows-xcopy'].version", 27 | "regex": "(?[\\d.]+)(?-(daily|preview))?\\+(?\\d+)(?\\.pro\\d+)", 28 | "replace": "${date}+${build}${pro}${type}" 29 | }, 30 | "autoupdate": { 31 | "architecture": { 32 | "64bit": { 33 | "url": "https://s3.amazonaws.com/rstudio-ide-build/electron/windows/RStudio-pro-$matchDate$matchType-$matchBuild$matchPro.zip", 34 | "hash": { 35 | "mode": "json", 36 | "jsonpath": ".products['electron-pro'].platforms['windows-xcopy'].sha256", 37 | "url": "https://dailies.rstudio.com/rstudio/latest/index.json" 38 | } 39 | } 40 | } 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /bucket/rstudio-pro-preview.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2025.05.1+513.pro3", 3 | "homepage": "https://www.rstudio.com/", 4 | "description": "An IDE for R, which includes a console, syntax-highlighting editor that supports direct code execution, as well as tools for plotting, history, debugging and workspace management.", 5 | "license": "https://rstudio.com/about/eula/", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://s3.amazonaws.com/rstudio-ide-build/desktop/windows/RStudio-pro-2025.05.1-513.pro3.exe", 9 | "hash": "eb156c3f4be08183937f4d962e0ed08aa2eb5bdfc0e6c0df5ad532db6b95308d" 10 | } 11 | }, 12 | "bin": [ 13 | [ 14 | "bin\\rstudio.exe", 15 | "rstudio-pro-preview" 16 | ] 17 | ], 18 | "shortcuts": [ 19 | [ 20 | "bin\\rstudio.exe", 21 | "RStudio Pro Preview" 22 | ] 23 | ], 24 | "checkver": { 25 | "url": "https://posit.co/wp-content/uploads/downloads.json", 26 | "jsonpath": ".rstudio.pro.preview.desktop.installer.windows.version", 27 | "regex": "(?[\\d.]+)(?-preview)?\\+(?\\d+)(?\\.pro\\d+)", 28 | "replace": "${date}+${build}${pro}${type}" 29 | }, 30 | "autoupdate": { 31 | "architecture": { 32 | "64bit": { 33 | "url": "https://s3.amazonaws.com/rstudio-ide-build/desktop/windows/RStudio-pro-$matchDate$matchType-$matchBuild$matchPro.exe", 34 | "hash": { 35 | "mode": "json", 36 | "jsonpath": ".rstudio.pro.preview.desktop.installer.windows.sha256", 37 | "url": "https://posit.co/wp-content/uploads/downloads.json" 38 | } 39 | } 40 | } 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /bucket/rstudio-pro-release.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2025.05.1+513.pro3", 3 | "homepage": "https://www.rstudio.com/", 4 | "description": "An IDE for R, which includes a console, syntax-highlighting editor that supports direct code execution, as well as tools for plotting, history, debugging and workspace management.", 5 | "license": "AGPL-3.0-only", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://s3.amazonaws.com/rstudio-desktop/desktop/windows/RStudio-pro-2025.05.1-513.pro3.zip", 9 | "hash": "9bf5e27cfd68c34edd121582849ec9543ba0a18d025c29ef4b1510e53fe0d828" 10 | } 11 | }, 12 | "bin": [ 13 | [ 14 | "bin\\rstudio.exe", 15 | "rstudio-pro" 16 | ] 17 | ], 18 | "shortcuts": [ 19 | [ 20 | "bin\\rstudio.exe", 21 | "RStudio Pro Release" 22 | ] 23 | ], 24 | "checkver": { 25 | "url": "https://posit.co/wp-content/uploads/downloads.json", 26 | "jsonpath": ".rstudio.pro.stable.desktop.archive.windows.version", 27 | "regex": "(?[\\d.]+)\\+(?\\d+)(?\\.pro\\d+)", 28 | "replace": "${date}+${build}${pro}" 29 | }, 30 | "autoupdate": { 31 | "architecture": { 32 | "64bit": { 33 | "url": "https://s3.amazonaws.com/rstudio-desktop/desktop/windows/RStudio-pro-$matchDate-$matchBuild$matchPro.zip", 34 | "hash": { 35 | "mode": "json", 36 | "jsonpath": ".rstudio.pro.stable.desktop.archive.windows.sha256", 37 | "url": "https://posit.co/wp-content/uploads/downloads.json" 38 | } 39 | } 40 | } 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /bucket/rstudio-release.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2025.05.1+513", 3 | "homepage": "https://www.rstudio.com/", 4 | "description": "An IDE for R, which includes a console, syntax-highlighting editor that supports direct code execution, as well as tools for plotting, history, debugging and workspace management.", 5 | "license": "AGPL-3.0-only", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://s3.amazonaws.com/rstudio-desktop/electron/windows/RStudio-2025.05.1-513.zip", 9 | "hash": "e4db9e2ad08bc74fe57c84e32e3ba3521fddaa7eb17ef51752b65859b35e8488" 10 | } 11 | }, 12 | "bin": [ 13 | [ 14 | "rstudio.exe", 15 | "rstudio" 16 | ] 17 | ], 18 | "shortcuts": [ 19 | [ 20 | "rstudio.exe", 21 | "RStudio Release" 22 | ] 23 | ], 24 | "checkver": { 25 | "url": "https://posit.co/wp-content/uploads/downloads.json", 26 | "jsonpath": ".rstudio['open_source'].stable.desktop.archive.windows.version", 27 | "regex": "(?[\\d.]+)\\+(?\\d+)", 28 | "replace": "${date}+${build}" 29 | }, 30 | "autoupdate": { 31 | "architecture": { 32 | "64bit": { 33 | "url": "https://s3.amazonaws.com/rstudio-desktop/electron/windows/RStudio-$matchDate-$matchBuild.zip", 34 | "hash": { 35 | "mode": "json", 36 | "jsonpath": ".rstudio['open_source'].stable.desktop.archive.windows.sha256", 37 | "url": "https://posit.co/wp-content/uploads/downloads.json" 38 | } 39 | } 40 | } 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /bucket/rv.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.10.0", 3 | "description": "rv is a new way to manage and install your R packages in a reproducible, fast, and declarative way.", 4 | "homepage": "https://github.com/A2-ai/rv", 5 | "license": "MIT", 6 | "url": "https://github.com/A2-ai/rv/releases/download/v0.10.0/rv-v0.10.0-x86_64-pc-windows-msvc.zip", 7 | "hash": "6ffcfb6d8d7a99365a49e8ef9acd32b5623fc0a85dd841577d62237c044026ac", 8 | "bin": "rv.exe", 9 | "checkver": "github", 10 | "autoupdate": { 11 | "url": "https://github.com/A2-ai/rv/releases/download/v$version/rv-v$version-x86_64-pc-windows-msvc.zip", 12 | "hash": { 13 | "url": "https://api.github.com/repos/A2-ai/rv/releases/tags/v$version", 14 | "find": "$basename[\\S\\s]+$sha256[\\S\\s]+$basename" 15 | } 16 | }, 17 | "notes": [ 18 | "'rv' is also an alias for Powershell 'Remote-Variable' function, so you may need to use 'rv.exe' instead of 'rv' in your scripts.", 19 | "To use 'rv', you need to remove the Powershell alias. See 'scoop install pshazz' or remove the alias manually in your Powershell profile." 20 | ] 21 | } 22 | -------------------------------------------------------------------------------- /bucket/sass-migrator.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.3.2", 3 | "description": "Tool for migrating stylesheets to new Sass versions", 4 | "homepage": "https://github.com/sass/migrator", 5 | "license": "MIT", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/sass/migrator/releases/download/2.3.2/sass-migrator-2.3.2-windows-x64.zip", 9 | "hash": "498d711600c6490c914dca6c69b349eb0c38cf02a2c3cb9ee1cdda9d3c679844" 10 | }, 11 | "32bit": { 12 | "url": "https://github.com/sass/migrator/releases/download/2.3.2/sass-migrator-2.3.2-windows-ia32.zip", 13 | "hash": "80d81e95a130a61a36f89019fe5303a08080019fbc699321ad48a5fec25d5171" 14 | }, 15 | "arm64": { 16 | "url": "https://github.com/sass/migrator/releases/download/2.3.2/sass-migrator-2.3.2-windows-arm64.zip", 17 | "hash": "7dfedffd43081ca72af855a747b9fd1a51baaafaa088de881e1eb30cefbf5c65" 18 | } 19 | }, 20 | "extract_dir": "sass-migrator", 21 | "bin": "sass-migrator.bat", 22 | "checkver": "github", 23 | "autoupdate": { 24 | "architecture": { 25 | "64bit": { 26 | "url": "https://github.com/sass/migrator/releases/download/$version/sass-migrator-$version-windows-x64.zip" 27 | }, 28 | "32bit": { 29 | "url": "https://github.com/sass/migrator/releases/download/$version/sass-migrator-$version-windows-ia32.zip" 30 | }, 31 | "arm64": { 32 | "url": "https://github.com/sass/migrator/releases/download/$version/sass-migrator-$version-windows-arm64.zip" 33 | } 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /bucket/tinitex.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "tinitex binary (experimental) - Intelligent compilation of LaTeX documents with TinyTeX or TeX Live", 3 | "homepage": "https://github.com/yihui/tinytex-releases", 4 | "url": "https://github.com/yihui/tinytex-releases/releases/download/v2025.07/tinitex.zip", 5 | "license": "GPL-2", 6 | "hash": "0966119e267de14cac11fed402d5b55a8f9a67863609c8b9e2092fed234470f4", 7 | "version": "2025.07", 8 | "bin": "tinitex.exe", 9 | "checkver": { 10 | "github": "https://github.com/yihui/tinytex-releases" 11 | }, 12 | "autoupdate": { 13 | "url": "https://github.com/yihui/tinytex-releases/releases/download/v$version/tinitex.zip" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /bucket/tinytex-extra.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A lightweight, cross-platform, portable, and easy-to-maintain LaTeX distribution based on TeX Live. This versions contains more LaTeX packages.", 3 | "homepage": "https://yihui.org/tinytex/", 4 | "url": "https://github.com/yihui/tinytex-releases/releases/download/v2025.07/TinyTeX-v2025.07.zip", 5 | "extract_dir": "TinyTeX", 6 | "license": "https://tug.org/texlive/LICENSE.TL", 7 | "hash": "aad18c5bfe2327c25428287ef7baf73030b44ad2fc620d3256e700e5b6c3a096", 8 | "version": "2025.07", 9 | "notes": "For full documentation, see https://yihui.org/tinytex/.", 10 | "pre_install": [ 11 | "try{if (Test-Path $(appdir tinytex-min)) { throw \"You already have tinytex-min installed. Run scoop uninstall tinytex-min if you want to use tinytex-extra.\"}}", 12 | "catch{", 13 | "Write-Host \"--> Another tinytex installation has been found. Cancelling current installation...\" -f red", 14 | "scoop uninstall $app", 15 | "throw $_", 16 | "}", 17 | "try{if (Test-Path $(appdir tinytex)) { throw \"You already have tinytex installed. Run scoop uninstall tinytex if you want to use tinytex-extra.\"}}", 18 | "catch{", 19 | "Write-Host \"--> Another tinytex installation has been found. Cancelling current installation...\" -f red", 20 | "scoop uninstall $app", 21 | "throw $_", 22 | "}" 23 | ], 24 | "post_install": [ 25 | "echo \"--> Running tlmgr path add\"", 26 | "Start-Process \"cmd.exe\" \"/c `\"$dir\\bin\\windows\\tlmgr.bat path add`\"\" -Wait -NoNewWindow", 27 | "echo \"--> Updating tlmgr itself\"", 28 | "Invoke-Expression \"$dir\\bin\\windows\\tlmgr.bat update --self\"", 29 | "if (Test-Path $env:TMP\\tinytex-pkg-installed-$(Get-Date -Format ddMMyyHH).txt) {", 30 | "$tinytex_tmp_file=\"$env:TMP\\tinytex-pkg-installed-$(Get-Date -Format ddMMyyHH).txt\"", 31 | "$tinytex_pkg_installed = (Invoke-Expression \"$dir\\bin\\windows\\tlmgr.bat info --list --only-installed --data name\")", 32 | "$tinytex_reinstall=\"$env:TMP\\installed_old_packages.ps1\"", 33 | "((Get-Content $tinytex_tmp_file) | Where { $tinytex_pkg_installed -NotContains $_}) | % {\"Invoke-Expression '$dir\\bin\\windows\\tlmgr.bat install {0}'\" -f $_} > $tinytex_reinstall", 34 | "if ((Get-Content $tinytex_reinstall) -ne $null) {", 35 | "echo \"--> Reinstalling previous user packages\"", 36 | "Invoke-Expression \"$tinytex_reinstall\"", 37 | "}", 38 | "Remove-Item $env:TMP/installed_old_packages.ps1, $tinytex_tmp_file", 39 | "}" 40 | ], 41 | "uninstaller": { 42 | "script": [ 43 | "tlmgr info --list --only-installed --data name > $env:TMP/tinytex-pkg-installed-$(Get-Date -Format ddMMyyHH).txt", 44 | "echo \"--> Running tlmgr path remove\"", 45 | "Start-Process \"cmd.exe\" \"/c `\"$dir\\bin\\windows\\tlmgr.bat path remove`\"\" -Wait -NoNewWindow" 46 | ] 47 | }, 48 | "checkver": { 49 | "github": "https://github.com/yihui/tinytex-releases" 50 | }, 51 | "autoupdate": { 52 | "url": "https://github.com/yihui/tinytex-releases/releases/download/v$version/TinyTeX-v$version.zip" 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /bucket/tinytex-min.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A lightweight, cross-platform, portable, and easy-to-maintain LaTeX distribution based on TeX Live. This versions is infra-only and contains no packages.", 3 | "homepage": "https://yihui.org/tinytex/", 4 | "url": "https://github.com/yihui/tinytex-releases/releases/download/v2025.07/TinyTeX-0-v2025.07.zip", 5 | "extract_dir": "TinyTeX", 6 | "license": "https://tug.org/texlive/LICENSE.TL", 7 | "hash": "237621307d20e6335bea9e4802238bd88ee885a042ff8dc9f340b7f3a339d955", 8 | "version": "2025.07", 9 | "notes": "For full documentation, see https://yihui.org/tinytex/", 10 | "pre_install": [ 11 | "try{if (Test-Path $(appdir tinytex)) { throw \"You already have tinytex installed. Run scoop uninstall tinytex if you want to use tinytex-min.\"}}", 12 | "catch{", 13 | "Write-Host \"--> Another tinytex installation has been found. Cancelling current installation...\" -f red", 14 | "scoop uninstall $app", 15 | "throw $_", 16 | "}", 17 | "try{if (Test-Path $(appdir tinytex-extraa)) { throw \"You already havetinytex-extrara installed. Run scoop uninstaltinytex-extratra if you want to use tinytex-min.\"}}", 18 | "catch{", 19 | "Write-Host \"--> Another tinytex installation has been found. Cancelling current installation...\" -f red", 20 | "scoop uninstall $app", 21 | "throw $_", 22 | "}" 23 | ], 24 | "post_install": [ 25 | "echo \"--> Running tlmgr path add\"", 26 | "Start-Process \"cmd.exe\" \"/c `\"$dir\\bin\\windows\\tlmgr.bat path add`\"\" -Wait -NoNewWindow", 27 | "echo \"--> Updating tlmgr itself\"", 28 | "Invoke-Expression \"$dir\\bin\\windows\\tlmgr.bat update --self\"", 29 | "if (Test-Path $env:TMP\\tinytex-pkg-installed-$(Get-Date -Format ddMMyyHH).txt) {", 30 | "$tinytex_tmp_file=\"$env:TMP\\tinytex-pkg-installed-$(Get-Date -Format ddMMyyHH).txt\"", 31 | "$tinytex_pkg_installed = (Invoke-Expression \"$dir\\bin\\windows\\tlmgr.bat info --list --only-installed --data name\")", 32 | "$tinytex_reinstall=\"$env:TMP\\installed_old_packages.ps1\"", 33 | "((Get-Content $tinytex_tmp_file) | Where { $tinytex_pkg_installed -NotContains $_}) | % {\"Invoke-Expression '$dir\\bin\\windows\\tlmgr.bat install {0}'\" -f $_} > $tinytex_reinstall", 34 | "if ((Get-Content $tinytex_reinstall) -ne $null) {", 35 | "echo \"--> Reinstalling previous user packages\"", 36 | "Invoke-Expression \"$tinytex_reinstall\"", 37 | "}", 38 | "Remove-Item $env:TMP/installed_old_packages.ps1, $tinytex_tmp_file", 39 | "}" 40 | ], 41 | "uninstaller": { 42 | "script": [ 43 | "tlmgr info --list --only-installed --data name > $env:TMP/tinytex-pkg-installed-$(Get-Date -Format ddMMyyHH).txt", 44 | "echo \"--> Running tlmgr path remove\"", 45 | "Start-Process \"cmd.exe\" \"/c `\"$dir\\bin\\windows\\tlmgr.bat path remove`\"\" -Wait -NoNewWindow" 46 | ] 47 | }, 48 | "checkver": { 49 | "github": "https://github.com/yihui/tinytex-releases" 50 | }, 51 | "autoupdate": { 52 | "url": "https://github.com/yihui/tinytex-releases/releases/download/v$version/TinyTeX-0-v$version.zip" 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /bucket/tinytex.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A lightweight, cross-platform, portable, and easy-to-maintain LaTeX distribution based on TeX Live. This versions contains enough LaTeX packages to compile R Markdown documents. More can be installed by the user.", 3 | "homepage": "https://yihui.org/tinytex/", 4 | "url": "https://github.com/yihui/tinytex-releases/releases/download/v2025.07/TinyTeX-1-v2025.07.zip", 5 | "extract_dir": "TinyTeX", 6 | "license": "https://tug.org/texlive/LICENSE.TL", 7 | "hash": "3b43ab5a9acb96c5af4cf1b8adbdcfcd67333fb2bb5a3dc347cce1cc92286cf9", 8 | "version": "2025.07", 9 | "notes": "For full documentation, see https://yihui.org/tinytex/", 10 | "pre_install": [ 11 | "try{if (Test-Path $(appdir tinytex-min)) { throw \"You already have Tinytex-min installed. Run scoop uninstall tinytex-min if you want to use TinyTeX.\"}}", 12 | "catch{", 13 | "Write-Host \"--> Another tinytex installation has been already found. Cancelling current installation...\" -f red", 14 | "scoop uninstall $app", 15 | "throw $_", 16 | "}", 17 | "try{if (Test-Path $(appdir tinytex-extra)) { throw \"You already have Tinytex-full installed. Run scoop uninstall tinytex-extra if you want to use TinyTeX.\"}}", 18 | "catch{", 19 | "Write-Host \"--> Another tinytex installation has been found. Cancelling current installation...\" -f red", 20 | "scoop uninstall $app", 21 | "throw $_", 22 | "}" 23 | ], 24 | "post_install": [ 25 | "echo \"--> Running tlmgr path add\"", 26 | "Start-Process \"cmd.exe\" \"/c `\"$dir\\bin\\windows\\tlmgr.bat path add`\"\" -Wait -NoNewWindow", 27 | "echo \"--> Updating tlmgr itself\"", 28 | "Invoke-Expression \"$dir\\bin\\windows\\tlmgr.bat update --self\"", 29 | "if (Test-Path $env:TMP\\tinytex-pkg-installed-$(Get-Date -Format ddMMyyHH).txt) {", 30 | "$tinytex_tmp_file=\"$env:TMP\\tinytex-pkg-installed-$(Get-Date -Format ddMMyyHH).txt\"", 31 | "$tinytex_pkg_installed = (Invoke-Expression \"$dir\\bin\\windows\\tlmgr.bat info --list --only-installed --data name\")", 32 | "$tinytex_reinstall=\"$env:TMP\\installed_old_packages.ps1\"", 33 | "((Get-Content $tinytex_tmp_file) | Where { $tinytex_pkg_installed -NotContains $_}) | % {\"Invoke-Expression '$dir\\bin\\windows\\tlmgr.bat install {0}'\" -f $_} > $tinytex_reinstall", 34 | "if ((Get-Content $tinytex_reinstall) -ne $null) {", 35 | "echo \"--> Reinstalling previous user packages\"", 36 | "Invoke-Expression \"$tinytex_reinstall\"", 37 | "}", 38 | "Remove-Item $env:TMP/installed_old_packages.ps1, $tinytex_tmp_file", 39 | "}" 40 | ], 41 | "uninstaller": { 42 | "script": [ 43 | "tlmgr info --list --only-installed --data name > $env:TMP/tinytex-pkg-installed-$(Get-Date -Format ddMMyyHH).txt", 44 | "echo \"--> Running tlmgr path remove\"", 45 | "Start-Process \"cmd.exe\" \"/c `\"$dir\\bin\\windows\\tlmgr.bat path remove`\"\" -Wait -NoNewWindow" 46 | ] 47 | }, 48 | "checkver": { 49 | "github": "https://github.com/yihui/tinytex-releases" 50 | }, 51 | "autoupdate": { 52 | "url": "https://github.com/yihui/tinytex-releases/releases/download/v$version/TinyTeX-1-v$version.zip" 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /bucket/tree.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.5.2.2", 3 | "description": "A recursive directory listing program that produces a depth indented listing of files.", 4 | "homepage": "https://sourceforge.net/projects/gnuwin32/", 5 | "license": "GPL-2.0-only", 6 | "url": "https://sourceforge.net/projects/gnuwin32/files/tree/1.5.2.2/tree-1.5.2.2-bin.zip", 7 | "hash": "C154BA952DF688165C2C5D85C6BC1602C8C56847EF74C119BFB2A5FEFC6CA829", 8 | "bin": "bin/tree.exe" 9 | } 10 | --------------------------------------------------------------------------------