Downloads:
638,666
Downloads of v 127.0.1.2024041508-alpha:
30
Last Update:
15 Apr 2024
Package Maintainer(s):
Software Author(s):
- Mozilla
Tags:
browser mozilla firefox alpha admin foss cross-platform- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Firefox Nightly
This is a prerelease version of Firefox Nightly.
- 1
- 2
- 3
127.0.1.2024041508-alpha | Updated: 15 Apr 2024
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
638,666
Downloads of v 127.0.1.2024041508-alpha:
30
Maintainer(s):
Software Author(s):
- Mozilla
Firefox Nightly 127.0.1.2024041508-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
This Package Contains an Exempted Check
Not All Tests Have Passed
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=127.0.1.2024041508-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="'127.0.1.2024041508-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="'127.0.1.2024041508-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: '127.0.1.2024041508-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 '127.0.1.2024041508-alpha'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller firefox-nightly
{
Name = "firefox-nightly"
Version = "127.0.1.2024041508-alpha"
Source = "INTERNAL REPO URL"
chocoParams = "--prerelease"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'firefox-nightly':
ensure => '127.0.1.2024041508-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 15 Apr 2024.
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 here that 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
}
}
ach|32|f7c24f1255535231e78a6c95cc5062ddd9468f7da3ffde1a537a2575f39a19a02c189bf31d69a302d0cc3f4314771e2edd37c1a91dfed4b2f187124433d07340
af|32|77c30991936b399f50e7159d5ac1d07e7639da1acf50e32120f0ea96473c9292fce2f3b65334f20d45f1aa3b32ecfef99ffae13dc89bde042c639e94903a0258
an|32|b7d2186bd19025b4eff5ab3d21fdc6bf04a4cb10a357a00c6c9d4ded093ac39b344cfc485c4aa1268350ea3cda3d125dfc704c54c2536e2068e169bedced16c0
ar|32|f9ca57995acc5880d831761fe42bfbd984b67b0d02311287b4f22d31cae62be066e40e0c8c2e8fabe65bf804913794d343890faee15ec84ea29dda03a04aded9
ast|32|db51103678bbe39dfa99809d4baef5cb842565da7dea241f82208b13b2c19216181fd62c632d75f7f37bc74984f2c57e1b27c7a25df833285f7340471419bde8
az|32|3823f58d6ce939a87008cab92f8dd74d167d274bbe9222bda1c68e836823c111ce73b0699f94d544bc7a686035b7543d9e0b1f13796da1c599353fd98b2a956b
be|32|6a889df6239485ad098e8a8b42986163fd3ab5d45fc58194cb9f0690466a68a36cfff35775313e9cb97982a892dbf875b41423e8364d5a3aca32186bfa810d2e
bg|32|e7feb635e3b4074d309d536c89d718c7cab2e6a85b920b223fac9dac8121ffa699754011ab9b2fe2f4c48c7918599795d2624258c45bab63c82e5684e8386b47
bn|32|56100886c3d76125451a67ca1f26e2f54d4b8263707528b7dc9d36b60f594daaaa9bd35f66540a54f7d1909726ec801d708e55a53a14c1d5da2c80b4ac172e50
bo|32|915b1f3b75ee0f214c9ac244c7199326dd0c022e17e0d62dc1631a72383f3e1e963551748e6657ee5828df4aa8707b93be5e7560a83a0f5aecec0e40e18462ae
br|32|cd24a870cd3ad49330da64ecbaa8ffdaed53bd9cdbd7059020f6e363f1874497c5ed5655518a40ffe315bd19f3a433b23010ef27d8ec3b47b6520f362c679822
brx|32|f1d2494cf4efb1b36f0b06cff3281b0481d0176b1cf9370b3de7b403c9d109563c1b387a04dafd417f39c839d0ca89bb021454237f87fd0bb31d9d184b556b54
bs|32|8cad591b75d689329407b81e3e7e87e41f16ed7cd3165e8af210810c9a9ed3b02159e5eabcafcbd1c5faf3aa3d766d70fb4360a89b2533f13fce0170a5bf536e
ca-valencia|32|f9f47f54a262c7deb6b95bd5351755dbd5b6bb00bbde0067504b1b0617a15657601128e61b67fd38824828b1f6f645f3126a85f7ca2881a81b7ce9141bf7b72a
ca|32|20d0f505e8a7181a9f65d654948e7a468cc16f4ea5bff24817e5da683328aebbfa192e32b8a18c1c038a57e55e0850534230a8564c0cb8536aa7886da2fd513f
cak|32|02e688fd8ded289a756d6efd43d638db53053f8f8e21a78e0155f3f60881f1e3a7cc9abdf1b6790e9461cb86e2f87ce5287ea331ba1baa830aad47fa567589f8
ckb|32|97894442a0db8c925bdcf29a5a1830ac2176bb3e709f39b0ca345e044474b6f44bc4cb06328323deee81f6c235a94a65f6f0fc69d40ca4c6aeea46425925779b
cs|32|4f9f5888ddccd5c101e904035bc34ba108449a2756bc1b1b75ccc57a6450b74d96679e7b27a586c1e8cbd716499feecd12ac9eab917cee15f39e596d995476a1
cy|32|791f52df2e25603ca46b5f2cf7026033bd3c457434ed9d0d45f97268076642a2d6619293da7292e7a1bf48004adde611622ead499967a74087ef478ae98ba6ef
da|32|be93a552253c2c0126a7aa47eea2b32de890f9b7f9e345e029fb589019351253f26cc31bdcfaefe60798b3d0a5cd1f70ba558b4d37e9ca10e1f36e4392dafb89
de|32|5010de7ab42d41c2978d87771d00810963bec2d8c3fe0e8f5b6c93ea08bc75f6c7cfdb3dd99cbecfc4e8b63950f946b905af4c858048a5183acf0967ee3dc3a7
dsb|32|0fcf880af2be0c19e8586273df70a06ff8dba249e330cf746dc382aec7c8df7e4cc17898cfe4086b96606b1eb151a9fdaff936e8bc6dddc2faea32d0d9ea6cfc
el|32|2a18b3bc7dbee810f7e159c2327b52801383f77ed9f153e3c108a6b56365bd81447ea23bbce65a98a8de31fdf0577d7dfcbab55cd8868c34009344299adccb17
en-CA|32|5cf30e272947780974209c18f623f39550a0c0f57013d5811e83f3e11574285a1c069f80a6b8e84708de4ae1001050b8eb70405dc5b87de92efe0dd7eedc3395
en-GB|32|07de11f0f5b245951519cfe6b1742439edfc7565c00efcd12dba85768effdc2d23f75b1cfaed4815690c7eb659caeabce31d367b1d967005c9c719bdb88aa147
en-US|32|b0eefbfe674d4601006b4e53511d750d21f265e300c2ab306cc6fddb6dbeed98d1298f32a074a4ba857c6952652b5c0b76b977376dafa02e00e81fd69c32766e
en-US|64|79a72d374f0c3afb49a80e9a246f22a1a9d88cd52d95fa6d5ef53a90c6d5f81b73ece7ac6c7bd014220571f8ab3a38005cf09b15e8b86a9427ba8829fb6d5180
eo|32|656a97e019fd6fb9948872db921dbd1a4073fe39213c023472a813debf02bf3265d6667a040eedb9e3c5c0a16fc4b632ed3459d33d99ad8b20808d8e82306675
es-AR|32|2c4648e43650c35c0123e3accbe1b604ab054672db1948b3b8038fed123aca820fe7820435ca2617d7011370caf43a398c931072ae33cea8ca0f70ad444416e3
es-CL|32|ad82c3c7f1913312650cb35b938f019a300b1c80b4a7728d94466a45dfdf83dfc5e2aac58b22307197fd8f23aea8eaf366290034107c6ea3aaab395fc9464674
es-ES|32|f1b70f35fffe5f03ad3d188f6979f89a89d4ecada962099f82f3689aa55feffe4264f699cd3a075b95c61cf800218a0f98429f2a4bf6b68650e09470893b939b
es-MX|32|e72756f979397cdf7adbf5bf171734de16fc9b7645f94affdea0431782a8041399753c0dbbc46423adfded200b3279be7a01db1c6f71574f2ce2c8fd0c406440
et|32|8dc8dd1d9e1b5bf05573eb2877f34f581062d36f37fe5b9a905e78d7457e477c41538e44b6bd6d2a9b38294f647532e655362f58332748c8a86e2affa16c93b3
eu|32|190cc2b0a3de977b0ed4100594507368990d995ed55eecc5518590dfd4fa86ec1d001cfdb6d50fc6f6cb480c15b440568bafc4087a6c302cfb66e061ab293aa4
fa|32|e1bf0c3b26b37a22dda60e93cc6629b83e1e647444db04490d9ef7f1b1194da341b6734dd4279b6efcb96a993d005c3b675a4ec2305ad4e0e96af542b6065def
ff|32|6ee26d15765aeac9832c71844c9b4f17498205ebd81bd3afedb8c44a299374688202a78ae43b4f40a201cc56a95f71b9d8c44a56e568373357fd5ca9cb7e89a0
fi|32|0cf22fdcf9e22e9eb1b3814a9b08c77a4368dcac7efdc16b04ad83942badf9f6964ef4c61e84ed8bf45e65621dc4c6a6f64a2a05eb459ef75bf487ee9508de8f
fr|32|53d65da2caa855b959cff73eef309c728010f277c1fe922fa23f56633aec2b41b0ca37d1087f75861bd5a2446798e4bd530c7f9bd1804f1ddc9f6b0a22838e9f
fur|32|cd56c1f3f7e6fa80db53daf5118a45f4ab697144c1af3b58ade006eec0b0ccdab7dec8c46b8555058b06eaf5f85f866c8ba5a955b94e9ca44332c3618480fcbe
fy-NL|32|c29612c14373c2458358e489a098f511f4b89e1eb215f1d61bbca82e4bdffb30dbb87f3fa73a0773a9a04329b8c14b11297409c7cb49bf242bcd53d5efb9c868
ga-IE|32|e805da748768135b76e8093c826d8a2345a5c697b48e376fdaeb01967a3361c1c281526620c6effb49f80907983c2039ca23881d068cd0ba71597a07901dec29
gd|32|12ce6ddc68df4def1542c5263736bd58f43a35da291d05fa846ebe322f5017e89fcf6665ee023cc3758f1bedf535d727b109baff3adc578afbc35bcf0b3069a5
gl|32|31f9bce13dbb44ee3156aa6633276f2092ec4b4a526a778728ad2511cdfb466804329fd32f0257e302cdea2fd6878a2c5c327e5ac7b9db755bb2ab608dacee52
gn|32|76b63d9d4f8f585cbdf764b5797d36be6ae6fd74a8c035c689ff9c29391c90881737a472199db6fa9e3dd984a1dc1618bedf6e55629295ce0686d689d0253cd8
gu-IN|32|22c02eb7df8c26e073852832b9007b81edcc68ab4ea7c1255bd79e1d2d93ed97eb29118eeb7272728a56d890b00120dea4c5044f78c9b690cddd87fc7023ec65
he|32|8857459f171e946bac0a924563be97d9fc204ecaf4385cc2240bd04e2b579e3939069967d4521f185f9ac7d310cc412f1656c63845d734b18ef96b91d50731d1
hi-IN|32|095b101324a8a07fc6b239200b6c5d143f346046baf3508e7b500521c45c23b63040039ccf4e10e18f018aef540663a140563f203d65459aba696bdc216f6fab
hr|32|8530795109b0fbc275baf11601d1a6eb0af71aea6baa9779a4cde5eee5aeb487e1c9578692e5270ccf16a89efe89c163935d9372cad9420d9f48fe6a7abb4ab8
hsb|32|b833af89d999454c216d0d8b7a68972a50f07ffa15eab59f4f751e8ac401ce96f62665b2f188a5c8f17ff407e51ad6c8a919ec6c606756d70587b35afe217fae
hu|32|8fe07f8bf88ad6354c067df5ee51b741fcfdbe4f5c2d9a7f9f0daa01cab7a1124b5290d904c79f82ef9ebcc6dabbf90402eb3ca703e9f6c861b5763fec216514
hy-AM|32|94cb1139ece8d2a2591f8a27a6ac9ddac61068c6d9def6fa210e298f991baf30275465c6891ebc3ca1eeee6adf1288fea945c3af97e2fc9e17a0b86327c16547
hye|32|4d24aab781f42d67aae44dca17725d298170a7c57191324a5c4cd12ffed772862170f2d9b92be46d8f459eac6d8f55c46b5cdf0f19982f5b3a1c776011957fda
ia|32|3bc73eb55fff555a04c378877d287e26d1a06131da467e0a7be6275b7ca4987abbcb14075b9a75c5068be7eb5d6247f4277a568141980fbb7b339d5858a631a8
id|32|0cff2e9528f576947a7d6bafb358cbb52d270978481092c460f4bd7d6862a8f7b61944dbb49c1086d7956373928dc1aceee6a10fabf0127f054cab019e2f044a
is|32|ab1b3f86f91a34f3e11ae451d4d4fd28abc14b9b52c75b603ce1b5d1f7a3bc969cd85d8ac54c67b7c631dc5a6aec54d244c3197c4c923417b43c3d05ee9c21a5
it|32|674043be7dc41712d26727c9779fa38a40fd7192ec111503bf00a3be6f8a06a36ff9bb318be8e58da628509a4742ab1628188c4d0726222a8f432789ca251955
ja|32|1fcfe1010c79c8a7f62c691e56e6cc5f5c92a0709f3454ae148179f0a44fe51f485caeff423f7ced4c5c3d797c2ee4d9d81437770c3e9c4d483c57b8d7de6fb5
ka|32|b5e62b48015f658d20841d95644ce97095235c5cf992a280a0700a7064a4f8cd60c32032032641523b2f3ab3fd8db64958e5187b61eaa5f43408e1174dd9ae67
kab|32|b14cce421858d5822bf8aa61793142f5a316bae3df4df46d25d99515da4985e589de0279370b5b8c549b5dc4cc659877ba34a95793f062afee4ebc2d82565bb6
kk|32|25f2ecc007c111fc909b1b60ae7b747c317d52b1141de79fc8bcff1e471703ff0ffc98aedc890c80fca4f2aab41eafa910cd6fe5d17751039e261b8f96e58d61
km|32|4fc2a139babfb7005fd40c45afacae2458a44be2a754ab2ab6b2db02af42368b6cf1c879334ab9298674fbed329a834cfca7ebfe1b532325db0b4537672594b0
kn|32|d4d9ffabc9ab79fd50004a32ed2e0d206973f0493be9b7414a7eacba83fa37de0ccdb15438ba76e133a3c31453c70d6faef0298f4678c6c0a391539fc4050d8a
ko|32|26a38015ddc775f8c3a7114f70410ddbbdcb48daafd532a5562119320d9d66028ba863d3e42acd3a5477069b6e56d38e21d18d91b7ad72d926750bfeafade83a
lij|32|8153e3fb907c8d4b6bb8b10ab25828ea60150836e70df57765a492f2a87647e61b5c06fa08a3729a1897a773674b7bdcee207fc7c69c9cfad9d9853855503ac8
lo|32|821aa080ea8b35947fed57b0945bf9098529d55a1cc755fd570082590e2e94dad996e1bd3ed2aa57e315a6938cf476455ac95acee823de5784b7a21c2dc5b6f9
lt|32|6c33a6046672d931eddc61b3d56086a503c1dde6252a1c990d8d00b23e82436e0c652b825c29341e4e46537123143b9db99f34f635576f3988a30f32611a1c1e
ltg|32|5c00c5a3968d7f57954859db298727d0279645d677afbc9815fe9466ce50352ffc51f339e58f50ab92efa231a7a31a7b82b676210b448a9db31b5e52ff0b785a
lv|32|1ab34197e17c58143bb4cb675fb0822c04821ac122c2b7b7386dad68fde0074431c6715bf19cb78aaab24cfc21f1b7dbf2acad8ee82c4de46a750c4b79fc2c0c
meh|32|27f0e45de7495d557fd7a5bca0c6b6e4e7ae87649aef14b5b5e5b0a9592caec479527ce9deac412d0a3bf3aa5724c4b3f6116fe11d59dd195e0f9f0b3608e274
mk|32|4fb95857093581a9b49420414ee03be74c0287c80a1ed209b7f9715d2b69900b6e3ef55e6cd262ffb84ddb90a262d9b84f614b95b34adbadab12d174cb89b86e
mr|32|1a3556019879ced40799de9879bec22f1a2e5d5716ded1d5f485abf39f875ca79654ffdee82cc592855e2e566608f6f1b87932079242c95168d3de748b62ccbb
ms|32|f66d2566791e3ffe818fe2a2f3a87405342f7b845a6fbbda9f4667336c95532a8abc521fbd5aa31188d4413a0d4c70874ef10467862cb4799c74d2f6a235aab8
my|32|3eaaaeece0217ea418f9daa6ab4047066e54071f5c5119b2521d3f1f783dad84feadbcd55e96807e6a6cc371f8966349c3ce624f3d870fef3a6fc718255e377e
nb-NO|32|ae82d784748262e98327c7811f122fefd191dd50a9d824d7b13b3f354be15315cec6d378716449160624fee95e37e317d4cc6514a0b62fe05b006a33f193b27c
ne-NP|32|b37b15d301cd6779375da0ffe2a3e658813d6dabb7f9c2d42f26ea963486144c33752fff8aae2e08f4ab277f2dd4e2aecd71b89efa8dacdf1ac0b0be192fc4e9
nl|32|7ae5a8b4e0fcaf954d3ceafa2e1984399d32744ef786a299308310bf3abb5af19abf29b6022837515a7df52f9c2d6a0b7451c49b6a2f5abc48d72ab6699b51e5
nn-NO|32|33ee69565167fbab65960340e7e701dfaeb74b415ae044c4f69969f922af04454f4340b4ddfaeef14661a9913067701f44d742b6b57a91da1eeaebf65321a206
oc|32|bf5b0abaf04809b44915fd5ddedf9576c2bbd80870f725d2600640c19b4a96e093d9a22462e5cc0324838fec1e2761054f3614383fff095cbb2deb6649bb36fe
pa-IN|32|a7ce56347ee42b3de6cc14b271ba568d4e8555177578208f3fa27f708b89190e65a4438516bdc8bda313699764873eaedf2ffba4cf0de89f0217ccfe4d171088
pl|32|93552aeaa1be87a76bee92a55f5b44d9ea41ab463d4f67c02154941eee1fced45d3ef1465bd760d132bf70803bfc1c1482ba0cde9ce7d715cb7d97660e8fd780
pt-BR|32|421ef0b889b62effaa2f0db60c38da6fe61ebc759453dd27ba389704786ce030641f0610fef3110bcb76ea4ee862beef9a68d59d35e1a3ce35da93c5e205003b
pt-PT|32|3d345ec3ce9d1409863ccf258d751b2230f1c33820faf0717e0c1d49c6b487b3816ac7f6adac15da7956cebfc88c9693dace87a299a6ba67fc0d2df876330ddf
rm|32|002ce0096eade12bd5d227e456a9410104c9dbad3864ae72b08ca8266c7576da6f87edb639de29223f80c645ddd62bb2697af8933a25fa5fdc5ba17e700d436c
ro|32|467b442330e4a8de6745d9bd7ef992443d3283a2994b74d2b4b2ac67bbdd758a790b6a0341aab11a06064e849c4c5548ca89a22c03fe70004155ddcb230f16a5
ru|32|1142f652f349f36b12b4da7b27a1f625c41f0650ee40feeb2a0311647bc531be18ac59a04fd377903c0c09a89ff8e723a68160172f72590abcf354831194b4f4
sat|32|4e343c480fa45b0aff6a6a2f694acc4b23c61ced3dcf63423445c8e112d03a35f3d0c223f0fb388c96b66973e1e8fef16ee7b202e57468ffc8a490696d256b2b
sc|32|310a54762954e3f15ae15a8e333dd3f35e120e5eaeab27a1e38da111606331ca974e0a49601c71eef3079321e4ae63c5f4b63165bc7f690e5a1bd5092970cb4a
scn|32|58e5db81d33d5b0dca231d2afb04b9ded79ddaeb693dd6c0b9b8f8367f97ae990c34c74aa1a8237f2188439e67afaa2afb5ea0766fb07f99e14a17ec41984a42
sco|32|433b313b077806a7ecdfe2cac647876fcca508db956b9b77c4e6c9722d20d6966ca6915cbea08ebadd2f54c8ee31b08929cb3af7c0f74b442f9957c55255edbf
si|32|38e774d16356453a0991efd56d42876fcce84189a8b6f7ce85555b0f0d295ea64d688abc0832efd8d9639abf2d618ddee14f68dbf0e6bec01f38b5d532dc6b95
sk|32|6601b19b627de882540efa20dfc45324f949c61ef85301468457d0e1e8ee6b9550eb9d6a377e4f486e59deceba1eb640792f22f530bb41af7b51fe805fadf216
skr|32|8f2dfccd30ec93954d8afdd7ffe98de7937e12182df4350fc2efbc90877e831edb525e5c841f992540130e874b6f4f444885e94fc39f2fc164861bea05341a29
sl|32|2a30c8325cff287f924aeba83572a6abc983cff88fb37d132cd918eff5d6a9af0bc3cc8cfbcb9f892046cfdbdbd2f9a6ed95eb9e40cb07cbdc075865e2a65d9c
son|32|1ead59075dac79a81849a917afd2156962a3583ac32735b296689fea61c199e2cb0e5123f894e728872b6869343ded2f8ded13fede1ee1a4979e2320c6e8083c
sq|32|89d48260b8ebae886bcd442becd22e610fc217a077121ed10d23bb400a5841d67f3e63bd264d08dc388bba5a3d8ea963ef11adc2d56a079788b016115cbacaad
sr|32|dda83db97e97baddec28435b037bfe114dc9ef168d622ce90389da7784ea5ee1b3ed1e46184b56698f3eab5ad92023e61e46332d7b113c15d32389306da236a4
sv-SE|32|98eecff9acb872c90c00298d885a2c629b153641342e13333054da6dcb708d474df7bf23da5d0d82ac55ba3dca4d9383f08025b8571f4118243c3d7b1c02224b
szl|32|08d78a59358d0067fdeacaf4f642f18839499c62ffd26350e439a23b2932fbaf9aa07a47a17cff82147109c9996a2ac83a84eab213cd784d1cf9fb35c8008fb2
ta|32|6fc006f027ffe5d2d0739ed74909570fa288ed527510095b2adc959a6f6b9085db590f5e8ae386325d41c212a126d60f8d81bf389b00a9a160ccf72efda37d5d
te|32|3e9b9a11fafd936e7a33c8070695d5dcb245a300d9196ec1607d6e27ae92eab7894a8000c2800de02ddf2e97d1a92ce90e8fc2c3f7d127d5e32ac7a9d22a2cee
tg|32|7c6ae34f997da655d14b142789a3fc8129739dbce49dbe940e085ae4349b92e47e50ac74a9d6878f38a862d75a23b1f8da11861864e62dcfa628a883f3ef7caf
th|32|78a8785fae23433add2d5c063086df847ed8ba81b2ba6a694991a64e2e4a58eb23a2aa5b8cb563e698fc50fce69d6bf09e41b534e15c7b266fac514d28c8fa30
th|64|65bced764fcc39b5861826c4bed17a2d750ee8026e4b3cb403e577b516b747b7806bf4a932a3e315fd617b308563ff3167bb30a548624dd5a240bd359a792174
tl|32|f7bb34ac861b6acb52cc708391de6038b547422394d5cd41dde4b664bd51ba0f96d20d7c279eec9da4cb910362573edf5a39889e1318079a4427f3ef2f51e16c
tr|32|483310e23d0a5acc607f5e4b7e060357d17121f8c22954536949a12417999e938b2d551df67cd193d9332c3765710d0c247a9175c75726906aecb7362696c930
tr|64|476a5f45bd07e91e8fc08e1457e7f86d90521d115ba0163c2a991955dd0d0d41f6c9b50977ede143afb1ec50f153604210ffbfade531cc41c05b9a022bd8d2cb
trs|32|d504fe7bdd7bdba8d5f7de2dc4750e5de983194f599e3fc53e5aeeef19fc53804f52cc9328569795f75ee6fb57d85748a7ecc0c2a6abbd52effaa807942ad6f3
trs|64|d2bcba44afba91eba96fa60839d698f6ba24586c3e3bff6b0b76d20485318072d7c4f0f88928fbc453dd95d3ef6e4d175e11fb3997543b0a14186a948f3b0c5c
uk|32|d9af7881ad8223bf995df9ee8eebbb5a7bf6a7e28609160690d12106b1c03e55e3baf72fc7b543b2eac41b3d93361674f16acbeb23404fdb68ae6f8d49fdbcd6
ur|32|601f51e43794a193788fa44ab66bde677a9e0b81cd39cfc8a97639778542ff3f7748416ab6685180451c5b0acabdce6d4b5f07c301dc33cab3e0a3b411be820d
uz|32|3812e4b58a4a71e7e11f46f1546f2f1009a68497bd48573415302aa8a96ce64a4a106e1df1de94237754bb20fd00830672dcc347651cae965a8013d90833d679
vi|32|f2f80cb2b63ac53a5f3eb7e48dbdb2c9490b1c454dd8577ca6f34d384a821948d8bff0d953ee1eac2f1a52c39b470c2ac236224646495674469dd74a66c23880
wo|32|007ecf1ac77b36b97113dce53101d9e7b1745fc49112bb8c2234c88c25af82f23de79fc102e6f5ae62493aaf9f166633b76ee819bc8fab5dbde9adfa8604da78
xh|32|665920cc20fd4fb317af7f51bc9866e9e5e3951442be4c17e014297d99edc7e85b38c6221d9cb72a821c89ae6bb73ec7bc72ed04baf5129a7d94e5f35ce1ae6e
zh-CN|32|af91af5d1e0c585c998b4b932d32e6f618f8067f1b21390b2278aeb65d29308671322b5e710140d4dd48055e52947b01311fea5d69fabe1b3859ea3bf521cdbc
zh-TW|32|01ee37601c9fa4cf1e700042dc60cc12245fd0ef74089b32731d537d9ffd95169905b4a1e0638793c97578318cadae6ec6fd3e057935d3f69db4a4134d3c9e7a
Log in or click on link to see number of positives.
- firefox-nightly.127.0.1.2024041508-alpha.nupkg (85725435db7f) - ## / 62
- firefox-127.0a1.en-US.win64.installer.exe (0b13bcfe90f5) - ## / 64
- firefox-127.0a1.en-US.win32.installer.exe (184ac50f26e5) - ## / 54
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.