
783
Downloads
597
Downloads of v 1.0.096
1/3/2016
Last update
Higan is a Nintendo multi-system emulator that began development on 2014-10-14. It currently supports the following systems: Famicom, Super Famicom, Game Boy, Game Boy Color, Game Boy Advance. Higan also supports the following subsystems: Super Game Boy, BS-X Satellaview, Sufami Turbo.
Note: The last and final version for 32-bit systems is 1.0.094.
To install higan, run the following command from the command line or from PowerShell:
C:\> choco install higan
To upgrade higan, run the following command from the command line or from PowerShell:
C:\> choco upgrade higan
Files
Hide- tools\chocolateyinstall.ps1
Show
$packageName = 'higan' $dir32 = 'higan_v094-32bit' $dir64 = 'higan_v096-64bit' $is64 = ((Get-ProcessorBits 64) -and !$env:chocolateyForceX86) $dir = If ($is64) { $dir64 } Else { $dir32 } $url32 = 'http://files.byuu.org/download/higan_v094-32bit.7z' $url64 = 'http://download.byuu.org/higan_v096-64bit.7z' $unzipLocation = $(Split-Path -parent $MyInvocation.MyCommand.Definition) $checksum32 = '16a4703d0d2abbd2f62c0f456cb2a74573c6e63b' $checksum64 = '08608a0b375db1295f26dd9d219f48e9278c343d' $checksumType = 'sha1' $higanExecutables32 = @('higan-balanced', 'higan-accuracy', 'higan-performance') $higanExecutables64 = @('higan-balanced', 'higan-accuracy', 'higan-performance', 'icarus') $higanExecutables = If ($is64) { $higanExecutables64 } Else { $higanExecutables32 } $startFolder = $packageName $path = Join-Path -Path $unzipLocation -ChildPath $dir Function CreateStartMenuShortcuts { $startMenuFolderPath = Join-Path -Path ([Environment]::GetFolderPath('Programs')) ` -ChildPath $startFolder $startMenuFolder = New-Item $startMenuFolderPath -Type Directory ` -ErrorAction SilentlyContinue If ($startMenuFolder) { ForEach ($executable in $higanExecutables) { Install-ChocolateyShortcut -shortcutFilePath ` (Join-Path -Path $startMenuFolderPath -ChildPath ($executable + '.lnk')) ` -targetPath (Join-Path -Path $path -ChildPath ($executable + '.exe')) ` -workingDirectory $path } } Else { Write-Warning "Start menu folder couldn't be created." } } # SCRIPT STARTS HERE # ForEach ($executable in $higanExecutables) ` { Stop-Process -Name $executable -ErrorAction SilentlyContinue } Install-ChocolateyZipPackage $packageName $url32 $unzipLocation $url64 ` -checksum $checksum32 -checksumType $checksumType -checksum64 $checksum64 # create .gui files $higanExecutables | ForEach-Object ` { New-Item -Path $path -Name ($_ + '.exe.gui') -ItemType file } # remember which version is installed If ($is64) { New-Item -Path $env:chocolateyPackageFolder -Name '64' -ItemType file } CreateStartMenuShortcuts
- tools\chocolateyuninstall.ps1
Show
$packageName = 'higan' $fileName32 = 'higan_v094-32bit.7z' $fileName64 = 'higan_v096-64bit.7z' $is64 = (Test-Path -Path (Join-Path -Path $env:chocolateyPackageFolder -ChildPath '64') -PathType Leaf) $fileName = If ($is64) { $fileName64 } Else { $fileName32 } $startFolder = $packageName Function StopProcesses { Stop-Process -Name 'higan-accuracy' -ErrorAction SilentlyContinue Stop-Process -Name 'higan-balanced' -ErrorAction SilentlyContinue Stop-Process -Name 'higan-performance' -ErrorAction SilentlyContinue If ($is64) { Stop-Process -Name 'icarus' -ErrorAction SilentlyContinue } } Function RemoveStartMenuShortcuts { $startMenuFolderPath = Join-Path -Path ([Environment]::GetFolderPath('Programs')) ` -ChildPath $startFolder Remove-Item $startMenuFolderPath -Recurse -Force -Confirm:$FALSE -ErrorAction SilentlyContinue } # SCRIPT STARTS HERE # StopProcesses UnInstall-ChocolateyZipPackage $packageName $fileName RemoveStartMenuShortcuts
Virus Scan Results
- higan.1.0.096.nupkg (9a9895d758bb) - ## / 56 - Log in or click on link to see number of positives
- higan_v096-64bit.7z (4c9797b298be) - ## / 54 - Log in or click on link to see number of positives
- higan_v094-32bit.7z (66d516832914) - ## / 54 - Log in or click on link to see number of positives
Dependencies
-
- chocolatey (≥ 0.9.9)
Package Maintainer(s)
Software Author(s)
Tags
Version History
Version | Downloads | Last updated | Status |
---|---|---|---|
higan 1.0.096 | 597 | Sunday, January 3, 2016 | approved |
higan 1.0.094 | 186 | Monday, June 15, 2015 | approved |
Discussion for the higan Package
Ground rules:
- This discussion is only about higan and the higan 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 higan, 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.