You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Right now SwiftEntryKit is not able to handle multiple entries. Every new entry drops the previous one.
The currently supported approach to this is to prioritize each entry using displayPriority property in EKAttributes.
SwiftEntryKit should allow other approaches as well - for example, a queue of entries, where each one is displayed in its turn.
Describe the solution you'd like
Add a data structure for caching new entries. That construct should abstract a queueing mechanism.
Add multiple heuristics to the queue: queue by priority, by chronological order.
Refactor display priority to another construct that embodies the way in which new entries are treated.
The text was updated successfully, but these errors were encountered:
@Blackjacx - Check it out if you wish. Let me know your thoughts about the feature and the style.
I also plan to allow simultaneous display of entries in the future (very soon I hope) - one on top of the other.
Is your feature request related to a problem? Please describe.
Right now SwiftEntryKit is not able to handle multiple entries. Every new entry drops the previous one.
The currently supported approach to this is to prioritize each entry using displayPriority property in EKAttributes.
SwiftEntryKit should allow other approaches as well - for example, a queue of entries, where each one is displayed in its turn.
Describe the solution you'd like
The text was updated successfully, but these errors were encountered: