-
Notifications
You must be signed in to change notification settings - Fork 278
Release Notes: Sprint 24
-
Visual Editing
- Quick View for colors, gradients, images: Hover over code to see a popup preview
- Quick Docs for CSS: Press Ctrl+K/⌘K on a CSS property to see inline documentation from WebPlatform.org.
-
Code Editing
- Supercharged JavaScript code hints: Greatly improved code hints based on Tern type inferencing. Increased code hinting accuracy, camelCase support and built-in intelligence for RequireJS and jQuery. Code hints even for items declared in other files!
- Jump to Definition: Locate a function or property definition anywhere in your project, instantly.
-
Function argument / signature hints: Press Ctrl+Space inside a function call's
()
s to see information on its arguments and their types. - Insert line above / below current line: Press Ctrl+Enter/⌘+Enter or Ctrl+Shift+Enter/⌘+Shift+Enter to insert a blank line below or above the current line, respectively.
- Overall UI
Full change logs: brackets and brackets-shell
Go to Definition renamed to Quick Find Definition - This helps to distinguish it more clearly from the new "Jump to Definition" command:
- Jump to Definition - searches across all files based on the identifier at the cursor position.
- Quick Find Definition - searches within the current file for the identifier you type in the quick search bar.
Project panel / folder tree - In addition to the aesthetic changes, "Project Settings..." has been removed from the recent projects dropdown menu. It remains accessible via the File menu. For more on the design direction Brackets is headed in, take look at this mockup.
Install Extension shortcuts - New toolbar icon provides quicker access to the Install Extension command, and the Install Extension dialog box contains a link to the extensions listing page.
No known breaking changes to existing APIs.
Quick Docs - To register an additional inline docs provider, use EditorManager.registerInlineDocsProvider()
. Similar to inline editors (Quick Edit), Quick Docs providers are "winner take all": if two providers are both willing to respond for a given cursor position, the first one registered is shown and the other is completely ignored. To be a good citizen, your provider should be as narrowly tailored as is reasonably possible.
- #3709: Using JavaScript code hints inside inline editors can lead to code getting inserted twice in the document.
-
#3458: Quick View does not yet support the latest CSS gradient syntax (using
to
keyword, unprefixedradial-gradient
,repeating-linear-gradient
orrepeating-radial-gradient
). - #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.
- #3570: Mac only - Quick View popover may not appear after resizing window or going fullscreen. Move the mouse to the top of the screen to fix.
- Insert line above/below shortcuts by Alessandro Di Martino
- Inline color editor: support percentage RGB colors by Dennis Kehrig
- Highlight .tpl/.twig files (as plain HTML) by niu tech
- Fix #3130: Move line up/down has incorrect behavior in edge cases in inline editor by Tom Malbrán
- Fix #3466: Brackets hangs if floating-point value entered for Tab/Spaces size by Tom Malbrán
- Fix #3440: Working set does not re-sort when automatic sort is turned on by Tom Malbrán
- Fix #1570: Quick Edit should work on closing tag by Bernhard Sirlinger
- Fix #3323: Reopening same folder closes all files by Bernhard Sirlinger
- Fix #2641: Input field goes blank if F2 pressed a second time by Tom Malbrán
- Fix #3041: Shortcuts using "-" are shown as "+" on Windows by Bernhard Sirlinger
- Add CollectionUtils.some() to allow breaking out of iteration by Tom Malbrán
- German translation update (and) by mynetx
- Spanish translation update by Chema Balsas
- Add YouTube link to README by drdamour
For details on the bugs addressed, please refer to closed sprint 24 bugs. A few of the fixed bugs might not be caught by this search query, however.