It is the one from git, but we made a small change in these lines, because we don’t need every package. So we commented out some lines, now it looks like this:
(load-om-kernel)
(load-om-projects '("basicproject" "musicproject"))
(load-om-projects '("midi"))
;(load-om-projects '("sdif"))
;(load-om-projects '("mathtools"))
;(load-om-projects '("omsounds"))
;(load-om-projects '("space"))
;(load-om-projects '("harmonicproject"))
;(load-om-projects '("sheet"))
So as you can see, we just put the semicolon in front of six of these lines.
But I remember we also made changes in another file in order to get it to work for most of the students. Here is the path to the file and the file name at the end:
/openmusic-master/OPENMUSIC/code/kernel/ommodele/omframes/containereditors/editorwindow.lisp
Here are the lines we commented out in this file:
(cond
((scoreeditor-p object)
(om-set-bg-color (panel (editor win)) *score-bg-color*))
;((sound-p object)
;(om-set-bg-color (panel (editor win)) *sound-bg-color*))
;((or (3dc-p object) (3dc-lib-p object)) t)
((or (bpf-p object) (bpflib-p object))
(om-set-bg-color (panel (editor win)) *bpf-bg-color*))
((maquette-p object) t)
; (progn (print (maq-color (params object)))
; (om-set-bg-color (panel (editor win)) *maq-color*)))
((typep object 'ompatch)
(om-set-bg-color (panel (editor win)) *patch-bg-color*))
(t ))
Three lines are commented out. Two including the “sound-p” function and one line including the “3dc-p” function. The problem here was, that we got an error saying these functions are undefined. So that’s what we changed here. But anyway, it seams that this is also not the problem here, because as I said like this it works for all the students except one. So I guess the problem must be somewhere else. But that’s all we changed.
I’m sorry for the late reply,
Best,
Tim