Skip to content

Commit 71fbe85

Browse files
committed
Updated version to 1.15.0(23)
1 parent 5957afe commit 71fbe85

File tree

2 files changed

+38
-3
lines changed

2 files changed

+38
-3
lines changed

CHANGELOG.md

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,40 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
Please check our [developers guide](https://gitlab.com/tokend/developers-guide)
88
for further information about branching and tagging conventions.
99

10+
## [1.15.0] 2020-02-21
11+
12+
### Added
13+
- Ability to unlock the app in offline: balances, assets and movements are cached now
14+
- Clear button for payment recipient input
15+
- Binding deposit address for Coinpayments
16+
17+
### Changed
18+
- Speed up payments a little bit
19+
- Speed up Dashboard a little bit
20+
- Improved QR codes readability
21+
22+
### Fixed
23+
- Google Authenticator market URL
24+
- Display of non-approved KYC
25+
- Display of cancelled polls
26+
- Empty asset polls screen when user has no balance
27+
- Incorrect asset code on asset buy amount input screen
28+
29+
### Internal
30+
- Asset model is now used in `AmountInputScreen` instead of code
31+
- Fixed impossible build without Fabric key
32+
- Added Room storage
33+
- Refactored repository and cache for paged data
34+
- Added `ObjectPersistence` interface for single-object storage and it's implementation for
35+
`SharedPreferences`, it is also now a cache for `SingleItemRepository`
36+
- Fixed styling issues: now it's easy to create a dark theme
37+
- Separated active and request KYC state repositories
38+
- **Refactored calling activities for result: created `ActivityRequest` helper that allows
39+
setting callback for `RESULT_OK` without overriding `onActivityResult`**
40+
- Made `QrScannerUtil` work with `ActivityRequest`
41+
- Moved `Navigator`-related things to `navigation` package
42+
- **Made grand `data` package cleanup**
43+
1044
## [1.14.0] 2019-12-09
1145

1246
### Added
@@ -288,7 +322,8 @@ with ability to copy
288322

289323
- Error on sign in when user has balances with unknown asset details
290324

291-
[Unreleased]: https://github.com/tokend/android-client/compare/1.14.0(22)...HEAD
325+
[Unreleased]: https://github.com/tokend/android-client/compare/1.15.0(23)...HEAD
326+
[1.15.0]: https://github.com/tokend/android-client/compare/1.14.0(22)...1.15.0(23)
292327
[1.14.0]: https://github.com/tokend/android-client/compare/1.13.0(21)...1.14.0(22)
293328
[1.13.0]: https://github.com/tokend/android-client/compare/1.12.0(20)...1.13.0(21)
294329
[1.12.0]: https://github.com/tokend/android-client/compare/1.11.0(16)...1.12.0(20)

app/app_config.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ ext {
44
// Application ID - unique identifier of the app in Google Play and on user's device
55
application_id = 'org.tokend.template'
66
// Version Name - human-readable app version
7-
version_name = '1.14.0'
7+
version_name = '1.15.0'
88
// Version Code - code number for version,
99
// must be incremented after each release
10-
version_code = 22
10+
version_code = 23
1111

1212
// --------------------------
1313

0 commit comments

Comments
 (0)