Downloads:
5,956
Downloads of v 2.2.24:
168
Last Update:
11 Apr 2015
Package Maintainer(s):
Software Author(s):
- Balsamiq Studios
Tags:
balsamiq mockups prototypes prototyping trial- Software Specific:
- Software Site
- Software License
- Package Specific:
- Possible Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Balsamiq Mockups for Desktop
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Possible Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
5,956
Downloads of v 2.2.24:
168
Maintainer(s):
Software Author(s):
- Balsamiq Studios
Balsamiq Mockups for Desktop
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Balsamiq Studios. The inclusion of Balsamiq Studios trademark(s), if any, upon this webpage is solely to identify Balsamiq Studios 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
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 rejected on 30 Jan 2016. The reviewer chocolatey-ops has listed the following reason(s):
For the latest version of Balsamiq, check out Balsamiq Mockups 3.
Balsamiq is a wireframing and mock up tool with a high focus on usability. Quickly come up with mock ups and easily share them with your clients.
Because Balsamiq is commercial software, this package will install Balsamiq as a fully-functional trial. If you have a license key you can activate the software after install.
Version 1.* of this package (really v2 of the product) will no longer work due to the download file being moved. This package version (2.2.24) exists to allow for installing the last release of v2.
For questions about this package, please leave a comment on the package page at https://chocolatey.org/packages/balsamiqmockups.install, or create an issue on Github at https://github.com/mattheyan/Chocolatey-Packages/issues.
try {
# Instructions for silent installation: http://support.balsamiq.com/customer/portal/articles/133390
$installPath = Join-Path ${env:ProgramFiles(x86)} "Balsamiq Mockups"
# Delete desktop shortcut
$currentUser = (Get-WMIObject -class Win32_ComputerSystem | select username).username
if ($currentUser -match "\\") {
$currentUser = $currentUser.Substring($currentUser.IndexOf("\") + 1)
}
$usersDir = Split-Path $env:USERPROFILE -Parent
$currentUserDir = Join-Path $usersDir $currentUser
$currentUserDesktopDir = Join-Path $currentUserDir "Desktop"
$desktopLinkPath = Join-Path $currentUserDesktopDir "Balsamiq Mockups.exe.lnk"
if (Test-Path $desktopLinkPath) {
Write-Host "Deleting Desktop shortcut..."
$elevatedRemoveShortcut = "`
Remove-Item '$desktopLinkPath' -Force;`
return 0;"
Start-ChocolateyProcessAsAdmin $elevatedRemoveShortcut
}
# Remove file type registration
Write-Host "Removing file type registration..."
$elevatedRemoveFileAssociation = "`
if( -not (Test-Path -path HKCR:) ) {New-PSDrive -Name HKCR -PSProvider registry -Root Hkey_Classes_Root};`
if(test-path -LiteralPath 'HKCR:\.bmml') { remove-item -Path 'HKCR:\.bmml' -Recurse };`
if(test-path -LiteralPath 'HKCR:\com.balsamiq.mockupfile') { remove-item -Path 'HKCR:\com.balsamiq.mockupfile' -Recurse };`
return 0;"
Start-ChocolateyProcessAsAdmin $elevatedRemoveFileAssociation
# Delete application files
if (Test-Path $installPath) {
Write-Host "Deleting application files..."
$elevatedRemoveFiles = "`
Remove-Item '$installPath' -Force -Recurse;`
return 0;"
Start-ChocolateyProcessAsAdmin $elevatedRemoveFiles
}
Write-ChocolateySuccess "balsamiqmockups.install"
} catch {
Write-ChocolateyFailure "balsamiqmockups.install" $($_.Exception.Message)
throw
}
No results available for this package. We are building up results for older packages over time so expect to see results. If this is a new package, it should have results within a day or two.
2014 Balsamiq Studios, LLC
This package has no dependencies.
Ground Rules:
- This discussion is only about Balsamiq Mockups for Desktop and the Balsamiq Mockups for Desktop 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 Balsamiq Mockups for Desktop, 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.
chocolatey-ops (reviewer) on 23 Nov 2015 03:55:08 +00:00:
balsamiqmockups.install has failed testing.
Please visit https://gist.github.com/c12c70b47b30ef33f2c3 for details.
The package status will be changed and will be waiting on your next actions.
chocolatey-ops (reviewer) on 20 Dec 2015 08:31:21 +00:00:
balsamiqmockups.install has passed automated validation.
NOTICE: We are permanently fixing our backlog issues and we want to apologize that it has taken so long - please see http://goo.gl/aYqJy0.
NOTE: No required changes that the validator checks have been flagged! It is appreciated if you fix other items, but only Requirements will hold up a package version from approval. A human review could still turn up issues a computer may not easily find.
Guidelines
Guidelines are strong suggestions that improve the quality of a package version. These are considered something to fix for next time to increase the quality of the package. Over time Guidelines can become Requirements. A package version can be approved without addressing Guideline comments but will reduce the quality of the package.
packageSourceUrl
, pointing to the url where the package source resides. This is a strong guideline because it simplifies collaboration. Please add it to the nuspec. More...Suggestions
Suggestions are either newly introduced items that will later become Guidelines or items that are don't carry enough weight to become a Guideline. Either way they should be considered. A package version can be approved without addressing Suggestion comments.
chocolatey-ops (reviewer) on 15 Jan 2016 00:02:53 +00:00:
We've found balsamiqmockups.install v2.2.24 in a submitted status and waiting for your next actions. It has had no updates within 20 days after a reviewer has asked for corrections. Please note that if there is no response or fix of the package within 15 days of this message, this package version will automatically be closed (rejected) due to being stale.
Take action:
If your package is failing automated testing, you can use the chocolatey test environment to manually run the verification and determine what may need to be fixed.
Note: We don't like to see packages automatically rejected. It doesn't mean that we don't value your contributions, just that we can not continue to hold packages versions in a waiting status that have possibly been abandoned. If you don't believe you will be able to fix up this version of the package within 15 days, we strongly urge you to log in to the site and respond to the review comments until you are able to.
chocolatey-ops (reviewer) on 30 Jan 2016 00:07:25 +00:00:
Unfortunately there has not been progress to move balsamiqmockups.install v2.2.24 towards an approved status within 15 days after the last review message, so we need to close (reject) the package version at this time. If you want to pick this version up and move it towards approval in the future, use the contact site admins link on the package page and we can move it back into a submitted status so you can submit updates.
Status Change - Changed status of package from 'submitted' to 'rejected'.