Skip to content

pytauri-plugin-notification

Unreleased

0.4.0

bump workspace version

0.3.0

bump workspace version

0.2.0

BREAKING

  • #70 - Removed NotificationBuilderArgs. Previously:

    from pytauri_plugin_notification import NotificationBuilderArgs
    
    notification_builder.show(
        NotificationBuilderArgs(title="Greeting", body=f"Hello, {body.name}!")
    )
    

    Now:

    notification_builder.show(title="Greeting", body=f"Hello, {body.name}!")
    

Added

  • #70 - feat: add more NotificationBuilder parameters
    • id
    • channel_id
    • large_body
    • summary
    • action_type_id
    • group
    • group_summary
    • sound
    • inbox_line
    • icon
    • large_icon
    • icon_color
    • ongoing
    • auto_cancel
    • silent

Changed

  • #47 - refactor: use pytauri::ImplManager as self::ImplNotificationExt

0.1.0-beta.0