You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tasks/actionbarsherlock/website/resources/download.html

161 lines
5.8 KiB
HTML

---
title: Download
layout: default
---
<script type="text/javascript">
$(function() {
$.getJSON('https://api.github.com/repos/JakeWharton/ActionBarSherlock/tags?callback=?', function(response) {
var meta = response.meta
, data = response.data
;
data.sort(function(o1, o2) {
return (o1.name > o2.name) ? -1 : 1;
});
var last = data[0];
var lastSha = last.commit.sha;
var lastDate = $('#latest-date').html('<em>Date unavailable</em>');
$('.latest-version').html(last.name);
$('#latest-zip').attr('href', last.zipball_url);
$('#latest-tarball').attr('href', last.tarball_url);
var previous = $('#previous-releases').empty();
$.each(data, function(index) {
previous.append(
$('<dt>Version ' + this.name + '<span class="normal"> &mdash; <em id="' + this.commit.sha + '">Date unavailable</em></span></dt>'),
$('<dd><a class="img" href="' + this.zipball_url + '">Zip</a> &middot; <a class="img" href="' + this.tarball_url + '">Tarball</a></dd>')
);
$.getJSON(this.commit.url + '?callback=?', function(inner) {
var d = new Date(inner.data.commit.author.date);
var month = d.getMonth() + 1;
if (month < 10) {
month = '0' + month;
}
var day = d.getDate();
if (day < 10) {
day = '0' + day;
}
var date = d.getFullYear() + '-' + month + '-' + day;
$('#' + inner.data.sha).html(date);
if (inner.data.sha === lastSha) {
lastDate.html(date);
}
});
//Only most recent 10 tags
if (index == 9) {
return false;
}
});
});
$.getJSON('https://api.github.com/repos/JakeWharton/ActionBarSherlock/downloads?callback=?', function(response) {
var meta = response.meta
, data = response.data
;
var samples = $('#sample-apps').empty();
var plugins = $('#plugins').empty();
$.each(data, function() {
if (/apk$/.test(this.html_url)) {
samples.append(
$('<dt class="normal"/>').html(this.description.substring(0, 26) === "ActionBarSherlock Sample: " ? this.description.substring(26) : this.description),
$('<dd class="sample-app"/>').append(
$('<a/>').attr('href', this.html_url).html('APK'),
' &middot; ',
$('<a/>').attr('href', 'http://chart.apis.google.com/chart?chs=545x545&cht=qr&chl=' + this.html_url + '&.png').html('QR Code').colorbox()
)
);
} else if (/jar$/.test(this.html_url)) {
plugins.append(
$('<dt class="normal"/>').html(this.description.substring(0, 26) === "ActionBarSherlock Plugin: " ? this.description.substring(26) : this.description),
$('<dd class="plugin"/>').append(
$('<a/>').attr('href', this.html_url).html('JAR')
)
);
}
});
});
/*
var converter = new Showdown.converter();
$.getJSON('https://api.github.com/repos/JakeWharton/ActionBarSherlock/git/trees/master?callback=?', function(response) {
var meta = response.meta
, data = response.data
;
$.each(data.tree, function() {
if (this.path == 'CHANGELOG.md') {
$.ajax({
url: this.url,
type: 'GET',
dataType: 'text',
headers: {
'Accept': 'application/vnd.github-blob.raw'
},
success: function(data) {
$('#changelog').colorbox({
width: '80%',
maxWidth: 1030,
height: '90%',
html: '<div id="changelog-content">' + converter.makeHtml(data) + '</div>'
});
}
});
return false;
}
});
});
*/
});
</script>
<div class="row">
<div class="three-fourths">
<h1>Download</h1>
<p><strong>Version <span class="latest-version">(loading)</span></strong> &mdash; <span id="latest-date">(loading)</span> (<a id="changelog" href="https://github.com/JakeWharton/ActionBarSherlock/tree/master/CHANGELOG.md#readme">change log</a>)</p>
<p><a class="img" id="latest-zip" href="https://github.com/JakeWharton/ActionBarSherlock/downloads"><img src="static/icon_zip.png" alt="Zip"/></a> <a class="img" id="latest-tarball" href="https://github.com/JakeWharton/ActionBarSherlock/downloads"><img src="static/icon_tgz.png" alt="Tarball"/></a></p>
<h3>Plugins</h3>
<dl id="plugins">
<dt class="normal">(loading)</dt>
</dl>
<h3>Sample Applications</h3>
<dl id="sample-apps">
<dt class="normal">(loading)</dt>
</dl>
<h3>Including In Your Project</h3>
<p>There are two ways to leverage ActionBarSherlock in your projects:</p>
<ol>
<li>If youre using the <a href="http://www.eclipse.org/">Eclipse Development Environment</a> with the <a href="http://developer.android.com/sdk/eclipse-adt.html">ADT plugin</a> version 0.9.7 or greater you can include this as a library project. Create a new Android project in Eclipse using the <code>library/</code> folder as the existing source. Then, in your project properties, add the created project under the Libraries section of the Android category.</li>
<li>
<p>If you use maven to build your Android project you can simply add a dependency for this library.</p>
<code><pre>
&lt;dependency>
&lt;groupId>com.actionbarsherlock&lt;/groupId>
&lt;artifactId>library&lt;/artifactId>
&lt;version><span class="latest-version">3.0.2</span>&lt;/version>
&lt;type>apklib&lt;/type>
&lt;/dependency>
</pre></code>
<p><em>Make sure you also include <a href="http://r.jakewharton.com/maven/release/">r.jakewharton.com/maven/release/</a> in the repositories section of your <code>pom.xml</code>.</em></p>
</li>
</ol>
<p><strong>Note</strong>: If you were previously using the Android compatability library you must remove its <code>.jar</code>. ActionBarSherlock is built on top of the compatability library and comes bundled with its classes.</p>
</div>
<div class="fourth last">
<h1>Release History</h1>
<dl id="previous-releases">
<dt class="normal">(loading)</dt>
</dl>
<p><a href="https://github.com/JakeWharton/ActionBarSherlock/tags">View all &raquo;</a></p>
</div>
</div>
<!-- ZIP AND TARBALL ICONS COURTESY FATCOW.COM -->