Info für all diejenigen, die in den RGs Topsky betreuen oder sich ihre eigenen Configs gebastelt haben:
Gestern kam die
Beta 12 von Topsky raus. Diese beinhaltet einige Fixes und neue Funktionen, vor allem aber auch eine deutliche Performancesteigerung! Allerdings gibt es etwas zu beachten: Sobald in einer Map eine ACTIVE-Line vorkommt, darf kein FOLDER festgelegt sein. Diese Maps werden automatisch dem AUTO-Ordner zugeordnet. Das war auch in den vorherigen Versionen schon so, da wurde es aber vom Code toleriert und einfach still und heimlich gemacht. Jetzt gibt es aber einen Bug: Sobald eine Map mehr als eine ACTIVE-Line hat, gibt Topsky einen Fehler aus.
Juha Holopainen via VATSIM Scandinavia Forum schrieb:
The error message is intentional with the folder set. Previously the folder name was just silently changed to "AUTO" as all automatically activating maps are supposed to be in that folder. I haven't looked but I bet the error-checking code is now enforcing the "no folder" rule a bit too eagerly. With the folder name automatically set to "AUTO" by the first ACTIVE line, the code then raises an error when it sees a folder name set while reading the second ACTIVE line. I'll get that fixed eventually but it'll take at least a couple of weeks.
Heißt also, dass sowas nicht mehr funktioniert:
Code:
MAP:Beispiel
ACTIVE:0101:1231:7:2300:0000
ACTIVE:0101:1231:1234:0000:2359
ACTIVE:0101:1231:5:0000:2300
Um das Ganze zu umgehen, muss das bis auf Weiteres jetzt so aussehen:
Code:
MAP:Beispiel
ACTIVE:0101:1231:7:2300:0000
MAP:Beispiel
ACTIVE:0101:1231:1234:0000:2359
MAP:Beispiel
ACTIVE:0101:1231:5:0000:2300
Dadurch denkt das Plugin, es handle sich um verschiedene Maps und der Bug wird umgangen. Der Name der Maps darf der selbe sein.