Compare commits

..

12 Commits

Author SHA1 Message Date
vx-clutch
3f27b372b0 chore: update todo 2026-03-10 22:03:11 -04:00
vx-clutch
6a6c1b30d8 refactor: update dir name to match url 2026-03-10 22:03:05 -04:00
821e318452 fix typo 2026-02-07 16:32:33 -05:00
ecb14f1680 update date 2026-01-31 17:03:58 -05:00
c6b2317374 add fes-1.2.0.tar.gz 2026-01-31 17:02:55 -05:00
f1263cb1f2 update fes.html 2026-01-31 16:56:33 -05:00
3e17e73ad2 yait -> fp on home link 2026-01-28 10:14:48 -05:00
f8822bf79c add fp to docs.fsdproject.org 2026-01-28 10:12:19 -05:00
29f848fb98 update page for fp 2026-01-26 21:05:01 -05:00
38f1e9ce01 fix 2026-01-23 13:18:06 -05:00
e1a62a16b5 fix 2026-01-22 22:32:20 -05:00
0d229acb0c move page 2026-01-22 22:29:19 -05:00
14 changed files with 298 additions and 3 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -9,7 +9,7 @@ fes.app.global.start(fes, site, "Community")
site:h1("Community") site:h1("Community")
site:h2("Discord") site:h2("Discord")
site:p("Offical " .. std.a("https://discord.gg/A7QBvK5jhd", "discord") .. " server of the fSD project. This is a place where you can sumbit patches. (we do have plans for an email list)") site:p("Offical " .. std.a("https://discord.gg/A7QBvK5jhd", "discord") .. " server of the fSD project. This is a place where you can submit patches. (we do have plans for an email list)")
fes.app.global.finish(fes, site) fes.app.global.finish(fes, site)

View File

@@ -8,6 +8,7 @@ fes.app.global.start(fes, site, "Releases")
local pkgs = { local pkgs = {
"yait", "yait",
"fes", "fes",
"fp",
} }
table.sort(pkgs) table.sort(pkgs)

View File

@@ -63,7 +63,7 @@ local latest = latestRelease(tars, "fes")
site:h2("Download") site:h2("Download")
site:ul { site:ul {
std.p(std.a("/archive/fes/" .. latest, latest) .. " (2026-04-1)"), std.p(std.a("/archive/fes/" .. latest, latest) .. " (2026-31-1)"),
std.a("/archive/fes", "Looking for specific version?") std.a("/archive/fes", "Looking for specific version?")
} }

View File

@@ -0,0 +1,28 @@
local fes = require("fes")
local std = fes.std
local u = fes.util
local site = fes.fes()
fes.app.global.start(fes, site, "fp")
site:h2("Fp")
site:muted("FreePkg is the offical package manager for fSD packages.")
site:h2("Development")
site:p("You can " .. std.external("https://git.fsdproject.org/fp/log.html", "browse") .. " its source code or get a copy using the following command:")
site:code("git clone https://git.vxserver.dev/fSD/fp")
site:h2("Usage")
site:p("The easiest way to run fp is through a curl")
site:code("curl --proto '=https' --tlsv1.2 -sSf https://dl.fsdproject.org/fp | sh -s -- --web-ver")
site:h2("Download")
site:ul {
std.p(std.a("/archive/tools/fp-0.1.1.tar.gz", "fp-0.1.1") .. " (2026-26-01)"),
std.a("/archive/tools", "Looking for specific version?")
}
fes.app.global.finish(fes, site)
return site

View File

@@ -15,7 +15,7 @@ site:code("git clone https://git.vxserver.dev/fSD/yait")
site:h2("Download") site:h2("Download")
site:ul { site:ul {
std.p(std.a("/archive/yait/yait-1.0.tar.gz", "yait-1.0") .. " (2025-31-12)"), std.p(std.a("/archive/tools/yait-1.0.tar.gz", "yait-1.0") .. " (2025-31-12)"),
std.a("/archive/tools", "Looking for specific version?") std.a("/archive/tools", "Looking for specific version?")
} }

View File

Before

Width:  |  Height:  |  Size: 70 KiB

After

Width:  |  Height:  |  Size: 70 KiB

View File

@@ -650,6 +650,14 @@ return site</code></pre>
<td><code>util.copyright(link: string, holder: string)</code></td> <td><code>util.copyright(link: string, holder: string)</code></td>
<td>Used when setting the website copyright holder.</td> <td>Used when setting the website copyright holder.</td>
</tr> </tr>
<tr>
<td><code>util.ls(dir)</code></td>
<td>Returns a table of the files in the given directory</td>
</tr>
<tr>
<td><code>util.run(cmd)</code></td>
<td>Returns the output of the provided command. stdout only.</td>
</tr>
</tbody> </tbody>
</table> </table>
<h3>Dkjson</h3> <h3>Dkjson</h3>

View File

@@ -0,0 +1,252 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Documentation</title>
<style>
html, body {
min-height: 100%;
margin: 0;
padding: 0;
background: #0f1113;
color: #e6eef3;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
line-height: 1.5;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
main {
max-width: 830px;
margin: 0 auto;
padding: 36px;
}
header {
margin-bottom: 36px;
}
h1 {
font-size: 40px;
font-weight: 700;
margin: 0 0 20px 0;
}
h2 {
font-size: 32px;
margin: 26px 0 14px;
border-bottom: 1px solid rgba(255,255,255,.1);
padding-bottom: 6px;
}
h3 {
font-size: 26px;
margin: 22px 0 12px;
}
p {
margin: 14px 0;
}
header p {
color: #9aa6b1;
}
nav {
margin: 28px 0;
padding: 20px;
background: #1a1c20;
border: 1px solid rgba(255,255,255,.06);
border-radius: 4px;
}
nav h2 {
font-size: 20px;
margin: 0 0 12px 0;
border: none;
padding: 0;
}
nav ul {
list-style: none;
padding: 0;
margin: 0;
}
nav li {
margin: 6px 0;
}
a {
color: #68a6ff;
text-decoration: none;
transition: color .15s ease;
}
a:hover {
text-decoration: underline;
}
section {
margin-top: 36px;
}
ul, ol {
margin: 14px 0;
padding-left: 26px;
}
li {
margin: 6px 0;
}
code {
padding: 3px 7px;
border-radius: 3px;
font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
font-size: .9em;
color: #cde7ff;
background: #1a1c20;
border: 1px solid rgba(255,255,255,.06);
}
pre {
padding: 20px;
border-radius: 4px;
margin: 14px 0;
overflow-x: auto;
background: #1a1c20;
border: 1px solid rgba(255,255,255,.06);
font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
font-size: 14px;
line-height: 1.6;
}
pre code {
background: none;
border: none;
padding: 0;
font-size: inherit;
color: inherit;
}
blockquote {
border-left: 3px solid #68a6ff;
padding-left: 18px;
margin: 14px 0;
color: #dfe9ee;
font-style: italic;
}
table {
width: 100%;
border-collapse: collapse;
margin: 14px 0;
}
th, td {
padding: 12px 16px;
text-align: left;
border-bottom: 1px solid rgba(255,255,255,.06);
}
th {
background: #1a1c20;
font-weight: 600;
color: #f0f6f8;
}
tr:hover {
background: rgba(255,255,255,.02);
}
footer {
margin-top: 48px;
padding-top: 20px;
border-top: 1px solid rgba(255,255,255,.1);
color: #9aa6b1;
font-size: 14px;
}
</style>
</head>
<body>
<main>
<header>
<h1>Documentation</h1>
<p>fp: Free Pkg, the offical package manager for fSD software</p>
</header>
<nav>
<h2>Contents</h2>
<ul>
<li><a href="#introduction">Introduction</a></li>
<li><a href="#installation">Installation</a></li>
<li><a href="#quick">Quick Start</a></li>
<li><a href="#cli-reference">Cli Reference</a></li>
</ul>
</nav>
<section id="introduction">
<h2>Introduction</h2>
<p>Fp, or FreePkg, is a minimal package manager that install fSD packages.</p>
</section>
<section id="installation">
<h2>Installation</h2>
<h3>From Source</h3>
<pre><code>git clone https://git.vxserver.dev/fSD/fp</code></pre>
<pre><code>cd fp</code></pre>
<pre><code>sudo make install</code></pre>
<h3>One Shot</h3>
<pre><code>curl --proto '=https' --tlsv1.2 -sSf https://dl.fsdproject.org/fp | sh -s -- --web-ver</code></pre>
</section>
<section id="quick">
<h2>Quick Start</h2>
<pre><code>fp install fes</code></pre>
<p>This installs the Fes package</p>
<section id="cli-reference">
<h2>Cli Reference</h2>
<table> <thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>--help</code></td>
<td>Display help information.</td>
</tr>
<tr>
<td><code>--version</code></td>
<td>Print version information.</td>
</tr>
<tr>
<td><code>install</code></td>
<td>Installs a package</td>
</tr>
<tr>
<td><code>remove</code></td>
<td>Uninstalls a package</td>
</tr>
<tr>
<td><code>update</code></td>
<td>Update fp's version</td>
</tr>
<tr>
<td><code>search</code></td>
<td>Search for a package, this checks against both the name and the description.</td>
</tr>
</tbody>
</table>
</section>
<footer>
<p>Last updated: 2026-28-01</p>
</footer>
</main>
</body>
</html>

View File

@@ -23,6 +23,8 @@ site:note(u.cc {
std.center(std.h3("Tools")), std.center(std.h3("Tools")),
std.a("/static/yait.html", std.h4("Yait")), std.a("/static/yait.html", std.h4("Yait")),
std.p("&emsp; Yet Another Init Tool Online Documentation. [" .. std.a("https://fsdproject.org/releases/yait", "yait home") .. "]"), std.p("&emsp; Yet Another Init Tool Online Documentation. [" .. std.a("https://fsdproject.org/releases/yait", "yait home") .. "]"),
std.a("/static/fp.html", std.h4("Fp")),
std.p("&emsp; Free Pkg Online Documentation. [" .. std.a("https://fsdproject.org/releases/fp", "fp home") .. "]"),
}) })
}) })

4
todo Normal file
View File

@@ -0,0 +1,4 @@
update hacking page
- update format
- add guides for commit names i.e.
chore: fix: feat: docs: style: refactor: test: perf: review: