mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 20:34:37 +03:00
Merge branch 'develop' into releases/0.19.1
This commit is contained in:
@@ -1,9 +1,7 @@
|
||||
import migration32 from "./32.md";
|
||||
import migration39 from "./39.md";
|
||||
|
||||
type Module = typeof migration32;
|
||||
|
||||
export const migrationNotes: Record<number, Module> = {
|
||||
export const migrationNotes: Record<number, string> = {
|
||||
32: migration32,
|
||||
39: migration39,
|
||||
};
|
||||
|
||||
@@ -1,11 +1,9 @@
|
||||
import v0170 from "./v0170.md";
|
||||
|
||||
export type Module = typeof v0170;
|
||||
|
||||
interface IReleaseNotes {
|
||||
// handle should be in the form of YYYYMMDD
|
||||
date: number;
|
||||
content: Module;
|
||||
content: string;
|
||||
}
|
||||
|
||||
export const releaseNotes: IReleaseNotes[] = [
|
||||
|
||||
Reference in New Issue
Block a user