Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Replace Invoke-WebRequest with .NET webclient to speed up downloads in Get-RemoteChecksum function #59

Open
wants to merge 5 commits into
base: develop
Choose a base branch
from

Commits on May 15, 2024

  1. Configuration menu
    Copy the full SHA
    41a402f View commit details
    Browse the repository at this point in the history

Commits on May 22, 2024

  1. (chocolatey-community#58) Speed up Get-RemoteChecksum

    The current Get_RemoteChecksum implementation uses Invoke-WebRequest
    which can be slow on larger files. This results in a long checksumming
    process during automated packaging. By switching to the .NET webclient,
    while losing the "interactive" download update, we significantly increase
    the speed of the download. For example, on a 150 mb file, it went from minutes
    to download to seconds.
    chrrobi committed May 22, 2024
    Configuration menu
    Copy the full SHA
    826e350 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'develop' of github.com:chrrobi/chocolatey-au into develop

    * 'develop' of github.com:chrrobi/chocolatey-au:
      Change the way the file is downloaded to speed it up
    chrrobi committed May 22, 2024
    Configuration menu
    Copy the full SHA
    808c07c View commit details
    Browse the repository at this point in the history
  3. (chocolatey-community#58) Speed up Get-RemoteChecksum

    The current Get_RemoteChecksum implementation uses Invoke-WebRequest
    which can be slow on larger files. This results in a long checksumming
    process during automated packaging. By switching to the .NET webclient,
    while losing the "interactive" download update, we significantly increase
    the speed of the download. For example, on a 150 mb file, it went from minutes
    to download to seconds.
    
    Added modified date in this commit
    chrrobi committed May 22, 2024
    Configuration menu
    Copy the full SHA
    cfe6bde View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2024

  1. (chocolatey-community#58) Speed up Get-RemoteChecksum

    The current Get_RemoteChecksum implementation uses Invoke-WebRequest
    with progress bar which can be slow on larger files. This results in a
    long checksumming process during automated packaging. By providing the
    option to hide the progress bar, while losing the "interactive" download
    update, we significantly increase the speed of the download.
    chrrobi committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    bbd1bfe View commit details
    Browse the repository at this point in the history