feat(Brackets): Init release 0.1.25.7701

- Adobes open source web editor
 - Supports plugin architecture
This commit is contained in:
Iristyle
2013-05-27 20:03:39 -04:00
parent 0aed9dd19c
commit 10489b73c1
4 changed files with 73 additions and 0 deletions

43
Brackets/Brackets.nuspec Normal file
View File

@@ -0,0 +1,43 @@
<?xml version="1.0"?>
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<metadata>
<id>Brackets</id>
<title>Brackets Code Editor</title>
<version>0.1.25.7701</version>
<authors>Adobe</authors>
<owners>Ethan J Brown</owners>
<summary>Brackets open-source code editor built with the web for the web - Milestone 25.</summary>
<description>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
Brackets is built using HTML, CSS and JavaScript. If you can code in Brackets, you can code on Brackets.
OPEN DEVELOPMENT WORKS
Brackets, is a fully open-source, community-driven project. Want to influence its direction? Join the developer list and start contributing.
TOOLS SHOULDN'T GET IN YOUR WAY
Rather than clutter your workspace with floating panels, toolbars and icons, Brackets focuses on providing “Quick Edit” in-line views that provide context-sensitive access to your content, without taking you away from your code.
WORKS WITH YOUR BROWSER
The browser is your design view. Brackets hooks up directly to the browser, allowing you to design and develop in the same environment that you deploy.
</description>
<projectUrl>http://brackets.io/</projectUrl>
<tags>editor web adobe javascript html css</tags>
<licenseUrl>https://github.com/adobe/brackets/blob/master/LICENSE</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://github.com/Iristyle/ChocolateyPackages/raw/master/Brackets/brackets_logo.png</iconUrl>
<releaseNotes>New Features In Sprint 25
* Extension Manager: From the toolbar icon or File > Extension Manager… you can view, search and remove installed extensions. To install new extensions, use the Install from URL… button in the Extension Manager.
* Delete Files/Folders: Files and folders can be deleted from the file tree using the context menu or File > Delete.
* Show in OS: Right click on a file or folder and choose Show in OS to open the location in Mac Finder or Windows Explorer.
* Refresh File Tree: Right-click on the file tree and choose Refresh to update the file list from disk.
* Live Preview Reliability: On all platforms, if Live Preview is disconnected, Brackets will show a notification. On Windows, launching and finding Chrome is now more reliable.
* JavaScript Code Intelligence Improvements: JavaScript Quick Edit now uses the Tern-based code intelligence engine for finding function definitions. Also, bug fixes and performance optimizations were made in JavaScript code hinting.
* Typing Performance: A substantial typing performance regression has been fixed.
</releaseNotes>
</metadata>
<files>
<file src="tools\**" target="tools" />
</files>
</package>

BIN
Brackets/brackets_logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -0,0 +1,17 @@
$package = 'Brackets'
try {
$params = @{
PackageName = $package;
FileType = 'msi';
SilentArgs = '/q';
Url = 'http://download.brackets.io/file.cfm?platform=WIN&build=25';
}
Install-ChocolateyPackage @params
Write-ChocolateySuccess $package
} catch {
Write-ChocolateyFailure $package "$($_.Exception.Message)"
throw
}

View File

@@ -0,0 +1,13 @@
$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
Write-ChocolateySuccess $package
} catch {
Write-ChocolateyFailure $package "$($_.Exception.Message)"
throw
}