-
Notifications
You must be signed in to change notification settings - Fork 0
Release Notes: 1.1
This document will not be finalized until the end of Release 1.1 -- approximately December 17.
-
Early Access
-
Cross-browser Live Preview with Dev Tools: Although disabled by default, you can try out this brand-new version of Live Preview by enabling the
livedev.multibrowserpreference. The new Live Preview opens in your default browser, but you can paste the URL into other browsers and they'll all update at the same time. And you can use the browser's dev tools without interrupting Live Preview. Does not currently support pages that use your own custom server. - Windows High DPI support: To enable, right-click the app icon and select "Disable display scaling on high DPI settings" in the Compatibility tab. (The window controls in the upper right do not rescale yet, however).
-
Cross-browser Live Preview with Dev Tools: Although disabled by default, you can try out this brand-new version of Live Preview by enabling the
-
Localization
- Allow typing accent characters with AltGr: Brackets shortcuts that use Ctrl+Alt no longer supercede typing letter keys via AltGr.
- Translation updates for: Chinese (Simplified), Dutch, Finnish, German, Italian, Korean, Persian-Farsi, Spanish, Ukrainian
-
Preferences
- Select enabled code linters via preferences: For example, different projects can use a different set of linters.
-
Programming language-specific preferences: Use the new
"language"layer to set preferences based on file type, in addition to the path-specific or global preferences possible previously. Read more.
- Quick Docs
-
Stability & Performance
- New event dispatching system: Brackets core objects use a new event-listener API that protects against misbehaved extensions. See below for details.
-
Improved typing performance while code hints open: Brackets limits the displayed list of code hints to 50 entries to improve performance. To override this limit, set the
"maxCodeHints"preference. - Improved performance when lots of files are changing in the background, such as large source-control checkouts or complex Grunt build scripts.
Full change logs: brackets and brackets-shell
Brackets now shows the project name in the title bar after the current filename (inside parentheses).
The menu item Navigate > Go to First Error/Warning has been renamed to Go to First Problem.
Event listeners - Instead of using jQuery events, Brackets core modules and model objects now provide their own simpler on()/off() event listener API. (For DOM objects, continue to use jQuery events). When the legacy $().on()/off() APIs are used on objects that support the new API, they automatically call the new API instead. The new API is more robust to listeners that throw exceptions, uses less memory, and is easier to debug.
Related changes:
- Editor's
"keyEvent"event is deprecated. Use the more specific events"keyup","keypress", or"keydown"instead. (However, in most cases you should use Document's"change"event instead of any of the Editor events). - NodeConnection events now only use
:separators - the deprecated.separators (which conflict with the more standard use of.as an event-listener namespace) are no longer supported.
Chromium version - Updated from Chromium 29 to 39.
Developer tools - Debug > Show Developer Tools now opens a Brackets window instead of a tab in your browser. If Brackets gets badly hosed, you can still open dev tools in the browser by manually visiting http://localhost:9234/.
TODO
- Activity Monitor in Mavericks (OS X 10.9) says the Brackets Helper process is "Not Responding" even when it's working normally (#5794). You can safely ignore this unless Brackets is actually failing to respond when you click or type text.
- 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.
TODO
- A new brackets-shell build is required for this sprint.
- If you build brackets-shell yourself, you must re-run
grunt setupbefore building (due to the CEF update).
- If you build brackets-shell yourself, you must re-run
- A submodule URL was changed this sprint. Run
git submodule syncand thengit submodule update --init --recursiveto ensure your local source tree reflects the update.
For details on the bugs addressed, please refer to closed Release 1.1 bugs. Not all fixed bugs will be caught by this search query, however.