Files
advanced-camera-card/docs/index.html
T
Dermot Duffy cc376a8be1 feat: Rename the card to advanced-camera-card (#1873)
Whilst the Frigate support in this card is the best among camera
engines, the name incorrectly suggests that Frigate is a requirement.
Instead, to broaden the appeal, change to more camera agnostic name.
This does not suggest any change in priority, role or support for
Frigate.

This change is likely to be bug prone, due to the size of the rename --
the code contains 1500+ references to "Frigate" most of which make sense
to rename, some which do not, all of which needed human assessment.

- Closes #1298


BREAKING CHANGE: References to `frigate-card` in all kinds of
configuration need to be updated to `advanced-camera-card`. An automated
config upgrade should take care of the majority of usecases (click `Edit
-> Upgrade -> Save`), though may not be perfect.
2025-02-06 19:32:32 -08:00

107 lines
2.9 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Advanced Camera Card</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Advanced Camera Card Documentation" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, minimum-scale=1.0, shrink-to-fit=no, viewport-fit=cover"
/>
<!-- Favicon -->
<link rel="icon" href="images/favicon.ico" />
<!-- Themes (light + dark) -->
<link
rel="stylesheet"
media="(prefers-color-scheme: dark)"
href="./css/theme-simple-dark.css"
/>
<link
rel="stylesheet"
media="(prefers-color-scheme: light)"
href="./css/theme-simple.css"
/>
<style>
:root {
--content-max-width: 95vw;
--cover-heading-font-size-max: 48;
}
.svg-icon {
background-color: rgb(255, 255, 255);
vertical-align: middle;
background: repeating-conic-gradient(#80808091 0% 25%, transparent 0% 50%) 50% /
4px 4px;
}
#__sidebar img {
max-width: 100px;
}
</style>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
// Full reference: https://docsify.js.org/#/configuration
// The repo to link to.
repo: 'dermotduffy/advanced-camera-card',
// The overall documentation name.
name: 'Advanced Camera Card',
// The logo to show on the top of the sidebar.
logo: 'images/icons/iris.svg',
// Automatically go to the top of a page on route change.
auto2top: true,
// Use a sidebar.
loadSidebar: true,
// Automatically use headings up to H2 for sider.
subMaxLevel: 2,
// Show the Advanced Camera Card cover page.
coverpage: true,
// Use relative links (this way both vscode and docsify work on clicking
// a link).
relativePath: true,
// Skip the link to the main content.
skipLink: false,
// Google tag (Google Analytics 4).
gtag: 'G-ZFD19QWCJP',
};
</script>
<!-- Docsify preview (necessary for Google Analytics 4) -->
<!-- Update when there's a docsify release after
https://github.com/docsifyjs/docsify/pull/1702 -->
<script src="./js/docsify.min.js"></script>
<script src="./js/gtag.min.js"></script>
<!-- Themeable -->
<script src="./js/docsify-themeable.min.js"></script>
<!-- Prism Syntax Highlighting for YAML -->
<script src="./js/prism-yaml.min.js"></script>
<!-- Search plugin -->
<script src="./js/search.js"></script>
<!-- Zoom in on images on click -->
<script src="./js/zoom-image.min.js"></script>
<!-- Copy samples can copy to clipboard -->
<script src="./js/docsify-copy-code.min.js"></script>
<!-- Allow sidebar selections to collapse -->
<script src="./js/docsify-sidebar-collapse.min.js"></script>
</body>
</html>