feat: update docs

This commit is contained in:
2026-05-04 07:46:49 +02:00
parent 3ad5ae2e75
commit 8e354a0083
4 changed files with 248 additions and 37 deletions
@@ -256,7 +256,7 @@ bool print_file(
<pre><code>#include &lt;gui/dialogs.hpp&gt;</code></pre><br> <pre><code>#include &lt;gui/dialogs.hpp&gt;</code></pre><br>
<hr> <hr>
<p class="center">Copyright (c) 2026 Montauk Operating System. All rights reserved.<br><br>Page last revised 22 April 2026.</p> <p class="center">Copyright &copy; 2026 Montauk Operating System. All rights reserved.<br><br>Page last revised 22 April 2026.</p>
<hr> <hr>
+127
View File
@@ -0,0 +1,127 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="MontaukOS Desktop Internals Documentation">
<title>Desktop Internals - MontaukOS</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Open Sans', Arial, sans-serif;
max-width: 960px;
margin: 0 auto;
padding: 1em;
line-height: 1.5;
display: flex;
gap: 2em;
}
p { margin: 0 0 0.5em; }
h2 { margin: 0.5em 0; }
.sidebar {
width: 160px;
flex-shrink: 0;
}
.sidebar ul {
list-style: none;
padding: 0;
}
.sidebar li {
margin: 0.5em 0;
}
.sidebar a {
color: #0066CC;
text-decoration: none;
font-weight: 600;
}
.sidebar a:hover {
color: #004499;
text-decoration: underline;
}
.sidebar hr {
border: none;
border-top: 1px solid #999;
margin: 0.75em 0;
}
.main {
flex: 1;
min-width: 0;
}
a { color: #0000EE; }
a:visited { color: #0066CC; }
hr { border-style: solid; border-width: 1px 0 0 0; border-color: #999; }
.box {
border: 1px solid #999;
padding: 0.5em;
margin: 0.5em 0;
}
.doc-list {
list-style: none;
padding: 0;
}
.doc-list li {
margin: 0.75em 0;
}
.doc-list a {
font-weight: 600;
}
.doc-list p {
margin: 0.25em 0 0 1.5em;
color: #555;
font-size: 0.9em;
}
</style>
</head>
<body>
<div class="sidebar">
<ul>
<li><a href="../index.html">Home</a></li>
<li><a href="../index.html">Documentation</a></li>
</ul>
<hr>
<ul>
<li><a href="index.html" class="current">Desktop Internals</a></li>
</ul>
<hr>
<ul>
<li><a href="dialogslib.html">Dialogs Library</a></li>
<li><a href="systemconfiguration.html">System Configuration Virtual Folder</a></li>
</ul>
</div>
<div class="main">
<div class="center">
<h1>Desktop Internals</h1>
</div>
<hr>
<p>
This volume documents the internal architecture of the MontaukOS desktop environment,
including the dialogs library, virtual folder system, and system configuration applets.
</p>
<h2>Pages</h2>
<ul class="doc-list">
<li>
<a href="dialogslib.html">Dialogs Library</a>
<p>File, print, and message box dialogs exposed through the shared dialogs library.</p>
</li>
<li>
<a href="systemconfiguration.html">System Configuration Virtual Folder</a>
<p>Virtual view used for built-in configuration applets.</p>
</li>
</ul>
<hr>
<div class="center">
<a href="../index.html">Back to Documentation Index</a>
</div>
</div>
</body>
</html>
+6 -36
View File
@@ -84,10 +84,6 @@
<li><a href="../index.html">Home</a></li> <li><a href="../index.html">Home</a></li>
<li><a href="index.html" class="current">Documentation</a></li> <li><a href="index.html" class="current">Documentation</a></li>
</ul> </ul>
<hr>
<ul>
<li><a href="introduction.html">Introduction</a></li>
</ul>
</div> </div>
<div class="main"> <div class="main">
@@ -97,41 +93,15 @@
<hr> <hr>
<h2>Welcome</h2> <h2>Volumes</h2>
<p>
Welcome to the MontaukOS documentation. Here you will find information about the
operating system, its components, and how to use and develop for it.
</p>
<h2>Documentation Index</h2>
<ul class="doc-list"> <ul class="doc-list">
<li> <li>
<a href="introduction.html">Introduction</a> <a href="dtinternals/index.html">Desktop Internals</a>
<p>Installation, running on emulator, and your first steps with MontaukOS.</p> <p>Internals of the MontaukOS desktop environment.</p>
</li> </li>
<li> <li>
<a href="dtinternals/dialogslib.html">Dialogs Library</a> <a href="usersmanual/index.html">User's Manual</a>
<p>Desktop internals: file, print, and message box dialogs exposed through the shared dialogs library.</p> <p>Manual for users of MontaukOS.</p>
</li>
<li>
<a href="dtinternals/systemconfiguration.html">System Configuration Virtual Folder</a>
<p>Desktop internals: virtual view used for built-in configuration applets.</p>
</li>
<li>
<a href="#">Kernel Architecture</a>
<p>Overview of the preemptive multitasking kernel and its subsystems.</p>
</li>
<li>
<a href="#">Userspace Environment</a>
<p>The desktop environment, window manager, and system services.</p>
</li>
<li>
<a href="#">Applications</a>
<p>Documentation for the applications included with MontaukOS.</p>
</li>
<li>
<a href="#">Building from Source</a>
<p>How to compile and build MontaukOS yourself.</p>
</li> </li>
</ul> </ul>
@@ -143,4 +113,4 @@ operating system, its components, and how to use and develop for it.
</div> </div>
</body> </body>
</html> </html>
+114
View File
@@ -0,0 +1,114 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="MontaukOS User's Manual">
<title>User's Manual - MontaukOS</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Open Sans', Arial, sans-serif;
max-width: 960px;
margin: 0 auto;
padding: 1em;
line-height: 1.5;
display: flex;
gap: 2em;
}
p { margin: 0 0 0.5em; }
h2 { margin: 0.5em 0; }
.sidebar {
width: 160px;
flex-shrink: 0;
}
.sidebar ul {
list-style: none;
padding: 0;
}
.sidebar li {
margin: 0.5em 0;
}
.sidebar a {
color: #0066CC;
text-decoration: none;
font-weight: 600;
}
.sidebar a:hover {
color: #004499;
text-decoration: underline;
}
.sidebar hr {
border: none;
border-top: 1px solid #999;
margin: 0.75em 0;
}
.main {
flex: 1;
min-width: 0;
}
a { color: #0000EE; }
a:visited { color: #0066CC; }
hr { border-style: solid; border-width: 1px 0 0 0; border-color: #999; }
.box {
border: 1px solid #999;
padding: 0.5em;
margin: 0.5em 0;
}
.doc-list {
list-style: none;
padding: 0;
}
.doc-list li {
margin: 0.75em 0;
}
.doc-list a {
font-weight: 600;
}
.doc-list p {
margin: 0.25em 0 0 1.5em;
color: #555;
font-size: 0.9em;
}
</style>
</head>
<body>
<div class="sidebar">
<ul>
<li><a href="../index.html">Home</a></li>
<li><a href="../index.html">Documentation</a></li>
</ul>
<hr>
<ul>
<li><a href="index.html" class="current">User's Manual</a></li>
</ul>
</div>
<div class="main">
<div class="center">
<h1>User's Manual</h1>
</div>
<hr>
<p>
This volume is the manual for MontaukOS end users, covering installation, configuration,
and everyday use of the operating system and its applications.
</p>
<p>
No pages yet.
</p>
<hr>
<div class="center">
<a href="../index.html">Back to Documentation Index</a>
</div>
</div>
</body>
</html>