src/app/core/ui/latest-changes/changelog.ts
Format of a changelog entry in the changelog.json describing one app version.
Properties |
|
body |
Type : string
|
description of changes included in this version |
Optional draft |
Type : boolean
|
whether it is a draft |
name |
Type : string
|
short title of the version |
Optional prerelease |
Type : boolean
|
whether it is a pre-release |
published_at |
Type : string
|
release date |
tag_name |
Type : string
|
version tag, e.g. "2.1.7" |
export class Changelog {
/** short title of the version */
name: string;
/** version tag, e.g. "2.1.7" */
tag_name: string;
/** description of changes included in this version */
body: string;
/** release date */
published_at: string;
/** whether it is a pre-release */
prerelease?: boolean;
/** whether it is a draft */
draft?: boolean;
}