Skip to content

Commit

Permalink
AU: 3 updated - chromium Firefox mattermost-desktop
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Oct 31, 2022
1 parent 8911062 commit cd21ab6
Show file tree
Hide file tree
Showing 11 changed files with 218 additions and 218 deletions.
2 changes: 1 addition & 1 deletion automatic/chromium/chromium.json
@@ -1,4 +1,4 @@
{
"snapshots": "109.0.5393.0-snapshots",
"snapshots": "109.0.5394.0-snapshots",
"stable": "107.0.5304.88"
}
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>109.0.5393.0-snapshots</version>
<version>109.0.5394.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/1065359/mini_installer.exe>
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/1065359/mini_installer.exe>
32-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win/1065470/mini_installer.exe>
64-Bit software: <https://storage.googleapis.com/chromium-browser-snapshots/Win_x64/1065496/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: C47BE5927460FCFB87456563580DFF173ADED1BE63A6206E0E890495C0B1E02D
checksum64: 70661F325F6E6F43190181A044F7577311E2316EAF4E0BC17A1AC9F93407A66F
checksum32: E7AF8995494B1DCA6A3196A90BC709A9627E3771BA1DBD793018BD4331825B92
checksum64: 3656FBEC244532CCE7D242C3A6E586401D36F88E01C8EAB02DEF66E2735CD5CD

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 = "109.0.5393.0-snapshots"
$version = "109.0.5394.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": "106.0.2",
"latest": "106.0.3",
"esr": "102.4.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>106.0.2</version>
<version>106.0.3</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/106.0.2/releasenotes/</releaseNotes>
<releaseNotes>https://www.mozilla.org/en-US/firefox/106.0.3/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 '106.0.2')
$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '106.0.3')

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-106.0.2-ssl&os=win&lang=${locale}"
Url = "https://download.mozilla.org/?product=firefox-106.0.3-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-106.0.2-ssl&os=win64&lang=${locale}"
$packageArgs.Url64 = "https://download.mozilla.org/?product=firefox-106.0.3-ssl&os=win64&lang=${locale}"
}

Install-ChocolateyPackage @packageArgs
Expand Down
8 changes: 4 additions & 4 deletions automatic/mattermost-desktop/legal/VERIFICATION.txt
Expand Up @@ -6,14 +6,14 @@ The installer have been downloaded from the Github release page <https://github.
and can be verified like this:

1. Download the following installers:
32-Bit: <https://releases.mattermost.com/desktop/5.1.1/mattermost-desktop-5.1.1-x86.msi>
64-Bit: <https://releases.mattermost.com/desktop/5.1.1/mattermost-desktop-5.1.1-x64.msi>
32-Bit: <https://releases.mattermost.com/desktop/5.2.0/mattermost-desktop-5.2.0-x86.msi>
64-Bit: <https://releases.mattermost.com/desktop/5.2.0/mattermost-desktop-5.2.0-x64.msi>
2. You can use one of the following methods to obtain the checksum
- Use powershell function 'Get-Filehash'
- Use chocolatey utility 'checksum.exe'

checksum type: sha256
checksum32: 7FA313E12485F7597A73B09948A9DEB0F8857BACCDD566C6798477D38E8CD6BA
checksum64: 911861967AD9729AB5DAEA42BFE803684173A9F833F4D7AD73C5A1298D79F0B2
checksum32: 1AE89D2F67C5383C21675D15DB6DA09C4A236D8DE80BC479E7C7811E4C06CF85
checksum64: 9171BE84086943D4B57D5F608538C92B1369DB0ECD6902C12BAB89B5711CE7FB

File 'LICENSE.txt' is obtained from <https://github.com/mattermost/desktop/blob/06ddc6099e9b6296e7031c04e3e4bd29743bedb4/LICENSE.txt>
2 changes: 1 addition & 1 deletion automatic/mattermost-desktop/mattermost-desktop.nuspec
Expand Up @@ -6,7 +6,7 @@
<metadata>
<id>mattermost-desktop</id>
<title>Mattermost Desktop</title>
<version>5.1.1</version>
<version>5.2.0</version>
<authors>https://github.com/mattermost/desktop/graphs/contributors</authors>
<owners>chocolatey-community,wget, hans0</owners>
<summary>Native desktop application for Mattermost running on Windows</summary>
Expand Down
8 changes: 4 additions & 4 deletions automatic/mattermost-desktop/tools/chocolateyInstall.ps1
Expand Up @@ -5,10 +5,10 @@ $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$packageArgs = @{
packageName = 'mattermost-desktop'
fileType = 'msi'
file = "$toolsDir\mattermost-desktop-5.1.1-x86.msi"
file64 = "$toolsDir\mattermost-desktop-5.1.1-x64.msi"
checksum = '7FA313E12485F7597A73B09948A9DEB0F8857BACCDD566C6798477D38E8CD6BA'
checksum64 = '911861967AD9729AB5DAEA42BFE803684173A9F833F4D7AD73C5A1298D79F0B2'
file = "$toolsDir\mattermost-desktop-5.2.0-x86.msi"
file64 = "$toolsDir\mattermost-desktop-5.2.0-x64.msi"
checksum = '1AE89D2F67C5383C21675D15DB6DA09C4A236D8DE80BC479E7C7811E4C06CF85'
checksum64 = '9171BE84086943D4B57D5F608538C92B1369DB0ECD6902C12BAB89B5711CE7FB'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = "/qn /norestart /l*v `"$($env:TEMP)\$($packageName).$($env:chocolateyPackageVersion).MsiInstall.log`""
Expand Down

0 comments on commit cd21ab6

Please sign in to comment.