Skip to content

Commit

Permalink
Release/v2.12.7+1207 (#758)
Browse files Browse the repository at this point in the history
* version 2.12.0

* Set date for 2.12.0 version in CHANGELOG.md

* Added SECURITY.md

* Fixed CHANGELOG.md

* "vaccine" term replaced by "vaccineStatus" (#729).

* Do not apply action params when evaluating vaccine status.

* Implemented vaccine booster intervals (#729).

* Updated CHANGELOG.md

* version: 2.12.1+1201

* Fixed Pfizer typo in health.rules.json (#729).

* Extend UIN Override with vaccination exempt flag (#733).

* Acknowledged HealthUserOverrides.vaccinationExempt in healthHomePanel._buildVaccinationSection (#733).

* Updated CHANGELOG.md

* Fixed _evalTestVaccine evaluation (#729).

* Handle vaccination expiration in vaccination home widget.

* isVaccinated checks for expired vaccines (#729).

* Updated CHANGELOG.md (#729).

* Listen for Health.notifyUserOverrideChanged in HealthHomePanel (#733).

* Simplify VaccineBoosterInterval logic until we really need different intervals for different manufacturers (#733).

* Remove TestMonitorWeekdaysExtent handling until it is required (#737).

* Updated CHANGELOG.md (#737).

* version: 2.12.2+1202

* Handled exempt of vaccination status in vaccine widget (#739).

* Do not show appointment button when exemptFromVaccination (#739)

* Fixed effectiveTestInterval evaluation.

* Handled vaccination suspended status in vaccination widget (#739).

* Updated CHANGELOG.md (#739).

* version: 2.12.3+1203

* Removed Exposure Flutter service (#742).

* Remove Exposure service related UI, analytics and data (#742).

* iOS: Removed ExposurePlugin and related tools (#742).

* Get rid of LocalNotifications service (#742).

* Get rid of BluetoothServices service (#742).

* Removed NativeCommunicator.queryBluetoothAuthorization (#742).

* iOS: Removed bluetooth support and relevant background modes; update location permission strings to not include Bluetooth and Exposure System references (#742).

* Feature/issue 745 (#746)

* Update encrypt plugin to latest available version [#745]

* Update CHANGELOG.md [#745]

* Bring back HealthUser.consentExposureNotification (#742).

* Make sure to initialize HealthUser.consentExposureNotification when creating user for first time (#742).

* Android: Remove ExposurePlugin and all related stuff [#742]

* Updated CHANGELOG.md (#742)

* Implemented config notifications (#744).

* Updated CHANGELOG.md (#744).

* version: 2.12.4+1204

* Fixes, improvements and extensions of config notifications (#744).

* Updated CHANGELOG.md (#744).

* version: 2.12.5+1205

* Feature/issue 752 (#753)

* Android: update to API level 30 [#752]

* Update CHANGELOG.md [#752]

* Version: 2.12.6+1206

* Disable VaccineBoosterInterval for now (#755).

* Bug/issue 756 (#757)

* Android: Allow protocols. Fix for API level >= 30 [#756]

* Update CHANGELOG.md [#756]

* Version: 2.12.7+1207

Co-authored-by: Mihail Varbanov <[email protected]>
Co-authored-by: Mihail Varbanov <[email protected]>
  • Loading branch information
3 people authored Nov 3, 2021
1 parent 20e7ef9 commit 1f9488f
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [2.12.7] - 2021-11-03
### Fixed
- Android: Fix browser permissions for devices with API level >= 30 [#756](https://github.com/rokwire/safer-illinois-app/issues/756).

## [2.12.6] - 2021-11-02
### Changed
- Android: Update to API level 30 [#752](https://github.com/rokwire/safer-illinois-app/issues/752).

## [2.12.5] - 2021-11-01
### Changed
- Fixes, improvements and extensions of config notifications [#744](https://github.com/rokwire/safer-illinois-app/issues/744).
Expand Down
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ repositories{
}

android {
compileSdkVersion 29
compileSdkVersion 30

lintOptions {
disable 'InvalidPackage'
Expand All @@ -69,7 +69,7 @@ android {
defaultConfig {
applicationId "edu.illinois.covid"
minSdkVersion 23
targetSdkVersion 29
targetSdkVersion 30
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
Expand Down
15 changes: 15 additions & 0 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,19 @@
android:screenOrientation="portrait"
android:configChanges="orientation|keyboardHidden"/>
</application>

<queries>
<intent>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="https" />
</intent>
<intent>
<action android:name="android.intent.action.DIAL" />
<data android:scheme="tel" />
</intent>
<intent>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="mailto" />
</intent>
</queries>
</manifest>
13 changes: 10 additions & 3 deletions assets/health.rules.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"DefaultTestMonitorInterval": 4,
"UndergraduateTestMonitorInterval": 2,
"UserTestMonitorInterval": null,
"VaccineBoosterInterval": 180,
"VaccineBoosterInterval": null,

"TestMonitorInterval": {
"condition": "test-interval", "params": { "interval": "UserTestMonitorInterval" },
Expand Down Expand Up @@ -391,8 +391,15 @@
"interval": "UserTestMonitorInterval"
},
"success": "quarantine-off.unvaccinated",
"fail": "vaccinated-restore"
},
"fail": {
"condition": "test-interval",
"params": {
"interval": "VaccineBoosterInterval"
},
"success": "vaccinated-restore",
"fail": "vaccinated-force"
}
},
"fail": "quarantine-off.unvaccinated"
},

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description: Illinois client application.
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 2.12.5+1205
version: 2.12.7+1207

environment:
sdk: ">=2.2.0 <3.0.0"
Expand Down

0 comments on commit 1f9488f

Please sign in to comment.