Merge branch 'master' into android14

pull/212/head
M66B 1 year ago
commit cb2fbbb70a

@ -4,6 +4,11 @@
For support you can use [the contact form](https://contact.faircode.eu/?product=fairemailsupport). For support you can use [the contact form](https://contact.faircode.eu/?product=fairemailsupport).
### [Ubirajara](https://en.wikipedia.org/wiki/Ubirajara_jubatus)
* Small improvements and minor bug fixes
* Updated [translations](https://crowdin.com/project/open-source-email)
### [Tratayenia](https://en.wikipedia.org/wiki/Tratayenia) ### [Tratayenia](https://en.wikipedia.org/wiki/Tratayenia)
### 1.2074 - 2023-06-08 ### 1.2074 - 2023-06-08

@ -5,7 +5,7 @@ apply plugin: 'de.undercouch.download'
def getVersionCode = { -> return 2075 } def getVersionCode = { -> return 2075 }
def getRevision = { -> return "a" } def getRevision = { -> return "a" }
def getReleaseName = { -> return "Tratayenia" } def getReleaseName = { -> return "Ubirajara" }
// https://en.wikipedia.org/wiki/List_of_dinosaur_genera // https://en.wikipedia.org/wiki/List_of_dinosaur_genera
def keystoreProperties = new Properties() def keystoreProperties = new Properties()

@ -4,6 +4,11 @@
For support you can use [the contact form](https://contact.faircode.eu/?product=fairemailsupport). For support you can use [the contact form](https://contact.faircode.eu/?product=fairemailsupport).
### [Ubirajara](https://en.wikipedia.org/wiki/Ubirajara_jubatus)
* Small improvements and minor bug fixes
* Updated [translations](https://crowdin.com/project/open-source-email)
### [Tratayenia](https://en.wikipedia.org/wiki/Tratayenia) ### [Tratayenia](https://en.wikipedia.org/wiki/Tratayenia)
### 1.2074 - 2023-06-08 ### 1.2074 - 2023-06-08

@ -7789,11 +7789,15 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
same = false; same = false;
log("uid changed", next.id); log("uid changed", next.id);
// Download body when needed if (prev.uid == null && next.uid != null) { // once only
if (!next.content && // Mark seen when needed
prev.uid == null && next.uid != null && // once only if (!Boolean.TRUE.equals(next.ui_seen) && next.accountAutoSeen)
properties.getValue("expanded", next.id)) EntityOperation.queue(context, next, EntityOperation.SEEN, true);
EntityOperation.queue(context, next, EntityOperation.BODY);
// Download body when needed
if (!next.content && properties.getValue("expanded", next.id))
EntityOperation.queue(context, next, EntityOperation.BODY);
}
} }
if (!Objects.equals(prev.msgid, next.msgid)) { if (!Objects.equals(prev.msgid, next.msgid)) {
// debug info // debug info

@ -4,6 +4,11 @@ Changelog
For support you can use the contact form. For support you can use the contact form.
Ubirajara
* Small improvements and minor bug fixes
* Updated translations
Tratayenia Tratayenia
1.2074 - 2023-06-08 1.2074 - 2023-06-08

Loading…
Cancel
Save