The "What's New" playlist shows your recently downloaded songs.
Importing and Sharing overlap a bit and if you share your Music directory you will have a slight chaos and a recursion. I recommend to disable one option (importing of course
).
Sharing iPhoto Photolists (I have a patent on that new term!
) is planned but it has a very low priority at the moment as I have to recover from the productive summer.
Jum is probably already on the Baltic Sea towards Sweden (lucky jum) a small fix for the workaround. Well, you can set the interval to 60 seconds (60*1000 instead of 10*1000) to reduce the CPU load. Oh and honor to whom honor is due for figuring out this workaround: Zab!
Code:
class testGC extends ManagedThread {
testGC() {
super("testGC");
}
public void managedRun() {
try {
while(true) {
Thread.sleep(10*1000);
System.gc();
}
} catch (Throwable ex) {
error(ex);
}
}
}