From 08c9eb0d3738bf490579995a5dbaab5df5d0f852 Mon Sep 17 00:00:00 2001 From: TomOne Date: Thu, 19 Dec 2013 19:51:07 +0100 Subject: [PATCH] bumped brackets to sprint 35 --- Brackets/Brackets.nuspec | 18 +++++------------- Brackets/tools/chocolateyInstall.ps1 | 2 +- Brackets/tools/chocolateyUninstall.ps1 | 4 ++-- 3 files changed, 8 insertions(+), 16 deletions(-) diff --git a/Brackets/Brackets.nuspec b/Brackets/Brackets.nuspec index 5c7a087..accea93 100644 --- a/Brackets/Brackets.nuspec +++ b/Brackets/Brackets.nuspec @@ -1,12 +1,12 @@ - + Brackets Brackets Code Editor - 0.1.30.9116 + 0.35 Adobe Ethan J Brown - Brackets open-source code editor built with the web for the web - Milestone 30. + Brackets open-source code editor built with the web for the web. Brackets is an open-source editor for web design and development built on top of web technologies such as HTML, CSS and JavaScript. The project was created and is maintained by Adobe, and is released under an MIT License. FOR THE WEB, BY THE WEB @@ -25,16 +25,8 @@ The browser is your design view. Brackets hooks up directly to the browser, allo editor web adobe javascript html css https://github.com/adobe/brackets/blob/master/LICENSE false - https://github.com/Iristyle/ChocolateyPackages/raw/master/Brackets/brackets_logo.png - New Features In Sprint 30 - -* OS X 10.6 Support Restored: Brackets will no longer crash on launch when running on Mac OS X 10.6.x. -* Linux Preview Improvements & Fixes: File delete, Extension Manager and HTML Highlighting in Live Preview are now enabled. Also, we've fixed several bugs when installing the Debian package. -* CSS Regions Named Flow Code Hints: Named Flows for CSS regions will now appear in code hints for flow-into and flow-from properties. -* Function Parameter Hints: Hints appear automatically when you first type inside parentheses, or when invoked manually with Ctrl+Shift+Space. -* Replace All: Replace All displays a panel showing all occurrences that will be replaced. You can review and uncheck any occurrences you don't want to replace. -* Note: Theseus Extension Update Required: All users of the Theseus extension must update due to a break in compatibility. Also, Brackets developers can now use the Theseus to debug an instance of Brackets. -* Updated Translations: The French, Japanese, German, and Turkish translations have been updated. + https://upload.wikimedia.org/wikipedia/commons/4/4c/Brackets_Icon.svg + diff --git a/Brackets/tools/chocolateyInstall.ps1 b/Brackets/tools/chocolateyInstall.ps1 index bfbdd8d..dbda663 100644 --- a/Brackets/tools/chocolateyInstall.ps1 +++ b/Brackets/tools/chocolateyInstall.ps1 @@ -1,5 +1,5 @@ $package = 'Brackets' -$build = '30' +$build = '35' try { $params = @{ diff --git a/Brackets/tools/chocolateyUninstall.ps1 b/Brackets/tools/chocolateyUninstall.ps1 index a7d6a76..201f31f 100644 --- a/Brackets/tools/chocolateyUninstall.ps1 +++ b/Brackets/tools/chocolateyUninstall.ps1 @@ -2,9 +2,9 @@ $package = 'Brackets' try { - # C:\Program Files (x86)\Brackets Sprint 25 # http://stackoverflow.com/questions/450027/uninstalling-an-msi-file-from-the-command-line-without-using-msiexec - msiexec.exe '/X{37DF8424-BAF6-458B-A3F0-2A89D65628B2}' /qb-! REBOOT=ReallySuppress + $msiArgs = "/X{CA6586CA-1C03-488B-B791-2A4533C1B1C6} /qb-! REBOOT=ReallySuppress" + Start-ChocolateyProcessAsAdmin "$msiArgs" 'msiexec' Write-ChocolateySuccess $package } catch {