feat: enable progressive web app

fix: update packages to fix vulnerabilities
docs: add documentation about trivy
This commit is contained in:
Miguel Ribeiro
2024-02-27 19:04:04 +01:00
committed by GitHub
parent caa97f1d55
commit a2a315e34d
19 changed files with 257 additions and 8 deletions
+3 -2
View File
@@ -36,8 +36,9 @@
<link rel="manifest" href="manifest.json" crossorigin="use-credentials">
<link rel="stylesheet" href="styles/styles.css?<?= $version ?>">
<link rel="stylesheet" href="styles/dark-theme.css?<?= $version ?>" id="dark-theme" <?= $theme == "light" ? "disabled" : "" ?>>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Barlow:300,400,500,600,700">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<link rel="stylesheet" href="styles/barlow.css">
<link rel="stylesheet" href="styles/font-awesome.min.css">
<script type="text/javascript" src="scripts/all.js?<?= $version ?>"></script>
<script type="text/javascript" src="scripts/common.js?<?= $version ?>"></script>
<script type="text/javascript">
window.theme = "<?= $theme ?>";
+1 -1
View File
@@ -1,3 +1,3 @@
<?php
$version = "v1.8.3";
$version = "v1.9.0";
?>