mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 12:24:38 +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:
16
ui/v2.5/src/docs/en/ReleaseNotes/index.ts
Normal file
16
ui/v2.5/src/docs/en/ReleaseNotes/index.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import v0170 from "./v0170.md";
|
||||
|
||||
export type Module = typeof v0170;
|
||||
|
||||
interface IReleaseNotes {
|
||||
// handle should be in the form of YYYYMMDD
|
||||
date: number;
|
||||
content: Module;
|
||||
}
|
||||
|
||||
export const releaseNotes: IReleaseNotes[] = [
|
||||
{
|
||||
date: 20220707,
|
||||
content: v0170,
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user