From aeae79e4ef912dc8ce752aec09dbbb412e03b768 Mon Sep 17 00:00:00 2001 From: Jason San Jose Date: Fri, 23 Aug 2013 13:49:13 -0700 Subject: [PATCH 1/7] sprint 30 draft --- updates/stable/en.json | 41 +++++++++++++++++++++++++++++++++++++++-- 1 file changed, 39 insertions(+), 2 deletions(-) diff --git a/updates/stable/en.json b/updates/stable/en.json index d417e10..70d4708 100644 --- a/updates/stable/en.json +++ b/updates/stable/en.json @@ -1,6 +1,43 @@ [ { - "buildNumber": 8665, + "buildNumber": 8848, + "versionString": "Sprint 30", + "dateString": "08-29-2013", + "releaseNotesURL": "https://github.com/adobe/brackets/wiki/Release-Notes:-Sprint-30", + "downloadURL": "http://download.brackets.io", + "newFeatures": [ + { + "name": "HTML Editing in Live Preview", + "description": "While in Live Preview, edits to HTML are immediately reflected in the the browser." + }, + { + "name": "OS X 10.6 Support", + "description": "Brackets will no longer crash on launch when running on Mac OS X 10.6.x." + }, + { + "name": "Linux Updates", + "description": "File delete, Extension Manager and HTML Highlighting in Live Preview are now enabled. Also, we've fixed several bugs when installing the debian package." + }, + { + "name": "CSS Regions Named Flow Code Hints", + "description": "Named Flows for CSS regions will now appear in code hints for flow-into and flow-from properties." + }, + { + "name": "\"Open With\u2026\" support for Windows Explorer", + "description": "Brackets is now displayed in the \"Open With\u2026\" Windows Explorer context menu for supported file types." + }, + { + "name": "Theseus Extension Update", + "description": "All users of the Theseus extension must update due to a break in compatibility. Also, Brackets developers can now use the Theseus to debug an instance of Brackets." + }, + { + "name": "Updated Translations", + "description": "The French, Japanese, German, and Turkish translations have been updated." + } + ] + }, + { + "buildNumber": 8678, "versionString": "Sprint 29", "dateString": "08-09-2013", "releaseNotesURL": "https://github.com/adobe/brackets/wiki/Release-Notes:-Sprint-29", @@ -19,7 +56,7 @@ "description": "Brackets is now displayed in the \"Open With\u2026\" Finder context menu for supported file types." }, { - "name": "New Finnish Support and Update Translations", + "name": "New Finnish Support and Updated Translations", "description": "A new Finnish translation has been created for Brackets. The French, Japanese, Czech, German, and Swedish translations have been updated." } ] From 0375669134fa0210b4bb8c81a762bf3a71d70338 Mon Sep 17 00:00:00 2001 From: Jason San Jose Date: Fri, 23 Aug 2013 14:51:03 -0700 Subject: [PATCH 2/7] review comments from @pflynn --- updates/stable/en.json | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/updates/stable/en.json b/updates/stable/en.json index 70d4708..5295f6c 100644 --- a/updates/stable/en.json +++ b/updates/stable/en.json @@ -11,23 +11,19 @@ "description": "While in Live Preview, edits to HTML are immediately reflected in the the browser." }, { - "name": "OS X 10.6 Support", + "name": "OS X 10.6 Support Restored", "description": "Brackets will no longer crash on launch when running on Mac OS X 10.6.x." }, { - "name": "Linux Updates", - "description": "File delete, Extension Manager and HTML Highlighting in Live Preview are now enabled. Also, we've fixed several bugs when installing the debian package." + "name": "Linux Preview Improvements & Fixes", + "description": "File delete, Extension Manager and HTML Highlighting in Live Preview are now enabled. Also, we've fixed several bugs when installing the Debian package." }, { "name": "CSS Regions Named Flow Code Hints", "description": "Named Flows for CSS regions will now appear in code hints for flow-into and flow-from properties." }, { - "name": "\"Open With\u2026\" support for Windows Explorer", - "description": "Brackets is now displayed in the \"Open With\u2026\" Windows Explorer context menu for supported file types." - }, - { - "name": "Theseus Extension Update", + "name": "Note: Theseus Extension Update Required", "description": "All users of the Theseus extension must update due to a break in compatibility. Also, Brackets developers can now use the Theseus to debug an instance of Brackets." }, { From ab1da569426fb5efd8450763a8e01e19678f31d8 Mon Sep 17 00:00:00 2001 From: Jason San Jose Date: Fri, 23 Aug 2013 15:46:05 -0700 Subject: [PATCH 3/7] change html live preview to 'live html editing' --- updates/stable/en.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/updates/stable/en.json b/updates/stable/en.json index 5295f6c..8fb719b 100644 --- a/updates/stable/en.json +++ b/updates/stable/en.json @@ -7,7 +7,7 @@ "downloadURL": "http://download.brackets.io", "newFeatures": [ { - "name": "HTML Editing in Live Preview", + "name": "Live HTML Editing", "description": "While in Live Preview, edits to HTML are immediately reflected in the the browser." }, { From 11cf02e4c4dba1caaf6ac8254f0f9db979614cb0 Mon Sep 17 00:00:00 2001 From: Jason San Jose Date: Mon, 26 Aug 2013 08:42:39 -0700 Subject: [PATCH 4/7] add function parameter hints --- updates/stable/en.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/updates/stable/en.json b/updates/stable/en.json index 8fb719b..d9c1bd2 100644 --- a/updates/stable/en.json +++ b/updates/stable/en.json @@ -1,6 +1,6 @@ [ { - "buildNumber": 8848, + "buildNumber": 8873, "versionString": "Sprint 30", "dateString": "08-29-2013", "releaseNotesURL": "https://github.com/adobe/brackets/wiki/Release-Notes:-Sprint-30", @@ -22,6 +22,10 @@ "name": "CSS Regions Named Flow Code Hints", "description": "Named Flows for CSS regions will now appear in code hints for flow-into and flow-from properties." }, + { + "name": "Function Parameter Hints", + "description": "Hints appear automatically when you first type inside parentheses, or when invoked manually with Ctrl+Shift+Space." + }, { "name": "Note: Theseus Extension Update Required", "description": "All users of the Theseus extension must update due to a break in compatibility. Also, Brackets developers can now use the Theseus to debug an instance of Brackets." From c9dcea1929d7e278cf845f63f5b56173537b6cd5 Mon Sep 17 00:00:00 2001 From: Jason San Jose Date: Mon, 26 Aug 2013 13:08:47 -0700 Subject: [PATCH 5/7] add replace all --- updates/stable/en.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/updates/stable/en.json b/updates/stable/en.json index d9c1bd2..d8d9935 100644 --- a/updates/stable/en.json +++ b/updates/stable/en.json @@ -26,6 +26,10 @@ "name": "Function Parameter Hints", "description": "Hints appear automatically when you first type inside parentheses, or when invoked manually with Ctrl+Shift+Space." }, + { + "name": "Replace All", + "description": "Replace All displays a panel showing all occurrences that will be replaced. Users can optionally remove one or more occurrences from the list." + }, { "name": "Note: Theseus Extension Update Required", "description": "All users of the Theseus extension must update due to a break in compatibility. Also, Brackets developers can now use the Theseus to debug an instance of Brackets." From 0bd39f838179b231f9ba9dfb5f9529679c6d63d8 Mon Sep 17 00:00:00 2001 From: Jason San Jose Date: Mon, 26 Aug 2013 13:20:06 -0700 Subject: [PATCH 6/7] review comments --- updates/stable/en.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/updates/stable/en.json b/updates/stable/en.json index d8d9935..ad0dd6f 100644 --- a/updates/stable/en.json +++ b/updates/stable/en.json @@ -27,8 +27,8 @@ "description": "Hints appear automatically when you first type inside parentheses, or when invoked manually with Ctrl+Shift+Space." }, { - "name": "Replace All", - "description": "Replace All displays a panel showing all occurrences that will be replaced. Users can optionally remove one or more occurrences from the list." + "name": "Improved Replace All", + "description": "Replace All displays a panel showing all occurrences that will be replaced. You can review and uncheck any occurrences you don't want to replace." }, { "name": "Note: Theseus Extension Update Required", From 687e42941943d66d8fc0ff7b8218a8a8bb9993ea Mon Sep 17 00:00:00 2001 From: Jason San Jose Date: Mon, 26 Aug 2013 16:54:52 -0700 Subject: [PATCH 7/7] remove improved for replace all --- updates/stable/en.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/updates/stable/en.json b/updates/stable/en.json index ad0dd6f..8c8b2f5 100644 --- a/updates/stable/en.json +++ b/updates/stable/en.json @@ -27,7 +27,7 @@ "description": "Hints appear automatically when you first type inside parentheses, or when invoked manually with Ctrl+Shift+Space." }, { - "name": "Improved Replace All", + "name": "Replace All", "description": "Replace All displays a panel showing all occurrences that will be replaced. You can review and uncheck any occurrences you don't want to replace." }, {