2013-07-29 23:03:31 +02:00
{% extends "zerver/portico.html" %}
2013-03-15 19:34:42 +01:00
{# API information page #}
{% block portico_content %}
< div class = "row-fluid" >
< div class = "span8" >
2013-04-11 19:39:54 +02:00
< h1 > Do we have apps? App-solutely.< / h1 >
< p class = "muted" > < small > Ok, I take it back, I'm sorry, please don't go.< / small > < / p >
< ul class = "breadcrumb" >
< li > < a href = "/" > Home< / a > < span class = "divider" > /< / span > < / li >
< li class = "active" > Apps< / li >
< / ul >
2013-03-15 19:34:42 +01:00
< h3 > Installation instructions< / h3 >
2013-07-12 23:51:53 +02:00
< ul class = "nav nav-tabs" id = "apps-tabs" >
2013-03-15 19:34:42 +01:00
< li class = "active" > < a href = "#android" data-toggle = "tab" > Android< / a > < / li >
< li > < a href = "#iphone" data-toggle = "tab" > iPhone< / a > < / li >
< li > < a href = "#mac" data-toggle = "tab" > Mac< / a > < / li >
< li > < a href = "#linux" data-toggle = "tab" > Linux< / a > < / li >
< li > < a href = "#windows" data-toggle = "tab" > Windows< / a > < / li >
< li > < a href = "#plan9" data-toggle = "tab" > Plan 9< / a > < / li >
< / ul >
< div class = "tab-content" >
< div class = "tab-pane active" id = "android" >
2013-08-07 19:49:18 +02:00
< img class = "screenshot pull-left" src = "/static/images/app-screenshots/zulip-android.png" >
2013-03-15 19:34:42 +01:00
< p > < em > Note: The Android app is currently in alpha.< / em > < / p >
2013-07-15 16:57:10 +02:00
< p > Zulip has a < strong > 100% native app< / strong > for Android,
2013-03-15 19:34:42 +01:00
and you can easily grab it from
the < a href = "https://play.google.com/store/apps/details?id=com.humbughq.mobile" > Google
Play Store< / a > .< / p >
< a href = "https://play.google.com/store/apps/details?id=com.humbughq.mobile" >
< img alt = "Get it on Google Play"
src="https://developer.android.com/images/brand/en_generic_rgb_wo_60.png" />
< / a >
< / div >
< div class = "tab-pane" id = "iphone" >
2013-08-07 19:49:18 +02:00
< img class = "screenshot pull-left" src = "/static/images/app-screenshots/zulip-iphone.png" style = "margin: 0px 32px;" >
2013-03-15 19:34:42 +01:00
< p > < em > Note: The iPhone app is currently in alpha.< / em > < / p >
2013-07-15 16:57:10 +02:00
< p > Zulip has a < strong > 100% native app< / strong > for iPhone,
2013-03-15 19:34:42 +01:00
and we're in the process of getting it into the App Store.
For now,
2013-07-11 16:45:53 +02:00
please < a target = "_blank" href = "mailto:support@zulip.com?subject=Request%20for%20Zulip%20iPhone%20app&body=Hi%20Zulip,%20can%20you%20send%20me%20a%20link%20to%20the%20iPhone%20app%20alpha?%20I%20have%20an%20iPhone%20__." > email
2013-03-15 19:34:42 +01:00
us to request access< / a > .< / p >
< / div >
< div class = "tab-pane" id = "mac" >
2013-07-15 16:57:10 +02:00
< p > You love your Mac. And you love Zulip. So what could be
better than a Zulip app for Mac? Enjoy notifications for
2013-07-05 23:15:41 +02:00
messages and PMs in your dock whether you're in Sublime,
emacs, or Photoshop.< / p >
2013-03-15 19:34:42 +01:00
< p style = "text-align: center" >
2013-08-02 20:24:10 +02:00
< a href = "https://zulip.com/dist/apps/mac/Zulip-latest.dmg" class = "btn btn-large btn-primary" > < i class = "icon-vector-download" > < / i > Download Zulip for Mac< / a >
2013-03-15 19:34:42 +01:00
< / p >
2013-08-07 19:49:18 +02:00
< img class = "full-width-screenshot" src = "/static/images/app-screenshots/zulip-desktop-mac.png" >
2013-03-15 19:34:42 +01:00
< / div >
< div class = "tab-pane" id = "linux" >
2013-07-15 16:57:10 +02:00
< p > Zulip provides a native Linux app that runs standalone
2013-07-05 23:15:41 +02:00
outside of your browser. How you install it depends on what
you're running:< / p >
< h3 > Debian and Ubuntu< / h3 >
First, run the following:
2013-08-16 21:56:19 +02:00
< div class = "codehilite" > < pre > wget https://apt.zulip.com/user.asc
2013-07-05 23:15:41 +02:00
cat user.asc | sudo apt-key add -< / pre > < / div >
2013-07-06 00:03:02 +02:00
Then, add the following line to < code > /etc/apt/sources.list< / code > :
2013-08-16 21:56:19 +02:00
< div class = "codehilight" > < pre > deb http://apt.zulip.com/user/ < span class = "k" > your_distro_here< / span > main
2013-07-06 00:03:02 +02:00
< / pre >
< / div >
< p > (Replace < b > your_distro_here< / b > with one of < code > wheezy< / code > , < code > precise< / code > , < code > quantal< / code > , or < code > raring< / code > )< / p >
Then run:
< div class = "codehilite" > < pre >
2013-07-05 23:15:41 +02:00
sudo apt-get update
2013-07-15 16:57:10 +02:00
sudo apt-get install zulip-desktop
2013-07-05 23:15:41 +02:00
< / pre > < / div >
2013-07-06 00:03:02 +02:00
2013-07-05 23:15:41 +02:00
< h3 > Other< / h3 >
2013-07-24 23:34:13 +02:00
< p > We provide a < a href = "https://zulip.com/dist/apps/linux/zulip-desktop_latest.bin.tar.gz" > binary tarball< / a > of the Zulip application, built for 64-bit systems.
2013-07-05 23:15:41 +02:00
< / p >
2013-03-15 19:34:42 +01:00
< / div >
< div class = "tab-pane" id = "windows" >
2013-07-05 23:15:41 +02:00
< p > Windows. It's the best OS for your needs: gaming,
coding, expense reports. But you always felt that something
was missing... until now.< / p >
2013-03-15 19:34:42 +01:00
2013-07-15 16:57:10 +02:00
< p > We proudly present < b > Zulip for Windows< / b > : the second-best app for Windows on the market today (after
2013-07-05 23:15:41 +02:00
Solitaire, obviously.)< / p >
< p style = "text-align: center" >
2013-08-02 20:24:10 +02:00
< a href = "https://zulip.com/dist/apps/win/zulip-latest.exe" class = "btn btn-large btn-primary" > < i class = "icon-vector-download" > < / i > Download Zulip for Windows< / a >
2013-07-05 23:15:41 +02:00
< / p >
2013-03-15 19:34:42 +01:00
2013-08-07 19:49:18 +02:00
< img class = "full-width-screenshot" src = "/static/images/app-screenshots/zulip-desktop-windows.png" >
2013-03-15 19:34:42 +01:00
< / div >
< div class = "tab-pane" id = "plan9" >
< p > First, connect to our hosted 9P filesystem
2013-07-15 16:57:10 +02:00
at < code > plan9.zulip.com< / code > and then... no, we're
totally kidding. There definitely isn't a version of Zulip
2013-03-15 19:34:42 +01:00
for Plan 9.< / p >
< p > But if you're the kind of person who would've gotten a kick
out of that sort of thing, we'd love to talk to you, because
we're hiring. Please send us a resume and any other relevant
information (a GitHub account, a portfolio, etc.)
to < a target = "_blank"
2013-07-11 16:45:53 +02:00
href="mailto:jobs@zulip.com?subject=Zulip%20for%20Plan%209">jobs@zulip.com< / a >
2013-03-15 19:34:42 +01:00
and we'll be in touch!< / p >
< / div >
< / div >
2013-06-19 23:46:11 +02:00
< / div >
2013-03-15 19:34:42 +01:00
< / div >
2013-07-12 23:51:53 +02:00
< script >
$(function () {
if (navigator.appVersion.indexOf("Win") !== -1) {
$('#apps-tabs [href=#windows]').tab('show');
}
if (navigator.appVersion.indexOf("Mac") !== -1) {
$('#apps-tabs [href=#mac]').tab('show');
}
if (navigator.appVersion.indexOf("Linux") !== -1) {
$('#apps-tabs [href=#linux]').tab('show');
}
});
< / script >
2013-03-15 19:34:42 +01:00
{% endblock %}