Downloads:
362,191
Downloads of v 5.0.11879-beta:
231
Last Update:
23 Apr 2020
Package Maintainer(s):
Software Author(s):
- Dolphin Emulator Project
Tags:
gaming emulator wii gamecube dolphinDolphin Emulator
This is a prerelease version of Dolphin Emulator.
- 1
- 2
- 3
5.0.11879-beta | Updated: 23 Apr 2020
Downloads:
362,191
Downloads of v 5.0.11879-beta:
231
Maintainer(s):
Software Author(s):
- Dolphin Emulator Project
Dolphin Emulator 5.0.11879-beta
This is a prerelease version of Dolphin Emulator.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Dolphin Emulator Project. The inclusion of Dolphin Emulator Project trademark(s), if any, upon this webpage is solely to identify Dolphin Emulator Project goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Dolphin Emulator, run the following command from the command line or from PowerShell:
To upgrade Dolphin Emulator, run the following command from the command line or from PowerShell:
To uninstall Dolphin Emulator, 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 dolphin --internalize --version=5.0.11879-beta --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 dolphin -y --source="'INTERNAL REPO URL'" --version="'5.0.11879-beta'" --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 dolphin -y --source="'INTERNAL REPO URL'" --version="'5.0.11879-beta'" --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 dolphin
win_chocolatey:
name: dolphin
version: '5.0.11879-beta'
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 'dolphin' do
action :install
source 'INTERNAL REPO URL'
version '5.0.11879-beta'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller dolphin
{
Name = "dolphin"
Version = "5.0.11879-beta"
Source = "INTERNAL REPO URL"
chocoParams = "--prerelease"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'dolphin':
ensure => '5.0.11879-beta',
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.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 23 Apr 2020.
Dolphin is an emulator for running GameCube, Wii, and Triforce games on Windows, Linux, OS X, and recent Android devices.
It allows PC gamers to enjoy games for these two consoles in full HD (1080p) with several enhancements: compatibility with all PC controllers, turbo speed, networked multiplayer, and even more!
Package specific
Automatic updates on monday and thursday.
Package Parameters
The following package parameters can be set:
/NOSTART
- Do not add a start menu item/DesktopIcon
- Add a desktop shorcut
To pass parameters, use --params "''"
(e.g. choco install packageID [other options] --params="'/ITEM:value /ITEM2:value2 /FLAG_BOOLEAN'"
).
To have choco remember parameters on upgrade, be sure to set choco feature enable -n=useRememberedArgumentsForUpgrades
.
$ErrorActionPreference = 'Stop';
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$dolphinDir = (Join-Path $(Get-ToolsLocation) Dolphin-x64)
$exepath = (Join-Path $dolphinDir Dolphin.exe)
$shortcutName = 'Dolphin Emulator.lnk'
$desktopicon = (Join-Path ([Environment]::GetFolderPath("Desktop")) $shortcutName)
$starticon = (Join-Path ([environment]::GetFolderPath([environment+specialfolder]::Programs)) $shortcutName)
if (Test-Path $desktopicon) {
Remove-Item $desktopicon
Write-Host -ForegroundColor white 'Removed ' $desktopicon
} else {
Write-Host -ForegroundColor yellow 'Did not find ' $desktopicon 'to remove'
}
if (Test-Path $starticon) {
Remove-Item $starticon
Write-Host -ForegroundColor white 'Removed ' $starticon
} else {
Write-Host -ForegroundColor yellow 'Did not find ' $starticon 'to remove'
}
Uninstall-BinFile -Name 'Dolphin' -Path $exepath
Write-Host -ForegroundColor white 'Removing ' $dolphinDir
Remove-Item $DolphinDir -Recurse -ea 0
Log in or click on link to see number of positives.
- dolphin.5.0.11879-beta.nupkg (c0cea04fd745) - ## / 62
- dolphin-master-5.0-11879-x64.7z (944a4f254f3b) - ## / 60
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 |
---|---|---|---|---|
Dolphin Emulator 2409.0.0 | 1029 | Tuesday, September 17, 2024 | Approved | |
Dolphin Emulator 5.0.21460-beta | 525 | Tuesday, April 30, 2024 | Approved | |
Dolphin Emulator 5.0.21264-beta | 223 | Tuesday, March 26, 2024 | Approved | |
Dolphin Emulator 5.0.21088-beta | 245 | Saturday, February 10, 2024 | Approved | |
Dolphin Emulator 5.0.20347-beta | 358 | Saturday, November 25, 2023 | Approved | |
Dolphin Emulator 5.0.19870-beta | 546 | Sunday, August 13, 2023 | Approved | |
Dolphin Emulator 5.0.19368-beta | 539 | Sunday, May 21, 2023 | Approved | |
Dolphin Emulator 5.0.18498-beta | 641 | Sunday, February 12, 2023 | Approved | |
Dolphin Emulator 5.0.17995-beta | 471 | Wednesday, December 21, 2022 | Approved | |
Dolphin Emulator 5.0.17269-beta | 776 | Tuesday, September 13, 2022 | Approved | |
Dolphin Emulator 5.0.16793-beta | 517 | Thursday, July 7, 2022 | Approved | |
Dolphin Emulator 5.0.16380-beta | 569 | Tuesday, May 17, 2022 | Approved | |
Dolphin Emulator 5.0.16101-beta | 623 | Tuesday, March 8, 2022 | Approved | |
Dolphin Emulator 5.0.15993-beta | 343 | Wednesday, February 9, 2022 | Approved | |
Dolphin Emulator 5.0.15445-beta | 903 | Saturday, November 13, 2021 | Approved | |
Dolphin Emulator 5.0.15260-beta | 536 | Monday, October 4, 2021 | Approved | |
Dolphin Emulator 5.0.15105-beta | 398 | Tuesday, September 7, 2021 | Approved | |
Dolphin Emulator 5.0.14790-beta | 459 | Sunday, August 1, 2021 | Exempted | |
Dolphin Emulator 5.0.14344-beta | 542 | Sunday, June 6, 2021 | Approved | |
Dolphin Emulator 5.0.14095-beta | 403 | Thursday, May 6, 2021 | Approved | |
Dolphin Emulator 5.0.13963.20210413-beta | 334 | Monday, April 12, 2021 | Approved | |
Dolphin Emulator 5.0.13963.20210412-beta | 111 | Monday, April 12, 2021 | Exempted | |
Dolphin Emulator 5.0.13963-beta | 315 | Monday, April 5, 2021 | Approved | |
Dolphin Emulator 5.0.13603-beta | 1346 | Thursday, February 11, 2021 | Exempted | |
Dolphin Emulator 5.0.13178-beta | 1089 | Thursday, December 10, 2020 | Approved | |
Dolphin Emulator 5.0.12716-beta | 662 | Monday, October 5, 2020 | Approved | |
Dolphin Emulator 5.0.12247-beta | 615 | Sunday, July 5, 2020 | Exempted | |
Dolphin Emulator 5.0.11991-beta | 475 | Thursday, May 7, 2020 | Approved | |
Dolphin Emulator 5.0.11879-beta | 231 | Thursday, April 23, 2020 | Approved | |
Dolphin Emulator 5.0.11863-beta | 212 | Monday, April 20, 2020 | Approved | |
Dolphin Emulator 5.0.11845-beta | 209 | Thursday, April 16, 2020 | Approved | |
Dolphin Emulator 5.0.11843-beta | 195 | Monday, April 13, 2020 | Approved | |
Dolphin Emulator 5.0.11832-beta | 185 | Thursday, April 9, 2020 | Approved | |
Dolphin Emulator 5.0.11827-beta | 238 | Monday, May 4, 2020 | Exempted | |
Dolphin Emulator 5.0.11824-beta | 190 | Thursday, April 2, 2020 | Approved | |
Dolphin Emulator 5.0.11819-beta | 239 | Thursday, March 26, 2020 | Approved | |
Dolphin Emulator 5.0.11801-beta | 181 | Monday, March 23, 2020 | Approved | |
Dolphin Emulator 5.0.11790-beta | 167 | Saturday, March 21, 2020 | Approved | |
Dolphin Emulator 5.0.11788-beta | 156 | Friday, March 20, 2020 | Approved | |
Dolphin Emulator 5.0.11784-beta | 190 | Thursday, March 19, 2020 | Approved | |
Dolphin Emulator 5.0.11782-beta | 164 | Tuesday, March 24, 2020 | Approved | |
Dolphin Emulator 5.0.11770-beta | 179 | Monday, March 23, 2020 | Approved | |
Dolphin Emulator 5.0.11767-beta | 179 | Monday, March 16, 2020 | Approved | |
Dolphin Emulator 5.0.11746-beta | 252 | Sunday, March 15, 2020 | Approved | |
Dolphin Emulator 5.0.11719-beta | 178 | Thursday, March 12, 2020 | Approved | |
Dolphin Emulator 5.0.11713-beta | 182 | Tuesday, March 10, 2020 | Approved | |
Dolphin Emulator 5.0.11711-beta | 191 | Sunday, March 8, 2020 | Approved | |
Dolphin Emulator 5.0.11707-beta | 221 | Friday, March 6, 2020 | Approved | |
Dolphin Emulator 5.0.11701-beta | 167 | Saturday, February 29, 2020 | Approved | |
Dolphin Emulator 5.0.11700-beta | 179 | Wednesday, February 26, 2020 | Approved | |
Dolphin Emulator 5.0.11698-beta | 191 | Wednesday, February 26, 2020 | Approved | |
Dolphin Emulator 5.0.11688-beta | 206 | Monday, February 24, 2020 | Approved | |
Dolphin Emulator 5.0.11686-beta | 219 | Sunday, February 23, 2020 | Approved | |
Dolphin Emulator 5.0.11684-beta | 175 | Saturday, February 22, 2020 | Approved | |
Dolphin Emulator 5.0.11673-beta | 219 | Monday, February 17, 2020 | Approved | |
Dolphin Emulator 5.0.11669-beta | 186 | Saturday, February 15, 2020 | Approved | |
Dolphin Emulator 5.0.11667-beta | 176 | Tuesday, March 10, 2020 | Approved | |
Dolphin Emulator 5.0.11665-beta | 208 | Tuesday, February 11, 2020 | Approved | |
Dolphin Emulator 5.0.11663-beta | 158 | Monday, February 10, 2020 | Approved | |
Dolphin Emulator 5.0.11651-beta | 222 | Sunday, February 9, 2020 | Approved | |
Dolphin Emulator 5.0.11630-beta | 191 | Saturday, February 8, 2020 | Approved | |
Dolphin Emulator 5.0.11624-beta | 189 | Saturday, February 8, 2020 | Approved | |
Dolphin Emulator 5.0.11622-beta | 227 | Tuesday, February 4, 2020 | Approved | |
Dolphin Emulator 5.0.11617-beta | 165 | Sunday, February 2, 2020 | Exempted | |
Dolphin Emulator 5.0.11608-beta | 216 | Saturday, February 1, 2020 | Exempted | |
Dolphin Emulator 5.0.11605-beta | 163 | Friday, January 31, 2020 | Approved | |
Dolphin Emulator 5.0.11600-beta | 177 | Thursday, January 30, 2020 | Approved | |
Dolphin Emulator 5.0.11598-beta | 186 | Tuesday, January 28, 2020 | Approved | |
Dolphin Emulator 5.0.11590-beta | 202 | Monday, January 27, 2020 | Approved | |
Dolphin Emulator 5.0.11583-beta | 178 | Sunday, January 26, 2020 | Approved | |
Dolphin Emulator 5.0.11558-beta | 181 | Saturday, January 25, 2020 | Approved | |
Dolphin Emulator 5.0.11552-beta | 166 | Saturday, January 25, 2020 | Approved | |
Dolphin Emulator 5.0.11537-beta | 197 | Saturday, January 25, 2020 | Approved | |
Dolphin Emulator 5.0.11535-beta | 167 | Friday, January 24, 2020 | Approved | |
Dolphin Emulator 5.0.11530-beta | 229 | Wednesday, January 22, 2020 | Approved | |
Dolphin Emulator 5.0.11526-beta | 170 | Tuesday, January 21, 2020 | Approved | |
Dolphin Emulator 5.0.11524-beta | 213 | Monday, January 20, 2020 | Approved | |
Dolphin Emulator 5.0.11520-beta | 179 | Saturday, January 25, 2020 | Exempted | |
Dolphin Emulator 5.0.11518-beta | 177 | Thursday, January 16, 2020 | Approved | |
Dolphin Emulator 5.0.11516-beta | 171 | Wednesday, January 15, 2020 | Approved | |
Dolphin Emulator 5.0.11507-beta | 148 | Wednesday, January 15, 2020 | Approved | |
Dolphin Emulator 5.0.11501-beta | 196 | Tuesday, January 14, 2020 | Approved | |
Dolphin Emulator 5.0.11494-beta | 140 | Tuesday, January 14, 2020 | Approved | |
Dolphin Emulator 5.0.11476-beta | 152 | Monday, January 13, 2020 | Approved | |
Dolphin Emulator 5.0.11455-beta | 212 | Sunday, January 12, 2020 | Approved | |
Dolphin 5.0.3834-beta | 441 | Friday, January 10, 2020 | Exempted | |
Dolphin Emulator (Stable) 5.0.0.20201120 | 7134 | Friday, November 20, 2020 | Approved | |
Dolphin 5.0 | 5826 | Monday, January 9, 2017 | Approved | |
Dolphin 4.0.2 | 931 | Thursday, December 19, 2013 | Approved |
© Dolphin Emulator Project 2020
-
- vcredist140 (≥ 14.16)
Ground Rules:
- This discussion is only about Dolphin Emulator and the Dolphin Emulator 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 Dolphin Emulator, 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.