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

Commit 9c7eb85

Browse files
committed
Merge branch 'master' into ingo/fix-7752
2 parents 4d489ce + b713134 commit 9c7eb85

File tree

8 files changed

+225
-88
lines changed

8 files changed

+225
-88
lines changed

Gruntfile.js

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ module.exports = function (grunt) {
2929
resolve = common.resolve,
3030
platform = common.platform(),
3131
staging;
32-
32+
3333
if (platform === "mac") {
3434
staging = "installer/mac/staging/<%= build.name %>.app/Contents";
3535
} else if (platform === "win") {
@@ -46,11 +46,11 @@ module.exports = function (grunt) {
4646
/* linux */
4747
"cef-linux32": {
4848
"dest" : "<%= downloads %>",
49-
"src" : "http://dev.brackets.io/cef/cef_binary_<%= cef.version %>_linux32_release.zip"
49+
"src" : "<%= cef.url %>/cef_binary_<%= cef.version %>_linux32_release.zip"
5050
},
5151
"cef-linux64": {
5252
"dest" : "<%= downloads %>",
53-
"src" : "http://dev.brackets.io/cef/cef_binary_<%= cef.version %>_linux64_release.zip"
53+
"src" : "<%= cef.url %>/cef_binary_<%= cef.version %>_linux64_release.zip"
5454
},
5555
"node-linux32": {
5656
"dest" : "<%= downloads %>",
@@ -63,7 +63,11 @@ module.exports = function (grunt) {
6363
/* mac */
6464
"cef-mac": {
6565
"dest" : "<%= downloads %>",
66-
"src" : "http://dev.brackets.io/cef/cef_binary_<%= cef.version %>_macosx.zip"
66+
"src" : "<%= cef.url %>/cef_binary_<%= cef.version %>_macosx.zip"
67+
},
68+
"cef-mac-symbols": {
69+
"src" : "<%= cef.url %>/cef_binary_<%= cef.version %>_macosx32_release_symbols.zip",
70+
"dest" : "<%= downloads %>/cefsymbols"
6771
},
6872
"node-mac": {
6973
"dest" : "<%= downloads %>",
@@ -72,7 +76,11 @@ module.exports = function (grunt) {
7276
/* win */
7377
"cef-win": {
7478
"dest" : "<%= downloads %>",
75-
"src" : "http://dev.brackets.io/cef/cef_binary_<%= cef.version %>_windows.zip"
79+
"src" : "<%= cef.url %>/cef_binary_<%= cef.version %>_windows.zip"
80+
},
81+
"cef-win-symbols": {
82+
"src" : ["<%= cef.url %>/cef_binary_<%= cef.version %>_windows32_debug_symbols.zip", "<%= cef.url %>/cef_binary_<%= cef.version %>_windows32_release_symbols.zip"],
83+
"dest" : "<%= downloads %>/cefsymbols"
7684
},
7785
"node-win": {
7886
"dest" : "<%= downloads %>",
@@ -201,6 +209,7 @@ module.exports = function (grunt) {
201209
}
202210
},
203211
"cef": {
212+
"url" : "http://s3.amazonaws.com/files.brackets.io/cef",
204213
"version" : "3.1547.1459"
205214
},
206215
"node": {

appshell/appshell_extensions_win.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1526,13 +1526,13 @@ bool UpdateAcceleratorTable(int32 tag, ExtensionString& keyStr)
15261526
lpaccelNew[newItem].key = ascii;
15271527
} else {
15281528
// Get the virtual key code for non-alpha-numeric characters.
1529-
int keyCode = ::VkKeyScan(ascii);
1530-
WORD vKey = (short)(keyCode & 0x000000FF);
1531-
bool isAltGr = ((keyCode & 0x0000FF00) >> 8) >= 6;
1529+
SHORT keyCode = ::VkKeyScan(ascii);
1530+
WORD vKey = (WORD)(keyCode & 0xFF);
1531+
bool isAltGr = ((keyCode & 0x600) == 0x600);
15321532

15331533
// Get unshifted key from keyCode so that we can determine whether the
15341534
// key is a shifted one or not.
1535-
UINT unshiftedChar = ::MapVirtualKey(vKey, 2);
1535+
UINT unshiftedChar = ::MapVirtualKey(vKey, MAPVK_VK_TO_CHAR);
15361536
bool isDeadKey = ((unshiftedChar & 0x80000000) == 0x80000000);
15371537

15381538
// If one of the following is found, then the shortcut is not available for the

appshell/mac/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>0.40.0</string>
22+
<string>0.41.0</string>
2323
<key>CFBundleShortVersionString</key>
24-
<string>0.40.0</string>
24+
<string>0.41.0</string>
2525
<key>NSMainNibFile</key>
2626
<string>MainMenu</string>
2727
<key>NSPrincipalClass</key>

appshell/version.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
3232
//
3333

3434
VS_VERSION_INFO VERSIONINFO
35-
FILEVERSION 0,40,0,0
35+
FILEVERSION 0,41,0,0
3636
/* PRODUCTVERSION 1,0,0,0 */
3737
FILEOS VOS__WINDOWS32
3838
FILETYPE VFT_APP
@@ -43,7 +43,7 @@ BEGIN
4343
BEGIN
4444
VALUE "CompanyName", "brackets.io\0"
4545
VALUE "FileDescription", "\0"
46-
VALUE "FileVersion", "Sprint 40\0"
46+
VALUE "FileVersion", "Sprint 41\0"
4747
VALUE "ProductName", APP_NAME "\0"
4848
VALUE "ProductVersion", "\0"
4949
VALUE "LegalCopyright", "(c) 2012 Adobe Systems, Inc.\0"

installer/mac/buildInstaller.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# config
44
releaseName="Brackets"
5-
dmgName="${releaseName} Sprint 40"
5+
dmgName="${releaseName} Sprint 41"
66
format="bzip2"
77
encryption="none"
88
tmpLayout="./dropDmgConfig/layouts/tempLayout"

installer/win/brackets-win-install-build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ default="build.mul">
1111
<!-- Product & version labeling -->
1212
<!-- See also: product name definitions in Brackets_<locale>.wxl -->
1313
<property name="product.shortname" value="Brackets"/>
14-
<property name="product.sprint.number" value="40"/>
14+
<property name="product.sprint.number" value="41"/>
1515
<property name="product.version.number" value="0.${product.sprint.number}"/>
1616
<property name="product.version.name" value="Sprint ${product.sprint.number}"/>
1717
<property name="product.fullname" value="Brackets ${product.version.name}"/>

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Brackets-Shell",
3-
"version": "0.40.0-0",
3+
"version": "0.41.0-0",
44
"homepage": "http://brackets.io",
55
"issues": {
66
"url": "http://github.com/adobe/brackets-shell/issues"
@@ -18,7 +18,7 @@
1818
"grunt-contrib-copy": "0.4.0",
1919
"grunt-contrib-clean": "0.4.0",
2020
"guid": "0.0.10",
21-
"grunt-curl": "0.5.0",
21+
"grunt-curl": "2.0.2",
2222
"grunt-shell": "0.2.1",
2323
"q": "0.9.2",
2424
"semver": "2.0.11"
@@ -28,4 +28,4 @@
2828
"install": "",
2929
"postinstall": "bash -c 'mv .appshell.gyp appshell.gyp;'"
3030
}
31-
}
31+
}

0 commit comments

Comments
 (0)