Skip to content

Commit

Permalink
Merge pull request #719 from rokwire/release/v2.11.3+1103
Browse files Browse the repository at this point in the history
Release/v2.11.3+1103
  • Loading branch information
sandeep-ps authored Sep 30, 2021
2 parents 990f15c + 0838583 commit bcded1a
Show file tree
Hide file tree
Showing 41 changed files with 1,500 additions and 4,070 deletions.
59 changes: 58 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,64 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [2.11.3] - 2021-09-29
### Deleted
- Removed vaccine taken event handling [#715](https://github.com/rokwire/safer-illinois-app/issues/715).
- Removed MicroBlink scan support [#717](https://github.com/rokwire/safer-illinois-app/issues/717).

## [2.11.2] - 2021-09-24
### Changed
- Updated vaccination widget content and strings [#711](https://github.com/rokwire/safer-illinois-app/issues/711).

## [2.11.1] - 2021-09-23
### Changed
- Updated vaccination widget strings, load related values and URL from app config [#708](https://github.com/rokwire/safer-illinois-app/issues/708).

## [2.11.0] - 2021-09-10
### Changed
- "Feedback" section in Settings Home panel changed to "Get Help" [#705](https://github.com/rokwire/safer-illinois-app/issues/705).

## [2.10.38] - 2021-09-08
### Fixed
- Fixed Health model classes equality operators.
- Fixed Storage.healthUserTestMonitorInterval to be able to read null values.
### Added
- Added HealthRulesSet.toJson() getter.

## [2.10.37] - 2021-09-07
### Changed
- Updated strings for vaccination effective status change [#698](https://github.com/rokwire/safer-illinois-app/issues/698).
- Updated strings for next step for vaccinated users in UIN override list who has fulfilled their tests [#700](https://github.com/rokwire/safer-illinois-app/issues/700).
- Defined notice, noticeHtml, reason and reasonHtml in health status definitions. Acknowledged for vaccination and vaccination suspension events. [#702](https://github.com/rokwire/safer-illinois-app/issues/702).

## [2.10.36] - 2021-09-01
### Changed
- Updated next step text for vaccinated users that are forced to resume testing [#692](https://github.com/rokwire/safer-illinois-app/issues/692).
### Added
- Added vaccination widget in Home panel [#696](https://github.com/rokwire/safer-illinois-app/issues/696).

## [2.10.35] - 2021-08-19
### Changed
- Disable vaccinated status if user has UserTestMonitorInterval defined [#684](https://github.com/rokwire/safer-illinois-app/issues/684).
### Fixed
- Android: CME crash when processing exposures [#688](https://github.com/rokwire/safer-illinois-app/issues/688).
- Android: RSE crash when scanning for exposures [#690](https://github.com/rokwire/safer-illinois-app/issues/690).

## [2.10.34] - 2021-08-04
### Changed
- Button text for requesting vaccine and latest test [#680](https://github.com/rokwire/safer-illinois-app/issues/680).

## [2.10.33] - 2021-08-03
### Added
- Force onboarding from app config [#681](https://github.com/rokwire/safer-illinois-app/issues/681).

## [2.10.32] - 2021-08-02
### Added
- Fire user updated notification when updating user's private RSA key.
- Added weekdays extension capability for health rule intervals [#678](https://github.com/rokwire/safer-illinois-app/issues/678).
### Changed
- Updated test intervals for undergraduate students and others [#676](https://github.com/rokwire/safer-illinois-app/issues/676).

## [2.10.31] - 2021-07-17
### Changed
- Upgrade to Flutter 2.2.2 [#664](https://github.com/rokwire/safer-illinois-app/issues/664).
Expand All @@ -14,7 +72,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fix gradle build for Android [#670](https://github.com/rokwire/safer-illinois-app/issues/670).
- Check string parameters match case insensitively [#668](https://github.com/rokwire/safer-illinois-app/issues/668).


## [2.10.30] - 2021-06-16
### Added
- Added Consent Health Provider Vaccine Information flag and related UI [#661](https://github.com/rokwire/safer-illinois-app/issues/661).
Expand Down
5 changes: 0 additions & 5 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -163,11 +163,6 @@ dependencies {
implementation 'com.google.zxing:core:3.3.0' //Use zxing 3.3.0 because we have minSdk < 24
implementation ('com.journeyapps:zxing-android-embedded:4.1.0@aar') { transitive = false }

//BlinkID
implementation('com.microblink:blinkid:5.3.0@aar') {
transitive = true
}

// BLESSED - BLE library used for Exposures
implementation 'com.github.weliem:blessed-android:1.19'

Expand Down
5 changes: 0 additions & 5 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,6 @@
<!-- save_in_gallery flutter plugin -->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<!-- BlinkID -->
<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.camera" android:required="false" />
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false" />
<uses-feature android:glEsVersion="0x00020000" android:required="false" />

<!-- Exposure BLE -->
<uses-feature android:name="android.hardware.bluetooth_le" android:required="true" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ public class Constants {
static final String APP_DISMISS_SAFARI_VC_KEY = "dismissSafariVC";
static final String APP_DISMISS_LAUNCH_SCREEN_KEY = "dismissLaunchScreen";
static final String APP_ADD_CARD_TO_WALLET_KEY = "addToWallet";
static final String APP_MICRO_BLINK_SCAN_KEY = "microBlinkScan";
static final String APP_ENABLED_ORIENTATIONS_KEY = "enabledOrientations";
static final String APP_NOTIFICATIONS_AUTHORIZATION = "notifications_authorization";
static final String APP_LOCATION_SERVICES_PERMISSION = "location_services_permission";
Expand Down
Loading

0 comments on commit bcded1a

Please sign in to comment.