Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-07-08 | Factor IMAP-specific structs out of UI models | Ben Burwell | |
Before, we were using several IMAP-specific concepts to represent information being displayed in the UI. Factor these structures out of the IMAP package to make it easier for other backends to provide the required information. | |||
2019-07-08 | Use []uint32 instead of imap.SeqSet | Ben Burwell | |
A sequence-set is an IMAP-specific implementation detail. Throughout the UI, aerc simply operates using lists of opaque identifiers. In order to loosen the coupling between the UI and IMAP in particular, replace most usages of imap.SeqSet with []uint32, leaving the translation to a SeqSet to the IMAP backend as needed. |