Skip to content

Commit

Permalink
Update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
k-awata committed Apr 11, 2024
1 parent 6b8f4da commit 3dfa71b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 7 deletions.
6 changes: 6 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 2.7.0 (2023-04-11)

- SDS

- Avoid an error when drawing GLABs on an ISO view

## 2.6.0 (2023-07-19)

- Add a new authentication system for communication to the new authentication server
Expand Down
4 changes: 4 additions & 0 deletions docs/fesdocs.css
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,8 @@
.markdown-section hr {
margin: 24px 0;
border-bottom: 1px solid #ddd;
}

.markdown-section footer {
text-align: center;
}
15 changes: 8 additions & 7 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<title>FESMAC Manual</title>
Expand All @@ -10,7 +9,6 @@
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
<link rel="stylesheet" href="fesdocs.css">
</head>

<body>
<div id="app"></div>
<script>
Expand All @@ -26,11 +24,15 @@
'cache-control': 'max-age=600',
},
plugins: [
function (hook) {
function pageFooter(hook, vm) {
var footer = `
<hr/>
<footer>&copy; ${(new Date()).getFullYear()} Fuji Engineering Service Co., Ltd. </footer>
`;
hook.afterEach(function (html) {
return html + '<hr><footer style="text-align:center">&copy; 2023 Fuji Engineering Service Co., Ltd.</footer>';
return html + footer;
});
}
},
]
}
</script>
Expand All @@ -41,5 +43,4 @@
<script src="//cdn.jsdelivr.net/npm/docsify-plugin-flexible-alerts@1/dist/docsify-plugin-flexible-alerts.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-copy-code@2/dist/docsify-copy-code.min.js"></script>
</body>

</html>
</html>

0 comments on commit 3dfa71b

Please sign in to comment.