forked from zulip/zulip.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clients.html
121 lines (112 loc) · 5.02 KB
/
clients.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Zulip - Download a client</title>
<link rel="icon" href="favicon.ico">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/fonts.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/media.css">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-79921909-2', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<!-- Navigation bar -->
<header>
<div class="container">
<div id="logo">
<a href="index.html"><img src="images/logos/zulip-icon-512x512.png" />zulip</a>
</div>
<nav>
<ul class="downloads">
<li><a href="server.html">Server</a></li>
<li><a href="clients.html">Clients</a></li>
</ul>
<ul>
<li><a href="https://blogs.dropbox.com/tech/2015/09/open-sourcing-zulip-a-dropbox-hack-week-project">About</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="https://zulipchat.com/integrations">Integrations</a></li>
<li><a href="https://zulipchat.com/api">API</a></li>
<li><a href="contribute.html">Contribute</a></li>
<li><a href="https://blog.zulip.org/">Blog</a></li>
</ul>
</nav>
</div>
</header>
<div class="band band-blue">
<div class="container">
<h2>Download a Zulip client for your platform</h2>
</div>
</div>
<div class="container docs">
<article>
<section>
<h3>Desktop</h3> The Zulip desktop app is a native app
wrapping the Zulip web application, adding rich desktop
notifications to the experience. We highly recommend either
using the Zulip desktop app or pinning the Zulip tab in your
favorite web browser.
<h4>Cross-platform</h4>
<p>The beta version
of <a href="https://github.com/zulip/zulip-electron">our new
cross-platform desktop app</a> is ready for you to try now,
and should work on Mac, Windows, and Linux. You'll have to
install it using the command line, and there might be some
rough edges; if you run into anything that doesn't feel
right, <a href="https://github.com/zulip/zulip-electron/issues/new">please
let us know</a>.</p>
<h4>Mac</h4>
<p>Download the package <a href="https://zulip.org/dist/apps/mac/Zulip-latest.dmg">here</a></p>
<h4>Windows</h4>
<p>Get the executable <a href="https://zulip.org/dist/apps/win/zulip-latest.exe">here</a></p>
<h4>Linux</h4>
There's a Linux client, but we don't have binaries posted
yet. <a href="https://github.com/zulip/zulip-desktop/issues/1">We hope to have a PPA setup soon.</a>
In the meantime, you can clone the <a href="https://github.com/zulip/zulip-desktop">git repo</a> and build from source.
<h4>Plan 9</h4>
<p>First, connect to our hosted 9P filesystem at plan9.zulip.org and then... no, we're totally kidding. There definitely isn't a version of Zulip for Plan 9.</p>
</section>
<section>
<h3>Mobile</h3>
<p>Get the Zulip app for your device in the <a href="https://itunes.apple.com/us/app/zulip/id714391349">App
Store</a> or the <a href="https://play.google.com/store/apps/details?id=com.zulip.android">Google
Play Store</a>
<p>Note: The Zulip Android app has many 1-star Play Store
ratings from a time when the app was not maintained. The
Zulip Android app is now actively developed by the open
source community, and we greatly appreciate reviews to help
the app's Play Store rating reflect the app's quality
today!</p>
</p>
</section>
</section>
</article>
</div>
<!-- Footer -->
<footer>
<div class="container">
<div id="logo">
<a href="index.html"><img src="images/logos/zulip-icon-512x512.png" />zulip</a>
</div>
<nav>
<ul>
<li><a href="https://blogs.dropbox.com/tech/2015/09/open-sourcing-zulip-a-dropbox-hack-week-project">About</a></li>
<li><a href="contribute.html">Contribute</a></li>
<li><a href="https://blog.zulip.org/">Blog</a></li>
<li><a href="https://chat.zulip.org">Community Chat</a></li>
<li><a href="https://zulip.readthedocs.io/en/latest/roadmap.html">Roadmap</a></li>
</ul>
</nav>
</div>
</footer>
</body>
</html>