Skip to content

Commit 808e290

Browse files
committed
sc3.11.1 rebuild
mistake - missing overwrites and icon
1 parent b4aaa31 commit 808e290

File tree

4 files changed

+49
-0
lines changed

4 files changed

+49
-0
lines changed

sclang

0 Bytes
Binary file not shown.
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
+ LinuxPlatform {
2+
startupFiles {^super.startupFiles}
3+
startup {
4+
5+
helpDir = this.systemAppSupportDir++"/Help";
6+
7+
// Server setup
8+
Server.program = "exec ./scsynth"; //f0 edited
9+
Server.default.options.ugenPluginsPath = "plugins:share"; //f0 added
10+
"SC_SYNTHDEF_PATH".setenv(this.userAppSupportDir+/+"synthdefs"); //f0 added
11+
12+
// Score setup
13+
Score.program = Server.program;
14+
15+
// default jack port hookup
16+
"SC_JACK_DEFAULT_INPUTS".setenv("system");
17+
"SC_JACK_DEFAULT_OUTPUTS".setenv("system");
18+
19+
// automatically start jack when booting the server
20+
// can still be overridden with JACK_NO_START_SERVER
21+
"JACK_START_SERVER".setenv("true");
22+
23+
// load user startup file
24+
this.loadStartupFiles;
25+
}
26+
systemAppSupportDir {
27+
^File.getcwd+/+"share/system";
28+
}
29+
userAppSupportDir {
30+
^File.getcwd+/+"share/user";
31+
}
32+
systemExtensionDir {
33+
^this.systemAppSupportDir+/+"Extensions";
34+
}
35+
userExtensionDir {
36+
^this.userAppSupportDir+/+"Extensions";
37+
}
38+
userConfigDir {
39+
^this.userAppSupportDir;
40+
}
41+
resourceDir {
42+
^this.systemAppSupportDir;
43+
}
44+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
+ Platform {
2+
*initClass {
3+
defaultStartupFile= "./share/user/startup.scd";
4+
}
5+
}

share/system/sc_ide_32.png

1.52 KB
Loading

0 commit comments

Comments
 (0)