SwiftEntryKit v0.7.0 Release Notes

  • ๐Ÿ”‹ Feature - Queue of Entries

    displayPriority is no longer nested inside EKAttributes. It has been replaced by another construct called precedence. precedence defines the manner in which a new entry is treated in case there already is another displayed entry.

    • ๐Ÿ‘€ See Issue #103 for feature basic requirements.
    • ๐Ÿ“š Please review the README.md and the API documentation to gain additional information.

    Backward Compatibility

    ๐Ÿš€ Be aware that 0.7.0 breaks previous releases. In order to adjust previous usage to current behavior, just replace any instance of:

    attributes.displayPriority = value
    

    To the following:

    attributes.precedence = .override(priority: value, dropEnqueuedEntries: false)