Skip to content

Commit

Permalink
AU: 5 updated - activepresenter chromium mixxx vscode-insiders vscode…
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Jun 2, 2023
1 parent d30fe3e commit 9669400
Show file tree
Hide file tree
Showing 15 changed files with 27 additions and 27 deletions.
2 changes: 1 addition & 1 deletion automatic/activepresenter/activepresenter.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<!-- Read this before publishing packages to chocolatey.org: https://github.com/chocolatey/chocolatey/wiki/CreatePackages -->
<id>activepresenter</id>
<title>Active Presenter</title>
<version>9.0.7</version>
<version>9.1.0</version>
<authors>Atomi Systems</authors>
<owners>chocolatey-community</owners>
<summary>Screen Recording and Interactive eLearning Authoring Tool</summary>
Expand Down
6 changes: 3 additions & 3 deletions automatic/activepresenter/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ Package can be verified like this:

1. Go to

x32: https://cdn.atomisystems.com/apdownloads/ActivePresenter_v9.0.7_setup.exe
x32: https://cdn.atomisystems.com/apdownloads/ActivePresenter_v9.1.0_setup.exe

to download the installer.

2. You can use one of the following methods to obtain the SHA256 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'

checksum32: A88AD44596089A0D73AC633A8163829980E9ECE6A254640FB90DE4757A5A2EA7
checksum32: 4A3164A08528EBA7623914FE0437AC219BFEC402784A82B47651FE9446D0DC0A

Using AU:

Get-RemoteChecksum https://cdn.atomisystems.com/apdownloads/ActivePresenter_v9.0.7_setup.exe
Get-RemoteChecksum https://cdn.atomisystems.com/apdownloads/ActivePresenter_v9.1.0_setup.exe
2 changes: 1 addition & 1 deletion automatic/activepresenter/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ $toolsDir = Split-Path $MyInvocation.MyCommand.Definition
$packageArgs = @{
packageName = 'activepresenter'
fileType = 'exe'
file = "$toolsDir\ActivePresenter_v9.0.7_setup.exe"
file = "$toolsDir\ActivePresenter_v9.1.0_setup.exe"
silentArgs = '/VERYSILENT'
validExitCodes = @(0)
}
Expand Down
6 changes: 3 additions & 3 deletions automatic/activepresenter/update.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import-module au
import-module au

$releases = 'https://atomisystems.com/download/'

Expand Down Expand Up @@ -26,8 +26,8 @@ function global:au_GetLatest {
$download_page = Invoke-WebRequest -Uri $releases -UseBasicParsing

$re = '\.exe$'
$url = $download_page.links | ? href -match $re | select -First 1 | % { [uri]::new([uri]$releases, $_.href) }
$version = $url -split '_' | select -Last 1 -Skip 1
$url = $download_page.links | Where-Object href -match $re | Select-Object -First 1 | ForEach-Object { [uri]::new([uri]$releases, $_.href) }
$version = $url -split '_' | Select-Object -Last 1 -Skip 1
$version = $version.Replace('v', '')

@{ URL32 = $url; Version = $version }
Expand Down
2 changes: 1 addition & 1 deletion automatic/chromium/chromium.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"snapshots": "116.0.5807.0-snapshots",
"snapshots": "116.0.5808.0-snapshots",
"stable": "114.0.5735.91"
}
2 changes: 1 addition & 1 deletion automatic/chromium/chromium.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>chromium</id>
<version>116.0.5807.0-snapshots</version>
<version>116.0.5808.0-snapshots</version>
<title>Chromium Snapshots</title>
<owners>chocolatey-community</owners>
<authors>The Chromium Authors</authors>
Expand Down
8 changes: 4 additions & 4 deletions automatic/chromium/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ location on <https://github.com/henrypp/chromium/releases/> (the listed mirrors
and can be verified by doing the following:

1. Download the following:
32-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win/1152087/mini_installer.exe>
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/1152081/mini_installer.exe>
32-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win/1152400/mini_installer.exe>
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/1152414/mini_installer.exe>
2. Get the checksum using one of the following methods:
- Using powershell function 'Get-FileHash'
- Use chocolatey utility 'checksum.exe'
3. The checksums should match the following:

checksum type: sha256
checksum32: 5EABB208B31D705D5C687B9E55D1AA55E7C32D4FA3BAA6959258DA8C8A02DC76
checksum64: 8FBA6C55069F9B0BDB734929F9DDFFB7E94E589FD051274D2744F4031AB81D05
checksum32: 683BA658FC409B3465EB73CC6F26A46F79D1DCC3A60998A3B75637CE89516825
checksum64: BE9DF879D4B60B5519102AD8D7C45A5616778EAB32E300973570CA6E2AAD762F

The file 'LICENSE.txt' has been obtained from <https://chromium.googlesource.com/chromium/src.git/+/master/LICENSE>
2 changes: 1 addition & 1 deletion automatic/chromium/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$scriptDir=$toolsDir = $(Split-Path -parent $MyInvocation.MyCommand.Definition)
. (Join-Path $scriptDir 'helper.ps1')

$version = "116.0.5807.0-snapshots"
$version = "116.0.5808.0-snapshots"
$hive = "hkcu"
$chromium_string = "\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Chromium"
$Chromium = $hive + ":" + $chromium_string
Expand Down
4 changes: 2 additions & 2 deletions automatic/mixxx/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ Package can be verified like this:
1. Go to <https://www.mixxx.org/download>

x32: No longer being provided
x64: https://downloads.mixxx.org/snapshots/2.4/mixxx-2.4-beta-4-g53920a2043-win64.msi
x64: https://downloads.mixxx.org/snapshots/2.4/mixxx-2.4-beta-5-g3abaad0018-win64.msi

to download the installer.

2. You can use one of the following methods to obtain the SHA256 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'

checksum64: C051FCDF31B0BF2AD732326938CB4B74F1AED6ACC565288F7B209CF7CCC31460
checksum64: 1D79D2A03313479755D0A2AB79CEAAF0C7672957CF399D6DB621AA96F5D25856

File 'license.txt' is obtained from:
https://www.gnu.org/licenses/gpl-2.0.html
2 changes: 1 addition & 1 deletion automatic/mixxx/mixxx.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"stable": "2.3.5",
"alpha": "2.5-alpha-42",
"beta": "2.4-beta-4"
"beta": "2.4-beta-5"
}
2 changes: 1 addition & 1 deletion automatic/mixxx/mixxx.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>mixxx</id>
<version>2.4-beta-4</version>
<version>2.4-beta-5</version>
<title>Mixxx</title>
<owners>chocolatey-community</owners>
<authors>Mixxx Development Team</authors>
Expand Down
2 changes: 1 addition & 1 deletion automatic/mixxx/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ if ((Get-OSArchitectureWidth 32) -or ($env:chocolateyForceX86 -eq 'true')) {
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'msi'
file64 = "$toolsPath\mixxx-2.4-beta-4-g53920a2043-win64.msi"
file64 = "$toolsPath\mixxx-2.4-beta-5-g3abaad0018-win64.msi"

softwareName = 'Mixxx *'

Expand Down
8 changes: 4 additions & 4 deletions automatic/vscode-insiders.install/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ function Get-MergeTasks {
$packageArgs = @{
packageName = "$env:ChocolateyPackageName"
fileType = 'exe'
url = 'https://az764295.vo.msecnd.net/insider/c3867859cf3e1a73f3ddce5ad36b3791b7883d88/VSCodeSetup-ia32-1.79.0-insider.exe'
url64bit = 'https://az764295.vo.msecnd.net/insider/c3867859cf3e1a73f3ddce5ad36b3791b7883d88/VSCodeSetup-x64-1.79.0-insider.exe'
url = 'https://az764295.vo.msecnd.net/insider/05ae089c791aa5c8ec05abd5687c9a31517579bc/VSCodeSetup-ia32-1.79.0-insider.exe'
url64bit = 'https://az764295.vo.msecnd.net/insider/05ae089c791aa5c8ec05abd5687c9a31517579bc/VSCodeSetup-x64-1.79.0-insider.exe'

softwareName = 'Microsoft Visual Studio Code Insiders'

checksum = 'b48f17cd85a3cf3df70411b84ff1ab7f6ca62731a9cb6a69abf15d72ef9cb5d79e79d1138047aa50e7b592fb482b05cbbb59497ce947e85112065a23a226ee10'
checksum = 'fb6fa01561a62de60c7d51281742e246362a4c3c631d06e0adb258ece88f8452c41ec4055531de551590c9ee59b3a5c08f49c16401f818ee5051091727351d0a'
checksumType = 'sha512'
checksum64 = 'e400e0a57d28362158972a5d5a5ed0862bcca8634193033babb664a25bbf82ad955a9fc5c78536c68e7830f18d0434d16fddb4c6f6ca4da9159ce3171e30175a'
checksum64 = 'b56fde3846d59b0bf730e1dfbabf9df1cd45190d7c36d48ac8b714ed05cc5cef419dedb9487162fee808011cfa3f3654ea174dee061172690775a673aa8bf685'
checksumType64 = 'sha512'

silentArgs = '/verysilent /suppressmsgboxes /mergetasks="{0}" /log="{1}\install.log"' -f (Get-MergeTasks), (Get-PackageCacheLocation)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>vscode-insiders.install</id>
<title>Visual Studio Code Insiders (Install)</title>
<version>1.79.0.20230601</version>
<version>1.79.0.20230602</version>
<authors>Microsoft</authors>
<owners>chocolatey-community</owners>
<projectUrl>https://code.visualstudio.com/insiders</projectUrl>
Expand Down
4 changes: 2 additions & 2 deletions automatic/vscode-insiders/vscode-insiders.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>vscode-insiders</id>
<title>Visual Studio Code Insiders</title>
<version>1.79.0.20230601</version>
<version>1.79.0.20230602</version>
<authors>Microsoft</authors>
<owners>chocolatey-community</owners>
<projectUrl>https://code.visualstudio.com/insiders</projectUrl>
Expand Down Expand Up @@ -48,7 +48,7 @@ Example: `choco install vscode-insiders --params "/NoDesktopIcon /DontAddToPath"
]]></description>
<tags>microsoft visualstudiocode visualstudiocode-insiders vscode vscode-insiders development editor ide javascript typescript admin foss cross-platform</tags>
<dependencies>
<dependency id="vscode-insiders.install" version="[1.79.0.20230601]" />
<dependency id="vscode-insiders.install" version="[1.79.0.20230602]" />
</dependencies>
<releaseNotes>https://code.visualstudio.com/updates/#_preview-features</releaseNotes>
</metadata>
Expand Down

0 comments on commit 9669400

Please sign in to comment.