Downloads:
638,666
Downloads of v 77.0.1.2020040621-alpha:
158
Last Update:
07 Apr 2020
Package Maintainer(s):
Software Author(s):
- Mozilla
Tags:
browser mozilla firefox alpha admin foss cross-platformFirefox Nightly
This is a prerelease version of Firefox Nightly.
- 1
- 2
- 3
77.0.1.2020040621-alpha | Updated: 07 Apr 2020
Downloads:
638,666
Downloads of v 77.0.1.2020040621-alpha:
158
Maintainer(s):
Software Author(s):
- Mozilla
Firefox Nightly 77.0.1.2020040621-alpha
This is a prerelease version of Firefox Nightly.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Mozilla. The inclusion of Mozilla trademark(s), if any, upon this webpage is solely to identify Mozilla goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Are Exempted or Have Failed
Not All Tests Have Passed
Validation Testing Passed
Verification Testing Exemption:
exempt: trusted maintainer, package keeps getting "stuck in limbo"
Scan Testing Resulted in Flagged:
This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.
We recommend clicking the "Details" link to make your own decision on installing this package.
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Firefox Nightly, run the following command from the command line or from PowerShell:
To upgrade Firefox Nightly, run the following command from the command line or from PowerShell:
To uninstall Firefox Nightly, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download firefox-nightly --internalize --version=77.0.1.2020040621-alpha --pre --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade firefox-nightly -y --source="'INTERNAL REPO URL'" --version="'77.0.1.2020040621-alpha'" --prerelease [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade firefox-nightly -y --source="'INTERNAL REPO URL'" --version="'77.0.1.2020040621-alpha'" --prerelease
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install firefox-nightly
win_chocolatey:
name: firefox-nightly
version: '77.0.1.2020040621-alpha'
source: INTERNAL REPO URL
state: present
allow_prerelease: yes
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'firefox-nightly' do
action :install
source 'INTERNAL REPO URL'
version '77.0.1.2020040621-alpha'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller firefox-nightly
{
Name = "firefox-nightly"
Version = "77.0.1.2020040621-alpha"
Source = "INTERNAL REPO URL"
chocoParams = "--prerelease"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'firefox-nightly':
ensure => '77.0.1.2020040621-alpha',
install_options => ['--prerelease'],
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 07 Apr 2020.
Firefox Nightly builds are under active development and should be used only by advanced users for testing experimental features.
Package Parameters
l=<locale>
- Install given Firefox locale. For examplechoco install Firefox --params "l=en-GB"
. See the official page for a complete list of available locales.
Firefox channels (development cycle)
Every 6 weeks, Firefox developers take the current stable features of each build and introduce them into the next stable channel for further development. The Developer Edition is a special build containing features never moved forward since they would be rarely used by the average user and needlessly consume resources.
- Firefox
- Firefox Beta
- Firefox Developer Edition
- Firefox Nightly (you are here)
Forum
Mozilla Developer Network documentation
Privacy policy
Please Note: This is an automatically updated package. If you find it is
out of date by more than a day or two, please contact the maintainer(s) and
let them know the package is no longer updating correctly.
$ErrorActionPreference = 'Stop';
$packageName = 'firefox-nightly'
$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName 'Nightly*' | Where-Object { $_.DisplayName -notmatch "ESR" }
if ($key.Count -eq 1) {
$key | ForEach-Object {
$packageArgs = @{
packageName = $packageName
fileType = 'exe'
silentArgs = '-ms'
validExitCodes= @(0)
file = "$($_.UninstallString.Trim('"'))"
}
Uninstall-ChocolateyPackage @packageArgs
Write-Warning "Auto Uninstaller may detect Mozilla Maintenance Service."
Write-Warning "This should not be uninstalled if any other Mozilla product is installed."
}
} elseif ($key.Count -eq 0) {
Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
Write-Warning "$($key.Count) matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please alert package maintainer the following keys were matched:"
$key | ForEach-Object {Write-Warning "- $($_.DisplayName)"}
}
function GetUninstallPath() {
param(
[Parameter(Mandatory = $true)]
[string]$product
)
$regUninstallDir = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\'
$regUninstallDirWow64 = 'HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\'
$uninstallPaths = $(Get-ChildItem $regUninstallDir).Name
if (Test-Path $regUninstallDirWow64) {
$uninstallPaths += $(Get-ChildItem $regUninstallDirWow64).Name
}
$uninstallPath = $uninstallPaths -match "$product [\d\.]+ \([^\s]+ [a-zA-Z\-]+\)" | Select-Object -first 1
return $uninstallPath
}
function GetLocale {
param(
[Parameter(Mandatory = $true)]
[string]$localeFile,
[Parameter(Mandatory = $true)]
[string]$product
)
#$availableLocales = Get-WebContent $localeUrl 2>$null
$availableLocales = Get-Content $localeFile | ForEach-Object { $_ -split '\|' | Select-Object -first 1 } | Select-Object -Unique
$packageParameters = $env:chocolateyPackageParameters
$packageParameters = if ($packageParameters -ne $null) { $packageParameters } else { "" }
$argumentMap = ConvertFrom-StringData $packageParameters
$localeFromPackageParameters = $argumentMap.Item('l')
Write-Verbose "User chooses '$localeFromPackageParameters' as a locale..."
$localeFromPackageParametersTwoLetter = $localeFromPackageParameters -split '\-' | Select-Object -first 1
Write-Verbose "With fallback to '$localeFromPackageParametersTwoLetter' as locale..."
$uninstallPath = GetUninstallPath -product $product
$alreadyInstalledLocale = $uninstallPath -replace ".+\s([a-zA-Z\-]+)\)",'$1'
Write-Verbose "Installed locale is: '$alreadyInstalledLocale'..."
$systemLocalizeAndCountry = (Get-UICulture).Name
$systemLocaleTwoLetter = (Get-UICulture).TwoLetterISOLanguageName
Write-Verbose "System locale is: '$locale'..."
$fallbackLocale = 'en-US'
$locales = $localeFromPackageParameters,$localeFromPackageParametersTwoLetter, `
$alreadyInstalledLocale, $systemLocalizeAndCountry, $systemLocaleTwoLetter, `
$fallbackLocale
foreach ($locale in $locales) {
$localeMatch = $availableLocales | Where-Object { $_ -eq $locale } | Select-Object -first 1
if ($localeMatch -and $locale -ne $null) {
Write-Verbose "Using locale '$locale'..."
break
}
}
return $locale
}
function AlreadyInstalled() {
param(
[Parameter(Mandatory = $true)]
[string]$product,
[Parameter(Mandatory = $true)]
[string]$version
)
$uninstallEntry = $(
"HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$product $version*"
)
$uninstallEntryWow64 = $(
"HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\$product $version*"
)
if ((Test-Path $uninstallEntry) -or (Test-Path $uninstallEntryWow64)) {
return $true
}
return $false
}
function Get-32bitOnlyInstalled() {
param(
[Parameter(Mandatory = $true)]
[string]$product
)
$systemIs64bit = Get-OSArchitectureWidth 64
if (-Not $systemIs64bit) {
return $false
}
$registryPaths = @(
'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall'
'HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall'
)
$installedVersions = Get-ChildItem $registryPaths | Where-Object { $_.Name -match "$product [\d\.]+ \(x(64|86)" }
if (
$installedVersions -match 'x86' `
-and $installedVersions -notmatch 'x64' `
-and $systemIs64bit
) {
return $true
}
}
function GetChecksums() {
param(
[Parameter(Mandatory = $true)]
[string]$language,
[Parameter(Mandatory = $true)]
$checksumFile
)
Write-Debug "Loading checksums from: $checksumFile"
$checksumContent = Get-Content $checksumFile
$checksum32 = ($checksumContent -match "$language\|32") -split '\|' | Select-Object -last 1
$checksum64 = ($checksumContent -match "$language\|64") -split '\|' | Select-Object -last 1
return @{
"Win32" = $checksum32
"Win64" = $checksum64
}
}
an|32|2ad29c8292e02e482dd82d7ad2133175848ca9ee27024338a2354bd1aac44217d1bff479f4caa7ad9e94527e5375ccc520b12a33ebc5483a95aa3405ed427bc0
brx|64|7a7d157dd106fd32830e0b501b71726d85e46a373d845280c15038741833d63f68b07bb7100c56b343bd41625123f00173f97435a66e145070051659549d5826
ca-valencia|64|0d552da46e81fd20a35af68debf53f5ba9658e3a139f5d1a1635d9ec1de60c87b3dd89b24a4f8831a8115e29e8c56666f94f2ef95e3e9660afc8ec2ab97e2e35
ca|64|b063f17a70a65dca7f73ad38652460d5eea7db32e9f8325119f0c5ac1d035d2dd85c8799f86d65b70d0e5d0c734bd5229e9c092f0cc03011796f31b11f70228d
cak|64|427ed467ee375642299b2466519cb9a2d8a95cf47638e525f83c2c7ea2103f54b4d5284be13d7dca6a1424457f663cc98aa3c637f8ad2f865a436b9bdfbb4b03
cs|64|56d871a1a024b7132e545cf75ccf5054386c266b5f17d1f906f3621229d9358a5634e7fd7b4c9f162e54353f4ffca3ecbf78e0b16dc1a397c8e67f03d7553244
cy|64|29ae1400be3bfe04df33916dc04fc683883aecf936778b27b323545a15ac6fed32836d7066a17f8937e5463345ed184160b220296a5b34fa276c7072dd308f15
da|64|61e0e2b94c4b840bdd6a4eeeb18db9e82116c8df921163757bfc936f963a680cc432d95be8b069acde9b740c8345c1895044736093fcc9e8e6266acc10e43969
de|64|d6306192c2c70fb2481d8b3f242632e2ddaa25c9f09ce1807da862a427eb5c2dd4a32b494a679d54c6523b487148c3da11f3574ab4b14faf72a1905d2cf1321f
dsb|64|45ee7e70363dae0d64ed5c0b973bbfcbedaf06716e9e6065a658be14c23f09a4957d584b5d2fae90d2b5070d9a9fd64f0607e0be5d8999938e17e42e3d61a760
el|64|d93ee98708b735ab58f5483f2eb3d265faa07091e6330e42d2e9749a0740545dc1a777ac568ac90df4512070ca94652bfef4a57a6d817162fa96420a5bcbfcd1
en-CA|64|a5bbe85c9166d55170bc333406642901cdfa9be47b3fce33dc750fa2cb777b73a13c12f82196d40cc7f335f7ddd739c0c81899abd99bff2149bc498ba72d87fc
en-GB|64|8955c837904ab88a3f050c1dfb79de98e85780b67e6d19b2c267313ab96bcee7a4b2fc5d1c60691999535ef4a95bef1113ed4ae8f12eeced7ea87a8cbef20b10
en-US|32|a79277f04593bd6eb9dc6ca1ec621f8e234d9ead568cab98a7a02894ccda08c4a6e19270bc07395bb8347a4ae353fc3ea598c69a19f5371ba425573c695baa75
en-US|64|37c4291397286d57f4795a24206aba98e73940c7bb31f9d2e9e238d7bb0ad010788ff31945d7fd04d9e408aed078dcb65d2a3cadf6cce7dbd94845a8aac8eb75
eo|64|472a26014635062258806d79c3caa502f0724befcfc8d89dbfca62faa6d7590d39d5f72e2a4f2aea2fc37b72506843009565340cace2108dcdb9d63ade4c8c3d
es-AR|32|1c47758932d4f4464322f52617b57ecbe2876b13b40ed945a5722ef3f0fc5f9e66df6776832e795d927584b55ce4ce8ab77bcc29504ccf2e03314263854ff61f
es-CL|32|8796163e069b9cbde1f39aad5400b3e7e47c9884882ddc0c70a9ca6f15ad569a13b833645a904a53db5732fa1bf76d64972dc3dd4a93254086cb7b2351479223
es-ES|32|6ba09861ad447ac6ec6673869efcfb46fa7c2f64edb0e5e9d44d41312f09e00b4aeb57a20175897876df193a1ecc40742bda611f662ebc6ddb6f8edc2cfd47a2
es-MX|32|350a0deb82a574ec50065ef32cafad7225f6b1ff4cbe4e732c770c70a782d84f9c2ddaf3c95d30c757531b62e015911249c247754ae8bf4efeb1361839c4d011
et|32|ecd5421184e595def64699d863590f3192065ef94c66bc68ceb4092e339dfc0bb2ae1b83e5b485aba950f88de5c2e7cf7adde13f3a6209beaa8ca1b76d7db671
eu|32|d03702c001d0617067f7d80db144cdb6231fa272b79ea1d30fd493f512c17be7ead443399d6d0e79c2e9930d022a1de0ef116fcde1a8f481f3b7d9aaf0e4718e
ff|32|67ced2ad3ab96a5791bd8abebc4c6589a95da1e7b683c2f669e38159d50634208fac2b086f625a1c1afb1a3457f69e6a40ea3d7c576e6b7bb233868239869fdb
fi|32|119f281fb657373439a5d1105939fdcee890d0c7bbbf4a7a258d6411f18b99d15c7aa86b59a36d0df06e384665ec7d691e973c3dd62e4183a4e583d5238e534c
fr|32|f80372bb223b0d8880ea0370ea859047713a10079e5b4512c484af35a792c7ade3df6b420d014e32d2d4e5a5f9dd60721cb63752813d9346506497aa9f4efe67
fy-NL|32|5f7eba65b54f05abeea81d7b2aee2f1bbce52c42f6d23626e877df6aaf123aee34a870755e2047a0d0839e4516189f2685675face4ad7af312051bb51a1915e2
ga-IE|32|61639f78ea6dc90c49507e1b7419156f66a9618998056453687c7fab2773b057760613d9093393c33b95bd898777c0b05cbbda8e82368adcde06787b58de53fa
gn|32|fc46d3c0e58673a4513629e53227b13af1a9f275689a4d03bd460a13fe403b0d9a7f37e6c0ff5e1dbeef95405d835aec039db14d30bddf7c9464fd5fcf16a662
hu|64|58bc3518535883f536dc7ebcb934a887af788fc1b904ed260b431cd240959f45c44f9054ffe51fcd69ca1650e60e8f5bdd9f0d7f397728266e1249306d20e7b4
hy-AM|64|f4f46d99d4f2b0fd1a4404007d46c8d7e4d5e99e7edd75e065a070a4c73ac2fd2a87b71fc3bace9c6fb159ac115b908799efc194827703abd0ed433e42ad2bb6
ia|64|727321bd14b2fd481618e5b06aed16215a7c1a1620b96f55b6a5fda44d8b144d14784dd70bdbe24468588411afb0093914825fc0ed4f8342dbcb0b3b26892c2e
id|32|0ceb9af564abf5fb77eee4afb0c88137815842c2bc93591df4507404e596a7480653f1d50c65be9f8bcf96ccf35e66363a5d58304e2220f829b073f480fa1555
id|64|3b131222b0d1a1a9d40af073e17a8c0cef5ed729891d3cc33b50736ded69249a66888c9cfce216d6aed7dab7dbb76f80c50bf3b85dda8fe9bff2939f7389b5e2
is|64|2e17a0b7f179f97176bb84f7f53753dd68a41b11d59ff7c5e3c1c9b14295dd73f57499408529fe6bde9fa97ecb0140da6b236e57a5f2ad96809921df82ebb555
it|32|af023e2c8aabafbb964f794a6f00519db8900cf5bcf3320ee345c2b5f88da7ef229fa4483e5e82e364405c52e75d835e535511d68ae4095c8f35ef9bc24764af
it|64|019d4601dac9517a87e7b10d3dc454d9f334378117f07d5ae997b99067af2acb240d34605dfffda4e7c9e5a3ac8fe97660b85877ce1650f8e382cdca30818e5b
ja|32|b32b9b79f82b996de08ee17fd5289aec9b19e7e246f89427f4d22cb2b698045699d992b1a2bbb7895f8c35eec09bce192e9a2e60566a5232c8ca64b0209cd02d
ka|32|27cf793269932d7db247ba20c0f40a3e0a58a032bddb8b3bff827f2aba3b2e55a6ce4fe22298debed16d698c5a6645e6c27656a47bb823b67619b56333f20a2b
kab|32|4c910aa2816495e9aa7e73610a2bc4284810da58f68a3335c4f9bd54b229e2b2075f579a5805d5159f1aa96da4e6860c7aa1c716a19cae13de2ae65f06a219aa
mk|32|f578f1226d532ab01a693ed57f180ed5b66dbe4d2e78523a318468fa31b0e8d9853af424d036d14541e59ef41edddb7bc8d7d712e3d4838cd51c5fe3ab13cfdd
mr|32|23382c312aa4dc2812a9c6b84a7a9f8ba81f4aee10d58075d875aee81dc94dd2e9118d63f6ae2d0f940ea9713321aeb6a4a3f15de10626632151ec9f6b58c602
pt-PT|32|6e8f489064f640fbdc39905c3aa00eeb238039c6f756f6b0a81c3b4d1ba607d9d54909f18d5d5c0c7a5bbf4d0cefb9e6284b1e85a5e7a67cad2c0a2fdfd56472
rm|32|54982acb037fb189eb00daeca5142c9fdcff32c22b4b6d6ba418fc1a30e703ce3ba3a09cf73f0e14a8161d9dd34dc0e05bd9b5a06e5a4b8c8d705110a9170c64
ro|32|f46f20005aeb96fefbcfd36c36b97b93b5124f4b7dff0bc6b201e4d2674d7859a2f68a3433a15c4d98914c1591ff30b46ab0c32a40e4fc70ad02779427920d21
ru|32|524ae3a945dc0c8de5784d09e50245c5c4b6e99f3e04dcd687f3500639bd2b92deb8e584adbce8978069e4fdd7d6fea4163c8f34cc93c5d70906e48093b22cae
scn|32|2716ae6beb5831b9ef10803dcce59b7d4e771b2e42c1f8834704b1fd30630d0ee7e22f2579f01865eaf0ca9b8fc1b46f54ac7d53a812a07a73911683e2bc654f
si|64|0b59f2141bd85ce60186b5acbc7dfffd7140a5b7f4807e73380d9c449e5a24b22dcc8ad49a9593f780417a7cb295a88ad2a8c0b54ee2ec7d00469a3ab757446f
sk|64|925c277f4d669af6cb30b305548e2f5211ef5231a696e1ca1bb21ea2ec5b5661a5ff191a2b4493e08153df5831e4d90318e10c8fc93963eb296a9a870032670a
sl|64|1757f6b6caeb746896fb033919f535359a808c52c1b21fba6b4098d34da78bb2ead477bacfa3b90e97612dab5df11cc8f99451094d94f734df87f00a9f0d9e1b
son|64|84b21b58a4c25d7c0b7c98d74ba957757256fb5680427a80bafcb2c6ad2b7a6cb96d2889c00dcd4e60b9efcf040e53a4d7bca22d9c961c950b2d472983ec73f0
sq|64|d89208deed94467632d90341ea50d7c3c99437d04cb443fa84a4b0d1dd5caf5f534a4a096f999f030b541a297c9bda433241957f5a4029a7f7b73f76a854866a
sr|32|f1686bfca3a8c077da17d3af03b1463931119c5295f8895463d2d95763be8f3d84046c49efdd6a34ce3c86b91d9ded9a0cd92a39ee2528245ad24d336eb7c758
sr|64|01e570e1b4d23f91073ea0f17405f00f47d72513466add2a9ca56fa61d7c241b03cb2fd8b1af820273172e8b81a691bf32c0e956044cfc6cb404570cf57e5b93
sv-SE|32|cf63bb156264519d7a782509961c37c14a1480aaa6232c1cd5dc4c08ed134ad50c81694ee91ea8c1351166321ea87e87fe3ae36f4dff733214b64b60a7ecded1
sv-SE|64|1532c777e17b4422cac3257f8f82fcafd091d7a166c641b3bed8bfcbd9d50a8fa4e566ba59a1b191f20b545a2f8c22d32b97480f85d862b74d8330442ee8027f
ta|32|b135681fec37f3e21dc692947b0deee3ff418631a410e205c5b9f3b600e777a4a64dc4e05d627c6dc58df30c2974123752b2e1e6ed05d02400969e7d1c5e82c2
ta|64|cf89f9eb8b279dd236101b9229c8ec1b88c14b7f9476f2d0b3b0a57e0dc531ae9a3a5ef2a27ffdc6984e09cc50b304f418696faf375c0ae7e6525e82431ca178
te|32|88d5322a8309a990dd3a4b0141a5f7e9b1b1e3674c614ec239a9529dec02ea0ceea40d559acdb07fd1daf28d1ecf669d3f6f423f3d10068610b862ff98447e9f
te|64|bb7fb4bc2303ae4efb122edf622c67db68f2647ce8aca4f886643979563c0bd48ea8006b2569ff8140d98acd86a043993abe2ce162f580ee9d4d721c79cb49e3
th|64|ce5dc8cb2251034de3fd2148010b801a190e379dae1e1e0d14bc9d7325b6d49501cefd2fc104d7187ec76f35c63a1017662365f8cf90a198fcbd9cd3fb0506a7
tl|64|ab9f68f497fa5fc15e5982e7d305d9876629603925f17135cde01070170d2a5ca35f93d75a27174260dfc3675b21a47cba6548f7cc04c410fa1c53628d0befda
tr|64|66f2efffcec6c8f91265475901a609cff502fd59feac93b1bbb2bbd71b24d1e9cfdd28ea41379109af3cc996c667c35710c8f17f0b0422a2bf6d969d2b63ea6c
trs|64|ee6ed8f9de267746b963e34bf8df24c6a9bf4f9fad229678adaaea577b28c1dae76513766472634126790ecf8de72becf2b1dff34f7b14e99f53a1a6b9034b1e
uk|64|44ee07eee02c4808398abe488d8d22182a5d5c669a7c07548e4728c8ce17a05b2a75afeb0b408b6eecd30a1f06d89d2388a8ae12e70b1b0c89afe97722ec662f
ur|64|16037fc8ab01236f2c1c75f2a1e453f8742cd60609979dd3d6e6c7a7a534c8d5afcf00edc548224876ad61de68b5df19f368a69c23c04040888cfe50d1b0a956
uz|64|c3b0d0444816a7138a61a9905656a013b52e5ecbccbebbe4a284c0a9decc215a4174d632bc78dd3e7d4c57afc637ca8d9ad9b69e89e2d983b708a066127db1f4
vi|64|9e72bf443ac3d105a726f4c07b8396e86cc00a4094de77bd746899bcb7f54e5d900f3642c025e519727829e701d9ad4df75366f6f4b77276e363dcc7dd79e565
wo|32|35874ef712aec9d66bf0e7259ea3705dad1035a2ca8b2570aaf94f921fc58027cde6eee300f2d1660a8248f07a6ec17144f3ed04c605ff90eee6aa7b25a6eeeb
wo|64|37c2b6526db35e310b403b760a5b63048128b006fcc08b645bcab198f60fd2053f258e5843f6634954d1353550183a5b524dda781d02a65ffa82f986b5f0edb2
xh|32|2a5f4e49499d1319f49d54b5af1672c32da2d8582f5fd1f1f75cfb84affd68cda2c869055e92665aea9c2b55cdd44c5160761b71d60cfa64cbe6128e5caeee1a
xh|64|9ee4c991ba930a3444e558f72c192d334ea976199c4e9bc559f83721d2adda9c42eada49e005c488eb0219730109d5f82b2edd68cde4e9a189b8a8b717b2759d
zh-CN|32|ca42e20cf25996703973388c65b6a4830a02a16eccf2d711b99fe1e1fa59ab0c3197877c80cd3a9a5f5f0d8eb3313398c11f9a6e992fd247e1c1d5a9ae7b1e9a
zh-CN|64|b5618ac17d075b8357b58498be2550aecba64d68b99e5c19f5eed2cfb3e1c3d02879b9a5c7066f2bb3854b3aec80f925f2ba98fa058a472f6d5d85f0ba2c223d
zh-TW|32|49fd0339e80b3e1bb0309003f14c3a8180e82e8cfed1a6714e8020ed38f461194972d594c6452cbbb612d7bcc77acfd6fc7548b8b3954b03926f21badceb3818
zh-TW|64|fe515c5cd9a2fe7c2733c046e95019554f00442b764da316f7e86cd0141752c2d9fd4fe0d7791ef81c6bd90d51170684170baa2f696de7d184b5c7cc013a48c0
Log in or click on link to see number of positives.
- firefox-nightly.77.0.1.2020040621-alpha.nupkg (c609f5468bc9) - ## / 62
- firefox-77.0a1.en-US.win64.installer.exe (227c650c4ec7) - ## / 65
- firefox-77.0a1.en-US.win32.installer.exe (58c8bc49d975) - ## / 64
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Mozilla Foundation
-
- chocolatey-core.extension (≥ 1.3.3)
Ground Rules:
- This discussion is only about Firefox Nightly and the Firefox Nightly package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Firefox Nightly, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.