Skip to content

Releases: Path-Check/gaen-mobile

RC - 1.0.1

15 Sep 13:58
Compare
Choose a tag to compare
RC - 1.0.1 Pre-release
Pre-release

Added:

Introduce Callback Form module

Updated Navigation Structure to include Connect Tab

Allowing configurable links on the about and legal screens

Custom image on welcome screen per config

Support Android 11

Fixed:

Added scroll view for welcome screen for fixing navigation issue of not being able to progress pass welcome if a user had too large of font.

Reduced bundle size of android APKs

Commits:

d6d63c8 (tag: 1.0.1) Update resources commit
508a90e Add call back stack and success screen (#379)
360ad69 Reduce APK size (#376)
22909dc Fix bug in how it works final button
8abd39f Revert adding link to Connect screen and new translations
4c51df9 Add content to Connect screen
479a0be Resolve promises after the user denies/accepts the permissions dialog (#368)
9d4d98b Show the callback form links on exposure details (#375)
2748206 Update mobile_resources_commit (#373)
6cc82fa Rename Onboarding to HowItWorks and make general navigational refactors (#369)
5fc418a Fix key on callback form translation (#367)
5f109a5 Add button to restart onboarding and update settings screen design
253de34 Add scrollview around welcome screen (#360)
965d962 Update translations and remove unused keys (#361)
b176f98 (Android) Update dependencies (#364)
6979b0e Target Android 11 (#363)
c286f39 Update content of Settings screen and make some navigational refactors
f785b1c Update mobile_resources_commit (#362)
500cfa4 Fix referencial equality warning (#358)
db3e520 Replace welcome image with specific image on build (#352)
268cb03 Add call back form shown per configuration (#357)
9791086 Lokalise latest- missing translation for Chamorro, Japanese, Korean, Greek, Tagalog added. (#355)
5be93e4 Add button to open settings in order to enable Bluetooth (#351)
2d6db2c Show error when there is no internet connection (#354)
6215b83 Set up scaffolding for new tabs and settings structure
011f78a Refactor exposure detection (#346)
c552310 Display authority links on about and legal screen (#321)
fb34d54 Refactor SystemServicesContext

Notes:

This RC introduced a bug in which Android builds are not able submit exposure keys or read exposure notifications and therefore should not be used for Android builds.

1.0.0

14 Sep 15:08
898124e
Compare
Choose a tag to compare

Initial Release

Includes functionality for a user to:

  • Allow permissions to the GAEN framework on the device.
  • Receive exposure notifications.
  • Submit diagnostic keys to registered key servers via a verification code.

RC - 0.0.4

08 Sep 20:58
898124e
Compare
Choose a tag to compare
RC - 0.0.4 Pre-release
Pre-release
Update mobile_resources_commit (#353)

RC - 0.0.3

04 Sep 20:35
5f9285b
Compare
Choose a tag to compare
RC - 0.0.3 Pre-release
Pre-release
Add link to configuration in release notes (#336)

RC - 0.0.2

02 Sep 20:48
c83482f
Compare
Choose a tag to compare
RC - 0.0.2 Pre-release
Pre-release
Introduce SystemServicesContext (#317)

Why: instead of using various hooks, such as useBluetoothStatus and useHasLocationRequirements, to determine the state of system services, we would like to have a SystemServicesContext from which we can pull the relevant system-related information. This will reduce the amount of imports and top-level hooks, thereby making the use of system-related data more ergonomic and reducing the number of mocks in our specs.

This commit:
- Introduces an SystemServicesContext
- Removes useBluetoothStatus and useHasLocationRequirements, instead using the new context
- Updates the relevant specs