mirror of
https://github.com/stashapp/stash.git
synced 2025-12-19 05:14:38 +03:00
Improve release notes dialog (#3497)
* Fix multiple release notes * Improve release notes dialog * Hide release notes dialog after setup
This commit is contained in:
@@ -1,19 +1,22 @@
|
||||
import v0170 from "./v0170.md";
|
||||
import v0200 from "./v0200.md";
|
||||
|
||||
interface IReleaseNotes {
|
||||
export interface IReleaseNotes {
|
||||
// handle should be in the form of YYYYMMDD
|
||||
date: number;
|
||||
version: string;
|
||||
content: string;
|
||||
}
|
||||
|
||||
export const releaseNotes: IReleaseNotes[] = [
|
||||
{
|
||||
date: 20220906,
|
||||
content: v0170,
|
||||
},
|
||||
{
|
||||
date: 20230224,
|
||||
version: "v0.20.0",
|
||||
content: v0200,
|
||||
},
|
||||
{
|
||||
date: 20220906,
|
||||
version: "v0.17.0",
|
||||
content: v0170,
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user