Tauri Core API - v2.6.0
    Preparing search index...

    Interface AboutMetadata

    A metadata for the about predefined menu item.

    interface AboutMetadata {
        name?: string;
        version?: string;
        shortVersion?: string;
        authors?: string[];
        comments?: string;
        copyright?: string;
        license?: string;
        website?: string;
        websiteLabel?: string;
        credits?: string;
        icon?:
            | string
            | number[]
            | ArrayBuffer
            | Uint8Array<ArrayBufferLike>
            | Image;
    }
    Index

    Properties

    name?: string

    Sets the application name.

    version?: string

    The application version.

    shortVersion?: string

    The short version, e.g. "1.0".

    • Windows / Linux: Appended to the end of version in parentheses.
    authors?: string[]

    The authors of the application.

    • macOS: Unsupported.
    comments?: string

    Application comments.

    • macOS: Unsupported.
    copyright?: string

    The copyright of the application.

    license?: string

    The license of the application.

    • macOS: Unsupported.
    website?: string

    The application website.

    • macOS: Unsupported.
    websiteLabel?: string

    The website label.

    • macOS: Unsupported.
    credits?: string

    The credits.

    • Windows / Linux: Unsupported.
    icon?: string | number[] | ArrayBuffer | Uint8Array<ArrayBufferLike> | Image

    The application icon.

    • Windows: Unsupported.