Skip to content

Commit

Permalink
AU: 4 updated - chromium Firefox php Waterfox
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Feb 1, 2023
1 parent 4db0ac4 commit ce2d3c3
Show file tree
Hide file tree
Showing 14 changed files with 226 additions and 226 deletions.
2 changes: 1 addition & 1 deletion automatic/chromium/chromium.json
@@ -1,4 +1,4 @@
{
"snapshots": "112.0.5571.0-snapshots",
"snapshots": "112.0.5572.0-snapshots",
"stable": "109.0.5414.120"
}
2 changes: 1 addition & 1 deletion automatic/chromium/chromium.nuspec
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>chromium</id>
<version>112.0.5571.0-snapshots</version>
<version>112.0.5572.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
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/1099131/mini_installer.exe>
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/1099150/mini_installer.exe>
32-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win/1099442/mini_installer.exe>
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/1099442/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: F004088FF2A770D491443963D7A0FEE5D0F7F822E4966E114B35FB4E3E41EF66
checksum64: 422C1C29F3ED0C01F5FF1D089B8FD393F9208DE6FBB021290BB54F5B8BC413F0
checksum32: 1848E9627C12E8E2DD6F2F7991318A32B52D827FC6DD9EAE13AF3391A8CF95EF
checksum64: FD2FFACC4275EFF4558372AFD9E7C64D81BD8A7EF34F9EAFF7C1A6C70D3D11FF

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
Expand Up @@ -2,7 +2,7 @@
$scriptDir=$toolsDir = $(Split-Path -parent $MyInvocation.MyCommand.Definition)
. (Join-Path $scriptDir 'helper.ps1')

$version = "112.0.5571.0-snapshots"
$version = "112.0.5572.0-snapshots"
$hive = "hkcu"
$chromium_string = "\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Chromium"
$Chromium = $hive + ":" + $chromium_string
Expand Down
2 changes: 1 addition & 1 deletion automatic/firefox/firefox.json
@@ -1,4 +1,4 @@
{
"latest": "109.0",
"latest": "109.0.1",
"esr": "102.7.0"
}
4 changes: 2 additions & 2 deletions automatic/firefox/firefox.nuspec
Expand Up @@ -2,7 +2,7 @@
<!-- Do not remove this test for UTF-8: if “Ω” doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<version>109.0</version>
<version>109.0.1</version>
<authors>Mozilla</authors>
<projectUrl>https://www.mozilla.org/en-US/firefox/new/</projectUrl>
<projectSourceUrl>https://hg.mozilla.org/mozilla-central/</projectSourceUrl>
Expand Down Expand Up @@ -63,7 +63,7 @@ Command-line options for installer configuration. See the [official page](https:
]]></description>
<summary>Bringing together all kinds of awesomeness to make browsing better for you</summary>
<tags>browser mozilla firefox admin foss cross-platform</tags>
<releaseNotes>https://www.mozilla.org/en-US/firefox/109.0/releasenotes/</releaseNotes>
<releaseNotes>https://www.mozilla.org/en-US/firefox/109.0.1/releasenotes/</releaseNotes>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/firefox</packageSourceUrl>
<dependencies>
<dependency id="chocolatey-core.extension" version="1.3.3" />
Expand Down
392 changes: 196 additions & 196 deletions automatic/firefox/tools/LanguageChecksums.csv

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions automatic/firefox/tools/chocolateyInstall.ps1
Expand Up @@ -9,7 +9,7 @@ $softwareName = 'Mozilla Firefox'

$pp = Get-PackageParameters

$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '109.0')
$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '109.0.1')

if (Get-32bitOnlyInstalled -product $softwareName) {
Write-Output $(
Expand Down Expand Up @@ -62,15 +62,15 @@ else {
softwareName = "$softwareName*"
Checksum = $checksums.Win32
ChecksumType = 'sha512'
Url = "https://download.mozilla.org/?product=firefox-109.0-ssl&os=win&lang=${locale}"
Url = "https://download.mozilla.org/?product=firefox-109.0.1-ssl&os=win&lang=${locale}"
silentArgs = "$sa /S"
validExitCodes = @(0)
}

if (!(Get-32bitOnlyInstalled($softwareName)) -and (Get-OSArchitectureWidth 64)) {
$packageArgs.Checksum64 = $checksums.Win64
$packageArgs.ChecksumType64 = 'sha512'
$packageArgs.Url64 = "https://download.mozilla.org/?product=firefox-109.0-ssl&os=win64&lang=${locale}"
$packageArgs.Url64 = "https://download.mozilla.org/?product=firefox-109.0.1-ssl&os=win64&lang=${locale}"
}

Install-ChocolateyPackage @packageArgs
Expand Down
16 changes: 8 additions & 8 deletions automatic/php/legal/VERIFICATION.txt
Expand Up @@ -7,19 +7,19 @@ location on <http://windows.php.net/download>
and can be verified by doing the following:

1. Download the following:
32-Bit software (threadsafe): <http://windows.php.net/downloads/releases/php-8.1.14-Win32-vs16-x86.zip>
64-Bit software (threadsafe): <http://windows.php.net/downloads/releases/php-8.1.14-Win32-vs16-x64.zip>
32-Bit software (non-threadsafe): <http://windows.php.net/downloads/releases/php-8.1.14-nts-Win32-vs16-x86.zip>
64-Bit software (non-threadsafe): <http://windows.php.net/downloads/releases/php-8.1.14-nts-Win32-vs16-x64.zip>
32-Bit software (threadsafe): <http://windows.php.net/downloads/releases/php-8.2.2-Win32-vs16-x86.zip>
64-Bit software (threadsafe): <http://windows.php.net/downloads/releases/php-8.2.2-Win32-vs16-x64.zip>
32-Bit software (non-threadsafe): <http://windows.php.net/downloads/releases/php-8.2.2-nts-Win32-vs16-x86.zip>
64-Bit software (non-threadsafe): <http://windows.php.net/downloads/releases/php-8.2.2-nts-Win32-vs16-x64.zip>
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:
checksum32 (threadsafe): BB6D8F0AC16273C4188D966C685195207AB51E54652E43C86EA452D384765C8A
checksum64 (threadsafe): 3FD1970C3B2112572E0249C5E4645910CAD382884A755540F97D198EBE217B59
checksum32 (non-threadsafe): 77E733CE3159C2313E7159655397EE2248587D16138282BCFD8B012C53099880
checksum64 (non-threadsafe): E7685C70580740FEA081659A51E3DAEBE26C388206B92F2DC3430FDFDE6DB98E
checksum32 (threadsafe): D48104994DA4F0D56C1D5382DA4BE11AF8A9991872B04F7167A98F7182594A75
checksum64 (threadsafe): 31C2C009A66CCAAE5C39B9AEA37FF55AE6FA080C7B48317513699B4DF2582E14
checksum32 (non-threadsafe): DB7CE99B1FD8DED5BAB46F20BAD1B8861DD9113C620AC37C7EC6D14375BB449C
checksum64 (non-threadsafe): B464E94C7022E3DF826E001D3837C92542BF89D7E8CACAB0EF75835771E77C56

The file 'LICENSE.txt' has been obtained from <http://www.php.net/license/3_01.txt>
2 changes: 1 addition & 1 deletion automatic/php/php.json
Expand Up @@ -7,5 +7,5 @@
"7.4": "7.4.33",
"8.0": "8.0.27",
"8.1": "8.1.14",
"8.2": "8.2.1"
"8.2": "8.2.2"
}
4 changes: 2 additions & 2 deletions automatic/php/php.nuspec
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>php</id>
<title>PHP (Hypertext Preprocessor)</title>
<version>8.1.14</version>
<version>8.2.2</version>
<authors>PHP Authors</authors>
<owners>chocolatey-community, Rob Reynolds</owners>
<summary>PHP – widely-used general-purpose scripting language that is especially suited for Web development and can be embedded into HTML.</summary>
Expand All @@ -29,7 +29,7 @@ For example: `choco install php --package-parameters='"/ThreadSafe ""/InstallDir
<tags>php development programming foss cross-platform admin</tags>
<licenseUrl>http://us.php.net/license/</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<releaseNotes>https://www.php.net/ChangeLog-8.php#8.1.14</releaseNotes>
<releaseNotes>https://www.php.net/ChangeLog-8.php#8.2.2</releaseNotes>
<iconUrl>https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-packages@4e147ce52b1a2a7ac522ffbce6d176f257de6ac1/icons/php.svg</iconUrl>
<bugTrackerUrl>https://bugs.php.net/</bugTrackerUrl>
<docsUrl>https://secure.php.net/docs.php</docsUrl>
Expand Down
8 changes: 4 additions & 4 deletions automatic/php/tools/chocolateyInstall.ps1
Expand Up @@ -14,10 +14,10 @@ if ($installLocation) {
$pp = Get-PackageParameters

$filesInfo = @{
filets32 = "$toolsPath\php-8.1.14-Win32-vs16-x86.zip"
filets64 = "$toolsPath\php-8.1.14-Win32-vs16-x64.zip"
filents32 = "$toolsPath\php-8.1.14-nts-Win32-vs16-x86.zip"
filents64 = "$toolsPath\php-8.1.14-nts-Win32-vs16-x64.zip"
filets32 = "$toolsPath\php-8.2.2-Win32-vs16-x86.zip"
filets64 = "$toolsPath\php-8.2.2-Win32-vs16-x64.zip"
filents32 = "$toolsPath\php-8.2.2-nts-Win32-vs16-x86.zip"
filents64 = "$toolsPath\php-8.2.2-nts-Win32-vs16-x64.zip"
}

if ($pp.ThreadSafe) {
Expand Down
2 changes: 1 addition & 1 deletion automatic/waterfox/waterfox.json
@@ -1,4 +1,4 @@
{
"current": "23015.1.2",
"current": "23025.1.2",
"classic": "2022.11"
}
2 changes: 1 addition & 1 deletion automatic/waterfox/waterfox.nuspec
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>Waterfox</id>
<version>23015.1.2</version>
<version>23025.1.2</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 ce2d3c3

Please sign in to comment.