Merge branch 'master' into android14

This commit is contained in:
M66B 2023-06-11 13:32:03 +02:00
commit cb2fbbb70a
5 changed files with 25 additions and 6 deletions

View File

@ -4,6 +4,11 @@
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)
### 1.2074 - 2023-06-08

View File

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

View File

@ -4,6 +4,11 @@
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)
### 1.2074 - 2023-06-08

View File

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

View File

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