Downloads:
214
Downloads of v 87.0.20210724-alpha:
133
Last Update:
20 Oct 2021
Package Maintainer(s):
Software Author(s):
- Dot HQ
Tags:
dotbrowser browser privacy firefox- Software Specific:
- Software Site
- Software Source
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Dot Browser
This is a prerelease version of Dot Browser.
- 1
- 2
- 3
87.0.20210724-alpha | Updated: 20 Oct 2021
- Software Specific:
- Software Site
- Software Source
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
214
Downloads of v 87.0.20210724-alpha:
133
Maintainer(s):
Software Author(s):
- Dot HQ
Dot Browser 87.0.20210724-alpha
This is a prerelease version of Dot Browser.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Dot HQ. The inclusion of Dot HQ trademark(s), if any, upon this webpage is solely to identify Dot HQ goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Dot Browser, run the following command from the command line or from PowerShell:
To upgrade Dot Browser, run the following command from the command line or from PowerShell:
To uninstall Dot Browser, 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 dotbrowser --internalize --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 dotbrowser -y --source="'INTERNAL REPO URL'" --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 dotbrowser -y --source="'INTERNAL REPO URL'" --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 dotbrowser
win_chocolatey:
name: dotbrowser
version: '87.0.20210724-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 'dotbrowser' do
action :install
source 'INTERNAL REPO URL'
version '87.0.20210724-alpha'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller dotbrowser
{
Name = "dotbrowser"
Version = "87.0.20210724-alpha"
Source = "INTERNAL REPO URL"
chocoParams = "--prerelease"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'dotbrowser':
ensure => '87.0.20210724-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 is exempt from moderation. While it is likely safe for you, there is more risk involved.
Dot Browser is proud to be powered by Gecko.
There are a plethora of Chromium based browsers available and introducing competition is unique, healthy, and necessary in the browser space.
We chose Gecko due to its position as the best competitor to Chromium, and because itβs developed by Mozilla, who are best known for their privacy efforts in the community.
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.
From: https://github.com/dothq/browser-desktop/blob/nightly/LICENSE
LICENSE
Mozilla Public License 2.0
Permissions of this weak copyleft license are conditioned on making available source code of licensed files and modifications of those files under the same license (or in certain cases, one of the GNU licenses). Copyright and license notices must be preserved. Contributors provide an express grant of patent rights. However, a larger work using the licensed work may be distributed under different terms and without source code for files added in the larger work.
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
Any binaries will be identical to other package types published by the project, in particular
the dotbrowser.exe file. It is directly downloaded from the project's github repository.
$ErrorActionPreference = 'Stop';
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = 'dotbrowser*'
fileType = 'EXE'
silentArgs = "/qn /norestart"
validExitCodes= @(0)
}
$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $packageArgs['softwareName']
if ($key.Count -eq 1) {
$key | % {
$packageArgs['file'] = "$($_.UninstallString)"
if ($packageArgs['fileType'] -eq 'MSI') {
$packageArgs['silentArgs'] = "$($_.PSChildName) $($packageArgs['silentArgs'])"
$packageArgs['file'] = ''
} else {
}
Uninstall-ChocolateyPackage @packageArgs
}
} 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 | % {Write-Warning "- $($_.DisplayName)"}
}
md5: 06AD90D75FA9B151F5873DFF6AEDFD0B | sha1: 6CB63194F2694F080CF938AAA63291796A30A6A0 | sha256: FF734D95D106C7F1F89509A8133F193CBE77F4E45172C783D1615FFD70DABAC9 | sha512: 4BC2554A5602D96904549185FEB00375778A0E289F0D1D06A7F6D5FAD42FB38F166247C7A2D4741AF7C625315B4600D79CE48844D64EF72EA49A47D62737C162
Log in or click on link to see number of positives.
- dotbrowser.87.0.20210724-alpha.nupkg (904904dd5576) - ## / 47
- dotbrowser.exe (ff734d95d106) - ## / 55
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.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Dot Browser 87.0.20210724-alpha | 133 | Wednesday, October 20, 2021 | Exempted | |
Dot Browser 87.0.20210722-alpha | 81 | Monday, July 11, 2022 | Exempted |
This build contains known UI bugs. Please read the information below before installing
???? Welcome
You may be a little confused as to why this is the latest build. Dot Browser is currently undergoing a complete rewrite of the frontend. Keeping up with updating patches for newer Firefox versions became near to impossible, so we've decided to rewrite the whole frontend of the browser. Because of this, we've paused builds until we have something a little more stable.
We hope you understand, and we are hoping to get some builds released very shortly!
???? Information
This is a Nightly build meaning you will encounter bugs and things that don't seem right. If you ever come across a bug in a nightly build, please open an issue on our bug tracker.
???? Installation
Windows
Run the Install.Dot.Browser.*.exe
to start installing Dot Browser onto your computer.
macOS
- Download the
Dot.Browser.*.dmg
image file and mount it by double clicking it. - Drag
Dot Browser.app
to the Applications Shortcut. - Run Dot Browser, you will encounter a security error.
- Go to System Preferences > Security & Privacy and click Open Anyway.
If you need more help, you can visit the Dot Browser macOS Help Center.
You will find more detailed instructions, including screenshots as well as instructions for changing the icon to fit the rest if you use Big Sur or later.
The reason this message appears is because Apple requires software on macOS to be notarized by them, and Dot Browser does not currently have this notarization.
Linux
Requirements
- GTK+ - 3.14 or higher
- X.Org - 1.0 or higher
- libstdc++ - 4.8.1 or higher
- glibc - 2.17 or higher
Steps
- Download
dot-*.tar.bz2
- Go to your home directory and run
tar xjf dot-*.tar.bz2
- You can now start Dot Browser by typing
~/dot/dot
- You can also add
~/dot
to your PATH if you want to typedot
to launch Dot Browser instead.
- You can also add
This package has no dependencies.
Ground Rules:
- This discussion is only about Dot Browser and the Dot Browser 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 Dot Browser, 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.