-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Release Notes: Sprint 22
-
Extensions
- Install extension from URL easily: Use File > Install Extensions to install from a URL pointing to a ZIP file or GitHub repo.
-
Code Editing
- Word wrap: Use View > Enable Word Wrap menu to toggle (enabled by default).
-
Auto close braces: Use Edit > Auto Close Braces to enable automatically inserting closing
)
]
}
"
'
characters (disabled by default). - Highlight active line: Use View > Show Active Line menu to highlight the line the cursor is currently on (disabled by default).
- Improved word-by-word navigation: Moving the cursor with Ctrl+Left/Right arrows (Windows) or Alt+Left/Right arrows (Mac) now behaves more like other modern editors.
- Scroll up/down via keyboard: Use Ctrl+Up/Down arrows on Windows; Ctrl+Alt+Up/Down arrows on Mac to scroll the view one line at a time
- Hide line numbers: Use the View > Show Line Numbers menu to toggle (still visible by default).
- Fixed several issues with scroll position jiggling or getting lost
-
Live Development
- Improved reliability: The connection to Chrome is more reliable and errors are displayed more clearly.
- Localization
Full change logs: brackets and brackets-shell
Editor indentation - Editor.getIndentUnit()
/setIndentUnit()
are replaced by Editor.getSpaceUnits()
/setSpaceUnits()
. They mean the same thing but are now more properly decoupled from tab size settings (see #3209).
LanguageManager -
- Programming languages can now also be associated with specific extensionless file names (e.g. "Makefile") via the new
fileNames
property onLanguageManager.defineLanguage()
. - Extensions can associate file names and file extensions with existing languages that are already defined, via
Language.addFileExtension()
and.addFileName()
. - A language can now declare multiple line comment styles (for example, Clojure supports both
;
and;;
).
Preferences storage keys - PreferencesManager.getPreferenceStorage()
can now accept a module object and automatically generate a storage id based on it. Use PreferencesManager.handleClientIdChange()
to migrate preferences from an old storage key to a new one.
LiveDevelopment - Extensions can force a page reload by using Inspector.Page.reload()
coupled with LiveDevelopment.reconnect()
, which is now public.
- #3241: When deleting large blocks of text at the bottom of a document, parts of the editor may go blank. Resize the window or switch documents to repaint the view.
- #3207: If you use an earlier build of Brackets (e.g. Sprint 20) 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.
- Scroll up/down via keyboard by Tomás Malbrán
- Auto Close Braces option (disabled by default) (and) by Tomás Malbrán
- Support multiple line comment styles per language by Tomás Malbrán
- Assign language modes to extensionless filenames like 'Makefile' by Mark Murphy
- Remember font size between sessions by Lance Campbell
- Simplified Chinese translation (zh-CN) (and) by yodfz
- Fix #3100: Tab & Spaces settings can interact in an unexpected way by Tomás Malbrán
- Fix #2878: Toggling folder tree node steals focus from editor by Bernhard Sirlinger
- Fix #1863: When no space before "{", Go to Definition doesn't select last char of selector by Bernhard Sirlinger
- Fix #3013: Permit uppercase letters in http:/https: in project settings by Bernhard Sirlinger
- Fix #2306: Hard to delete multiple Recent Projects items in succession by Chema Balsas
- Fix #3032: Restore console warnings for key binding collisions by Bernhard Sirlinger
- Fix #3030: Error thrown when disabled command's keyboard shortcut pressed by Bernhard Sirlinger
- Fix #2645: Folder tree "loading" message (rare) wasn't localized by Bernhard Sirlinger
- Expose LiveDevelopment.reconnect() API by Jon Rowny
- Allow KeyBindingManager APIs to take a Command object by Lance Campbell
- Clean up preference storage ids by Bernhard Sirlinger (with help from Tomás Malbrán)
- Cleanup: Remove unneeded Editor -> EditorManager dependencies by Bernhard Sirlinger
- Cleanup: Consistently use Array./CollectionUtils.forEach() instead of $.each by Tomás Malbrán
- Spanish translation update by Chema Balsas
- Italian translation update by antonellopasella
- German mistranslation fix by Markus Siemens
Contributions to CodeMirror:
For details on the bugs addressed, please refer to closed sprint 22 bugs. A few of the fixed bugs might not be caught by this search query, however.