Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

1,422

Downloads of v 2020.3.2:

138

Last Update:

03 Jan 2021

Package Maintainer(s):

Software Author(s):

  • WPI
  • PeterJohnson
  • Et Al.

Tags:

wpilib frc first robotics admin

WPILib

This is not the latest version of WPILib available.

  • 1
  • 2
  • 3

2020.3.2 | Updated: 03 Jan 2021

Downloads:

1,422

Downloads of v 2020.3.2:

138

Maintainer(s):

Software Author(s):

  • WPI
  • PeterJohnson
  • Et Al.

WPILib 2020.3.2

This is not the latest version of WPILib available.

  • 1
  • 2
  • 3

This Package Contains an Exempted Check

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Exemption for this package version only:

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install WPILib, run the following command from the command line or from PowerShell:

>

To upgrade WPILib, run the following command from the command line or from PowerShell:

>

To uninstall WPILib, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade wpilib -y --source="'INTERNAL REPO URL'" --version="'2020.3.2'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade wpilib -y --source="'INTERNAL REPO URL'" --version="'2020.3.2'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install wpilib
  win_chocolatey:
    name: wpilib
    version: '2020.3.2'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'wpilib' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '2020.3.2'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller wpilib
{
    Name     = "wpilib"
    Version  = "2020.3.2"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'wpilib':
  ensure   => '2020.3.2',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

Package Approved

This package was approved by moderator gep13 on 04 Jan 2021.

Description

The WPILib software required by FIRST Robotics for the FRC competition.

Package Parameters

  • /ProgrammingLanguage:Language - Selects the language specific software to install. Default is 'both'. ('java'/'cpp'/'both')
  • /CachedZip:Zip - Selects whether to use a cached zip with the installer or to download it. Default is 'false'. ('true'/'false'/path_to_zip)
    >NOTE: If 'true', it will be assumed the zip is next to the installer with the default name.
  • /AllowUserInteraction:boolean - Let the user intereact with the installer before execution. Default is 'false'. ('true'/'false')
    >NOTE: This is really only for debugging or for custom control over install options.

To pass parameters, use --params "''" (e.g. choco install packageID [other options] --params="'/ITEM:value /ITEM2:value2 /FLAG_BOOLEAN'").
To have choco remember parameters on upgrade, be sure to set choco feature enable -n=useRememberedArgumentsForUpgrades.


LICENSE.md
Copyright (c) 2009-2019 FIRST
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
   * Redistributions of source code must retain the above copyright
     notice, this list of conditions and the following disclaimer.
   * Redistributions in binary form must reproduce the above copyright
     notice, this list of conditions and the following disclaimer in the
     documentation and/or other materials provided with the distribution.
   * Neither the name of the FIRST nor the
     names of its contributors may be used to endorse or promote products
      derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY FIRST AND CONTRIBUTORS "AS IS" AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY NONINFRINGEMENT AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL FIRST OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop'; # stop on all errors

$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$url32         = 'https://github.com/wpilibsuite/allwpilib/releases/download/v2020.3.2/WPILibInstaller_Windows32-2020.3.2.zip'
$url64         = 'https://github.com/wpilibsuite/allwpilib/releases/download/v2020.3.2/WPILibInstaller_Windows64-2020.3.2.zip'
$fileName32    = 'WPILibInstaller_Windows32-2020.3.2.exe'
$fileName64    = 'WPILibInstaller_Windows64-2020.3.2.exe'
$zipChecksum32 = 'eb6099eb64f1af081ed144da44aa0d2a7036a9ab58888f76426a1edbd22e132c'
$zipChecksum64 = '65698bc0933b35763b6d62c0fb729634495102a1d7aedadd994dad66b772f4a5'
$exeChecksum32 = 'A6F610218A49E0CAC8C310D3B50228F91A3E6849AD7035B3936A325B28946A1D'
$exeChecksum64 = '894353FB0FBA25E88BF29AADCE9D15A5A8982C75D3E8C169242BF3D3B516A227'

$pp = Get-PackageParameters
$ahkParameters = ""
$ahkParameters += if ($pp.ProgrammingLanguage) { "`"$($pp.ProgrammingLanguage)`"" }
$ahkParameters += if ($pp.CachedZip) { " $($pp.CachedZip)" }
$ahkParameters += if ($pp.AllowUserInteraction) { " $($pp.AllowUserInteraction)" }

$unzipPackageArgs = @{
  packageName    = $env:ChocolateyPackageName
  Url            = $url32
  Url64bit       = $url64
  checksum       = $zipChecksum32
  checksum64     = $zipChecksum64
  checksumType   = 'sha256'
  checksumType64 = 'sha256'
  UnzipLocation  = $toolsDir
}
$packageArgs = @{
  packageName    = $env:ChocolateyPackageName
  softwareName   = 'WPILib*' 
  fileType       = 'EXE'
  file           = "$toolsDir\$fileName32"
  file64         = "$toolsDir\$fileName64"
  checksum       = $exeChecksum32
  checksum64     = $exeChecksum64
  checksumType   = 'sha256'
  checksumType64 = 'sha256'
  silentArgs     = '' #none
}

Install-ChocolateyZipPackage  @unzipPackageArgs # https://docs.chocolatey.org/en-us/create/functions/install-chocolateyzippackage.

$ahkExe = "AutoHotKey" # This is a reference to the global AHK exe
$ahkFile = Join-Path $toolsDir "WPILibInstall.ahk"
Write-Debug "Running: $ahkExe `"$ahkFile`"$ahkParameters"
$ahkProc = Start-Process -FilePath $ahkExe -ArgumentList "`"$ahkFile`" $ahkParameters" -Verb RunAs -PassThru

$ahkId = $ahkProc.Id
Write-Debug "$ahkExe start time:`t$($ahkProc.StartTime.ToShortTimeString())"
Write-Debug "Process ID:`t$ahkId"

Install-ChocolateyInstallPackage @packageArgs # https://chocolatey.org/docs/helpers-install-chocolatey-install-package
tools\chocolateyuninstall.ps1
#Debug lines can be printed by passing the flag -Debug
$ErrorActionPreference = 'Stop'; # stop on all errors
Write-Host "Beginning uninstall process of WPILib..."

# Variables that will need changed
$year = '2020'

# Generated/Constant Variables
$systemDriveLetter = (Get-WmiObject Win32_OperatingSystem).getPropertyValue("SystemDrive")
$publicUserHome = $systemDriveLetter + "\Users\Public"
$wpiFolder = "$publicUserHome\wpilib"
$userStartMenuFolder = "$HOME\AppData\Roaming\Microsoft\Windows\Start Menu\FRC 2020"
$systemStartMenuFolder = "$systemDriveLetter\ProgramData\Microsoft\Windows\Start Menu\FRC 2020"
$possibleLinkDirectories = @(
  "$HOME\Desktop",
  "$publicUserHome\Desktop",
  "$HOME\OneDrive\Desktop"
)
$linkNames = @(
  "FRC Shuffleboard.lnk",
  "FRC SmartDashboard.lnk",
  "FRC VS Code 2020.lnk"
)

##### Delete WPILib folder #####
# Check if the inside wpilib folder exists, attempt to delete it, check if was successful
Write-Host "`nRemoving the WPILib folder..."
if (Test-Path -Path "$wpiFolder\$year") {
  Remove-Item "$wpiFolder\$year" -ErrorAction SilentlyContinue -Force -Recurse
  
  if (!(Test-Path -Path "$wpiFolder\$year")) {
    Write-Host "`tRemoved wpilib folder at `"$wpiFolder\$year`"" -ForegroundColor Green
  } else {
    Write-Host "`tAn error occured while trying to delete the wpilib folder at `"$wpiFolder\$year`"" -ForegroundColor Red
  }
} else {
  Write-Host "`tIt appears that the wpilib folder expected at `"$wpiFolder\$year`" does not exists. This could be a good indicator that wpilib (for this year) is not/no longer installed, however the uninstall process will continue to ensure that all elements of wpilib are gone`n" -ForegroundColor Yellow
}

# Delete the outside wpilib folder if it exists and is now empty
if(Test-Path $wpiFolder){
  if ((Get-ChildItem $wpiFolder -force | Select-Object -First 1 | Measure-Object).Count -eq 0) {
    Remove-Item $wpiFolder -ErrorAction SilentlyContinue -Force

    if (!(Test-Path -Path $wpiFolder)) {
      Write-Host "`tRemoved the main wpilib folder at `"$wpiFolder`" because it was empty" -ForegroundColor Green
    } else {
      Write-Host "`tAn error occured while trying to delete the main wpilib folder at `"$wpiFolder`"" -ForegroundColor Red
    }
  }
} else {
  Write-Host "`tIt appears that the main wpilib folder at `"$wpiFolder`" does not exists. This could be a good indicator that wpilib is not/no longer installed, however the uninstall process will continue to ensure that all elements of wpilib are gone" -ForegroundColor Yellow
}

##### Delete Desktop Shortcuts ##### 
# Both public and current user desktop. It differes upon whether you select current user or all users when installing. 
# It might be infered that if one link is found the others will be next to it, but that's a dangerous game. Plus what if the links are in multiple places?
Write-Host "`nDeleteing Desktop Shortcuts..."
$LinksFound = ""
foreach ($directory in $possibleLinkDirectories) {
  Write-Host "`tSearching `"$directory`" for links to delete:"
  foreach ($link in $linkNames) {
    # Check for link file, if its there attempt to delete it, recheck if its there.
    if (Test-Path ("{0}\{1}" -f $directory, $link)) {
      $LinksFound = $TRUE
      Remove-Item ("{0}\{1}" -f $directory, $link) -ErrorAction SilentlyContinue -Force

      if (!(Test-Path ("{0}\{1}" -f $directory, $link))) {
        Write-Host "`t`tFound and deleted `"$link`" in `"$directory`"" -ForegroundColor Green
      } else {
        Write-Host "`t`tAttempted Deleting `"$link`" in `"$directory`" but could not delete" -ForegroundColor Red
      }
    } else {
      Write-Host "`t`tLooked for `"$link`" in `"$directory`" but found nothing" -ForegroundColor Yellow
    }
  }
}
if (!$LinksFound) {
  Write-Host "`tUnable to find links to be deleted automatically. You will have to manually delete them if you have them in a place other than your desktop." -ForegroundColor Yellow
}

##### Remove Start Menu Shortcuts #####
Write-Host "`nRemoving Start Menu Shortcuts..."
$foundStartMenu = ""
# Check for and delete start menu shortcuts in the user's start menu folder
if (Test-Path -Path $userStartMenuFolder) {
  Remove-Item $userStartMenuFolder -ErrorAction SilentlyContinue -Force -Recurse
  $foundStartMenu = $TRUE
  
  if (!(Test-Path -Path $userStartMenuFolder)) {
    Write-Host "`tRemoved start menu folder and shortcuts at `"$userStartMenuFolder`"" -ForegroundColor Green
  } else {
    Write-Host "`tAn error occured while trying to delete the start menu folder and shortcuts at `"$userStartMenuFolder`"" -ForegroundColor Red
  }
}
# Check for and delete start menu shortcuts in the system's start menu folder
if (Test-Path -Path $systemStartMenuFolder) {
  Remove-Item $systemStartMenuFolder -ErrorAction SilentlyContinue -Force -Recurse
  $foundStartMenu = $TRUE
  
  if (!(Test-Path -Path $systemStartMenuFolder)) {
    Write-Host "`tRemoved start menu folder and shortcuts at `"$systemStartMenuFolder`"" -ForegroundColor Green
  } else {
    Write-Host "`tAn error occured while trying to delete the start menu folder and shortcuts at `"$systemStartMenuFolder`"" -ForegroundColor Red
  } 
}
if (!$foundStartMenu) {
  Write-Host "`tThere is no Start Menu folder to delete. It was either already removed or the wpilib installer was run without admin privlages" -ForegroundColor Yellow
}

##### Delete the path environment variables #####
Write-Host "`nRemoving Environment Variables..."
$systemPath = [System.Environment]::GetEnvironmentVariable(
    'PATH',
    'Machine'
)
$userPath = [System.Environment]::GetEnvironmentVariable(
  'PATH',
  'User'
)

$newSystemPath = ($systemPath.Split(';') | Where-Object { $_ -ne "$wpiFolder\$year\frccode" }) -join ';'
$newUserPath = ($userPath.Split(';') | Where-Object { $_ -ne "$wpiFolder\$year\frccode" }) -join ';'

if ($newSystemPath -ne $systemPath) {
  [System.Environment]::SetEnvironmentVariable(
    'PATH',
    $newSystemPath,
    'Machine'
  )
  Write-Host "`tWPILib has been removed from the System Path" -ForegroundColor Green
} else {
  Write-Host "`tWPILib was not in the System Path and so was not removed" -ForegroundColor Yellow
}

if ($newUserPath -ne $userPath) {
  [System.Environment]::SetEnvironmentVariable(
    'PATH',
    $newUserPath,
    'User'
  )
  Write-Host "`tWPILib has been removed from the User Path" -ForegroundColor Green
} else {
  Write-Host "`tWPILib was not in the User Path and so was not removed" -ForegroundColor Yellow
}

Write-Host "`nFinished uninstalling WPILib!" -ForegroundColor Green
tools\WPILibInstall.ahk
#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
SetTitleMatchMode, 1
SetControlDelay, -1

;;;;; Options ;;;;;
VSCodeZipName := "OfflineVsCodeFiles-1.41.1.zip" ; Default Zip Name
usePreDownloadedZip := "download" ; Default value that controls whether the main zip file will be downloaded(0) or looked for(1).
installModeOption := "both" ; Default value that sets whether or not to install Java(0) mode or C++(1) mode or both(2)
allowUserInteraction := "false" ; Default is to not allow user interaction

;;;;; Parameters ;;;;;
; MsgBox % "Starting with " . A_Args[0] . " parameters: " . A_Args[1] . " " A_Args[2] . " " A_Args[3] . "."

; Parameter for Install Mode Option
if(A_Args[1] != "" and A_Args[1] = "cpp" or A_Args[1] = "java" or A_Args[1] = "both") {
    installModeOption := A_Args[1]
}

; Parameter for whether to download zip or use given or default local zip
if(A_Args[2] = "true") {
    usePreDownloadedZip := "cached"
}
if(A_Args[2] != "" and A_Args[2] != "true" and A_Args[2] != "false") {
    usePreDownloadedZip := "cached"
    VSCodeZipName := A_Args[2]
}

; Parameter for user interaction
if(A_Args[3] = "true") {
    allowUserInteraction := "true"
}

;;;;; Window Search Settings ;;;;;
; Tite and Text for the first main install window
winMainInstallWindowTitle := "WPILib Installer"
winMainInstallWindowText := "Use Checkbox to force reinstall"

; Title and Textfor the window where you choose to download or select the VSCode download
winChooseDownloadOrSelectTitle := "Selector"
winChooseDownloadOrSelectText := "Would you like to download VS Code"

; Title and Text for the zip selection window
winSelectDownloadTitle := "Select VS Code Zip"
winSelectDownloadText := "Address: D:\Projects\Programming\Choco"

; Title and Text for the Finished Window
winFinishedTitle := ""
winFinishedText := "Finished! Use Desktop Icon to Open VS Code"

;;;;; Operations ;;;;;
; Selecting the Select/Download VS Code button
; MsgBox % "Select/Download"
WinWait, %winMainInstallWindowTitle%, %winMainInstallWindowText%
WinActivate, %winMainInstallWindowTitle%,,,
Sleep, 5000 ; So apparently the window and button exist before its actually clickable but it'll still try so we have to wait.
ControlClick, Select/Download VS Code, %winMainInstallWindowTitle%,,,, NA

; Selecting the options to either download or choose existing
if (usePreDownloadedZip = "cached") {
    WinWait, %winChooseDownloadOrSelectTitle%, %winChooseDownloadOrSelectText%
    Sleep, 300
    ControlClick, Select Existing, %winChooseDownloadOrSelectTitle%,,,, NA

    ; Type in the file name and hit enter
    WinWait, %winSelectDownloadTitle%
    Sleep, 300
    SendInput {Raw}%VSCodeZipName%
    Send {Enter}
} else {
    WinWait, %winChooseDownloadOrSelectTitle%, %winChooseDownloadOrSelectText%
    Sleep, 300
    ControlClick, Download, %winChooseDownloadOrSelectTitle%,,,, NA
    WinWaitClose, %winChooseDownloadOrSelectTitle%
}

; Select desired C++ or Java options
; MsgBox % "Selecting Language Options: " . installModeOption
if (installModeOption == "java") {
    Sleep, 400
    ControlClick, C++ Compiler, %winMainInstallWindowTitle%,,,, NA
} else if (installModeOption == "cpp") {
    Sleep, 400
    ControlClick, Java JDK/JRE, %winMainInstallWindowTitle%,,,, NA
} else if (installModeOption == "both") {
    ; Do nothing
}

Sleep, 100 ; Just to play it safe before install

; If no errors, start install and wait for finish and hit ok
if !(ErrorLevel) {
    ; MsgBox % "No AHK errors! - GO!"
    if (allowUserInteraction == "false") {
        ControlClick, Execute Install, %winMainInstallWindowTitle%,,,, NA
        WinWait, %winFinishedTitle%, %winFinishedText%
        ControlClick, OK, %winFinishedTitle%, %winFinishedText%,,, NA
    } else {
        MsgBox % "Ending to allow user interaction."
    }
} else {
   MsgBox % "AHK ERROR!!" 
}

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
WPILib 2022.4.1 278 Monday, March 21, 2022 Approved
WPILib 2022.3.1 96 Saturday, February 12, 2022 Approved
WPILib 2022.2.1 56 Friday, February 11, 2022 Approved
WPILib 2022.1.1 115 Friday, January 14, 2022 Approved
WPILib 2021.3.1 151 Tuesday, October 12, 2021 Approved
WPILib 2021.2.1 122 Tuesday, January 26, 2021 Approved
WPILib 2021.1.2.20210123 97 Tuesday, January 26, 2021 Approved
WPILib 2021.1.2 118 Friday, January 8, 2021 Approved
WPILib 2021.1.1-beta4 96 Wednesday, January 6, 2021 Approved
WPILib 2020.3.2 138 Sunday, January 3, 2021 Approved
Discussion for the WPILib Package

Ground Rules:

  • This discussion is only about WPILib and the WPILib package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or WPILib, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus