Skip to content

Commit 49a138a

Browse files
authored
UI revamp (#240)
1 parent f2246d1 commit 49a138a

File tree

339 files changed

+11108
-5067
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

339 files changed

+11108
-5067
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [Unreleased]
4+
5+
### Changed
6+
7+
- Revamped UI across the entire app with improved visuals and usability.
8+
- Redesigned Main Screen with better navigation.
9+
10+
### Added
11+
12+
- A separate Accounts List Screen for easier account management.
13+
- A new Activity Screen with Transfers list
14+
315
## [1.5.0] - 2025-01-22
416

517
### Added

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ dependencies {
259259
// Android/Google
260260
implementation 'androidx.appcompat:appcompat:1.6.1'
261261
implementation 'androidx.core:core-ktx:1.9.0'
262-
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
262+
implementation 'androidx.constraintlayout:constraintlayout:2.2.0'
263263
implementation 'androidx.recyclerview:recyclerview:1.2.1'
264264
implementation 'com.google.android.material:material:1.8.0'
265265
implementation 'androidx.cardview:cardview:1.0.0'

app/schemas/com.concordium.wallet.data.room.WalletDatabase/10.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"formatVersion": 1,
33
"database": {
44
"version": 10,
5-
"identityHash": "8e6839ae303bff1c2c78e11537326637",
5+
"identityHash": "a0b006e72bded882f5db03c65eef1cf0",
66
"entities": [
77
{
88
"tableName": "identity_table",
@@ -97,7 +97,7 @@
9797
},
9898
{
9999
"tableName": "account_table",
100-
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `identity_id` INTEGER NOT NULL, `name` TEXT NOT NULL, `address` TEXT NOT NULL, `submission_id` TEXT NOT NULL, `transaction_status` INTEGER NOT NULL, `encrypted_account_data` TEXT, `credential` TEXT, `cred_number` INTEGER NOT NULL, `revealed_attributes` TEXT NOT NULL, `finalized_balance` TEXT NOT NULL, `balance_at_disposal` TEXT NOT NULL, `total_shielded_balance` TEXT NOT NULL, `finalized_encrypted_balance` TEXT, `current_balance_status` INTEGER NOT NULL, `read_only` INTEGER NOT NULL, `finalized_account_release_schedule` TEXT, `cooldowns` TEXT NOT NULL, `account_delegation` TEXT, `account_baker` TEXT, `accountIndex` INTEGER)",
100+
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `identity_id` INTEGER NOT NULL, `name` TEXT NOT NULL, `address` TEXT NOT NULL, `submission_id` TEXT NOT NULL, `transaction_status` INTEGER NOT NULL, `encrypted_account_data` TEXT, `credential` TEXT, `cred_number` INTEGER NOT NULL, `revealed_attributes` TEXT NOT NULL, `finalized_balance` TEXT NOT NULL, `balance_at_disposal` TEXT NOT NULL, `total_shielded_balance` TEXT NOT NULL, `finalized_encrypted_balance` TEXT, `current_balance_status` INTEGER NOT NULL, `read_only` INTEGER NOT NULL, `finalized_account_release_schedule` TEXT, `cooldowns` TEXT NOT NULL, `account_delegation` TEXT, `account_baker` TEXT, `accountIndex` INTEGER, `is_active` INTEGER NOT NULL DEFAULT 0)",
101101
"fields": [
102102
{
103103
"fieldPath": "id",
@@ -224,6 +224,13 @@
224224
"columnName": "accountIndex",
225225
"affinity": "INTEGER",
226226
"notNull": false
227+
},
228+
{
229+
"fieldPath": "isActive",
230+
"columnName": "is_active",
231+
"affinity": "INTEGER",
232+
"notNull": true,
233+
"defaultValue": "0"
227234
}
228235
],
229236
"primaryKey": {
@@ -493,7 +500,7 @@
493500
"views": [],
494501
"setupQueries": [
495502
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
496-
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '8e6839ae303bff1c2c78e11537326637')"
503+
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'a0b006e72bded882f5db03c65eef1cf0')"
497504
]
498505
}
499506
}

0 commit comments

Comments
 (0)