Release notes loaded. Browser is up-to-date

interface ReleaseNotesLoadedState {
    currentVersion: string;
    lastUpdate: number;
    latestVersion: string;
    releaseNotes?: string[];
    releaseNotesPrivacyPro?: string[];
    releaseTitle?: string;
    status: "loaded";
}

Properties

currentVersion: string

Current version of the app

lastUpdate: number

Timestamp of last check for version updates

latestVersion: string

Latest version of the app. May be the same as currentVersion

releaseNotes?: string[]

Array containing notes for the latest release

releaseNotesPrivacyPro?: string[]

Array containing Privacy Pro notes for the latest release

releaseTitle?: string

Name of the current release (e.g. April 26 2024)

status: "loaded"