-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
112 lines (108 loc) · 5.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/Chalarangelo/[email protected]/dist/mini-dark.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="/style.css">
<title>ProtocolSupport | Home</title>
<!-- OpenGraph -->
<meta property="og:title" content="ProtocolSupport | Home" />
<meta property="og:type" content="website" />
<meta property="og:description" content="Keeping your server modern" />
<meta property="og:locale" content="en_GB" />
<meta property="og:site_name" content="ProtocolSupport" />
</head>
<body>
<header class="sticky">
<a href="/" class="button">Home</a>
<a href="/addons" class="button">Addons</a>
<a href="/support" class="button">Support</a>
</header>
<div class="container">
<div class="row">
<div class="col-lg-3"></div>
<div class="col-sm-12 col-lg-6" style="text-align: center;">
<h1>ProtocolSupport <small>Keeping your server modern</small></h1>
<section class="section">
<p>
ProtocolSupport allows modern Minecraft servers to serve users using older clients.
</p>
<p>
We support clients running 1.18.*, 1.17.*, 1.16.*, 1.15.*, 1.14.*, 1.13.*, 1.12.*, 1.11.*, 1.10.*, 1.9.*, 1.8.*, 1.7.*, 1.6.*, 1.5.* and 1.4.7
</p>
</section>
<div class="row">
<div class="col-sm-1 col-md-2 hidden-lg"></div>
<div class="col-sm-10 col-md-4 col-lg-6">
<a class="button support-button" style="display: block;" href="https://github.com/ProtocolSupport/ProtocolSupport"><img src="/github-logo.png"></a>
</div>
<div class="col-sm-1 hidden-md hidden-lg"></div>
<div class="col-sm-1 hidden-md hidden-lg"></div>
<div class="col-sm-10 col-md-4 col-lg-6">
<a class="button support-button" style="display: block;" href="https://discord.gg/x935y8p"><img src="/discord-logo.png"></a>
</div>
<div class="col-md-2 hidden-lg"></div>
</div>
<div class="row">
<div class="col-sm-1 col-md-2 hidden-lg"></div>
<div class="col-sm-10 col-md-4 col-lg-6">
<a class="button home-button" style="display: block;" href="/addons">Addons</a>
</div>
<div class="col-sm-1 hidden-md hidden-lg"></div>
<div class="col-sm-1 hidden-md hidden-lg"></div>
<div class="col-sm-10 col-md-4 col-lg-6">
<a class="button home-button" style="display: block;" href="/support">Support</a>
</div>
<div class="col-md-2 hidden-lg"></div>
</div>
</div>
<div class="col-lg-3"></div>
</div>
<div class="row">
<div class="col-sm-12 col-md-8">
<h3>About</h3>
<p>
ProtocolSupport exists to solve the age-old problem of <em>"What do I do if my users refuse to update their client?"</em> in the most effective way possible.
</p>
<p>
With ProtocolSupport, you may continue to update your server whilst allowing your users to continue using the Minecraft versions they prefer. As a result,
everyone is happy - your server is up to date, and your users do not need to worry about updating.
</p>
<h3>How it works</h3>
<p>
ProtocolSupport is a protocol transformer. It hooks into the server's networking code, and waits for a connection. When a connection is made, ProtocolSupport
figures out what version the client is using, and translates the packets from it to the version the server understands. Then, when the server attempts
to send a packet to the client, it is translated back into the version the client understands.
</p>
<p>
Where blocks and items are present on the server but not on the client, they are replaced by something else. Most blocks are replaced by something of equal
hardness, to avoid issues related to the timing of breaking blocks. If you'd like to change how things are remapped, see the
<a href="/addons#ProtocolSupportStuff">ProtocolSupportStuff addon</a>.
</p>
</div>
<div class="col-sm-12 col-md-4">
<h3>Downloads</h3>
<div class="warning card fluid">
<p>
Please note that ProtocolSupport only supports the very latest version of
<a href="https://www.spigotmc.org/">Spigot</a> or
<a href="https://papermc.io/">Paper</a>.
</p>
</div>
<a class="primary button" href="https://build.hurricanegames.org/job/ProtocolSupport/lastSuccessfulBuild/artifact/target/ProtocolSupport.jar" style="display: block;"><i class="fa fa-download"></i> Latest Development Build</a>
<a class="tertiary button" href="https://www.spigotmc.org/resources/protocolsupport.7201/" style="display: block;"><i class="fa fa-globe"></i> Spigot Page</a>
<a class="secondary button" href="/old" style="display: block;"><i class="fa fa-warning"></i> Old Versions</a>
<a class="button" href="https://github.com/ProtocolSupport/ProtocolSupport" style="display: block;"><i class="fa fa-github"></i> Source Code</a>
</div>
</div>
<div class="footer-push"></div>
</div>
<footer class="footer">
<p>
© 2017 ProtocolSupport Team | Licensed under the <a href="https://github.com/ProtocolSupport/protocolsupport.github.io/blob/master/LICENSE">GNU AGPL v3.0</a>
</p>
</footer>
</body>
</html>