all spaces to tabs

This commit is contained in:
noformnocontent 2013-02-11 01:22:26 +01:00
parent 508aa4352c
commit 43eae3e1f7
20 changed files with 723 additions and 723 deletions

View file

@ -1,20 +1,20 @@
<?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>Tentia's Changelog</title>
<link>http://jabs.nu/Tentia/download/Appcast.xml</link>
<description>Most recent changes with links to updates.</description>
<language>en</language>
<item>
<title>Version 0.6.2</title>
<sparkle:minimumSystemVersion>10.5.0</sparkle:minimumSystemVersion>
<sparkle:releaseNotesLink>http://jabs.nu/Tentia/download/ReleaseNotes.html</sparkle:releaseNotesLink>
<pubDate>Sun, 27 Jan 2013 17:55:18 +0100</pubDate>
<enclosure url="http://jabs.nu/Tentia/download/Tentia.app.zip"
sparkle:version="0.6.2"
length="1093078"
type="application/octet-stream"
sparkle:dsaSignature="MC4CFQCA7q7VG5aSt6yMxiNC3SYQHGtt8QIVAIbPnWFSXu4u0L7XT5Jelm16H77w" />
</item>
</channel>
<channel>
<title>Tentia's Changelog</title>
<link>http://jabs.nu/Tentia/download/Appcast.xml</link>
<description>Most recent changes with links to updates.</description>
<language>en</language>
<item>
<title>Version 0.6.2</title>
<sparkle:minimumSystemVersion>10.5.0</sparkle:minimumSystemVersion>
<sparkle:releaseNotesLink>http://jabs.nu/Tentia/download/ReleaseNotes.html</sparkle:releaseNotesLink>
<pubDate>Sun, 27 Jan 2013 17:55:18 +0100</pubDate>
<enclosure url="http://jabs.nu/Tentia/download/Tentia.app.zip"
sparkle:version="0.6.2"
length="1093078"
type="application/octet-stream"
sparkle:dsaSignature="MC4CFQCA7q7VG5aSt6yMxiNC3SYQHGtt8QIVAIbPnWFSXu4u0L7XT5Jelm16H77w" />
</item>
</channel>
</rss>

View file

@ -8,8 +8,8 @@
h1 { font-size: 1.2em; }
h2 { font-size: 1em; margin-top: 2em; }
hr { margin: 2em 0; }
p { margin: 0; padding: 0; }
strong { color: red; }
p { margin: 0; padding: 0; }
strong { color: red; }
</style>
</head>
<body>
@ -191,13 +191,13 @@
<p>Mentions now appear as realnames</p>
<hr />
<h1>Tentia 0.1.1</h1>
<p>Bugfixes</p>
<p>Changed to send on Cmd+Enter.</p>
<hr />
<h1>Tentia 0.1.0</h1>
<p>First attempt to rewrite the old Twitter client Twittia to a new and shiny Tent client Tentia.</p>

View file

@ -2,10 +2,10 @@
require 'time'
def test var, message
unless var
puts message
exit
end
unless var
puts message
exit
end
end
path = File.dirname File.expand_path(__FILE__)
@ -21,30 +21,30 @@ test length, "Couldn't find length"
test signature, "Couldn't find signature"
unless File.exists? "#{release_path}/Tentia.app/Contents/Resources/dsa_pub.pem"
puts "#{release_path}/Tentia.app/Contents/dsa_pub.pem"
exit
puts "#{release_path}/Tentia.app/Contents/dsa_pub.pem"
exit
end
xml = <<XML
<?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>Tentia's Changelog</title>
<link>http://jabs.nu/Tentia/download/Appcast.xml</link>
<description>Most recent changes with links to updates.</description>
<language>en</language>
<item>
<title>Version #{version}</title>
<sparkle:minimumSystemVersion>10.5.0</sparkle:minimumSystemVersion>
<sparkle:releaseNotesLink>http://jabs.nu/Tentia/download/ReleaseNotes.html</sparkle:releaseNotesLink>
<pubDate>#{Time.now.rfc2822}</pubDate>
<enclosure url="http://jabs.nu/Tentia/download/Tentia.app.zip"
sparkle:version="#{version}"
length="#{length}"
type="application/octet-stream"
sparkle:dsaSignature="#{signature}" />
</item>
</channel>
<channel>
<title>Tentia's Changelog</title>
<link>http://jabs.nu/Tentia/download/Appcast.xml</link>
<description>Most recent changes with links to updates.</description>
<language>en</language>
<item>
<title>Version #{version}</title>
<sparkle:minimumSystemVersion>10.5.0</sparkle:minimumSystemVersion>
<sparkle:releaseNotesLink>http://jabs.nu/Tentia/download/ReleaseNotes.html</sparkle:releaseNotesLink>
<pubDate>#{Time.now.rfc2822}</pubDate>
<enclosure url="http://jabs.nu/Tentia/download/Tentia.app.zip"
sparkle:version="#{version}"
length="#{length}"
type="application/octet-stream"
sparkle:dsaSignature="#{signature}" />
</item>
</channel>
</rss>
XML