Skip to content

Commit

Permalink
Release 2.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
f4ww4z committed Jun 15, 2020
1 parent 54187c2 commit d095baa
Show file tree
Hide file tree
Showing 4 changed files with 79 additions and 15 deletions.
45 changes: 45 additions & 0 deletions .idea/jarRepositories.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 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.3](#Version-283)
- [Version 2.8.2](#Version-282)
- [Version 2.8.1](#Version-281)
- [Version 2.8.0](#Version-280)
Expand Down Expand Up @@ -150,6 +151,25 @@ To release the application, make sure to do these steps **in order**:

# Release Notes

### Version 2.8.3

1. Fixed critical bugs (#718, #721, #722, #730, #734, #741, #742)
2. Add showcase view for manage providers module (#720)
3. Continue creating Room DAOs (#727, #736, #739, #740, #735, #738)
4. Refined custom dialog box in add patient activity (#731)
5. Start visit is disabled in offline mode (#729)
6. Add option for 'Unknown' patients when registering (#733)
7. Change main font to Roboto (#745)
8. Fixed app crash on lower API devices (#749)
9. Avoid keyboard blocking SnackBar messages (#747)
10. Change endpoint debugger to Chucker to avoid crash (#750)
11. Better localization (#723)
12. Fix ill formed provider fields (#751)
13. UI overhaul, better compliant with Material UI guidelines (#744, #746, #743, #753, #759, #761, #760)
14. Migrate Java code to Kotlin (#752, #758, #756)
15. Add offline support for provider module (#748)
16. Double back press to exit the app (#762)

### Version 2.8.2
1. Add contribution guidelines to the repository (#671, #662)
2. Removed unused resources, decreasing APK size (#669)
Expand Down
7 changes: 3 additions & 4 deletions openmrs-client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ plugins {
id 'jacoco-android'
}

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

android {
compileSdkVersion 28
compileSdkVersion 29

def travisBuildNumber = System.getenv("TRAVIS_BUILD_NUMBER")
def buildNumber = (travisBuildNumber) ? (travisBuildNumber as int) : 1
Expand All @@ -38,7 +38,7 @@ android {
multiDexEnabled true

minSdkVersion 16
targetSdkVersion 28
targetSdkVersion 29

testApplicationId "org.openmrs.mobile.test"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
Expand Down Expand Up @@ -163,7 +163,6 @@ dependencies {
implementation "androidx.legacy:legacy-support-v13:$support_version"

implementation 'androidx.multidex:multidex:2.0.0'
implementation "com.android.support:support-v4:28.0.+"
implementation 'joda-time:joda-time:2.0'
implementation 'net.sf.kxml:kxml2:2.3.0'
implementation 'io.reactivex:rxjava:1.3.4'
Expand Down
22 changes: 11 additions & 11 deletions openmrs-client/src/main/play/release-notes/en-US/default.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
- Removed unused resources, decreasing APK size
- Dashboard now responds to change in app theme
- Add language translation in hindi
- UI fixes in register patient screen
- Added reset button
- Improved login and fragment dialog button design
- Improve PatientDetailFragment UI
- Fix app crash on entering values in email or password text fields
- Add swipe to refresh feature in relevant screens
- Add Contact Us screen
- Add validation to HIV status in Visit Notes screen
- Fixed critical bugs
- Add showcase view for manage providers module
- Refined custom dialog box in add patient activity
- Start visit is disabled in offline mode
- Add option for 'Unknown' patients when registering
- Change main font to Roboto
- Fixed app crash on lower API devices
- Avoid keyboard blocking SnackBar messages
- Fix ill formed provider fields
- UI overhaul, better compliant with Material UI guidelines
- Add offline support for provider module

0 comments on commit d095baa

Please sign in to comment.