mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 04:14:39 +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,
|
||||
},
|
||||
];
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
After migrating, please run a scan on your entire library to populate missing data, and to ingest identical files which were previously ignored.
|
||||
|
||||
### Other changes:
|
||||
##### Other changes:
|
||||
* Import/export schema has changed and is incompatible with the previous version.
|
||||
* Changelog has been moved from the stats page to a section in the Settings page.
|
||||
* Object titles are now displayed as the file basename if the title is not explicitly set. The `Don't include file extension as part of the title` scan flag is no longer supported.
|
||||
* `Set name, date, details from embedded file metadata` scan flag is no longer supported. This functionality may be implemented as a built-in scraper in the future.
|
||||
* `Set name, date, details from embedded file metadata` scan flag is no longer supported. This functionality may be implemented as a built-in scraper in the future.
|
||||
|
||||
Reference in New Issue
Block a user