Downloads:
1,368
Downloads of v 4.1.2:
31
Last Update:
09 Sep 2024
Package Maintainer(s):
Software Author(s):
- Chris Maltby
Tags:
gbstudio.install retro adventure game creator- 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
GB Studio (Install)
This is not the latest version of GB Studio (Install) available.
- 1
- 2
- 3
4.1.2 | Updated: 09 Sep 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:
1,368
Downloads of v 4.1.2:
31
Maintainer(s):
Software Author(s):
- Chris Maltby
GB Studio (Install) 4.1.2
This is not the latest version of GB Studio (Install) available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Chris Maltby. The inclusion of Chris Maltby trademark(s), if any, upon this webpage is solely to identify Chris Maltby 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 GB Studio (Install), run the following command from the command line or from PowerShell:
To upgrade GB Studio (Install), run the following command from the command line or from PowerShell:
To uninstall GB Studio (Install), 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 gbstudio.install --internalize --version=4.1.2 --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 gbstudio.install -y --source="'INTERNAL REPO URL'" --version="'4.1.2'" [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 gbstudio.install -y --source="'INTERNAL REPO URL'" --version="'4.1.2'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install gbstudio.install
win_chocolatey:
name: gbstudio.install
version: '4.1.2'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'gbstudio.install' do
action :install
source 'INTERNAL REPO URL'
version '4.1.2'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller gbstudio.install
{
Name = "gbstudio.install"
Version = "4.1.2"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'gbstudio.install':
ensure => '4.1.2',
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 is likely a meta/virtual (*) or an installer (*.install) or portable (*.portable) application package.
- Meta/virtual (*) - has a dependency on the *.install or the *.portable package - it is provided for discoverability and for other packages to take a dependency on.
- Portable (*.portable/*.commandline (deprecated naming convention)/*.tool (deprecated naming convention)) - usually zips or archives that require no administrative access to install.
- Install (*.install/*.app (deprecated naming convention)) - uses native installers, usually requires administrative access to install.
Learn more about chocolatey's distinction of installed versus portable apps and/or learn about this kind of package.
This package was approved as a trusted package on 09 Sep 2024.
Create Real ROM files
Run your games on any compatible emulator, if you've got a flash cart you can play them on a real console!
Simple Setup
No complicated dependencies to install, just a single application with everything you need to get started.
No knowledge required
Simple visual scripting means you don't need to have made a game already. GB Studio also hides much of the complexity in building GB games so you can concentrate on telling a great story.
Build for the web
GB Studio comes with a web based emulator that even works great on mobile. You can quickly export your games to play in a browser or even upload to Itch.io.
Features
- Visual game builder with no programming knowledge required.
- Design your graphics in any editor that can output PNG files e.g. Photoshop, Tiled, Aseprite.
- Example project included to get started right away.
- Make top down 2D JRPG style adventure games.
- Build real GB Rom files which can be played in an emulator or on device using USB Carts.
- Build a HTML5 playable game that also works on mobile and can deployed to any webserver or uploaded to Itch.io.
- Built for macOS, Windows and Linux.
- Supports both macOS light and dark mode.
- Includes the full tools that were used to build Untitled GB Game, free to play on Itch.io.
$ErrorActionPreference = 'Stop';
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = 'GB Studio'
fileType = 'exe'
silentArgs = "--uninstall --silent"
}
$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $packageArgs['softwareName']
if ($key.Count -eq 1) {
$key | % {
$packageArgs['file'] = "$($_.UninstallString)" -Replace " --uninstall", ""
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)"}
}
Log in or click on link to see number of positives.
- gbstudio.install.4.1.2.nupkg (e9848c9d20cb) - ## / 68
- gb-studio-windows-64bit-installer.zip (9ef56a210510) - ## / 61
- gb-studio-windows-32bit-installer.zip (3d4c8361cb50) - ## / 63
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 |
---|---|---|---|---|
GB Studio (Install) 4.1.3 | 51 | Monday, September 16, 2024 | Approved | |
GB Studio (Install) 4.1.2 | 31 | Monday, September 9, 2024 | Approved | |
GB Studio (Install) 4.1.1 | 24 | Wednesday, September 4, 2024 | Approved | |
GB Studio (Install) 4.1.0 | 35 | Tuesday, September 3, 2024 | Approved | |
GB Studio (Install) 4.0.2 | 74 | Tuesday, July 30, 2024 | Approved | |
GB Studio (Install) 4.0.1 | 38 | Monday, July 22, 2024 | Approved | |
GB Studio (Install) 4.0.0 | 56 | Wednesday, June 19, 2024 | Approved | |
GB Studio (Install) 3.2.1 | 95 | Thursday, February 29, 2024 | Approved | |
GB Studio (Install) 1.2.1 | 484 | Thursday, January 16, 2020 | Approved | |
GB Studio (Install) 1.2.0 | 197 | Friday, December 13, 2019 | Approved | |
GB Studio (Install) 1.1.0 | 258 | Saturday, June 15, 2019 | Approved |
© 2019 Chris Maltby
This package has no dependencies.
Ground Rules:
- This discussion is only about GB Studio (Install) and the GB Studio (Install) 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 GB Studio (Install), 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.