-
Notifications
You must be signed in to change notification settings - Fork 539
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#110 searchable spinner arrayadapter #895
Open
JeanGarf
wants to merge
147
commits into
codinguser:master
Choose a base branch
from
JeanGarf:#110_searchable_spinner_arayadapter
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
#110 searchable spinner arrayadapter #895
JeanGarf
wants to merge
147
commits into
codinguser:master
from
JeanGarf:#110_searchable_spinner_arayadapter
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Conflicts: # app/src/main/res/raw/iso_4217_currencies.xml
…etails screen.
Increase text margins for RTL text in transaction details screen - fixes codinguser#790
Update crashlytics dependency version
Fixes add button disappearing after rotation - fixes codinguser#812
For each split in every exported transaction, the code fetched the whole Account instance, including all its transactions with all their splits. This resulted in hundreds of thousands of requests with a medium-sized ledger. There was a cache mechanism, but it was local to one single transaction, thus essentially useless. Now, each split generates two requests, to get the account's name and full name. A better cache mechanism would speed this up further.
Caching allows us to decrease the number of database requests. We did two requests per exported split before this commit; now we only do two requests per unique account in all splits.
Update to Latest commodities referenced in GnuCash desktop
Update gradle wrapper to 4.4 and plugin to 3.1.4
Initial release of croatian accounts
Fix slow CSV exports
Upgrades support library version Migrate legacy tests to use ActivityTestRule
Update Java source compatibility to Java 8 Update Travis CI build configuration
…ingTextFilter + Add isFoundInItem() that can be overridden
…ccount Full Name of the item instead of item.toString()
…and ArrayAdapter
…title_line_chart and title_report_sheet
…ally in Report Toolbar Spinner
… have no customized color, because black is too hard
…ception in Splits
…nt in transfer account list for Splits
…se() the computation of the accounts allowed for a transfer
JeanGarf
changed the title
#110 searchable spinner arayadapter
#110 searchable spinner arrayadapter
Mar 15, 2021
19 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi,
With this contribution, when you click on a transaction other account, you'll get a "Searchable Spinner" pop-up.
It display all the available account, but the list may be filtered by entering text in the search field.
Very usefull when you have lots of accounts.
Best regards,