-
Notifications
You must be signed in to change notification settings - Fork 0
/
changes.html
59 lines (49 loc) · 1.45 KB
/
changes.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
<!DOCTYPE html>
<html lang = "en-US">
<head>
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
</style>
<title>Mod DLL</title>
</head>
<body>
<a href = "index.html">Home</a>
<a href = "showcase.html">Showcase of ModDLL</a>
<a href = "changes.html">Upcoming Updates</a>
<a href = "https://www.github.com/EzraJ/Mod-ModDLL" target = "_blank">ModDLL Github</a>
<h1>Current Features</h1>
<ul>
<li>String parsing</li>
<li>Abiltiy to make global variables</li>
<li>Lua Functionality</li>
<li>Pseudo-linux Commands Including:</li>
<ul style = "list-style-type:square">
<li>alias</li>
<li>cat</li>
<li>cd</li>
<li>clear</li>
<li>echo</li>
<li>ls</li>
<li>touch</li>
</ul>
</ul>
<h1>Upcoming Changes</h1>
<table stlye = "width:100%">
<tr>
<th>Mod DLL v1.1</th>
<th>Mod DLL v1.2</th>
</tr>
<tr>
<td>
Add extra pseudo-linux commands and implement Mod Script Format
</td>
<td>
Lua Script Debugging
</td>
</tr>
</table>
</body>
</html>