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

Commit d63059d

Browse files
author
Marcel Gerber
committed
Merge remote-tracking branch 'upstream/master' into sprint-to-release-fixup
Conflicts: tasks/build.js
2 parents cd64ac1 + 7479317 commit d63059d

File tree

3 files changed

+54
-4
lines changed

3 files changed

+54
-4
lines changed

CEF-Info.plist

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>BuildMachineOSBuild</key>
6+
<string>11G56</string>
7+
<key>CFBundleDevelopmentRegion</key>
8+
<string>English</string>
9+
<key>CFBundleExecutable</key>
10+
<string>libcef</string>
11+
<key>CFBundleGetInfoString</key>
12+
<string>CEF 1547</string>
13+
<key>CFBundleIdentifier</key>
14+
<string>com.cef</string>
15+
<key>CFBundleInfoDictionaryVersion</key>
16+
<string>6.0</string>
17+
<key>CFBundleName</key>
18+
<string>cef</string>
19+
<key>CFBundlePackageType</key>
20+
<string>FMWK</string>
21+
<key>CFBundleShortVersionString</key>
22+
<string>1547</string>
23+
<key>CFBundleSignature</key>
24+
<string>????</string>
25+
<key>CFBundleVersion</key>
26+
<string>1547</string>
27+
<key>DTCompiler</key>
28+
<string>com.apple.compilers.llvm.clang.1_0</string>
29+
<key>DTPlatformBuild</key>
30+
<string>4G2008a</string>
31+
<key>DTPlatformVersion</key>
32+
<string>GM</string>
33+
<key>DTSDKBuild</key>
34+
<string>11E52</string>
35+
<key>DTSDKName</key>
36+
<string>macosx10.7</string>
37+
<key>DTXcode</key>
38+
<string>0452</string>
39+
<key>DTXcodeBuild</key>
40+
<string>4G2008a</string>
41+
</dict>
42+
</plist>

Gruntfile.js

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,6 @@ module.exports = function (grunt) {
118118
}
119119
]
120120
},
121-
// FIXME: see stage-mac task issues with copying .app bundles
122-
/*
123121
"mac": {
124122
"files": [
125123
{
@@ -128,9 +126,19 @@ module.exports = function (grunt) {
128126
"src" : ["**"],
129127
"dest" : "installer/mac/staging/<%= build.name %>.app/"
130128
}
129+
],
130+
options: {
131+
mode: true
132+
}
133+
},
134+
"cefplist" : {
135+
"files": [
136+
{
137+
"src" : "CEF-Info.plist",
138+
"dest" : "installer/mac/staging/<%= build.name %>.app/Contents/Frameworks/Chromium Embedded Framework.framework/Resources/Info.plist"
139+
}
131140
]
132141
},
133-
*/
134142
"linux": {
135143
"files": [
136144
{

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"grunt": "0.4.1",
1616
"grunt-cli": "0.1.6",
1717
"grunt-contrib-jshint": "0.2.0",
18-
"grunt-contrib-copy": "0.4.0",
18+
"grunt-contrib-copy": "0.5.0",
1919
"grunt-contrib-clean": "0.4.0",
2020
"guid": "0.0.10",
2121
"grunt-curl": "2.0.2",

0 commit comments

Comments
 (0)