-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Release Notes: Sprint 33
This document will not be finalized until the end of Sprint 33 -- approximately October 29.
-
Quick Edit
- Create new CSS rules via Quick Edit: In HTML files, click the new "New Rule" button in the Quick Edit inline editor to create a new CSS rule based on the tag/class/id your cursor was on. Fully keyboard accessible using Cmd/Ctrl-Alt-N. The inline editor now appears even when no existing rules match the search, so you can easily create new CSS rules at any time.
-
Visually edit CSS transition timing function Bezier curves: Just invoke Quick Edit when your cursor is on any
cubic-bezier()
,linear
,ease
,ease-in
,ease-out
, orease-in-out
functions in a CSS rule!
-
Images
- Preview image files: Select in image in the file tree (or via Quick Open) to see a preview in the editor area.
-
Overall UI
- Dark themed window chrome on Mac: Similar to the update on Windows in Sprint 31.
-
Files and Folders
- Close Others [Above/Below] in Working Files context menu: Quickly close batches of files with these three new commands.
- Localization
Full change logs: brackets and brackets-shell
Dark-themed window chrome on Mac - the Mac shell now has a dark window chrome that visually complements the Brackets UI. (The Windows shell received a similar update in Sprint 31).
Dialogs - Modal Dialogs are now auto-centered both horizontally and vertically over the Brackets Window.
Lo-Dash - added as a third-party dependency. The following conversions and deprecations were made:
- Converted
Array.slice(0)
to_.clone()
- Converted
Async.whenIdle
to_.debounce
. - Converted
NumberUtils.getRandomNumber()
to_.random
and removedNumberUtils.js
- Converted
StringUtils.htmlEscape
to._escape
and deprecated it. - Converted
CollectionUtils.indexOf
to_.findIndex
and deprecated it. - Converted
CollectionUtils.forEach
to_.forEach
and deprecated it. - Converted
CollectionUtils.some
to_.some
and deprecated it. - Converted
CollectionUtils.hasProperty
to_.has
and deprecated it.
Functions are deprecated by adding a @deprecated
annotation, and by replacing their implementation with the corresponding Lo-Dash function and a console.warn
message.
Image files - The Preview Images Spec describes the API changes for the new Preview Images feature.
Inline editors - TODO: automatically-created close button; InlineTextEditor.editors
removal
Files - usage of trailing-"/" was cleaned up.
The "canonical" folder path format used in DirectoryEntry.fullPath
includes a trailing "/". However, we have some Brackets code that requires or generates paths in the opposite format. Several of those cases were cleaned up:
- Renamed
FileUtils.canonicalizeFolderPath()
tostripTrailingSlash()
since it actually makes paths not canonical. Old API was deprecated since it's still used by several extensions. - Added warning to docs for these APIs that return non-canonical paths:
FileUtils.getNativeBracketsDirectoryPath()
andFileUtils.getNativeModuleDirectoryPath()
. - Documented that
ProjectManager._loadProject()
andopenProject()
support receiving non-canonical paths - Fixed several
ProjectManager
APIs that used to return and/or receive non-canonical paths:getInitialProjectPath()
,_getWelcomeProjectPath()
, andupdateWelcomeProjectPath()
. No extensions were found that use these APIs.
Lo-Dash - utility library is now available in Brackets.
Closing files - TODO: new DocumentCommandHandlers API for closing multiple files in a batch
- 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.
- #4362: Slow startup of Brackets and Live Preview on Windows due to Chrome proxy settings. See workaround.
- 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.
- Updated german translation by SAPlayer
- German translation of samples by SAPlayer
- Spanish strings for Sprint 33 by jbalsas
- Finnish translation fixes, more fixes by jukkah
- Start live development if there is no open file by SAPlayer
- Added Serbian translation by Gocilla Fix sv Node translation by micole
- css quick edit blank line number by thehogfather
- Clicking project-dropdown-toggle again closes the dropdown by SAPlayer
- Recent Projects - Pressing delete key removes project from list by sandeepjain
- Fix wrong path of Getting Started directory in Polish version by mateuszgachowski
- remove all menu items and dividers prior to removing menu by lkcampbell
- Provide i18n for InlineBezierCurveEditor by SAPlayer
- Change not.toBeNull() to toBeTruthy() in unit tests by gmeluski
- Fix URL hints not showing by WebsiteDeveloper
- Update 'de' locale by mynetx
- czech language by kvarel
- Fix: Quick View popup closes & reopens... by SAPlayer
- Standardize the format of nls files by SAPlayer
- Fix layout issue by WebsiteDeveloper
- Removed all references to CodeHintManager from Editor by WebsiteDeveloper
- Find in Files - No result by cosmosgenius
- Inline Editor Close Button by VizuaaLOG
- Remove preferences migration code by WebsiteDeveloper
- Fix Tests for non English locales by WebsiteDeveloper
- A new brackets-shell build is required for this sprint (due to new CEF libraries, Dark Shell changes on Mac and Win). Be sure to rerun
grunt setup
before building. - Some submodules were updated this sprint. Run
git submodule update
to ensure your source tree is fully up to date.
For details on the bugs addressed, please refer to closed sprint 33 bugs. A few of the fixed bugs might not be caught by this search query, however.