-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Release Notes: Sprint 28
-
Extensions
- Extension Registry: Search for and install extensions directly within Brackets! Extension authors, upload your extensions to the new registry. More details below.
-
File Management
- New Untitled documents: File > New now instantly creates an untitled document. You are not prompted for a name/location until save.
-
Drag & Drop
- Drag file onto window to open: Dragging a file onto the Brackets window works the same as File > Open. (This functionality was previously working on Windows only).
- Drag folder onto window to switch projects: Dragging a folder onto the Brackets window works the same as File > Open Folder.
-
Stability
- The crash (blank UI) seen by several people while editing JS code should no longer occur. It was caused by a V8 bug that we have temporarily worked around; the actual V8 fix will get merged in the future (once we can update CEF safely).
- Overall UI
-
Research
- Investigate Windows titlebar restyling: Early investigation for changing to a compact, dark titlebar design on Windows.
Full change logs: brackets and brackets-shell
Extension Manager - The "Available" tab now lists all Brackets extensions, pulled from an online registry. You can browse or search the listing, and install any extension with one click. Read more...
New File - File > New now creates an untitled document (name and location aren't specified until the first time you save). The folder tree context menu's New File command continues to work as before (location is determined by what you right-clicked, name is given immediately). Both commands no longer default to a .js file extension.
New Folder - Has been removed from the File menu. Use the context menu in the folder tree to access New Folder.
Live Highlighting - This toggle has been moved from the File menu to the View menu.
Extension registry - To appear in the new Extension Manager listing, your extension must be uploaded to our new online extension registry. Be sure your extension includes a package.json file with the required fields (the upload site will validate this for you automatically).
Toolbar icons - Icons for the right-side toolbar should be exactly 24x24 pixels. See Extension Icon Guidelines for details.
Untitled Documents - You may encounter a new subclass of FileEntry
, InaccessibleFileEntry
, in two places: the value of Document.file
, or as an entry in the working set. The fullPath
can still be used as a key to retrieve the untitled Document (via getDocumentForPath()
/getOpenDocumentForPath()
), but it will not point to a real location on disk and any attempts at direct file I/O will fail (though the regular FILE_SAVE
command works). Use Document.isUntitled()
to check if a Document is untitled.
Working set events - "workingSetSort"
is now fired in all cases where the existing list items are reordered. There is no longer any need to listen for "workingSetDisableAutoSorting"
.
Inline editors - Quick Edit and Quick Docs providers may now specify a priority to override other providers, including the default providers in Brackets core. See new arguments to EditorManager.registerInlineEditProvider()
and registerInlineDocsProvider()
.
- This build does not support Mac OS 10.6 (Snow Leopard). We are hoping to restore 10.6 support very soon (see #4394).
- Mountain Lion (OS X 10.8) by default will not allow Brackets to run since it's not digitally signed yet. To work around this, right click the Brackets app and choose Open. You only need to do that once -- afterward, launching Brackets the normal way will work also.
- #2272: Windows Vista may not allow the Brackets installer to run (you may not see any error message). To work around this, right-click the installer file, choose Properties, and click the Unblock button.
- #3207: If you use a Sprint 21 or earlier build after using this build at least once, a few preferences such as Recent Projects may get reset. (You can back up your cache folder if you're concerned about this).
- #4362: Slow startup of Brackets and Live Preview on Windows due to Chrome proxy settings. See workaround https://support.google.com/chrome/answer/106010?hl=en.
- Debug > Run Tests is disabled in the installer/DMG distributions of Brackets, because the unit test code is not included. To run unit tests, pull Brackets from GitHub instead.
- If you use Brackets from the GitHub source, you should run
git submodule sync
before runninggit submodule update
. This ensures you have the correct versions of all submodules. - A new brackets-shell build is required for this sprint. Be sure to rerun
grunt setup
before building.
- Exclude obvious binary file types from Quick Open, Find in Files, etc. by Mikhail Shevchuk
- Enable toggle line/block comment in Groovy by Arturo Elias
- Enable basic syntax coloring for .NET files .aspx, .cshtml, .asax, .ashx, .config by Ricky Abell
- Enable syntax coloring for Python .wsgi files by Globex Designs
- Fix #4332: Locale-aware filename sorting in file tree by Tomás Malbrán
- Fix #4409: Sort order of "Untitled-NN" filenames should match OS by Tomás Malbrán
- Fix #4333: Paths containing "#" are mishandled by Arzhan "kai" Kinzhalin (Intel Corporation)
- Fix #2076: Simplify events fired when working set is reordered by Tomás Malbrán
- Fix #4390: Change dialog box message container from <p> to <div> by Hoshi Chigurh
- Fix #3985: Error messages related to New Folder say "file" instead of "folder" by Daniel Seymour
- Fix #4453: "{0}" appears in filename error dialog by Tomás Malbrán
- Remove File > New Folder menu item to avoid confusion (remains in context menu) by Daniel Seymour
- Move File > Live Highlight to View menu to avoid confusion by Hoshi Chigurh
- Cleanup: Refactor inline JS out of index.html by Maksim Lin
- Cleanup: Move JSLint into a submodule by Tomás Malbrán
- Readme improvements by Tom Byrer
- Linux setup changes for building brackets-shell by Tim Burgess
- Czech translation update by kvarel
- Brazilian Portuguese translation tweaks by Michael Lancaster
- Fix Turkish translation typo by Mahmut Bulut
For details on the bugs addressed, please refer to closed sprint 28 bugs. A few of the fixed bugs might not be caught by this search query, however.