Upload website
This commit is contained in:
40
src/support/index.html
Normal file
40
src/support/index.html
Normal file
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="https://static.janishutz.com/css/slider.css">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
|
||||
<!-- SEO -->
|
||||
<title>Support | janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=7" />
|
||||
<meta name="keywords" content="" />
|
||||
<meta name="og:locale" content="en_GB" />
|
||||
<meta name="theme-color" content="#152b5c">
|
||||
<style>
|
||||
.support-icon {
|
||||
font-size: 10rem;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<nav></nav>
|
||||
<div class="content">
|
||||
<span class="material-symbols-outlined support-icon">support_agent</span>
|
||||
<h1 class="title">Support</h1>
|
||||
|
||||
<p class="text-center;">Ran into issues with Software? Have suggestions for features?</p>
|
||||
|
||||
<div class="inline-elements">
|
||||
<a class="button" href="https://support.janishutz.com/index.php?a=add">Get support</a>
|
||||
<a class="button" href="/support/support-status">Support Status</a>
|
||||
<a class="button" href="https://support.janishutz.com/index.php?a=add&category=6">Feature request</a>
|
||||
<a class="button" href="https://support.janishutz.com/knowledgebase.php">Knowledgebase</a>
|
||||
<a class="button" href="/support/old">Old websites</a>
|
||||
</div>
|
||||
</div>
|
||||
<footer></footer>
|
||||
</body>
|
||||
</html>
|
||||
44
src/support/old/index.html
Normal file
44
src/support/old/index.html
Normal file
@@ -0,0 +1,44 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="https://static.janishutz.com/css/slider.css">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
|
||||
<!-- SEO -->
|
||||
<title>Old versions | janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=7" />
|
||||
<meta name="keywords" content="" />
|
||||
<meta name="description" content="View old versions of the website" />
|
||||
<meta name="og:title" content="Old versions | janishutz.com" />
|
||||
<meta name="og:description" content="View old versions of the website" />
|
||||
<meta name="og:locale" content="en_GB" />
|
||||
<meta name="theme-color" content="#152b5c">
|
||||
<style>
|
||||
.support-icon {
|
||||
font-size: 10rem;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav></nav>
|
||||
<div class="content">
|
||||
<span class="material-symbols-outlined support-icon">archive</span>
|
||||
<h1 class="title">Old Websites</h1>
|
||||
|
||||
<p class="text-center;">View old versions of this website</p>
|
||||
|
||||
<div class="inline-elements">
|
||||
<a class="button" href="https://janishutz.github.io" target="_blank">Original Version</a>
|
||||
<a class="button" href="https://v1.janishutz.com" target="_blank">Version 1.0</a>
|
||||
<a class="button" href="https://v2.janishutz.com" target="_blank">Version 2.0</a>
|
||||
</div>
|
||||
</div>
|
||||
<footer></footer>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
179
src/support/support-status/index.html
Normal file
179
src/support/support-status/index.html
Normal file
@@ -0,0 +1,179 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- CSS -->
|
||||
<link rel="stylesheet" href="https://static.janishutz.com/css/slider.css">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
|
||||
<!-- SEO -->
|
||||
<title>Support Status | janishutz.com</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=7" />
|
||||
<meta name="keywords" content="" />
|
||||
<meta name="description" content="Check which projects are still supported and until when they are" />
|
||||
<meta name="og:title" content="Support Status | janishutz.com" />
|
||||
<meta name="og:description" content="Check which projects are still supported and until when" />
|
||||
<meta name="og:locale" content="en_GB" />
|
||||
<meta name="theme-color" content="#152b5c">
|
||||
<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: var( --color-text-accent );
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
.support-status {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.support-status-wrapper {
|
||||
max-width: 100%;
|
||||
overflow: scroll;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<nav></nav>
|
||||
<div class="content">
|
||||
<h1 class="title">Support Status</h1>
|
||||
|
||||
<a href="/support" class="back">← Back to support</a>
|
||||
|
||||
<p class="text-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">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">Dotfiles, Configs</td>
|
||||
<td class="status">Supported</td>
|
||||
<td class="eol">-</td>
|
||||
<td>-</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="name">Website</td>
|
||||
<td class="status">Supported</td>
|
||||
<td class="eol">-</td>
|
||||
<td>-</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="name">Store</td>
|
||||
<td class="status">Supported</td>
|
||||
<td class="eol">-</td>
|
||||
<td>-</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="name">MusicPlayer V3</td>
|
||||
<td class="status">Supported</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">Account Services (previously ID)</td>
|
||||
<td class="status">Supported</td>
|
||||
<td class="eol">-</td>
|
||||
<td>-</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="name">StorageManager</td>
|
||||
<td class="status">Supported <sup>1</sup></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/janishutz/libreevent/issues/12" target="_blank">Roadmap</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="name">BiogasControllerApp</td>
|
||||
<td class="status">Supported</td>
|
||||
<td class="eol">2026-07-01<sup>2</sup></td>
|
||||
<td>-</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="name">arch-dev-vm</td>
|
||||
<td class="status">Supported</td>
|
||||
<td class="eol">-</td>
|
||||
<td>-</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="name">Colorthief</td>
|
||||
<td class="status">Supported</td>
|
||||
<td class="eol">-</td>
|
||||
<td>-</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="name">smuL (SimpleMediaUpscalerLite)</td>
|
||||
<td class="status">Unsupported</td>
|
||||
<td class="eol">2025-06-16</td>
|
||||
<td>- (EOL)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="name">MusicPlayer V1</td>
|
||||
<td class="status">Unsupported</td>
|
||||
<td class="eol">2023-09-01</td>
|
||||
<td>- (EOL)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="name">MusicPlayer V2</td>
|
||||
<td class="status">Unsupported</td>
|
||||
<td class="eol">2024-07-01</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 class="info"><sup>1</sup>There are plans for a big update, coming likely by or in Q3 2026</p>
|
||||
<p class="info"><sup>2</sup>The stated EOL date is unlikely to be accurate, since the app has been completely rewritten in June 2025</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>
|
||||
<footer></footer>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user