mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2026-01-15 06:23:17 +01:00
Implemented a new 'Announcements' buffer to view instance-wide news. Features include: - New buffer and UI panel for announcements. - Support for templates and rendering of announcement content. - 'Dismiss' functionality (mapped to Enter/Return) to mark announcements as read. - Integrated into account settings for buffer management.
7 lines
224 B
Python
7 lines
224 B
Python
# -*- coding: utf-8 -*-
|
|
from .base import basePanel
|
|
from .conversationList import conversationListPanel
|
|
from .notifications import notificationsPanel
|
|
from .user import userPanel
|
|
from .announcements import announcementsPanel
|