From 8adf8e6ea901fd4fe603a558850fbd2bdebe972b Mon Sep 17 00:00:00 2001 From: Mr Robot Date: Mon, 9 Nov 2020 15:20:45 +0000 Subject: [PATCH] chore(release): v1.4.0 # [1.4.0](https://framagit.org/dystopia-project/simple-email/compare/v1.3.0...v1.4.0) (2020-11-09) ### Bug Fixes * compatibly with SDK API 21 ([9005f7c](https://framagit.org/dystopia-project/simple-email/commit/9005f7c69aad4f7734133f3f636d4bcfd97f5ead)) * crash on uninitialized cursor instance ([8071dc3](https://framagit.org/dystopia-project/simple-email/commit/8071dc32cc50166938f005294e1a360d995f2eaf)), closes [#15](https://framagit.org/dystopia-project/simple-email/issues/15) * gmail authentication over non-oAuth ([15cc220](https://framagit.org/dystopia-project/simple-email/commit/15cc220fb064cc2d2032b73d89f263e37ae159fd)) * wrong format on compose email addresses ([d4a1c8c](https://framagit.org/dystopia-project/simple-email/commit/d4a1c8ca204c0a7c6dfdd9583031f90a92183577)) * **ui:** improve message items view to compact and unread ([7389734](https://framagit.org/dystopia-project/simple-email/commit/738973499224ef09f4bc7d831ff7b7b49685d7cd)) * **ui:** increase distance on refreshable ([ce661ca](https://framagit.org/dystopia-project/simple-email/commit/ce661ca32b4d672eb54c9e095ae9bfdff4b0efeb)) ### Features * improve swipe actions in archive/trash folders ([0f76b2b](https://framagit.org/dystopia-project/simple-email/commit/0f76b2bd006dc2a7c8e46129b5513ef474107e12)) * update color picker dialog ([c1a2380](https://framagit.org/dystopia-project/simple-email/commit/c1a2380d2c42c1232498a1eafc8cb32ec8b035d9)) --- CHANGELOG.md | 18 ++++++++++++++++++ app/build.gradle | 4 ++-- metadata/en-US/changelogs/116.txt | 13 +++++++++++++ 3 files changed, 33 insertions(+), 2 deletions(-) create mode 100644 metadata/en-US/changelogs/116.txt diff --git a/CHANGELOG.md b/CHANGELOG.md index eea28b11..ec880c64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,24 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.4.0](https://framagit.org/dystopia-project/simple-email/compare/v1.3.0...v1.4.0) (2020-11-09) + + +### Bug Fixes + +* compatibly with SDK API 21 ([9005f7c](https://framagit.org/dystopia-project/simple-email/commit/9005f7c69aad4f7734133f3f636d4bcfd97f5ead)) +* crash on uninitialized cursor instance ([8071dc3](https://framagit.org/dystopia-project/simple-email/commit/8071dc32cc50166938f005294e1a360d995f2eaf)), closes [#15](https://framagit.org/dystopia-project/simple-email/issues/15) +* gmail authentication over non-oAuth ([15cc220](https://framagit.org/dystopia-project/simple-email/commit/15cc220fb064cc2d2032b73d89f263e37ae159fd)) +* wrong format on compose email addresses ([d4a1c8c](https://framagit.org/dystopia-project/simple-email/commit/d4a1c8ca204c0a7c6dfdd9583031f90a92183577)) +* **ui:** improve message items view to compact and unread ([7389734](https://framagit.org/dystopia-project/simple-email/commit/738973499224ef09f4bc7d831ff7b7b49685d7cd)) +* **ui:** increase distance on refreshable ([ce661ca](https://framagit.org/dystopia-project/simple-email/commit/ce661ca32b4d672eb54c9e095ae9bfdff4b0efeb)) + + +### Features + +* improve swipe actions in archive/trash folders ([0f76b2b](https://framagit.org/dystopia-project/simple-email/commit/0f76b2bd006dc2a7c8e46129b5513ef474107e12)) +* update color picker dialog ([c1a2380](https://framagit.org/dystopia-project/simple-email/commit/c1a2380d2c42c1232498a1eafc8cb32ec8b035d9)) + # [1.3.0](https://framagit.org/dystopia-project/simple-email/compare/v1.2.1...v1.3.0) (2018-12-08) diff --git a/app/build.gradle b/app/build.gradle index 4259acfa..10bfe972 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -9,8 +9,8 @@ android { applicationId "org.dystopia.email" minSdkVersion 21 targetSdkVersion 30 - versionCode 115 - versionName "1.3.0" + versionCode 116 + versionName "1.4.0" archivesBaseName = "SimpleEmail-v$versionName" proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' diff --git a/metadata/en-US/changelogs/116.txt b/metadata/en-US/changelogs/116.txt new file mode 100644 index 00000000..538378ce --- /dev/null +++ b/metadata/en-US/changelogs/116.txt @@ -0,0 +1,13 @@ +Bug Fixes + +- compatibly with SDK API 21 +- crash on uninitialized cursor instance, closes #15 +- gmail authentication over non-oAuth +- wrong format on compose email addresses +- UI: improve message items view to compact and unread +- UI: increase distance on refreshable + +Features + +- improve swipe actions in archive/trash folders +- update color picker dialog