Since you can script packages (quote below (From Ziro's thread about popup for packages)), maybe :o
Quote:
Originally Posted by Stefan
There is no popup thing right now, it was planned though. You can however script it yourself, something like this (calling update() is downloading it):
PHP Code:
printPackage(getBasePackage());
function printPackage(package) { echo("package: " @ package.filename @ " - " @ package.name); if (package.filename=="mymusic.gupd" && package.localversion<package.version) package.update();
for (temp.subpackage: package.packages) printPackage(temp.subpackage); }
|
Dunno if it helps, but
you could check in a timeout this:
PHP Code:
temp.package = getBasePackage();
if (temp.package.localversion == temp.package.version) {
// do stuff
}