是否有标准方法来检查仪表板小部件中的更新?

时间:2010-12-06 17:14:09

标签: dashboard dashcode

我正在Dashcode中编写Dashboard小部件,我想添加某种check-for-updates功能。我已经看过Sparkle,但AFAICT它不适用于这样的小部件。是否有常用的库来进行更新检查,还是我必须开发自己的系统?

我只需要一个非常简单的设置...自动检查新版本将是一个加号,但如果用户必须单击一个按钮,以检查是否可以与我。

1 个答案:

答案 0 :(得分:0)

因为“有一个功能会......”然后我没有碰到它。

我做的如下

在plist中有小部件的版本,你把数字放在那里,比方说1.0。您应该能够访问和使用哪个。 (见代码)因为我没有并且添加了这个全局var widget_version =“1.4”;然后在窗口小部件更新时更新。

然后,在Web可访问的服务器上,您可以创建一个具有当前版本小部件数量的php(或其他)文件。再说一次1.1。

然后你编写一个javascript函数,而不是根据服务器版本检查当前的widget版本,并显示一个图形或消息来告诉用户。最好让用户决定是否要升级而不是自动升级。

以下是我使用的代码。请按照自己的意愿复制和/或破解。

function getSoftwareUpdate() {

// so use the built in CURL to do a REST call n.b. in widget preference you will need to check 'allow network access'
var softwareUpdate = widget.system("/usr/bin/curl  'http://api.yourserver.com/widget/wfccupdate.php'", null).outputString;

//alert(softwareUpdate); // tells you the function has been called
//alert("the update number from the REST " + softwareUpdate); // for debugging will show the key

// in main.js add this line
// var widget_version = "1.4"; // this is changed when you update the widget code for  new release
// yes it's a global variable and bad but i was in a hurry
// the following line should get the widget number but for some reason i didn't do it
// localVersion = widget.preferenceForKey(preferenceForKey);
//alert("the internal preference key " + widget_version);

// then check to see if they match
    if(softwareUpdate == widget_version)
    { hide_update('softwareupdate')
    }
    else
    {show_update('softwareupdate')
    }
}

function hide_update(el) { // hide the update graphic
    if(document.getElementById(el)) 
    {
        if(document.getElementById(el).style.display != "none") 
        document.getElementById(el).style.display = "none";
    }
}
function show_update(el) { // show the update graphic
    if(document.getElementById(el)) {
        if(document.getElementById(el).style.display == "none") 
        document.getElementById(el).style.display = "block"; 
        }
    }



// this is the php that is called by curl and acts as REST

<?php
// data
$UPDATE_database = <<<_UPDATE_
<?xml version="1.0" encoding="utf-8" ?>
<update>
    <widgetversion>1.1</widgetversion>
</update>
_UPDATE_;

// load data
$xml = simplexml_load_string($UPDATE_database);
$result = $xml->xpath("widgetversion");
print $result[0];
?>

希望这有帮助