website: re-sort releases, add outposts to terminology
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
8a6879afa5
commit
ace777ebbe
|
@ -2,8 +2,6 @@
|
|||
title: Sonarr
|
||||
---
|
||||
|
||||
# Sonarr Integration
|
||||
|
||||
:::note
|
||||
These instructions apply to all projects in the \*arr Family. If you use multiple of these projects, you can assign them to the same Outpost.
|
||||
:::
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: Release 0.14
|
||||
---
|
||||
|
||||
# Headline features
|
||||
## Headline features
|
||||
|
||||
- Flows are now graphically shown as diagrams, to visualise which stages and policies are bound.
|
||||
|
|
@ -30,3 +30,11 @@ Flows are an ordered sequence of stages. These flows can be used to define how a
|
|||
### Property Mappings
|
||||
|
||||
Property Mappings allow you to make information available for external applications. For example, if you want to login to AWS with authentik, you'd use Property Mappings to set the user's roles in AWS based on their group memberships in authentik.
|
||||
|
||||
### Outpost
|
||||
|
||||
An outpost is a separate component of authentik, which can be deployed anywhere, irregardless of the authentik deployment. The outpost offers services that aren't implemented directly into the authentik core, like Reverse Proxying.
|
||||
|
||||
Currently there is only a reverse-proxy outpost, in the future there will be more different outpost types.
|
||||
|
||||
See [Outposts](./outposts/outposts.md)
|
||||
|
|
|
@ -11,7 +11,6 @@
|
|||
"serve": "docusaurus serve"
|
||||
},
|
||||
"dependencies": {
|
||||
"@docusaurus/core": "2.0.0-alpha.73",
|
||||
"@docusaurus/preset-classic": "2.0.0-alpha.73",
|
||||
"@mdx-js/react": "^1.6.22",
|
||||
"clsx": "^1.1.1",
|
||||
|
|
|
@ -141,16 +141,16 @@ module.exports = {
|
|||
type: "category",
|
||||
label: "Release Notes",
|
||||
items: [
|
||||
"releases/0.9",
|
||||
"releases/0.10",
|
||||
"releases/0.11",
|
||||
"releases/0.12",
|
||||
"releases/0.13",
|
||||
"releases/0.14",
|
||||
"releases/2021.1",
|
||||
"releases/2021.2",
|
||||
"releases/2021.3",
|
||||
"releases/2021.4",
|
||||
"releases/v2021.4",
|
||||
"releases/v2021.3",
|
||||
"releases/v2021.2",
|
||||
"releases/v2021.1",
|
||||
"releases/v0.14",
|
||||
"releases/v0.13",
|
||||
"releases/v0.12",
|
||||
"releases/v0.11",
|
||||
"releases/v0.10",
|
||||
"releases/v0.9",
|
||||
],
|
||||
},
|
||||
{
|
||||
|
|
|
@ -2,7 +2,7 @@ import React from "react";
|
|||
import clsx from "clsx";
|
||||
import Layout from "@theme/Layout";
|
||||
import Link from "@docusaurus/Link";
|
||||
import ClientOnly from "@docusaurus/core/lib/client/exports/ClientOnly.js";
|
||||
import BrowserOnly from "@docusaurus/core/lib/client/exports/BrowserOnly";
|
||||
import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
|
||||
import useBaseUrl from "@docusaurus/useBaseUrl";
|
||||
import styles from "./styles.module.css";
|
||||
|
@ -103,7 +103,7 @@ function Home() {
|
|||
<div className="row">
|
||||
<div className="col col--5">
|
||||
<div>
|
||||
<ClientOnly>
|
||||
<BrowserOnly>
|
||||
<BeforeAfterSlider
|
||||
className={styles.featureImage}
|
||||
before={useBaseUrl("img/screen_apps_light.jpg")}
|
||||
|
@ -111,7 +111,7 @@ function Home() {
|
|||
width={640}
|
||||
height={480}
|
||||
/>
|
||||
</ClientOnly>
|
||||
</BrowserOnly>
|
||||
</div>
|
||||
</div>
|
||||
<div className="col col--5 col--offset-2 padding-vert--xl">
|
||||
|
@ -142,7 +142,7 @@ function Home() {
|
|||
</div>
|
||||
<div className="col col--5">
|
||||
<div>
|
||||
<ClientOnly>
|
||||
<BrowserOnly>
|
||||
<BeforeAfterSlider
|
||||
className={styles.featureImage}
|
||||
before={useBaseUrl("img/screen_admin_light.jpg")}
|
||||
|
@ -150,7 +150,7 @@ function Home() {
|
|||
width={640}
|
||||
height={480}
|
||||
/>
|
||||
</ClientOnly>
|
||||
</BrowserOnly>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Reference in New Issue