-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
120 lines (98 loc) · 5.17 KB
/
index.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
<!DOCTYPE html>
<html lang='en'>
<head>
<title>cabal</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />
<meta name="description" content="p2p chat" />
<link rel="stylesheet" type="text/css" href="css/fonts/nitti.css" />
<link rel="stylesheet" type="text/css" href="css/fonts/ibmplexmono.css" />
<link rel="stylesheet" type="text/css" href="css/fonts/ibmplexsans.css" />
<!--<link rel="stylesheet" type="text/css" href="/css/footer.css"/>-->
<link rel="stylesheet" type="text/css" href="css/style.css" />
<style type="text/css">
.no-fouc {display: none;}
</style>
<script type="text/javascript">
document.documentElement.className = 'no-fouc';
</script>
</head>
<body class="landing">
<header><div class="header-wrapper"><div class="inner-wrapper">
<nav id="navBar" class="no-js nav-bar">
<div id='overlay'></div>
<a class="nav-logo" href="/" aria-label="Cabal homepage"></a>
<div class="nav-right">
<div class="nav-links">
<ul>
<li class="alt"><a class="button uppercase" href="download.html" role="button">download</a></li>
<li class="alt"><a class="button uppercase" href="faq.html" role="button">faq</a></li>
<li class="alt"><a class="button uppercase" href="https://github.com/cabal-club" role="button">source code</a></li>
</ul>
</div>
</div>
</nav>
</div></div></header>
<main class="content">
<div class="wrapper">
<section class="light"><div class="section-wrapper"><div class="columns">
<div>
<h1>cabal</h1>
<h2 class="h2-homepage">experimental p2p community<br />chat platform</h2>
</div>
<div>
<ul id='guide'>
<li><b>Desktop:</b> <a href="https://github.com/cabal-club/cabal-desktop/releases">cabal-desktop</a></li>
<li><b>Terminal:</b> <code><a href="https://nodejs.org">npm</a> install --global cabal</code></li>
<li><b>Source:</b> <a href='https://github.com/cabal-club'>git</a></li>
<li><b>Values:</b> <a href="https://github.com/cabal-club/commons/blob/master/values.md#values">Community values</a></li>
<hr/>
<li><b>FAQ:</b> <a href="faq.html">Frequently Asked Questions</a></li>
<hr/>
<li><b>IRC:</b> <a href='https://kiwiirc.com/nextclient/irc.libera.chat#cabal.club'>irc://irc.libera.chat/#cabal.club</a></li>
</ul>
</div></div></section>
<section id="public">
<h2>Join the cabal public chat</h2>
<h3 class="selectable">cabal://324eee92611cd877841c4de9fd5253e9dba6033329a837ee5f01beb005dffb2f</h3>
<p>Enter this key into any cabal client to join the public cabal.</p>
<p><i>Cabal is super young, and while we try to dogfood it as we develop it, sometimes things break. If they do, please join us on libera.chat IRC in #cabal.club and let us know!</i></p>
<p><strong><code>[2023-12-12T17:39+02:00]</code> Cabal's discovery layer is UP. All clients are updated and operable.
cabal-cli has been updated to <a href="https://www.npmjs.com/package/cabal">15.0.0</a>; cabal-desktop has been updated to
<a href="https://github.com/cabal-club/cabal-desktop/releases/tag/v8.0.0">v8.0.0</a>.
Please update your client of choice for normal connectivity. </strong></p>
<p><i><code><s>[2023-10-17T19:44+02:00]</code> Cabal's discovery layer is back UP.
Four new community-run bootstrap nodes have been deployed, supplementing the 3 nodes from the DHT vendor.
cabal-cli has been updated to 15.0.0; please update for normal connectivity. cabal-desktop remains
unpatched. The public cabal is once again being used to coordinate development. </s></i></p>
<p><i><code><s>[2023-10-16T19:22+02:00]</code> Cabal's discovery layer is DOWN due to changes in the underlying DHT. New
bootstrap nodes are being worked on. We aim to issue a patch for cabal-cli within 24h, and will try to
patch cabal-desktop within 7 days. IRC is being used to coordinate fixes.</s></i></p>
</section>
<section id="about" class="default"><div class="section-wrapper"><div class="columns">
<div>
<h2>ABOUT cabal</h2>
<p>No servers are needed to join a cabal, or to start your own. Everything
is stored and runs locally. A cabal can never go down or be taken
away.</p>
<p>A cabal is identified by its secret key
(<code>cabal://7d99b453506b974...</code>) that you share with your
friends. This key lets them <i>find</i> and <i>join</i> the cabal.</p>
<p>Cabal works over the internet, but also lets you chat over the local
network. If offline, you can still browse your full chat history, and send
messages that will be sync'd with any future peers you connect to.</p>
</div>
<div style="margin-right:-250px; width:800px">
<img src="desktop.png" alt="desktop app" width="600px"/>
</div>
</div></div></section>
</main>
<script>
window.addEventListener("load", function(e) {
document.documentElement.className = '';
});
</script>
<!-- website forked from https://handshake.org (MIT) -->
</body>
</html>