Skip to content

Commit b32f414

Browse files
committed
Merge remote-tracking branch 'origin/master' into fix/splitview
Conflicts: plugins-client/ext.code/code.js plugins-client/ext.main/style/skins.xml
2 parents ca43020 + 149960b commit b32f414

File tree

54 files changed

+69502
-62517
lines changed

Some content is hidden

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

54 files changed

+69502
-62517
lines changed

bin/run.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../node_modules/runjs/runjs

bin/runjs.sh

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
#!/bin/sh
2+
3+
CMD="$0"
4+
CMD_DIR=`dirname "$CMD"`
5+
cd "$CMD_DIR/.."
6+
7+
sudo bin/run.js panic
8+
make update
9+
10+
case `uname -a` in
11+
Linux*x86_64*) echo "Linux 64 bit"
12+
bin/run.js start -t:c9 server.js "$@" -a x-www-browser
13+
;;
14+
15+
Linux*i686*) echo "Linux 32 bit"
16+
bin/run.js start -t:c9 server.js "$@" -a x-www-browser
17+
;;
18+
19+
Linux*arm*) echo "Linux ARM"
20+
bin/run.js start -t:c9 server.js "$@" -a x-www-browser
21+
;;
22+
23+
Darwin*) echo "OSX"
24+
bin/run.js start -t:c9 server.js "$@" -a open
25+
;;
26+
27+
FreeBSD*64*) echo "FreeBSD 64 bit"
28+
bin/run.js start -t:c9 server.js "$@" -a open
29+
;;
30+
31+
CYGWIN*) echo "Cygwin"
32+
bin/run.js start -t:c9 server.js "$@" -a "cmd /c start"
33+
;;
34+
35+
MING*) echo "MingW"
36+
bin/run.js start -t:c9 server.js "$@" -a "cmd /c start"
37+
;;
38+
39+
SunOS*) echo "Solaris"
40+
bin/run.js start -t:c9 server.js "$@"
41+
;;
42+
43+
44+
*) echo "Unknown OS"
45+
;;
46+
esac

build/core.build.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,9 @@
7474
"v8debug/util",
7575
"v8debug/V8Debugger"
7676
],
77+
exclude: [
78+
"text"
79+
],
7780
out: "./src/core.packed.js",
7881
inlineText: true,
7982
findNestedDependencies: true,

build/json_minifier.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
var args = process.argv.slice(2),
2+
fileIn = args[0],
3+
fileOut = args[1],
4+
fs = require("fs");
5+
6+
fs.readFile(fileIn, "utf8", function(err, json) {
7+
if (err) {
8+
console.error(err);
9+
process.exit(1);
10+
}
11+
12+
fs.writeFileSync(fileOut, JSON.stringify(JSON.parse(json), null));
13+
});

0 commit comments

Comments
 (0)