-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Release notes: sprint 23
-
Live Preview
- Highlight elements in browser from HTML code: While Live Preview is open, as you move the cursor around in an HTML file Brackets will highlight the corresponding element in the browser. Use "File > Live Highlight" to toggle this off.
-
Overall UI
- Toolbar redesign: The horizontal top toolbar has been replaced with a vertical side toolbar to make better use of precious vertical real estate. See below for details.
-
Code Editing
-
Code hints for HTML entities (for example
) - .sh code coloring
-
Code hints for HTML entities (for example
-
Search
- Quick Open performance: now more responsive on large projects
- Localization
Full change logs: brackets and brackets-shell
Toolbar - The white horizontal toolbar above the editor has been removed. Icons (such as the Live Preview lightning bolt) now appear in a vertical toolbar on the right. The current file name now appears in the window titlebar. This maximizes the vertical space available for viewing code. For more on the design direction Brackets is headed in, take look at this mockup.
Code Hints - Code hint providers are now registered to a list of language IDs rather than a list of CodeMirror modes. For some languages (like HTML and CSS) these strings are the same; for others, you must update your code (e.g. for JavaScript, use "javascript"
instead of "js"
).
Quick Open - The fileTypes
member of Quick Open plugins (passed to QuickOpen.addQuickOpenPlugin()
) is deprecated. Please migrate to languageIds
instead. For some languages, the language id is the same as the file extension; for others, you must update the string.
Toolbar Layout - Although extensions that add new toolbar icons generally still work with the new toolbar, several potential incompatibilities may arise:
- Dark colored icons may now be too hard to see
- Icon placement differs (previously, earlier in the DOM order meant further to the right, away from the default Brackets icons; now it means closer to the top, closer to the default icons)
- Extensions that add new horizontal toolbars need to be updated. Rather than inserting content inside or next to
#main-toolbar
, insert content above#editor-holder
. - Resizer's
forcepadding
option has been replaced withforceLeft
Languages - File extensions can now contain a dot to support conventions like ".mustache.html" or ".coffee.md".
- #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).
- 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.
- 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.
- Code hints for HTML entities (and) by Bernhard Sirlinger
- Polish translation by Rafal Borowski (plus fixes by niu tech)
- Czech translation by kvarel
- Migrate QuickOpen APIs and CSS inline editor implementation to new LangugeManager APIs by Bernhard Sirlinger
- Migrate CodeHintManager APIs to new LanguageManager APIs by Bernhard Sirlinger
- Fix #3253: Active line highlight doesn't disappear in unfocused editor by Tomás Malbrán
- Fix #3228: Code hints popup positioned wrong with non-default font size by Tomás Malbrán
- Maintain scroll position when adjusting font size by Tomás Malbrán
- Use more standard way to open Finder on Mac by Alex Zielenski
- Cleanup: refactor JSLint into a default extension (and) by Tomás Malbrán
- Cleanup: Recent Projects code by Tomás Malbrán
- Cleanup: only Live Preview server provider should check file extension by Jonathan Rowny
- Fix #3271: Expose constants for Resizer APIs by Bernhard Sirlinger
- Unit tests for editor options: highlight active line, word wrap, auto-close braces, hide line numbers by Tomás Malbrán
- German translation update by Ben Schley
- Spanish translation update by Chema Balsas
- Chinese translation update by yodfz
- Fix elipses char in strings by Bernhard Sirlinger
- Add Brackets license to package.json by Lee Leathers
Contributions to CodeMirror:
Other:
- Dropzone: Make Dropzone message clickable
For details on the bugs addressed, please refer to closed sprint 23 bugs. A few of the fixed bugs might not be caught by this search query, however.