Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit 1f818c9

Browse files
committed
Merge remote-tracking branch 'origin/master' into pflynn/in-browser-file-system
* origin/master: (180 commits) Update to release 1.3 FR and JP translation fix for index.html file Fix unit test that broke due to a side fix in PR #10413, and enhance tests to verify that search tickmarks are rendered. Only print deprecation warnings for $().on/off() on EventDispatchers once per caller, like other such warnings. Move $() shim into brackets.js normal startup code, since there's no longer any core code that could hit it (only extensions). Fix memory leak in ExtensionManagerViewModel Don't adjust selection if rename fails. Add unit tests for these cases. Fixed typos in docs Update the selected file if a renamed folder is a prefix of the path Use command instead of private method. German Translation Update jQuery -> 2.1.3 Fix for ImageView bug 5960 & 10180 Update README.md Update README.md Update translation Update strings.js Update urls.js Get rid of deprecated calls in LiveDevMultiBrowser Add missing attribute Fixing UX issue of inactive panel getting too dim to read text for dark themes. ...
2 parents e2c0e8e + 27a6b79 commit 1f818c9

File tree

117 files changed

+7073
-2276
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+7073
-2276
lines changed

.brackets.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@
88
"es5": true
99
},
1010
"defaultExtension": "js",
11+
"language": {
12+
"javascript": {
13+
"linting.prefer": ["JSLint", "JSHint"],
14+
"linting.usePreferredOnly": true
15+
}
16+
},
1117
"path": {
1218
"src/thirdparty/CodeMirror2/**/*.js": {
1319
"spaceUnits": 2,
@@ -20,4 +26,4 @@
2026
},
2127
"spaceUnits": 4,
2228
"useTabChar": false
23-
}
29+
}

Gruntfile.js

Lines changed: 19 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
/*
22
* Copyright (c) 2013 Adobe Systems Incorporated. All rights reserved.
3-
*
3+
*
44
* Permission is hereby granted, free of charge, to any person obtaining a
5-
* copy of this software and associated documentation files (the "Software"),
6-
* to deal in the Software without restriction, including without limitation
7-
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
8-
* and/or sell copies of the Software, and to permit persons to whom the
5+
* copy of this software and associated documentation files (the "Software"),
6+
* to deal in the Software without restriction, including without limitation
7+
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
8+
* and/or sell copies of the Software, and to permit persons to whom the
99
* Software is furnished to do so, subject to the following conditions:
10-
*
10+
*
1111
* The above copyright notice and this permission notice shall be included in
1212
* all copies or substantial portions of the Software.
13-
*
13+
*
1414
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15-
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1616
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17-
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18-
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19-
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
17+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
2020
* DEALINGS IN THE SOFTWARE.
21-
*
21+
*
2222
*/
2323
/*global module, require*/
2424
module.exports = function (grunt) {
@@ -27,7 +27,7 @@ module.exports = function (grunt) {
2727
// load dependencies
2828
require('load-grunt-tasks')(grunt, {pattern: ['grunt-contrib-*', 'grunt-targethtml', 'grunt-usemin']});
2929
grunt.loadTasks('tasks');
30-
30+
3131
// Project configuration.
3232
grunt.initConfig({
3333
pkg : grunt.file.readJSON("package.json"),
@@ -59,7 +59,9 @@ module.exports = function (grunt) {
5959
'xorigin.js',
6060
'dependencies.js',
6161
'thirdparty/requirejs/require.js',
62-
'LiveDevelopment/launch.html'
62+
'LiveDevelopment/launch.html',
63+
'LiveDevelopment/MultiBrowserImpl/transports/**',
64+
'LiveDevelopment/MultiBrowserImpl/launchers/**'
6365
]
6466
},
6567
/* node domains are not minified and must be copied to dist */
@@ -127,7 +129,7 @@ module.exports = function (grunt) {
127129
baseUrl: 'src',
128130
optimize: 'uglify2',
129131
// brackets.js should not be loaded until after polyfills defined in "utils/Compatibility"
130-
// so explicitly include it in main.js
132+
// so explicitly include it in main.js
131133
include: ["utils/Compatibility", "brackets"],
132134
// TODO: Figure out how to make sourcemaps work with grunt-usemin
133135
// https://github.com/yeoman/grunt-usemin/issues/30
@@ -250,7 +252,7 @@ module.exports = function (grunt) {
250252
/* Keep in sync with test/SpecRunner.html dependencies */
251253
vendor : [
252254
'test/polyfills.js', /* For reference to why this polyfill is needed see Issue #7951. The need for this should go away once the version of phantomjs gets upgraded to 2.0 */
253-
'src/thirdparty/jquery-2.1.1.min.js',
255+
'src/thirdparty/jquery-2.1.3.min.js',
254256
'src/thirdparty/CodeMirror2/lib/codemirror.js',
255257
'src/thirdparty/CodeMirror2/lib/util/dialog.js',
256258
'src/thirdparty/CodeMirror2/lib/util/searchcursor.js',
@@ -302,7 +304,7 @@ module.exports = function (grunt) {
302304
linux: "<%= shell.repo %>/installer/linux/debian/package-root/opt/brackets/brackets"
303305
}
304306
});
305-
307+
306308
// task: install
307309
grunt.registerTask('install', ['write-config', 'less']);
308310

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2012-2014 Adobe Systems Incorporated. All rights reserved.
1+
Copyright (c) 2012-2015 Adobe Systems Incorporated. All rights reserved.
22

33
Permission is hereby granted, free of charge, to any person obtaining a
44
copy of this software and associated documentation files (the "Software"),

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ Not sure you needed the exclamation point there, but we like your enthusiasm.
107107
(starting from "Development") list the features that we're currently working on.
108108
"Ready" shows what we'll be working on next.
109109
* Watch our [GitHub activity stream](https://github.com/adobe/brackets/pulse).
110+
* Watch our [Waffle Kanban board](https://waffle.io/adobe/brackets): Work items in [![Stories in Ready](https://badge.waffle.io/adobe/brackets.svg?label=ready&title=Ready)](http://waffle.io/adobe/brackets) are next. The entire development process is outlined in the [Developer Guide](https://github.com/adobe/brackets/wiki/Brackets-Developers-Guide).
110111

111112
#### Contact info
112113

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Brackets",
3-
"version": "1.1.0-0",
4-
"apiVersion": "1.1.0",
3+
"version": "1.3.0-0",
4+
"apiVersion": "1.3.0",
55
"homepage": "http://brackets.io",
66
"issues": {
77
"url": "http://github.com/adobe/brackets/issues"
@@ -17,7 +17,7 @@
1717
"jasmine-node": "1.11.0",
1818
"grunt-jasmine-node": "0.1.0",
1919
"grunt-cli": "0.1.9",
20-
"phantomjs": "1.9.11",
20+
"phantomjs": "1.9.13",
2121
"grunt-lib-phantomjs": "0.3.0",
2222
"grunt-contrib-jshint": "0.6.0",
2323
"grunt-contrib-watch": "0.4.3",
@@ -49,4 +49,4 @@
4949
"url": "https://github.com/adobe/brackets/blob/master/LICENSE"
5050
}
5151
]
52-
}
52+
}

samples/de/Erste Schritte/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ <h2>Dies ist Ihre Anleitung!</h2>
3030
<em>Brackets ist eine andere Art Editor.</em>
3131
Brackets hat ein paar einzigartige Features wie Schnelles Bearbeiten, Live-Vorschau und zahlreiche
3232
weitere, die Sie in anderen Editoren vergeblich suchen werden. Zudem ist Brackets in JavaScript, HTML
33-
und CSS geschrieben. Das heißt, dass die meisten Brackets-Nutzer dazu in der Lage sind, den Editor
34-
selbst zu verändern und erweitern. Tatsächlich nutzen wir Brackets täglich, um Brackets zu verbessern.
33+
und CSS geschrieben. Das heißt, dass die meisten Brackets-Nutzer dazu in der Lage sind, den Editor selbst
34+
zu verändern und zu erweitern. Tatsächlich nutzen wir Brackets täglich, um Brackets zu verbessern.
3535
Lesen Sie weiter, um mehr über die Nutzung der Hauptfeatures zu erfahren.
3636

3737
</p>

0 commit comments

Comments
 (0)