-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimeline.json
55 lines (49 loc) · 1.96 KB
/
timeline.json
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
[
{
"Title": "Bootloader",
"Text": "The bootloader is the essential part of any operating system. Without it the operating system wouldn't even be able to boot",
"Status": "Completed",
"Icon": "cogs"
},
{
"Title": "Basic Kernel",
"Text": "A basic kernel which has a simple terminal or prompt.",
"StatusText": "The kernel is still being worked upon. It is currently very bare-bones",
"Status": "In Dev",
"Icon": "terminal",
"Side": "Right"
},
{
"Title": "Basic shell",
"Text": "A shell which can take input and show some output. Supporting newlines, and scolling.",
"StatusText": "A barebones version is available in <code>barebones/</code> or <code>meaty-skeleton/</code>",
"Status": "In Dev",
"Icon": "terminal",
"Side": "Right"
},
{
"Title": "Meaty Skeleton",
"Text": "A less-barebones OS, with the basic C libraries. This is currently located in the <a href=\"https://github.com/jQueryOS/AvocadOS/tree/meaty-skeleton\"><code>meaty-skeleton/</code></a> branch.",
"Status": "Completed",
"Icon": "wrench"
},
{
"Title": "Standard libraries",
"Text": "By cross-compiling standard libraries with gcc, AvocadOS will be able to execute x86 binaries",
"Status": "In Dev",
"Icon": "book",
"Side": "Right"
},
{
"Title": "V8",
"Text": "V8's binaries and other can be cross compiled on top of the standard libraries. This will allow V8 to run as a powerful backend of the OS",
"Status": "Planned",
"Icon": "code",
"Side": "Right"
},
{
"Title": "Full-Resolution GUI / Display",
"Text": "Currently, the bootloader uses the VGA Video Memory, as a simple way to display things. This can be quite limiting as colors are very limited along with resolution.",
"Icon": "desktop"
}
]