Browse Source

Published v1.0.0

main
Distopico Vegan 5 years ago
parent
commit
65a79b8bf3
3 changed files with 32 additions and 1 deletions
  1. +25
    -0
      CHANGELOG.md
  2. +6
    -1
      app/build.gradle
  3. +1
    -0
      build.gradle

+ 25
- 0
CHANGELOG.md View File

@ -0,0 +1,25 @@
# Change Log
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
<a name="v1.0"></a>
# v1.0.0 (2018/11/08)
## Bug Fixes
* hide button after show images (#2790b76d)
* check on empty search fallback (#6e9b5992)
* check if has storage framework (#1a07f5fa)
## Features
* add riseup provider (#4126bae3)
* add text when no have accounts yet (#2d15cd32)
* remove Eula annoying initial view (#a794fc0e)
* add lint configuration (#16b03af8)
* improve message interface (#de7dc808)
* change 'enable' advanced option to 'enable sync' to be clear (#fc5949c7)
* set account name on compose (#e4a97052)
* change to switch on advance options (#236d39b1)

+ 6
- 1
app/build.gradle View File

@ -1,4 +1,5 @@
apply plugin: 'com.android.application'
apply plugin: 'changelog'
android {
compileSdkVersion 28
@ -7,7 +8,7 @@ android {
minSdkVersion 23
targetSdkVersion 28
versionCode 100
versionName "1.0"
versionName "1.0.0"
archivesBaseName = "SimpleEmail-v$versionName"
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
@ -49,6 +50,10 @@ android {
}
}
changelog {
versionNum "v$android.defaultConfig.versionName"
}
repositories {
google()
jcenter()


+ 1
- 0
build.gradle View File

@ -5,6 +5,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.github.marcpoppleton:git-changelog:0.1.3'
}
}


Loading…
Cancel
Save