-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.html
123 lines (118 loc) · 5.04 KB
/
changelog.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
122
123
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>simC - Home</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Nunito+Sans:300,400,600,700,800,900" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/railscasts.min.css">
<link rel="stylesheet" href="global.css">
<link rel="stylesheet" href="landing.css">
<link rel="author" href="humans.txt">
</head>
<body>
<nav>
<div class="logo"></div>
<ul class="menu">
<div class="menu__item toggle"><span></span></div>
<li class="menu__item"><a href="doc.html" class="link link--dark"><i class="fa fa-book"></i> Documentation</a></li>
<li class="menu__item"><a href="https://github.com/cimplec/sim-c" class="link link--dark"><i class="fa fa-github"></i> Github</a></li>
</ul>
</nav>
<div class="changelog">
<div class="wrapper">
<h3 class="section__title">Changelog</h3>
<div class="changelog__item">
<div class="changelog__meta">
<h4 class="changelog__title">v0.1-alpha-4</h4>
<small class="changelog__date">23/01/2021<br>(DD/MM/YYYY)</small>
</div>
<div class="changelog__detail">
<ul>
<li>Added Structures</li>
<li>Added single line versions of block statements</li>
<li>Added support for boolean</li>
<li>Updated lexer to class</li>
<li>Balanced parantheses check</li>
<li>Arrays (complete with indexing and assignment)</li>
<li>Functions more usable (using variable dependency in symbol table)</li>
<li>Explicit typecasting</li>
<li>type function</li>
<li>size function</li>
</ul>
</div>
</div>
<div class="changelog__item">
<div class="changelog__meta">
<h4 class="changelog__title">v0.1-alpha-3</h4>
<small class="changelog__date">15/12/2020<br>(DD/MM/YYYY)</small>
</div>
<div class="changelog__detail">
<ul>
<li>Added array declarations</li>
<li>Added character input</li>
<li>Added bitwise operators</li>
<li>Added import statements</li>
<li>Added third-party modules support</li>
<li>Added package manager(simpack)</li>
<li>Fixed f-strings</li>
<li>Fixed string input</li>
<li>Fixed color leakage in terminal</li>
<li>Modularize Parser</li>
</ul>
</div>
</div>
<div class="changelog__item">
<div class="changelog__meta">
<h4 class="changelog__title">v0.1-alpha-2</h4>
<small class="changelog__date">16/10/2020<br>(DD/MM/YYYY)</small>
</div>
<div class="changelog__detail">
<ul>
<li>Added raw C support</li>
<li>Added variable support in for loop</li>
<li>Added escape sequences support</li>
<li>Added functions with default arguments</li>
<li>Added math constants support</li>
<li>Fixed logical operators</li>
<li>Fixed formal parameters of functions</li>
<li>Fixed input statement to accept input without a prompt and specific data type</li>
</ul>
</div>
</div>
<div class="changelog__item">
<div class="changelog__meta">
<h4 class="changelog__title">v0.1-alpha-1</h4>
<small class="changelog__date">21/09/2020<br>(DD/MM/YYYY)</small>
</div>
<div class="changelog__detail">
<ul>
<li>Minor bug fixes</li>
<li>Added Power operator</li>
<li>Added pip install support</li>
</ul>
</div>
</div>
<div class="changelog__item">
<div class="changelog__meta">
<h4 class="changelog__title">v0.1-alpha</h4>
<small class="changelog__date">12/07/2020<br>(DD/MM/YYYY)</small>
</div>
<div class="changelog__detail">
<ul>
<li>Alpha release</li>
<li>Added Basic constructs of C</li>
<li>Dynamic typing</li>
</ul>
</div>
</div>
</div>
</div>
<footer class="footer">Made with ♥ for C developers.</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<script src="main.js"></script>
</body>
</html>