-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Release notes: Sprint 14
-
Editor UI
- New 'Source Code Pro' Editor Font: Brackets now uses a new, open-source monospace web font from Adobe called Source Code Pro.
-
Build/Development Process
- Improved Development Workflow: It's now easier and less error-prone to point an official build of brackets-shell at your own brackets Git repo. See link for details.
- Version Info: Improved version numbering of official builds, including Git repo SHA. Version info can be accessed via the Help > About menu.
- More Modular Metadata: Application properties like icon and version number are now consolidated in a
package.json
file. See below for details.
-
Localization
- Norwegian translation added
- Spanish translation added
- French localization improved: both the application and installers are now fully localized in French.
- German localization updated & improved
-
Other Enhancements
- "Use Tab Characters" setting is remembered across launches
- Improved Quick Open sorting: better matches are shown at the top of the list
- New Help menu consolidating existing menu items, plus a link to the discussion forum
- Next/Previous Document navigation commands (Ctrl+Tab / Ctrl+Shift+Tab) are now visible in the Navigate menu
Full change logs: brackets and brackets-shell
- Code editor now uses a new, open-source monospace web font from Adobe called Source Code Pro.
- "Debug > Show Extensions Folder" and "Debug > Check for Updates" have moved to the new Help menu.
Quick Open search provider API - your search provider's itemFocus() and itemSelect() functions will now get passed the item returned by your search() function, not a DOM node as before. In addition, search() can now optionally return an object instead of a string (which is then passed to resultsFormatter(), itemFocus(), and itemSelect()). Combined, these changes make it easier to store metadata for each search result.
The QuickOpen module has several new helper APIs: stringMatch() and basicMatch() simplify creating a basic search provider.
See the pull request for an example of updating an existing search provider for these changes.
package.json metadata - a new src/package.json
file was introduced to capture metadata in a format compatible with NPM.
-
package.json
data can be accessed at runtime viabrackets.metadata
-
name
field is copied to thestrings
module asAPP_NAME
-
APP_NAME
string is substituted throughout the code base
-
-
package.json
config object allows forks of Brackets to customize some options including:-
about_icon
- Change thesrc
relative path to the about icon -
show_debug_menu
- Show/Hide the "Debug" menu -
enable_jslint
- Enable/Disable JSLint by default -
forum_url
- Specifies a URL in the Help menu
-
Help menu - use AppMenuBar.HELP_MENU
to add items to the new Help menu
- #1512: If you install Sprint 14 after having run Sprint 13 (and don't delete your prefs), the old Sprint 13 "Getting Started" project will show in your recent projects list (and will open by default if you left it open last time you quit Brackets). This has been fixed for future upgrades post-Sprint 14.
-
#1551: Changes within an extension (or a unit test) are not reflected by a simple "Debug > Reload Brackets." Workarounds:
- Quit and re-launch Brackets to pick up the changes.
- Open Developer Tools, click the gear icon in the lower-right, and select "Disable cache." This setting is remembered, but is only in effect so long as the Developer Tools browser tab remains open.
- 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.
- Debug > Show Developer Tools opens in a new tab in Chrome, rather than a new window in Brackets. This is a temporary(ish) change due to CEF3. But on the upside, CEF3's developer tools include many updated features!
- #1283: Text selection highlight sometimes jiggles when horizontally resizing window.
- #1473: Uninstalling on Windows sometimes does not remove the Start menu shortcut for Brackets.
- Mountain Lion (OS X 10.8) by default will not allow Brackets to run since it's not being 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.
- Norwegian translation (plus followup fixes) by Thomas Andersen
- Spanish translation by Chema Balsas
- Persist "Use Tab Characters" setting across launches by Dennis Kehrig
- Support escaped characters in CSS selectors (bug #391) by Chema Balsas
- Show next/previous document commands in menu by Justin ("twoquestions")
- Fix #1508: Root folders show nothing in recent projects list after the "-" by Rifat Nabi
- Code cleanup: use constants for numeric keycodes by Jochen Jochen Hagenstroem
- German translation updates & localization fixes (and) by J.M. ("mynetx")
- README typo fix by Antoine Lyset
For details on the bugs addressed, please refer to closed sprint 14 bugs. A few of the fixed bugs might not be caught by this search query, however.