Commit Graph

805 Commits (fcd3623eefac9e2d35e7f4819871718df3110242)
 

Author SHA1 Message Date
Alexander Bakker fcd3623eef Update Travis CI badge in README 5 years ago
Alexander Bakker 121ba06f5a Add a badge for the Matrix room to the README 5 years ago
Alexander Bakker 6611aa851c Refresh the README a bit 5 years ago
Alexander Bakker c0b8b2c7ee
Merge pull request #534 from linsui/trans
Update Simplified Chinese Translation
5 years ago
linsui 61f2e6e020 Update Simplified Chinese Translation 5 years ago
Alexander Bakker 21b588dc8b Add Arabic to the language list and sort it alphabetically 5 years ago
Alexander Bakker 90e5003418
Merge pull request #517 from nourserry/ar
Introducing Arabic language
5 years ago
Alexander Bakker f8cf87aae9
Merge pull request #513 from LucasVhc/portuguese-translation
Add brazilian portuguese translation
5 years ago
Alexander Bakker a77b308896
Merge pull request #521 from SagePtr/patch-1
Preserve backwards compatibility with Android < 7.0
5 years ago
Sage Pointer a25dbc5cdd Add desugaring for Android < 7 compatibility 5 years ago
Nour Serry 7fedb5ab83 Introducing Arabic language
Intitial Arabic language support.
All strings translated
5 years ago
Alexander Bakker 0eb9a25687 Add changelog of 1.2.1 and bump versionCode 5 years ago
Lucas 330e88c270 Add brazilian portuguese translation 5 years ago
Michael Schättgen 407d059076
Merge pull request #511 from alexbakker/fix-bar-loop
Fix an issue where the progress bar refresher ran in a tight loop
5 years ago
Alexander Bakker de3d0d8515 Fix an issue where the progress bar refresher ran in a tight loop
If the animator scale setting is set to 0, the progress bar refresher would run
in a tight loop. This issue was introduced by
93cc945a2c and caused the UI tests to fail.
5 years ago
Alexander Bakker 57ef52d6ff
Merge pull request #502 from alexbakker/double-activity-guard
Guard against starting multiple instances of IntroActivity or AuthActivity
5 years ago
Alexander Bakker 189bd0d749 Guard against starting multiple instances of IntroActivity or AuthActivity
Apparently onResume of MainActivity is sometimes called even if it's not the top
level activity, causing IntroActivity or AuthActivity to be launched twice. This
patch (uglily) prevents that from happening.
5 years ago
Michael Schättgen 4ef8d9e826
Merge pull request #504 from alexbakker/fix-zero-div
Fix division by zero when calculating progress for large periods
5 years ago
Michael Schättgen 7bb8d28b3b
Merge pull request #499 from alexbakker/fix-bioprompt-some-more
Improve the lifecycle handling of BiometricPrompt some more
5 years ago
Michael Schättgen 94ebc08097
Merge pull request #498 from alexbakker/slot-null
Allow changing the password if no password slot is present
5 years ago
Michael Schättgen a3e14c57e4
Merge pull request #493 from alexbakker/fix-export-filename-again
Fix export filename (again)
5 years ago
Michael Schättgen b55bdf8f04
Merge pull request #489 from alexbakker/fix-keystore-catch
Fix catching ProviderException with KeyStoreException as the cause
5 years ago
Michael Schättgen 3e0a97dbe0
Merge pull request #488 from alexbakker/explain-backups
Clarify that backups are automatic in the preference summary
5 years ago
Michael Schättgen 9b13a56002
Merge pull request #487 from alexbakker/transfer-entry-buttons
Make the buttons in TransferEntriesActivity behave like actual buttons
5 years ago
Michael Schättgen 32c145b02d
Merge pull request #481 from alexbakker/no-singletask
Unset "singleTask" as the launchMode for MainActivity
5 years ago
Michael Schättgen 25b359a136
Merge pull request #474 from alexbakker/fix-sql-import
Fix the flakiness of importing from SQLite databases
5 years ago
Michael Schättgen 0eb338a0bf
Merge pull request #464 from alexbakker/ui-tests
Add initial set of UI tests
5 years ago
Michael Schättgen b59a29cff4
Merge pull request #462 from alexbakker/better-rtl
Improve RTL support
5 years ago
Michael Schättgen c252e77c5b
Merge pull request #461 from alexbakker/better-scanner
Replace barcodescanner with CameraX and ZXing
5 years ago
Alexander Bakker 44ca712186 Improve RTL support
This addresses most of the issues reported in #418. The intro is still broken, however.

<img src="https://alexbakker.me/u/m9wfihdw4a.png" width="300"/>
5 years ago
Alexander Bakker 93cc945a2c Fix division by zero when calculating progress for large periods 5 years ago
Alexander Bakker 68d6c39dd4 Improve the lifecycle handling of BiometricPrompt some more
This is a different take on what db681273e6 was
trying to accomplish, with the additional benefit that the prompt will now no
longer be shown on auto-lock.
5 years ago
Alexander Bakker 3a5a185940 Allow changing the password if no password slot is present 5 years ago
Alexander Bakker 3d351ece05 Fix export filename (again)
I managed to clobber the filename of exports with fec2f3ff94.
5 years ago
Alexander Bakker c65ed16790 Replace barcodescanner with CameraX and ZXing
This removes the dependency on ``me.dm7.barcodescanner:zxing`` and replaces it
with our own QR code scanner implementation using CameraX and ZXing. The main
reason for this change is to hopefully get better compatibility with obscure
devices. The barcodescanner library we were previously using seems unmaintained,
while Google is apparently putting a lot of effort into CameraX.

ScannerActivity has been almost entirely rewritten, but the functionality is
exactly the same as before.
5 years ago
Alexander Bakker 7c147befcb Fix catching ProviderException with KeyStoreException as the cause
We're looking for android.security.KeyStoreException as the cause of
ProviderException, not java.security.KeyStoreException. Unfortunately this is a
hidden class, so all we can do is check the class name.
5 years ago
Alexander Bakker c73c29d2ec
Merge pull request #470 from Vstory/patch-3
Update Chinese translation
5 years ago
Vstory df0c6b5fa8 Update Chinese translation 5 years ago
Alexander Bakker 2ae7ec33f1 Clarify that backups are automatic in the preference summary 5 years ago
Alexander Bakker 65beeffa93
Merge pull request #486 from michaelschattgen/feature/hidden-text-change
Change hidden text to the 'Black circle' character
5 years ago
Alexander Bakker b5fa6192b3 Make the buttons in TransferEntriesActivity behave like actual buttons 5 years ago
Michael Schättgen 721a3d2d27 Change hidden text to the 'Black circle' character 5 years ago
Alexander Bakker bf9173301c
Merge pull request #442 from orangenbaumblatt/feature/password-strength
Add password strength meter
5 years ago
Alexander Bakker e2cf6a40cb Unset "singleTask" as the launchMode for MainActivity
We don't actually need this, and I have a feeling that it may be causing some of
the inexplicable crashes we're seeing in the Play Console. For example:
apparently the app sometimes gets itself into a state where the vault is
unlocked, but the user is still shown AuthActivity (possibly due to it being
launched twice). I can't prove that "singleTask" causes this, as I can't
reproduce the issue on my device or an emulator, but it's the only odd thing we
have in our activity lifecycle handling.

Test plan:
- Go through the intro, add an entry, change some settings, etc
- See if the app shortcuts still work. Scenarios:
    - The app is terminated.
    - The app is locked.
    - MainActivity is open.
    - Some other activity is open.
- See if auto-locking still works. Scenarios:
    - The app is locked.
    - MainActivity is open.
    - Some other activity is open.
- Turn on "Don't keep activities" in developer options and repeat the above
  steps.
5 years ago
Michael Schättgen db681273e6
Merge pull request #478 from alexbakker/fix-bioprompt-oneplus
Let Android handle the lifecycle of BiometricPrompt
5 years ago
Alexander Bakker 291fd5427b Let Android handle the lifecycle of BiometricPrompt
We previously stopped/started the biometric prompt every time in
onPause/onResume, but that's apparently not necessary (and discouraged according
to the documentation). This caused issues where the prompt would get stuck on
some devices. While working on this I ran into another issue where AuthActivity
was closed and reopened for no reason after rotation of the device, compounding
the issue. This patch also fixes that.
5 years ago
Alexander Bakker 362f1da11f Fix the flakiness of importing from SQLite databases
This patch ensures that we also copy over any files related to the SQLite
database (databases-shm, databases-wal, databases-journal) when copying it from
an app's internal storage.
5 years ago
orangenbaumblatt cc33c63501 Add password strength meter
String refactor


Layout improvements


Layout improvements


Fixes after rebuild
5 years ago
Alexander Bakker 6e54497492 Release v1.2 5 years ago
Alexander Bakker 9fde453ead
Merge pull request #472 from michaelschattgen/feature/fix-menu-title
Fix menu item title for transfer
5 years ago