add support status page

This commit is contained in:
2024-06-26 19:41:23 +02:00
parent b9958fd841
commit 72e7470501
4 changed files with 158 additions and 3 deletions

View File

@@ -0,0 +1,149 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Support Status - janishutz.com</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=7">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="/css/mainstyle.css">
<script defer src="https://static.janishutz.com/libs/jquery/jquery.min.js"></script>
<script defer src="/js/loader.js"></script>
<style>
.top-bar {
font-size: 1.1rem;
font-weight: bold;
min-width: max-content;
}
.status {
padding-right: 15px;
min-width: max-content;
}
.name {
padding-right: 15px;
min-width: max-content;
}
.eol {
padding-right: 15px;
min-width: max-content;
}
.info {
font-weight: normal;
font-style: italic;
font-size: smaller;
color: rgb(41, 41, 41);
margin: 10px;
}
.support-status {
margin-bottom: 20px;
}
.support-status-wrapper {
width: 100%;
overflow: scroll;
}
</style>
</head>
<body>
<div id="nav"></div>
<div class="content-wrapper">
<div class="content">
<img src="https://static.janishutz.com/logo.jpg" alt="page Logo" class="project-logo">
<h1 class="title">Support Status</h1>
<a href="/legal" class="back">&leftarrow; Back to legal hub</a>
<p style="text-align: center;">View the support status of all my projects, roadmaps and expected End Of Life dates</p>
<div class="support-status-wrapper">
<table class="support-status">
<tr class="top-bar">
<td class="name">Software</td>
<td class="status">Status</td>
<td class="eol">Expected EOL</td>
<td>Roadmap</td>
</tr>
<tr>
<td class="name">Store</td>
<td class="status">Supported</td>
<td class="eol">-</td>
<td>-</td>
</tr>
<tr>
<td class="name">ID (Account Services)</td>
<td class="status">Supported</td>
<td class="eol">-</td>
<td>-</td>
</tr>
<tr>
<td class="name">StorageManager</td>
<td class="status">Supported</td>
<td class="eol">-</td>
<td>-</td>
</tr>
<tr>
<td class="name">QR & Barcode Insight</td>
<td class="status">Supported</td>
<td class="eol">-</td>
<td>-</td>
</tr>
<tr>
<td class="name">libreevent</td>
<td class="status">Supported</td>
<td class="eol">-</td>
<td><a href="https://github.com/simplePCBuilding/libreevent/issues/12" target="_blank">Roadmap</a></td>
</tr>
<tr>
<td class="name">smuL (SimpleMediaUpscalerLite)</td>
<td class="status">Supported</td>
<td class="eol">-</td>
<td><a href="https://github.com/simplePCBuilding/SimpleMediaUpscalerLite?tab=readme-ov-file#roadmap" target="_blank">Roadmap</a></td>
</tr>
<tr>
<td class="name">BiogasControllerApp</td>
<td class="status">Supported</td>
<td class="eol">July 1st 2026</td>
<td>-</td>
</tr>
<tr>
<td class="name">ConductorCalc</td>
<td class="status" title="This software has not been completed yet">In Development</td>
<td class="eol">-</td>
<td><a href="https://blog.janishutz.com/posts/2024/06/update-on-projects/#conductorcalc" target="_blank">Roadmap</a></td>
</tr>
<tr>
<td class="name">MusicPlayer V3</td>
<td class="status" title="This software has not been completed yet">In Development</td>
<td class="eol">-</td>
<td><a href="https://blog.janishutz.com/posts/2024/06/update-on-projects/#musicplayer" target="_blank">Roadmap</a></td>
</tr>
<tr>
<td class="name">MusicPlayer V1</td>
<td class="status">Unsupported</td>
<td class="eol">September 1st 2023</td>
<td>- (EOL)</td>
</tr>
<tr>
<td class="name">MusicPlayer V2</td>
<td class="status">Unsupported</td>
<td class="eol">July 1st 2024</td>
<td>- (EOL)</td>
</tr>
</table>
</div>
<p class="info">All pieces of software without an expected EOL date do not have one, because it simply hasn't been decided yet. There might be completely rewritten versions of them taking their place in the future or an EOL date may be added</p>
<p class="info">Once a software has reached EOL, it doesn't mean it will stop working, but rather that it will not receive any more updates</p>
<p style="margin-top: 50px;">Looking for the support page?</p>
<a href="https://support.janishutz.com" class="button" target="_blank">Support</a>
</div>
</div>
<div id="footer"></div>
</body>
</html>