Skip to content

Commit

Permalink
AU: 2 updated - firefox-dev powertoys
Browse files Browse the repository at this point in the history
  • Loading branch information
mkevenaar committed Oct 29, 2019
1 parent b7643b3 commit a71d7f7
Show file tree
Hide file tree
Showing 7 changed files with 202 additions and 202 deletions.
4 changes: 2 additions & 2 deletions automatic/firefox/firefox.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"beta": "71.0.4-beta",
"dev": "71.0.4-beta"
"beta": "71.0.5-beta",
"dev": "71.0.5-beta"
}
2 changes: 1 addition & 1 deletion automatic/firefox/firefox.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Refe
<!-- version should MATCH as closely as possible with the underlying software -->
<!-- Is the version a prerelease of a version? https://docs.nuget.org/create/versioning#creating-prerelease-packages -->
<!-- Note that unstable versions like 0.0.1 can be considered a released version, but it's possible that one can release a 0.0.1-beta before you release a 0.0.1 version. If the version number is final, that is considered a released version and not a prerelease. -->
<version>71.0.4-beta</version>
<version>71.0.5-beta</version>
<!-- owners is a poor name for maintainers of the package. It sticks around by this name for compatibility reasons. It basically means you. -->
<owners>Maurice Kevenaar</owners>
<!-- ============================== -->
Expand Down
384 changes: 192 additions & 192 deletions automatic/firefox/tools/LanguageChecksums.csv

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions automatic/firefox/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ $toolsPath = Split-Path $MyInvocation.MyCommand.Definition
$packageName = 'firefox-dev'
$softwareName = 'Firefox Developer Edition'

$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '71.0b4')
$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '71.0b5')

if (Get-32bitOnlyInstalled -product $softwareName) {
Write-Output $(
Expand All @@ -34,7 +34,7 @@ if ($alreadyInstalled -and ($env:ChocolateyForce -ne $true)) {

Checksum = $checksums.Win32
ChecksumType = 'sha512'
Url = "https://download-installer.cdn.mozilla.net/pub/devedition/releases/71.0b4/win32/${locale}/Firefox%20Setup%2071.0b4.exe"
Url = "https://download-installer.cdn.mozilla.net/pub/devedition/releases/71.0b5/win32/${locale}/Firefox%20Setup%2071.0b5.exe"

silentArgs = '-ms'
validExitCodes = @(0)
Expand All @@ -43,7 +43,7 @@ if ($alreadyInstalled -and ($env:ChocolateyForce -ne $true)) {
if (!(Get-32bitOnlyInstalled($softwareName)) -and (Get-OSArchitectureWidth 64)) {
$packageArgs.Checksum64 = $checksums.Win64
$packageArgs.ChecksumType64 = 'sha512'
$packageArgs.Url64 = "https://download-installer.cdn.mozilla.net/pub/devedition/releases/71.0b4/win64/${locale}/Firefox%20Setup%2071.0b4.exe"
$packageArgs.Url64 = "https://download-installer.cdn.mozilla.net/pub/devedition/releases/71.0b5/win64/${locale}/Firefox%20Setup%2071.0b5.exe"
}

Install-ChocolateyPackage @packageArgs
Expand Down
4 changes: 2 additions & 2 deletions automatic/powertoys/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ The installer have been downloaded from their official download link listed on <
and can be verified like this:

1. Download the following installers:
64-Bit: <https://github.com/microsoft/PowerToys/releases/download/v0.11.0/PowerToysSetup.msi>
64-Bit: <https://github.com/microsoft/PowerToys/releases/download/v0.12.0/PowerToysSetup.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
checksum64: 6EF6E1AEE258E21F76EE7973330602B73C15C4DAC11D0CF5FAD721BAA169F0B2
checksum64: 58A6442D7B8F9D235208653FC44F4D56C71BF591E664B53FB256C407B3025D27

File 'LICENSE.txt' is obtained from <https://github.com/microsoft/PowerToys/blob/master/LICENSE>
2 changes: 1 addition & 1 deletion automatic/powertoys/powertoys.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Refe
<!-- version should MATCH as closely as possible with the underlying software -->
<!-- Is the version a prerelease of a version? https://docs.nuget.org/create/versioning#creating-prerelease-packages -->
<!-- Note that unstable versions like 0.0.1 can be considered a released version, but it's possible that one can release a 0.0.1-beta before you release a 0.0.1 version. If the version number is final, that is considered a released version and not a prerelease. -->
<version>0.11.0</version>
<version>0.12.0</version>
<!-- owners is a poor name for maintainers of the package. It sticks around by this name for compatibility reasons. It basically means you. -->
<owners>Microsoft</owners>
<!-- ============================== -->
Expand Down
2 changes: 1 addition & 1 deletion automatic/powertoys/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)"
$fileName = "$toolsDir\PowerToysSetup.msi"
$version = "0.11.0"
$version = "0.12.0"

$WindowsVersion=[Environment]::OSVersion.Version
if ($WindowsVersion.Major -ne "10") {
Expand Down

0 comments on commit a71d7f7

Please sign in to comment.