Downloads:
638,666
Downloads of v 78.0.1.2020050420-alpha:
181
Last Update:
04 May 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
78.0.1.2020050420-alpha | Updated: 04 May 2020
Downloads:
638,666
Downloads of v 78.0.1.2020050420-alpha:
181
Maintainer(s):
Software Author(s):
- Mozilla
Firefox Nightly 78.0.1.2020050420-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=78.0.1.2020050420-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="'78.0.1.2020050420-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="'78.0.1.2020050420-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: '78.0.1.2020050420-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 '78.0.1.2020050420-alpha'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller firefox-nightly
{
Name = "firefox-nightly"
Version = "78.0.1.2020050420-alpha"
Source = "INTERNAL REPO URL"
chocoParams = "--prerelease"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'firefox-nightly':
ensure => '78.0.1.2020050420-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 04 May 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
}
}
de|32|75779852fc290e2d5074c3b38c812425a30777ac97b56969bddb2e3cc85ac42af558e7fe1ffc15218d0128bdff3aaa30a990bd38a26fb10b1212b560cf66db45
dsb|32|7639a71facf1619fbdde1e35682bd97fde3f601ad971722e9a06215e1a4af78d7ca66c7342b6540476dd4558b9af7acff6edff7ef13cd8fcf8badc6b76df6f65
el|32|bd24789edd19ee74d7143b1706c59b1231757eefa1a066436a5615aeaaeaa8ff624aa7fc0532e328447ba68394ef4d66d783d611c682e56c93e718e2cdab2daf
en-CA|32|4b3c346d162aa893d0765f5e26436d092e684c1e409df2f88f6d1f6a02d61935126470c515652f2ad7ff1a0ef53ac565ea10d0df59267b9fa5e3c1e8792dedfa
en-US|32|9aab0e7ed055535ae14ba3aec9d82f03eae16c4c2a21d7828ae63473abdb6390d192c62fe17508bdecd038cd20e84245d6061a6e054bb2dcd2ebe624e47d95ce
en-US|64|16d49d214f7f07a2bc3e4bec2fa7f3fef71c83c04647ceba4fd704634e9dce3e66203cc493f9450f6a1c24c86cad9be9bb1bf76e6af2ca70ce9f0152ee8e9a10
et|32|22d000f34d4b5b54cf7c99a8d663c47112ffc55b961306e591df1626e2d00bbb6759333a5935b9cd59937458677899199c68c83951da4dbf4380b572ca0430e1
eu|32|f2d89beae2cc6ffe85481f7f331322692df473d1ccb506ace1c2fea02396a55873611401be3ad9bb22abbb7520bc6579d5d06c0f167fadcbb32ffe628f94b798
fa|32|36b8e2776e8cd05e51893221ab28462f41fee334decf4df108d20b6ac5db66347f3f1eb4a45575b833dc2bde64d2d6fd176ed5ef03fe593c9d795fb169de8c00
ff|32|8bfb0c54366442b19af07b9de794e14cda6cf19b6dd09014d9d44b5dead59cc5625c2dc320ffb425f44918e5dd8602ffcadaca5fdf59e485b53650bdd85a3b02
fy-NL|32|39a316faf4ca20c2413929be3ac9baf682389121f33dfefec295251caad7f414ebbf7d70c68c26b61c6990734ca63eef335d5fd9220e7c33c0b8331ed6962375
gl|32|ba80b24212db47cceb2f76639b476f141c89779bbef3b550d86459613327f9ba54d14cff842ce62dfb24ac3fee8fd99529129cbe1b51085564d47db74e27d730
gn|32|4ae5a3aadc5df0df17b6e5c1c610b2c23715b3ae8b2f6c94dd10f7bf659917c8c64436e4127e8d35c6f670b69836e830d77abde7031886dd62da441275761b88
gu-IN|32|8e78feeb4b479e79739cc228f8845bf1ee47eceeaa01e473decea5f56a6bd524f1c2fd20e38ae0910f3abf31d95d1cd76da385782fcf8b57ea6224a20eb71b6c
he|32|479c0ce1d43fcae8205fb8c2488496f75a7117f6c1f8aca6ffe99a96e82dc9b579e6a94780319060fa91bd1627d84d249b06fb61a9d5acef895aa11a8ca0b5aa
hr|32|a79637e278990e0210fe26fa5bc9f14361193f0090a51597156be5b407286960e2f13bd0aa2864264a319cfcf2dd4282932fbd320d573b68053b6662f76a83d6
hsb|64|7c3c027230bec30fda900455cd792bf6d1b916c3b2a3fc278bfb69fb4b12f145b1d563439ca48e49d6e7cdd4998d1be1b9e46568f71d25c42be96e61b15bb3dd
nb-NO|32|fd2a9d5a458882098d690c449797919c507c06c0dcb03dbb848d1793b2e65cc2ab64381a2e12c45ec46652ac585fe410cc5de8a8476b5821eb3aca585a28f833
ne-NP|32|7a2c991278057b96e60ba96ebbd95f07d57b9d136c64dffb18a7789245f9fc4c3f24d354ab5430a2eef63dbec3c81a370fcd857af7ccca75b574c31e34c354a5
nl|32|fdf777c11145aee6318ac3dfda432f90b6abc148f64c3de59523dcbb29085fa343b237dea04233654d051492db9fb4a1172faa42550d2de2c4436cfa924fe436
nn-NO|32|f99f85601ef5bddb3d4f71eda27c8672ba4778f7608ea49c5cbb4fa50fcc02d17161fa0ace0d182a0e6d522537671426e3e8ff5bc07d40b87e0f239e1780dc88
oc|32|a49d783fe07188d6544b2ffa3ab6724c038b91792125aa066ff81e893da691ba46887638ad8943d07400d6af7374c57fb082d3e2a3155031d463f616e8eb9fa7
ro|32|6681a7e14f830663a7b2ccc1ffbb60ea90eb2077bad6f00e91a2a1caa8769f9f376e6a66b23659e9e2b51f4cb912eaa58fd4ff96295037e8d16763cdc0fee4cc
ru|32|f1f2bbbdc29485365f742da3d606cb542a5644688cfd041b8f7e00a14662ff1f78feace4f7a28b49643a198b41570554873cf9e0efec282802b0f496bdcf10ad
scn|32|08170a25fe3bef5c70d7d973503a2967ee77e91b3aa9afe6262ae0dd7c9cfef43dec994fe943f5e3b47db9af54b5183f8a1631c4475374c98305315b039396e3
si|32|94e05e985932a683fd268c0c4a67a10a96a75113ed824c1a15d2681851edde55afd56a2e603a1d7019762f9b49828515f41105793e6e7b0e7cb17b37cae2ba62
ta|32|590777243963d2ed408902b582b118cc06c6d971dab4bebd9bedae90f7316caa2f9f19abbf80a381a6806f20a77ecaa27d355481bc461cd076571a114ad01f55
th|32|85067d5689df834e80515329068cd76396cb27acfe1b7d2d1fb39e945060dde45f73bdee715af25ee37ce94b0726ecd6de066478178f243880ed7f3a9aa390ea
tl|32|2c829a58c10d685c16ba8efeba1719e58b3fb0f9e3f2deb416a67d28820d1ccb2ecb89de49760a5f3c42f2729a5176c32432afcb84a9a12eb5914950fb2f667f
xh|32|55fd77a305e0a3d409f20f45ef23125645d961ec16b3e5664cef57250ec40be68f87bf5f88b10fca6f767f72d283df4faff3de7e834a7c815406f8481f9ac3c1
Log in or click on link to see number of positives.
- firefox-nightly.78.0.1.2020050420-alpha.nupkg (2e59ef837064) - ## / 61
- firefox-78.0a1.en-US.win64.installer.exe (38571e6c8255) - ## / 64
- firefox-78.0a1.en-US.win32.installer.exe (c980c77bd857) - ## / 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.