-
Notifications
You must be signed in to change notification settings - Fork 278
Release Notes: Sprint 39
-
File Types
-
Customize file extension -> language/syntax mode mapping: Set
language.fileExtensions
orlanguage.fileNames
to a map object whose keys are file extensions/names and whose values are language IDs. See how to edit your preferences file. - Windows/Linux: Filter out binary files and unsupported encodings: Speeds up Find in Files for certain projects, and reduces clutter in the Quick Open file list. Attempting to open a non-UTF-8 file now results in an error instead of showing garbled text. (This was already implemented on other platforms).
-
Customize file extension -> language/syntax mode mapping: Set
-
CSS Editing
-
Fuzzy/camelCase code hints: Code hints now use smart string matching, similar to Quick Open and JS code hints -- for example, you can type "btr" to see an autocompletion hint for
border-top-right-radius
.
-
Fuzzy/camelCase code hints: Code hints now use smart string matching, similar to Quick Open and JS code hints -- for example, you can type "btr" to see an autocompletion hint for
- Code Editing
-
Extensions
- Extension update notifications: The Extension Manager toolbar icon turns green when one or more of your installed extensions have a new version available.
- Admin features for Extension Registry: (available since 4/17) An extension's author can delete the extension from the registry, mark the extension as incompatible with newer versions of Brackets, or transfer ownership to a different author.
-
Menus
- New Find menu added, simplifying Edit menu (see below)
- Linux: Long menus are scrollable instead of being cut off
-
Stability Improvements
- Fixed freezes/crashes some users encountered in projects using the Ionic framework
- Optional status bar indicator for internal errors: Enable via Debug > Show Errors in Status Bar.
- Localization
-
OS Support
- Windows XP is no longer officially supported by Brackets. It is still possible to download and install Brackets on Windows XP, but we will no longer test it - so future versions may become completely incompatible without warning.
- Ongoing Research (not implemented yet)
Full change logs: brackets and brackets-shell
Find menu added - All Find/Replace-related menu items have been moved from the Edit menu to a new Find top-level menu.
Non UTF-8 encodings - On Windows and Linux, earlier Brackets versions would open files with other encodings even though the file could not be displayed or saved correctly. Brackets now shows an error message and refuses to open the file, matching Mac versions of Brackets. (And the error message now specifically mentions the encoding).
URL code hints - When replacing path segments in an existing URL, the segments to the right of the cursor are preserved when you insert path code hints. When you insert a filename code hint, anything to the right is still overwritten as before, however.
Find commands - Find/Replace-related command ID constants (Commands.EDIT_FIND*
and a few others) have been deprecated: use Commands.CMD_FIND*
(and similar) instead. The raw ID string values have changed, so if you're using them instead of referencing the constants, your code will be broken immediately.
The menu item group constants Menus.MenuSection.EDIT_FIND_COMMANDS
/EDIT_REPLACE_COMMANDS
are deprecated: use Menus.MenuSection.FIND_FIND_COMMANDS
/FIND_REPLACE_COMMANDS
instead. Using the old constants will add your menu items to the end of the Edit menu.
XML/HTML tokens - The tokens emitted by CodeMirror for XML/HTML code have changed: the angle brackets around each tag are now split into separate tokens with the style "tag bracket"
. Extensions depending on the low-level CodeMirror token data may need an update (example).
Find menu - Use Menus.AppMenuBar.FIND_MENU
to add menu items to the new Find top-level menu.
LESS stylesheets - ExtensionUtils.loadStyleSheet()
now supports LESS files that use @import
.
DocumentManager - The "currentDocumentChange"
event now passes the old and new Documents as arguments (similar to "activeEditorChange"
).
- 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.
- #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.
- Extension update notifications by Martin Zagora
- Move Find items to new top-level Find menu by Lance Campbell
- Build script to generate Linux .tar.gz redistributable by Arron Washington
- Support extension LESS files that use @import (and) by Martin Zagora
- Optional status bar indicator for internal errors by Martin Zagora
- Show full stack trace in console for uncaught Node-side errors by Martin Zagora
- Fix #7283: Incorrect padding when line numbers turned off by Lance Campbell
- Add Croatian translation (and) by Kruno H
- Update CSS code hints for latest CSS Shapes (and) by Bem Jones-Bey
- Clear search filter when switching tabs in Extension Manager by Andrey Evstropov
- Fix About dialog to show more than 30 contributors again by Marcel Gerber (shows top 100 for new, pending larger fix next sprint)
- Fix AnimationUtils.animateUsingClass() to skip hidden elements by Martin Zagora
- Fix #6808: CSS timing editor labels positioned wrong with non-default font size by Marcel Gerber
- Fix #7396: Awkward slide-out animation when Replace bar has line-wrapped by Tomás Malbrán
- Add current and previous documents to "currentDocumentChange" event by Martin Zagora
- Fix new update notification URL for languages without translations by Marcel Gerber
- Fix bug with concurrent PromiseQueue instances by jayther
- Tweak update notification layout by Marcel Gerber
- Cleanup: Revert unneeded change to Resizer behavior by Martin Zagora
- Sort locales by display name (and) by Marcel Gerber
- Turkish translation update by Mahmut Bulut
- German translation update by Marc Bodmer
- German translation update by Marcel Gerber
- Brazilian Portuguese translation update by Henrique Aparecido Lavezzo
- Spanish translation update by Tomás Malbrán
- Italian translation update by Christopher Pecoraro
- Rename en-uk to en-gb by Martin Zagora
- Some submodules were updated this sprint. Run
git submodule update
to ensure your source tree is fully up to date. - A new brackets-shell build is only required for the new Windows binary-file detection (and minor bug fixes).
For details on the bugs addressed, please refer to closed sprint 39 bugs. Not all fixed bugs will be caught by this search query, however.