]> git.ktnx.net Git - mobile-ledger.git/log
mobile-ledger.git
3 years agofix creation of a new profile after Room-y of Profile adoption
Damyan Ivanov [Sun, 18 Apr 2021 09:42:54 +0000 (12:42 +0300)]
fix creation of a new profile after Room-y of Profile adoption

3 years agofix template editor layout
Damyan Ivanov [Sun, 18 Apr 2021 09:41:28 +0000 (12:41 +0300)]
fix template editor layout

due to a glitch in the view chains on some devices the layout was
broken

noise: renaming of IDs

3 years agoconstant TAG
Damyan Ivanov [Thu, 15 Apr 2021 20:09:57 +0000 (20:09 +0000)]
constant TAG

3 years agodebug--
Damyan Ivanov [Thu, 15 Apr 2021 20:09:34 +0000 (20:09 +0000)]
debug--

3 years agoRoom-based profile management
Damyan Ivanov [Thu, 15 Apr 2021 20:07:38 +0000 (20:07 +0000)]
Room-based profile management

MobileLedgerProfile is gone, Room spreads gradually

3 years agoequality check for Profile
Damyan Ivanov [Thu, 15 Apr 2021 18:47:33 +0000 (18:47 +0000)]
equality check for Profile

3 years agoRoom-based profile wipe
Damyan Ivanov [Thu, 15 Apr 2021 18:46:05 +0000 (18:46 +0000)]
Room-based profile wipe

used only in debug builds as before

3 years agodummy migration method
Damyan Ivanov [Thu, 15 Apr 2021 18:39:34 +0000 (18:39 +0000)]
dummy migration method

it appeared useful at a point, but later the fix was another

still, it may be handy in the future

3 years agoDefault template name given at save time
Damyan Ivanov [Thu, 15 Apr 2021 05:59:03 +0000 (05:59 +0000)]
Default template name given at save time

gets in the way when put in the details

3 years agoasynchronous profile initialisation
Damyan Ivanov [Sun, 11 Apr 2021 20:44:52 +0000 (20:44 +0000)]
asynchronous profile initialisation

the problem here was that the startup profile is read from the DB,
synchronously, and all DB operations need to happen via Room off the
main thread

since at activity startup only the theme is needed, that, and the startup
profile ID can be stored in the android preferences. actual loading of
profile and further data can be done after the theme is setup, in the
background, via Room

3 years agomore Room adoption - accounts@100%, some profiles/transactions
Damyan Ivanov [Sat, 10 Apr 2021 09:35:15 +0000 (12:35 +0300)]
more Room adoption - accounts@100%, some profiles/transactions

3 years agoimplement incremental changes in account list adapter
Damyan Ivanov [Sun, 4 Apr 2021 15:16:50 +0000 (18:16 +0300)]
implement incremental changes in account list adapter

avoids unnecessary viewHolder replacement

expansion/collapse are much nicer now

3 years agoadopt Room for displaying account lists
Damyan Ivanov [Sun, 4 Apr 2021 09:27:21 +0000 (12:27 +0300)]
adopt Room for displaying account lists

3 years agogeneration is long
Damyan Ivanov [Sun, 4 Apr 2021 09:22:42 +0000 (12:22 +0300)]
generation is long

3 years agoaccount_id → accountId
Damyan Ivanov [Sun, 4 Apr 2021 09:21:51 +0000 (12:21 +0300)]
account_id → accountId

3 years agospecialized sub-classes of AccountListItem
Damyan Ivanov [Fri, 26 Mar 2021 17:19:28 +0000 (19:19 +0200)]
specialized sub-classes of AccountListItem

3 years agodebug--
Damyan Ivanov [Fri, 26 Mar 2021 16:54:29 +0000 (18:54 +0200)]
debug--

3 years agofix SQL when cleaning obsolete transaction/accounts
Damyan Ivanov [Fri, 26 Mar 2021 16:54:20 +0000 (18:54 +0200)]
fix SQL when cleaning obsolete transaction/accounts

3 years agominor optimization in getting next generation
Damyan Ivanov [Fri, 26 Mar 2021 16:53:58 +0000 (18:53 +0200)]
minor optimization in getting next generation

3 years agofix SQL when filtering transaction list by account name
Damyan Ivanov [Thu, 25 Mar 2021 21:38:54 +0000 (23:38 +0200)]
fix SQL when filtering transaction list by account name

3 years agofix transaction account storage SQL
Damyan Ivanov [Thu, 25 Mar 2021 21:34:56 +0000 (23:34 +0200)]
fix transaction account storage SQL

3 years agowhitespace
Damyan Ivanov [Thu, 25 Mar 2021 21:34:42 +0000 (23:34 +0200)]
whitespace

3 years agofix db migration to surrogate IDs (final step)
Damyan Ivanov [Thu, 25 Mar 2021 21:34:31 +0000 (23:34 +0200)]
fix db migration to surrogate IDs (final step)

the cleanest approach is to create all new tables, move the data, and
then drop/rename them, followed by index creation

fixes a problem with transaction_accounts being empty because the
profiles table was dropped

requires foreign_keys pragma (set outside transaction control) so that
the declare foreign keys to the new tables get renamed with the tables

3 years agomore fall-outs after transition to surrogate IDs
Damyan Ivanov [Wed, 24 Mar 2021 18:53:05 +0000 (20:53 +0200)]
more fall-outs after transition to surrogate IDs

3 years agofix migration of transaction_accounts (attempt #N)
Damyan Ivanov [Mon, 22 Mar 2021 05:54:11 +0000 (07:54 +0200)]
fix migration of transaction_accounts (attempt #N)

3 years agoanother step towards surrogate ID db objects
Damyan Ivanov [Mon, 22 Mar 2021 05:41:42 +0000 (07:41 +0200)]
another step towards surrogate ID db objects

profile → profile_id in more places
transactions.id is globally unique; ledger-supplied ID
(profile-specific) is in transactions.ledger_id

3 years agoanother step towards surrogate ID db objects
Damyan Ivanov [Sun, 21 Mar 2021 20:20:31 +0000 (22:20 +0200)]
another step towards surrogate ID db objects

rename profile's uuid column to catch (and remove) all its usages
use default theme id for the initial theme id

3 years agomigrate to surrogate IDs for all database objects
Damyan Ivanov [Thu, 18 Mar 2021 17:09:34 +0000 (19:09 +0200)]
migrate to surrogate IDs for all database objects

along with foreign keys etc

3 years agodrop unused create_db.sql
Damyan Ivanov [Thu, 11 Mar 2021 16:55:27 +0000 (18:55 +0200)]
drop unused create_db.sql

3 years agoreplace custom autocompletion adapter hooking with specialised adapters
Damyan Ivanov [Thu, 11 Mar 2021 15:01:09 +0000 (17:01 +0200)]
replace custom autocompletion adapter hooking with specialised adapters

... which use Room

3 years agoprepare release of v0.17.1 (39) v0.17.1
Damyan Ivanov [Wed, 24 Mar 2021 19:43:10 +0000 (19:43 +0000)]
prepare release of v0.17.1 (39)

3 years agofix db migration from v0.16.0 (profile data)
Damyan Ivanov [Wed, 24 Mar 2021 19:09:20 +0000 (21:09 +0200)]
fix db migration from v0.16.0 (profile data)

3 years agoupdate features in full description v0.17.0
Damyan Ivanov [Thu, 11 Mar 2021 11:27:17 +0000 (11:27 +0000)]
update features in full description

3 years agoprepare v0.17.0 (38) for release
Damyan Ivanov [Thu, 11 Mar 2021 08:47:33 +0000 (08:47 +0000)]
prepare v0.17.0 (38) for release

3 years agominimize flicker when applying templated transaction too
Damyan Ivanov [Thu, 11 Mar 2021 07:48:43 +0000 (07:48 +0000)]
minimize flicker when applying templated transaction too

3 years agosmooth items replacement when old transaction is loaded and upon reset
Damyan Ivanov [Thu, 11 Mar 2021 06:52:11 +0000 (08:52 +0200)]
smooth items replacement when old transaction is loaded and upon reset

3 years agomake transaction header row always have Id of 0
Damyan Ivanov [Thu, 11 Mar 2021 06:23:45 +0000 (08:23 +0200)]
make transaction header row always have Id of 0

there's onle one header, and having a stable Id avoids visual flicker
when the list is updated

3 years agofix flicker introduced with unique item Id
Damyan Ivanov [Tue, 9 Mar 2021 20:18:56 +0000 (22:18 +0200)]
fix flicker introduced with unique item Id

when items get unique id every time, resetting the model causes new
IDs to be assigned, making the adapter consider old items gone and new
items added. this sounds OK, but the visual effect is that everything
disappears and then reappears, causing flicker.

3 years agosplit new transaction item holder in two
Damyan Ivanov [Tue, 9 Mar 2021 20:11:29 +0000 (22:11 +0200)]
split new transaction item holder in two

one for the header row, another for the account rows

3 years agoclean up unused resources
Damyan Ivanov [Mon, 8 Mar 2021 20:55:53 +0000 (22:55 +0200)]
clean up unused resources

3 years agoТранзакция → Движение навсякъде
Damyan Ivanov [Mon, 8 Mar 2021 20:37:35 +0000 (22:37 +0200)]
Транзакция → Движение навсякъде

3 years agotemplate details delete icon needs to be white
Damyan Ivanov [Mon, 8 Mar 2021 20:03:36 +0000 (22:03 +0200)]
template details delete icon needs to be white

it is shown in the action bar

3 years agominor optimization: avoid constructing empty string object
Damyan Ivanov [Sun, 7 Mar 2021 10:01:35 +0000 (12:01 +0200)]
minor optimization: avoid constructing empty string object

3 years agoreplace TextUtils.equals() usage with Misc.equalStrings()
Damyan Ivanov [Sun, 7 Mar 2021 10:00:45 +0000 (12:00 +0200)]
replace TextUtils.equals() usage with Misc.equalStrings()

equalStrings() considers null to be equal to the empty string

3 years agoimprovements in debug messages
Damyan Ivanov [Sun, 7 Mar 2021 09:43:46 +0000 (11:43 +0200)]
improvements in debug messages

3 years agonote focused item changed when item is moved
Damyan Ivanov [Sun, 7 Mar 2021 09:43:16 +0000 (11:43 +0200)]
note focused item changed when item is moved

3 years agoavoid dataSync when updating entered amount format on losing focus
Damyan Ivanov [Sun, 7 Mar 2021 09:42:50 +0000 (11:42 +0200)]
avoid dataSync when updating entered amount format on losing focus

no back-end data is changed, only the formatted text in the UI

3 years agoalways work with a clone of the live list when checking transaction
Damyan Ivanov [Sun, 7 Mar 2021 09:40:43 +0000 (11:40 +0200)]
always work with a clone of the live list when checking transaction

shortcuts bite back. the codes makes several lists with items from the
checked list and this may mess with the "get-copy-modify-set" actions
when some item in the working list needs to be changed

instead, make a clone (new list, cloned items; except if the input list
is not the live one, i.e. it is a working copy already) and freely
modify its items directly

if the "always clone" approach gets slow, this whole process may be
moved to a thread

also, note focus has moved when a item above the focused item is removed

3 years agohandle menu items click hooks by code in new transaction activity
Damyan Ivanov [Sun, 7 Mar 2021 09:16:34 +0000 (11:16 +0200)]
handle menu items click hooks by code in new transaction activity

3 years agoadd divider after debug items in the new transaction menu
Damyan Ivanov [Sun, 7 Mar 2021 09:09:03 +0000 (11:09 +0200)]
add divider after debug items in the new transaction menu

also, call super.onCreateOptionsMenu to let the system put any system
menu items if needed

also, don't bother with debug menu items in the release build

3 years agofixup: template details help
Damyan Ivanov [Sat, 6 Mar 2021 16:15:01 +0000 (18:15 +0200)]
fixup: template details help

3 years agouse the "black" icon here, this is a menu
Damyan Ivanov [Sat, 6 Mar 2021 16:14:32 +0000 (18:14 +0200)]
use the "black" icon here, this is a menu

3 years agoblack trash icon
Damyan Ivanov [Sat, 6 Mar 2021 16:13:43 +0000 (18:13 +0200)]
black trash icon

for menus

3 years agoprovide some guidance for template parameters
Damyan Ivanov [Sat, 6 Mar 2021 16:11:29 +0000 (18:11 +0200)]
provide some guidance for template parameters

3 years agoHelpDialog: support for markdown-style links in the message
Damyan Ivanov [Sat, 6 Mar 2021 16:08:31 +0000 (18:08 +0200)]
HelpDialog: support for markdown-style links in the message

3 years agomove help dialog in a separate class
Damyan Ivanov [Sat, 6 Mar 2021 07:53:56 +0000 (09:53 +0200)]
move help dialog in a separate class

will be used from other places too

3 years agomulti-line pattern and test text input fields
Damyan Ivanov [Fri, 5 Mar 2021 21:57:01 +0000 (23:57 +0200)]
multi-line pattern and test text input fields

these can get rather long and scrolling is annoying

3 years agoadd help menu for the template list
Damyan Ivanov [Fri, 5 Mar 2021 21:43:59 +0000 (23:43 +0200)]
add help menu for the template list

3 years agodebug++
Damyan Ivanov [Thu, 4 Mar 2021 21:25:37 +0000 (23:25 +0200)]
debug++

3 years agosyncData(): refuse to do anything when not associated with an item
Damyan Ivanov [Thu, 4 Mar 2021 21:24:59 +0000 (23:24 +0200)]
syncData(): refuse to do anything when not associated with an item

this may hapen when the item is swiped out (and loses focus, which may
cause re-setting amount text)

3 years agoavoid crash when removing the currency of a row
Damyan Ivanov [Thu, 4 Mar 2021 21:23:34 +0000 (23:23 +0200)]
avoid crash when removing the currency of a row

3 years agosave a setText() call that would not change anyting
Damyan Ivanov [Thu, 4 Mar 2021 21:22:59 +0000 (23:22 +0200)]
save a setText() call that would not change anyting

3 years agonew account rows are created without amount hint
Damyan Ivanov [Thu, 4 Mar 2021 21:21:33 +0000 (23:21 +0200)]
new account rows are created without amount hint

3 years agodrop improper list copy
Damyan Ivanov [Thu, 4 Mar 2021 21:21:07 +0000 (23:21 +0200)]
drop improper list copy

1) the list shall be copied only when the original is the live list
2) a (proper) list copy is made just a couple of lines earlier

3 years agofix model inconsistency when hiding/showing currency
Damyan Ivanov [Thu, 4 Mar 2021 20:11:42 +0000 (22:11 +0200)]
fix model inconsistency when hiding/showing currency

3 years agodebug++
Damyan Ivanov [Thu, 4 Mar 2021 19:43:21 +0000 (21:43 +0200)]
debug++

3 years agonew transaction: avoid manipulating the FAB directly, use the manager
Damyan Ivanov [Thu, 4 Mar 2021 19:43:08 +0000 (21:43 +0200)]
new transaction: avoid manipulating the FAB directly, use the manager

direct manipulation leads to inconsistency - the manager thinks that the
fab is visible and refuses to show it

3 years agoreset the submittable flag when resetting model state
Damyan Ivanov [Thu, 4 Mar 2021 19:41:32 +0000 (21:41 +0200)]
reset the submittable flag when resetting model state

3 years agoseparate error message text from the rest of the message
Damyan Ivanov [Thu, 4 Mar 2021 19:02:20 +0000 (21:02 +0200)]
separate error message text from the rest of the message

3 years agoremove the focused check before restoring cursor position
Damyan Ivanov [Thu, 4 Mar 2021 17:25:07 +0000 (19:25 +0200)]
remove the focused check before restoring cursor position

the check can fail for some reason, breaking user experience

3 years agomaterial (slightly larger) text sizes in template list
Damyan Ivanov [Thu, 4 Mar 2021 10:37:14 +0000 (10:37 +0000)]
material (slightly larger) text sizes in template list

3 years agoshow hidden FAB after four seconds
Damyan Ivanov [Wed, 3 Mar 2021 21:18:54 +0000 (23:18 +0200)]
show hidden FAB after four seconds

3 years agoreplace unused coordinator layout with constraint layout
Damyan Ivanov [Wed, 3 Mar 2021 20:46:48 +0000 (22:46 +0200)]
replace unused coordinator layout with constraint layout

removing the nested scroll view also makes the behaviour of the FAB not
depend on the number of items in the recycle view

3 years agouse standard height toolbars in main activity and new transaction act.
Damyan Ivanov [Wed, 3 Mar 2021 20:29:43 +0000 (22:29 +0200)]
use standard height toolbars in main activity and new transaction act.

3 years agouse default toolbar height for the templates activity
Damyan Ivanov [Wed, 3 Mar 2021 20:07:05 +0000 (22:07 +0200)]
use default toolbar height for the templates activity

looks better and the extra height is not needed

3 years ago"fix" background of templates toolbar
Damyan Ivanov [Wed, 3 Mar 2021 20:06:21 +0000 (22:06 +0200)]
"fix" background of templates toolbar

this needs a better fix, but the workaround present in the other
activities will do for now

3 years agoinclude "last account" flag in debug output
Damyan Ivanov [Wed, 3 Mar 2021 17:34:43 +0000 (19:34 +0200)]
include "last account" flag in debug output

3 years agoset focus to the transaction description upon UI reset
Damyan Ivanov [Wed, 3 Mar 2021 17:34:23 +0000 (19:34 +0200)]
set focus to the transaction description upon UI reset

for example when the transaction is submitted

3 years agoNT: keep cursor position while setting account name text
Damyan Ivanov [Wed, 3 Mar 2021 17:33:20 +0000 (19:33 +0200)]
NT: keep cursor position while setting account name text

some times the ViewHolder is replaced and the already entred text needs
to be restored. this resets the cursor position to 0, which is rather
uncomfortable while entering text

3 years agoswitch new transaction UI to FabManager
Damyan Ivanov [Wed, 3 Mar 2021 13:30:29 +0000 (15:30 +0200)]
switch new transaction UI to FabManager

3 years agomeasure FAB
Damyan Ivanov [Wed, 3 Mar 2021 13:29:54 +0000 (15:29 +0200)]
measure FAB

requires that it is bottom-aligned to a supported layout

fixes a problem when the FAB needs to be hidden before view are measured
and laid out

3 years agoparent is guaranteed to be a View here, or null
Damyan Ivanov [Wed, 3 Mar 2021 12:35:23 +0000 (14:35 +0200)]
parent is guaranteed to be a View here, or null

3 years agodrop collapsing toolbar layout, plain toolbar is fine
Damyan Ivanov [Wed, 3 Mar 2021 12:32:31 +0000 (12:32 +0000)]
drop collapsing toolbar layout, plain toolbar is fine

same as the other places

3 years agoseparate FAB management in a helper class
Damyan Ivanov [Wed, 3 Mar 2021 12:31:51 +0000 (12:31 +0000)]
separate FAB management in a helper class

CoordinatorLayout + FAB with "hide bottom view on scroll" behaviour
might seem to work, but there is a corner case when the view is just
large enough so that the FAB overlaps it, but not large enough to cause
scrolling and in this case it is possible to either be stuck with the
FAB over the bottom of the business area, or to hide the FAB without an
intuitive to make it pop up again

also, use single FAB for the Templates activity

3 years agodrop last remnants of new transaction bottom padding
Damyan Ivanov [Wed, 3 Mar 2021 07:13:53 +0000 (09:13 +0200)]
drop last remnants of new transaction bottom padding

3 years agoadd divider before fallback templates
Damyan Ivanov [Tue, 2 Mar 2021 21:12:27 +0000 (23:12 +0200)]
add divider before fallback templates

3 years agocheck if transaction is submittable after applying a template
Damyan Ivanov [Tue, 2 Mar 2021 16:57:24 +0000 (18:57 +0200)]
check if transaction is submittable after applying a template

3 years agoTemplates: order fallback templates at the bottom of the list
Damyan Ivanov [Tue, 2 Mar 2021 16:56:14 +0000 (18:56 +0200)]
Templates: order fallback templates at the bottom of the list

3 years agoslight optimization
Damyan Ivanov [Mon, 1 Mar 2021 19:53:46 +0000 (21:53 +0200)]
slight optimization

3 years agofix storing/restoring focus on reconfiguration
Damyan Ivanov [Mon, 1 Mar 2021 19:53:33 +0000 (21:53 +0200)]
fix storing/restoring focus on reconfiguration

3 years agooptimize calls to checkTransactionSubmittable()
Damyan Ivanov [Mon, 1 Mar 2021 17:58:42 +0000 (19:58 +0200)]
optimize calls to checkTransactionSubmittable()

this an expensive function traversing over all rows, so a cheap
avoidance would be nice

3 years agoflag initial amount hint as present (still null)
Damyan Ivanov [Mon, 1 Mar 2021 05:57:58 +0000 (07:57 +0200)]
flag initial amount hint as present (still null)

this avoids unnecessary item replacement manifesting as selection change
when the first letter of the account name is entered

3 years agowhen comparing account rows, ignore amount hints if amount is present
Damyan Ivanov [Sun, 28 Feb 2021 21:27:53 +0000 (23:27 +0200)]
when comparing account rows, ignore amount hints if amount is present

avoids unnecessary view holder update, possibly messing with the amount
being entered

3 years agoformat amounts when the input field loses focus
Damyan Ivanov [Sun, 28 Feb 2021 21:26:26 +0000 (23:26 +0200)]
format amounts when the input field loses focus

previously this relied on an update via the model

3 years agofix IME hints for amount inputs
Damyan Ivanov [Sun, 28 Feb 2021 20:42:00 +0000 (22:42 +0200)]
fix IME hints for amount inputs

3 years agofocus the first amount after loading a previous transaction
Damyan Ivanov [Sun, 28 Feb 2021 17:32:55 +0000 (19:32 +0200)]
focus the first amount after loading a previous transaction

3 years agonew-transaction: avoid auto-completion pop-ups when applying data
Damyan Ivanov [Sun, 28 Feb 2021 17:32:34 +0000 (19:32 +0200)]
new-transaction: avoid auto-completion pop-ups when applying data

the data comes from the model, i.e. either from an applied template or
loading of a previous transaction (auto-completion of transaction
description)

3 years agofix removal of empty transaction rows after the major rework
Damyan Ivanov [Sun, 28 Feb 2021 17:06:03 +0000 (19:06 +0200)]
fix removal of empty transaction rows after the major rework

3 years agofix sending empty transaction comments as "", not as null
Damyan Ivanov [Sun, 28 Feb 2021 16:55:53 +0000 (18:55 +0200)]
fix sending empty transaction comments as "", not as null

null causes a '400 expecting String, found Null'

3 years agoavoid crash when there is no information about focused element
Damyan Ivanov [Sun, 28 Feb 2021 16:55:00 +0000 (18:55 +0200)]
avoid crash when there is no information about focused element

observed when sending the transaction to the backend throws an exception