forked from TomtheCoder2/Phoenix-Network-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelist.html
66 lines (66 loc) · 3.07 KB
/
changelist.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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>Phoenix Network - Changelog</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="assets/css/index.css">
<link rel="icon" type="image/png" href="assets/img/favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="The changelist page for the phoenix network !">
<link href="https://fonts.googleapis.com/css?family=Montserrat:500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header>
<a class="logo" href="index.html"><img src="assets/img/logo.png" alt="logo"></a>
<nav>
<ul class="nav__links">
<li><a href="index.html">Home</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="changelist.html">ChangeLogs</a></li>
<li><a href="support.html">Support</a></li>
</ul>
</nav>
<a class="cta" href="#">Login</a>
<p class="menu cta">Menu</p>
</header>
<div class="overlay">
<a class="close">×</a>
<div class="overlay__content">
<a href="index.html">Home</a>
<a href="blog.html">Blog</a>
<a href="gallery.html">Gallery</a>
<a href="changelist.html">ChangeList</a>
<a href="support.html">Support</a>
<!--<a href="#">Login</a> -->
</div>
</div>
<div class="changelist">
<h1>v1.3</h1>
<ul>
<li>Added <a href="pets.html">Pets</a></li>
<li>Implemented auto-chat translate using the <span class="cmd">/translate</span> command</li>
<li>Added <span class="cmd">/skipwave</span> command</li>
<li><span class="cmd">/rtv</span> system improved</li>
<li><span class="cmd">/inspector</span> now shows up on the side instead of the front.</li>
<li>Team <span class="cmd">/t</span> chat forwarded to Discord for attack & survival</li>
<li>Content "server" fixed</li>
<li>Discord bot status shows current map</li>
<li>Code refactoring</li>
</ul>
</div>
<script type="text/javascript" src="assets/js/mobile.js"></script>
<script type="text/javascript">
var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();
(function(){
var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0];
s1.async=true;
s1.src='https://embed.tawk.to/61bfb957c82c976b71c22f1c/1fnaenvit';
s1.charset='UTF-8';
s1.setAttribute('crossorigin','*');
s0.parentNode.insertBefore(s1,s0);
})();
</script>
</body>
</html>