bugfix and dependency

This commit is contained in:
2024-01-01 20:55:07 +01:00
parent 5563b245f5
commit ba2a3a6173
2 changed files with 6 additions and 3 deletions

View File

@ -11,7 +11,7 @@
dependencies: [ dependencies: [
"https://github.com/scztt/Singleton.quark", "https://github.com/scztt/Singleton.quark",
"https://github.com/scztt/Require.quark", "https://github.com/scztt/Require.quark",
// "https://github.com/supercollider-quarks/BatLib", "https://github.com/dmorgan-github/Pdv",
"https://github.com/supercollider-quarks/Bjorklund", "https://github.com/supercollider-quarks/Bjorklund",
], ],
url: "https://raphaelforment.fr", url: "https://raphaelforment.fr",

View File

@ -8,7 +8,7 @@ Boot {
*new { *new {
arg configPath, samplePath; arg configPath, samplePath;
var s = Server.default; var s = Server.default;
var p; var c; var p; var c; var t;
var banner = "┳┓ ┓ ┳┓\n" var banner = "┳┓ ┓ ┳┓\n"
"┣┫┓┏┣┓┏┓ ┣┫┏┓┏┓╋\n" "┣┫┓┏┣┓┏┓ ┣┫┏┓┏┓╋\n"
"┻┛┗┻┗┛┗┛ ┻┛┗┛┗┛┗"; "┻┛┗┻┗┛┗┛ ┻┛┗┛┗┛┗";
@ -19,7 +19,9 @@ Boot {
// Using Ableton Link Clock for automatic synchronisation with other peers // Using Ableton Link Clock for automatic synchronisation with other peers
this.clock = LinkClock(130 / 60).latency_(Server.default.latency).permanent_(true); this.clock = LinkClock(130 / 60).latency_(Server.default.latency).permanent_(true);
TempoClock.default = this.clock;
c = this.clock; c = this.clock;
t = this.clock.tempo;
// Defining the local path as default for configuration files if not configPath // Defining the local path as default for configuration files if not configPath
this.localPath = this.class.filenameSymbol.asString.dirname +/+ "Configuration"; this.localPath = this.class.filenameSymbol.asString.dirname +/+ "Configuration";
@ -47,6 +49,7 @@ Boot {
StageLimiter.activate; StageLimiter.activate;
this.fancyPrint(ready, 40); this.fancyPrint(ready, 40);
this.installServerTreeBehavior(); this.installServerTreeBehavior();
this.clock.enableMeterSync();
}); });
} }