Improve release notes dialog (#3497)

* Fix multiple release notes
* Improve release notes dialog
* Hide release notes dialog after setup
This commit is contained in:
DingDongSoLong4
2023-03-01 06:08:56 +02:00
committed by GitHub
parent f992b9a0de
commit b1325ce03f
5 changed files with 45 additions and 16 deletions

View File

@@ -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,
},
];

View File

@@ -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.