Skip to content

Commit

Permalink
AU: 5 updated - chromium musescore vscode-insiders vscode-insiders.in…
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed May 29, 2024
1 parent 7e73e8d commit 97381d5
Show file tree
Hide file tree
Showing 14 changed files with 21 additions and 21 deletions.
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": "127.0.6508.0-snapshots",
"snapshots": "127.0.6509.0-snapshots",
"stable": "125.0.6422.113"
}
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>127.0.6508.0-snapshots</version>
<version>127.0.6509.0-snapshots</version>
<title>Chromium Snapshots</title>
<owners>chocolatey-community</owners>
<authors>The Chromium Authors</authors>
Expand Down
4 changes: 2 additions & 2 deletions automatic/chromium/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ location on <https://github.com/henrypp/chromium/releases/> (the listed mirrors
and can be verified by doing the following:

1. Download the following:
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/1307000/mini_installer.exe>
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/1307290/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
checksum64: 784EBD2BC393581029EA739A481ACE2CE69B66F916CE9C1C215EB7F5C842C7FC
checksum64: 5902DF8F21AE212AC3C91290E4819E03808A5FB53635C0F432E17A15E6592E46

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

$version = '127.0.6508.0-snapshots'
$version = '127.0.6509.0-snapshots'
$hive = "hkcu"
$chromium_string = "\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Chromium"
$Chromium = $hive + ":" + $chromium_string
Expand All @@ -15,8 +15,8 @@ if (Test-Path $Chromium) {

$packageArgs = @{
packageName = 'chromium'
url = 'https://storage.googleapis.com/chromium-browser-snapshots/Win/1306899/mini_installer.exe'
checksum = '4E27155CE9DAF213812F2D1774590EDFCC1BBACCC25A528071E828154C665AAF'
url = 'https://storage.googleapis.com/chromium-browser-snapshots/Win/1307282/mini_installer.exe'
checksum = '4DDE90B01AD19D50DC70190F8730F2C7EADE7848C71F14D10E25F1F1735FA5D9'
checksumType = 'sha256'
file64 = "$toolsdir\chromium_x64.exe"
fileType = 'exe'
Expand Down
4 changes: 2 additions & 2 deletions automatic/musescore/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ The embedded software have been downloaded from the listed download
location on <https://musescore.org/en/download>
and can be verified by doing the following:

1. Download the following <https://cdn.jsdelivr.net/musescore/v4.3.0/MuseScore-Studio-4.3.0.241231433-x86_64.msi>
1. Download the following <https://cdn.jsdelivr.net/musescore/v4.3.1/MuseScore-Studio-4.3.1.241490900-x86_64.msi>
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
checksum: 81EC98E6B97E72040DB98F6F2D6324014FCFA4A9487156577BB59AF8162CD733
checksum: 09C1DF20A5457314A1FB1C2A826F6826F275BCC6F1242B9366C95CC2AF1BB1B7

The file 'LICENSE.txt' has been obtained from <https://github.com/musescore/MuseScore/blob/d771a5205cd4b360371005d6c4cf91e19e47b8ce/LICENSE.txt>
2 changes: 1 addition & 1 deletion automatic/musescore/musescore.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>musescore</id>
<version>4.3.0.241231433</version>
<version>4.3.1.241490900</version>
<title>MuseScore</title>
<owners>chocolatey-community</owners>
<authors>MuseScore developers</authors>
Expand Down
2 changes: 1 addition & 1 deletion automatic/musescore/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ $toolsPath = Split-Path -parent $MyInvocation.MyCommand.Definition
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'msi'
file = "$toolsPath\MuseScore-Studio-4.3.0.241231433-x86_64.msi"
file = "$toolsPath\MuseScore-Studio-4.3.1.241490900-x86_64.msi"
softwareName = 'MuseScore*'
silentArgs = "/qn /norestart /l*v `"$($env:TEMP)\$($env:chocolateyPackageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
validExitCodes = @(0, 2010, 1641)
Expand Down
4 changes: 2 additions & 2 deletions automatic/vscode-insiders.install/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ function Get-MergeTasks {
$packageArgs = @{
packageName = "$env:ChocolateyPackageName"
fileType = 'exe'
url64bit = 'https://vscode.download.prss.microsoft.com/dbazure/download/insider/c6e45e96a6b0fe94e0dae5b13ab4167d69ec9788/VSCodeSetup-x64-1.90.0-insider.exe'
url64bit = 'https://vscode.download.prss.microsoft.com/dbazure/download/insider/fc8762e773c35d4e52e8a7375704af2e24698e5d/VSCodeSetup-x64-1.90.0-insider.exe'

softwareName = 'Microsoft Visual Studio Code Insiders'

checksum64 = 'eb4da8df311dafa28a77f8159060028fa36a2bc5f7e4461f3773719f5bc6d58b4da40ebea4a5a4f6c2b667664d4e15115cbfa89a9423d9cb14ec15876225a80a'
checksum64 = '4ca8f48e1953675ada637ca1dc67950974563c4a18071dac5e3d21d03189b61610c9a88545ded18c9f41a12561f68d7a21ddd0ed2d7ca3f8319918d5ead14c37'
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.90.0.20240528</version>
<version>1.90.0.20240529</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.90.0.20240528</version>
<version>1.90.0.20240529</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.90.0.20240528]" />
<dependency id="vscode-insiders.install" version="[1.90.0.20240529]" />
</dependencies>
<releaseNotes>https://code.visualstudio.com/updates/#_preview-features</releaseNotes>
</metadata>
Expand Down
4 changes: 2 additions & 2 deletions automatic/waterfox/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ in verifying that this package's contents are trustworthy.
The installer has been downloaded from their official download link listed on <>
and can be verified like this:

1. Download <https://cdn1.waterfox.net/waterfox/releases/G6.0.14/WINNT_x86_64/Waterfox%20Setup%20G6.0.14.exe>
1. Download <https://cdn1.waterfox.net/waterfox/releases/G6.0.15/WINNT_x86_64/Waterfox%20Setup%20G6.0.15.exe>
2. Then use one of the following methods to obtain the checksum
- Use powershell function 'Get-Filehash'
- Use chocolatey utility 'checksum.exe'

checksum type: sha256
checksum: 9FA48F19BF20C13D39D9F8B3E4E12F5A40DC03B37DF6BDAE1469FFF4AE88A862
checksum: DCDBE973ED14E43149656A55B818774165B0D209DFB85695C3965CF4D0D3F598

File 'LICENSE.md' is obtained from <https://github.com/MrAlex94/Waterfox/blob/1bc2fb60abf0fa173b69ca94f660115d76f09f4f/LICENSE>
2 changes: 1 addition & 1 deletion automatic/waterfox/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ $packageArgs = @{
packageName = 'Waterfox'
fileType = 'exe'
softwareName = 'Waterfox*'
file = "$toolsDir\Waterfox Setup G6.0.14_x64.exe"
file = "$toolsDir\Waterfox Setup G6.0.15_x64.exe"
silentArgs = "/S"
validExitCodes= @(0)
}
Expand Down
2 changes: 1 addition & 1 deletion automatic/waterfox/waterfox.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"current": "24056.0.14",
"current": "24056.0.15",
"classic": "2022.11"
}
2 changes: 1 addition & 1 deletion automatic/waterfox/waterfox.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>Waterfox</id>
<version>24056.0.14</version>
<version>24056.0.15</version>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/waterfox</packageSourceUrl>
<owners>chocolatey-community,tonigellida,admiringworm</owners>
<title>Waterfox</title>
Expand Down

0 comments on commit 97381d5

Please sign in to comment.