touch-bar-simulator/docs/appcast.xml
2017-03-27 15:34:41 +07:00

26 lines
942 B
XML

---
layout: null
---
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:sparkle="http://www.andymatuschak.org/xml-namespaces/sparkle" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>{{ site.github.project_title }}</title>
<description>Recent changes</description>
<language>en</language>
{% for release in site.github.releases %}
{% unless release.draft or release.prerelease %}
<item>
<title>{{ release.name }}</title>
<description><![CDATA[{{ release.body | markdownify }}]]></description>
<pubDate>{{ release.published_at | date_to_rfc822 }}</pubDate>
{% assign firstAsset = release.assets | first %}
<enclosure
url="{{ firstAsset.browser_download_url }}"
sparkle:version="{{ release.tag_name | remove_first:'v' }}"
length="{{ firstAsset.size }}"
type="application/octet-stream" />
</item>
{% endunless %}
{% endfor %}
</channel>
</rss>