Skip to content

Commit

Permalink
Bump version to 1.7.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
seanwu1105 committed Oct 12, 2020
1 parent edb6742 commit e649624
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 5 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 1.7.0 - 2020-10-12

### Added

- Re-upload proof and its information automatically on Internet connection interrupted. #68
- Integrate ProofMode. #73

### Changed

#### UI/UX

- Remove snack bar on camera fragment to avoid memory leak.
- Use pop-up dialog to replace bottom dialog to avoid crash on rotation. #43

#### Code Quality

- Replace the deprecated `set-env` command with environment file in GitHub Action.

## 1.6.5 - 2020-10-06

### Fixed
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,12 @@ Example:
1. Increase the `versionName` and `versionCode` in app/build.gradle file.
1. Update the CHANGELOG.md file.
1. Commit and push the update.
1. Go to __Action > release > Run workflow > Branch: develop > Run workflow__ to automatically create GitHub Release with development tag and deploy apps on the Google Play Console.
1. Go to __Action > release > Run workflow > Branch: develop > Run workflow__. The workflow will do the following things.
1. Create GitHub Release page with master-debug and master-qa APKs.
1. Show a Slack notification on release-reminders channel.
1. Upload master-debug, master-qa, internal-debug and internal-qa APKs to private Google Drive.
1. Deploy master-release to the internal testing on Google Play Console.
1. Deploy internal-release to the alpha closed testing on Google Play Console.

## Caveat

Expand Down
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ android {
applicationId "io.numbersprotocol.starlingcapture"
minSdkVersion 26
targetSdkVersion 30
versionCode 6
versionName "1.6.5"
versionCode 7
versionName "1.7.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

Expand Down Expand Up @@ -107,7 +107,7 @@ dependencies {

implementation "androidx.core:core-ktx:1.3.2"
implementation "androidx.appcompat:appcompat:1.2.0"
implementation "androidx.constraintlayout:constraintlayout:2.0.1"
implementation "androidx.constraintlayout:constraintlayout:2.0.2"
implementation "androidx.exifinterface:exifinterface:1.3.0"
implementation "androidx.paging:paging-runtime-ktx:2.1.2"
implementation "androidx.work:work-runtime-ktx:2.4.0"
Expand Down Expand Up @@ -166,7 +166,7 @@ dependencies {

debugImplementation "com.squareup.leakcanary:leakcanary-android:2.5"

internalImplementation "com.google.firebase:firebase-analytics-ktx:17.5.0"
internalImplementation "com.google.firebase:firebase-analytics-ktx:17.6.0"
internalImplementation "com.google.firebase:firebase-crashlytics:17.2.2"

testImplementation "junit:junit:4.13"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,12 +167,14 @@
<com.google.android.material.textview.MaterialTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:enabled="@{viewModel.proofModeSupported}"
android:text="@string/enabled"
android:textAppearance="?attr/textAppearanceListItem" />

<com.google.android.material.textview.MaterialTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:enabled="@{viewModel.proofModeSupported}"
android:text="@string/message_proofmode_requires_api_less_or_equal_to_28" />
</androidx.appcompat.widget.LinearLayoutCompat>

Expand Down

0 comments on commit e649624

Please sign in to comment.