Skip to content
This repository has been archived by the owner on Nov 24, 2019. It is now read-only.

Commit

Permalink
version 1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Bilalh committed Dec 31, 2011
1 parent 4f95530 commit 27e2364
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 26 deletions.
8 changes: 4 additions & 4 deletions Other Sources/VGTagger-Info.plist
Expand Up @@ -74,13 +74,13 @@
<string>NSApplication</string>
<key>NSServices</key>
<array/>
<key>UTExportedTypeDeclarations</key>
<array/>
<key>SUPublicDSAKeyFile</key>
<string>dsa_pub.pem</string>
<key>SUEnableSystemProfiling</key>
<false/>
<key>SUFeedURL</key>
<string>http://bilalh.github.com/sparkle/tagger/appcast.xml</string>
<key>SUPublicDSAKeyFile</key>
<string>dsa_pub.pem</string>
<key>UTExportedTypeDeclarations</key>
<array/>
</dict>
</plist>
44 changes: 22 additions & 22 deletions Other Sources/appcast_automation.rb
Expand Up @@ -148,28 +148,28 @@ def create_key

def create_appcast_xml
appcast_xml = <<-HTML
<?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>#{@proj_name}</title>
<link>#{@appcast_download_url}</link>
<description>Most recent changes with links to updates.</description>
<language>en</language>
<item>
<title>Version #{@version.chomp}</title>
<sparkle:releaseNotesLink>
#{@releasenotes_url}
</sparkle:releaseNotesLink>
<pubDate>#{@pubdate.chomp}</pubDate>
<enclosure url="#{@download_url.chomp}"
length="#{@size}"
type="application/octet-stream"
sparkle:version="#{@build_number.chomp}"
sparkle:shortVersionString="#{@version.chomp}"
sparkle:dsaSignature="#{@signature.chomp}"/>
</item>
</channel>
</rss>
<?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>#{@proj_name}</title>
<link>#{@appcast_download_url}</link>
<description>Most recent changes with links to updates.</description>
<language>en</language>
<item>
<title>Version #{@version.chomp}</title>
<sparkle:releaseNotesLink>
#{@releasenotes_url}
</sparkle:releaseNotesLink>
<pubDate>#{@pubdate.chomp}</pubDate>
<enclosure url="#{@download_url.chomp}"
length="#{@size}"
type="application/octet-stream"
sparkle:version="#{@build_number.chomp}"
sparkle:shortVersionString="#{@version.chomp}"
sparkle:dsaSignature="#{@signature.chomp}"/>
</item>
</channel>
</rss>
HTML

File.open(@appcast_xml_path, 'w') { |f| f.puts appcast_xml }
Expand Down

0 comments on commit 27e2364

Please sign in to comment.