Skip to content

Commit

Permalink
Release 2.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
f4ww4z committed Apr 17, 2020
1 parent 114b011 commit 0fccb0c
Show file tree
Hide file tree
Showing 18 changed files with 134 additions and 132 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ captures/
.idea/sqlDataSources.xml
.idea/dynamic.xml
.idea/uiDesigner.xml
.idea/markdown-navigator-enh.xml
.idea/markdown-navigator.xml

# Code style from https://github.com/openmrs/openmrs-core/blob/master/tools/src/main/resources/eclipse/OpenMRSFormatter.xml
# stored in .idea/OpenMRSFormatter to be compatible with eclipse code formatter
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ deploy:
overwrite: true
api_key:
secure: CkKyomzGdEMvZKyNEPU6uU9sfG4zJKQ7FcDG7Vgi9SNFgrwD7v2wYrw53ABRW+eYTifxivbzSnNYOwh/Jd6ea3A7XqFdW9DpPgmDq32A9rPPSP8DEM2tDfE6m0A/Jzx2d3rIpK54KCISHQoRnnEU8QyBA9vqoTmO1qUWsBsXiWo=
file: openmrs-client/release/openmrs-client-release.apk
file: openmrs-client/build/outputs/apk/release/openmrs-client-release.apk
on:
tags: true
repo: openmrs/openmrs-contrib-android-client
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ OpenMRS Android Client
- [Demo Password: Admin123](#Demo-Password-Admin123)
- [Releasing [Collaborators only]](#Releasing-Collaborators-only)
- [Release Notes](#Release-Notes)
- [Version 2.8.2](#Version-282)
- [Version 2.8.1](#Version-281)
- [Version 2.8.0](#Version-280)
- [Version 2.7.4](#Version-274)
Expand Down Expand Up @@ -148,6 +149,26 @@ To release the application, make sure to do these steps **in order**:

# Release Notes

### Version 2.8.2
1. Add contribution guidelines to the repository (#671, #662)
2. Removed unused resources, decreasing APK size (#669)
3. Removed hardcoded strings (#673)
4. Dashboard now responds to change in app theme (#661)
5. Add language translation in hindi (#650)
6. Create Room Data Access Objects (DAOs) (#670, #659, #682, #657, #662)
7. UI fixes in register patient screen (#686)
8. Added reset button (#692)
9. Improved login and fragment dialog button design (#672)
10. Improve PatientDetailFragment UI (#700)
11. Fix app crash on entering values in email or password text fields (#691)
12. Add City and State selector using Google Places API (#694)
13. Fix crash at register patient activity (#717)
14. Fix context-related errors (#713, #716)
15. Add swipe to refresh feature in relevant screens (#701)
16. Add Contact Us screen (#710)
17. Migrate POJO classes to Kotlin (#675, #719)
18. Add validation to HIV status in Visit Notes screen (#698)

### Version 2.8.1
### Summary:
1. Fix window leakage error when viewing patient details
Expand Down
Empty file modified build.sh
100755 → 100644
Empty file.
Empty file modified gradlew
100755 → 100644
Empty file.
12 changes: 1 addition & 11 deletions openmrs-client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ plugins {
id 'jacoco-android'
}

def version = "2.8.1"
def version = "2.8.2"
def GOOGLE_PLACE_API_KEY = System.getenv('GOOGLE_PLACE_API_KEY') ?: "YOUR_API_KEY"

android {
Expand Down Expand Up @@ -71,16 +71,6 @@ android {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
signingConfig signingConfigs.release
applicationVariants.all { variant ->
variant.outputs.each { output ->
def relativeRootDir = new File("${project.rootDir.absolutePath}/openmrs-client/release/")
variant.packageApplicationProvider.get().outputDirectory = relativeRootDir

// directly assign the new name back to outputFileName
def apkFileName = "openmrs-client-debug.apk"
output.outputFileName = apkFileName
}
}
}
debug {
testCoverageEnabled true
Expand Down
Loading

0 comments on commit 0fccb0c

Please sign in to comment.