mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 04:44:37 +03:00
Release notes dialog (#2726)
* Move manual docs * Move changelog docs * Add migration notes * Move changelog to settings * Add release notes dialog * Add new changelog
This commit is contained in:
@@ -17,6 +17,7 @@ import { SettingsServicesPanel } from "./SettingsServicesPanel";
|
||||
import { SettingsContext } from "./context";
|
||||
import { SettingsLibraryPanel } from "./SettingsLibraryPanel";
|
||||
import { SettingsSecurityPanel } from "./SettingsSecurityPanel";
|
||||
import Changelog from "../Changelog/Changelog";
|
||||
|
||||
export const Settings: React.FC = () => {
|
||||
const intl = useIntl();
|
||||
@@ -92,6 +93,11 @@ export const Settings: React.FC = () => {
|
||||
<FormattedMessage id="config.categories.tools" />
|
||||
</Nav.Link>
|
||||
</Nav.Item>
|
||||
<Nav.Item>
|
||||
<Nav.Link eventKey="changelog">
|
||||
<FormattedMessage id="config.categories.changelog" />
|
||||
</Nav.Link>
|
||||
</Nav.Item>
|
||||
<Nav.Item>
|
||||
<Nav.Link eventKey="about">
|
||||
<FormattedMessage id="config.categories.about" />
|
||||
@@ -138,6 +144,9 @@ export const Settings: React.FC = () => {
|
||||
<Tab.Pane eventKey="logs" unmountOnExit>
|
||||
<SettingsLogsPanel />
|
||||
</Tab.Pane>
|
||||
<Tab.Pane eventKey="changelog" unmountOnExit>
|
||||
<Changelog />
|
||||
</Tab.Pane>
|
||||
<Tab.Pane eventKey="about" unmountOnExit>
|
||||
<SettingsAboutPanel />
|
||||
</Tab.Pane>
|
||||
|
||||
Reference in New Issue
Block a user