Hi all,With the release including Quarks, how are users supposed to configure them? Do they need to drag them intothe userApplicationSupport dir? If so, it might be better to allow them to be runnable out of the box. This would be easy to do,it is simply a matter of having the directory be an instance variable rather than a call to Platform.userSupportDir.Here is a patch that illustrates what I mean:+LocalQuarks {*new { | path, parent |^super.newCopyArgs((path ?? { QuarksDir.dir ++ "/quarks"}), parent)}}
QuarksDir {classvar <>dir;
*initClass {Class.initClassTree( Platform );Class.initClassTree( String );if (File.exists("preloadedQuarks") ) {dir = "".absolutePath ++ "/preloadedQuarks";} {dir = Platform.userAppSupportDir;}}}RJK