aboutsummaryrefslogtreecommitdiff
path: root/app
AgeCommit message (Collapse)Author
2023-04-27feat(lint): update baselinesHarsh Shandilya
2023-04-10fix: remove injection redirection in SSHFacadeHarsh Shandilya
2023-04-10feat: put new SSH layer behind a feature flagHarsh Shandilya
There hasn't been nearly enough regression testing on this and it is causing breakage, let's move it out of the default path until we've ironed out the kinks.
2023-04-10fix: actually apply LeakCanary config changesHarsh Shandilya
2023-04-06fix: only check repo initialization in commit flowHarsh Shandilya
2023-04-06feat: wire up key import functionalityHarsh Shandilya
2023-04-06fix: use created repository directlyHarsh Shandilya
2023-04-02Refactor SSHKey into a separate module (#2450)Aditya Wasan
* refactor(ssh): add `ssh` module Signed-off-by: Aditya Wasan <adityawasan55@gmail.com> * refactor(ssh): add `SSHKey` data class Signed-off-by: Aditya Wasan <adityawasan55@gmail.com> * refactor(ssh): add `SSHKeyType` enum Signed-off-by: Aditya Wasan <adityawasan55@gmail.com> * refactor(ssh): add `SSHKeyAlgorithm` class Signed-off-by: Aditya Wasan <adityawasan55@gmail.com> * refactor(ssh): add class to generate `RSA` key Signed-off-by: Aditya Wasan <adityawasan55@gmail.com> * chore(ssh): add required dependencies Signed-off-by: Aditya Wasan <adityawasan55@gmail.com> * refactor(ssh): add `ECDSAKeyGenerator` and remove constants Signed-off-by: Aditya Wasan <adityawasan55@gmail.com> * refactor(ssh): add utilities Signed-off-by: Aditya Wasan <adityawasan55@gmail.com> * feat(ssh): add `SSHKeyWriter` Signed-off-by: Aditya Wasan <adityawasan55@gmail.com> * refactor(ssh): make ssh key generators suspending Signed-off-by: Aditya Wasan <adityawasan55@gmail.com> * fix(ssh): fix explicit API violations * feat: complete `ED25519KeyWriter` implementation Signed-off-by: Aditya Wasan <adityawasan55@gmail.com> * factor(ssh/writer): update writer interface Signed-off-by: Aditya Wasan <adityawasan55@gmail.com> * feat(ssh/provider): add providers for different key types Signed-off-by: Aditya Wasan <adityawasan55@gmail.com> * feat(ssh): add SSHKeyManager for common key functionality Signed-off-by: Aditya Wasan <adityawasan55@gmail.com> * feat(ssh): add remaining methods to reach feature parity with old SSH implementation Signed-off-by: Aditya Wasan <adityawasan55@gmail.com> * wip(app): start using SSHKeyManager instead of SSHKey class Signed-off-by: Aditya Wasan <adityawasan55@gmail.com> Signed-off-by: Harsh Shandilya <me@msfjarvis.dev> * refactor(ssh): update package name Signed-off-by: Aditya Wasan <adityawasan55@gmail.com> * chore(ssh): fix detekt warnings Signed-off-by: Aditya Wasan <adityawasan55@gmail.com> * chore: fixes across the board --------- Signed-off-by: Aditya Wasan <adityawasan55@gmail.com> Signed-off-by: Harsh Shandilya <me@msfjarvis.dev> Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
2023-03-27refactor: migrate to androidx.core APIs for `Bundle`/`Intent` API changesHarsh Shandilya
2023-03-27Sync localisations from Crowdin (#2440)Harsh Shandilya
strings: sync with crowdin Co-authored-by: GitHub Actions <noreply@github.com>
2023-03-26Sync localisations from Crowdin (#2439)Harsh Shandilya
strings: sync with crowdin Co-authored-by: GitHub Actions <noreply@github.com>
2023-03-25feat: offer to import a PGP key when none are presentHarsh Shandilya
2023-03-25fix: use DispatcherProvider in CryptoRepositoryHarsh Shandilya
2023-03-25chore: rename import button label string resourceHarsh Shandilya
2023-03-25fix: ensure repo dir is recreated after deletionHarsh Shandilya
2023-03-24fix: extract hard-coded stringHarsh Shandilya
2023-03-24feat: add user guidance in PGP key manager screenHarsh Shandilya
2023-03-24fix: adjust LeakCanary init flowHarsh Shandilya
2023-03-21refactor(build): wire up CC-compatible task dependencies for CrowdinHarsh Shandilya
2023-03-21fix(build): remove `DSL_SCOPE_VIOLATION` suppressionHarsh Shandilya
This was a Gradle bug that is now fixed https://docs.gradle.org/8.1-rc-1/release-notes.html#:~:text=Access%20to%20version%20catalog%20for%20plugins%20in%20the%20plugins%20%7B%7D%20block
2023-03-19fix: inverted test in `Migrations#removeCurrentBranchValue`Harsh Shandilya
2023-03-18fix(app): control LeakCanary lifecycle more explicitlyHarsh Shandilya
2023-03-08fix: also swallow retry attempts in SSHJ biometric authHarsh Shandilya
2023-03-08chore: add more logging to biometric operationsHarsh Shandilya
2023-03-08fix: use UI context for more `Toast`sHarsh Shandilya
Fixes: a3b88c1dee86 ("fix: use activity context for Toast")
2023-03-04fix: make remembering HTTPS password the defaultHarsh Shandilya
Not many good reasons to do this a different way
2023-03-04fix: use activity context for ToastHarsh Shandilya
Fixes a newly introduced warning in API 33 > Tried to access visual service WindowManager from a non-visual Context:app.passwordstore.Application@d2801f8 WindowManager > should be accessed from Activity or other visual Context. Use an Activity or a Context created with > Context#createWindowContext(int, Bundle), which are adjusted to the configuration and visual bounds of an area on screen.
2023-03-01chore: refresh Lint baselinesHarsh Shandilya
2023-03-01refactor(app): centralize lint configurationHarsh Shandilya
2023-02-26Sync localisations from Crowdin (#2392)Harsh Shandilya
strings: sync with crowdin Co-authored-by: GitHub Actions <noreply@github.com>
2023-02-23chore(i18n): import current translationsHarsh Shandilya
2023-02-23fix: clarify OTP import failure stringsHarsh Shandilya
2023-02-08chore(deps): bump `com.facebook:ktfmt` to 0.43Harsh Shandilya
2023-01-31Revert "refactor: use a ViewModel to pass around decryption passphrase"Harsh Shandilya
This fails to correctly handle retries. Will re-land after I can figure out why. This reverts commit 2fbad7ef6b42cc30c5eac79d5d166bba7cba42a4.
2023-01-28feat: wire up SLF4J integrationHarsh Shandilya
2023-01-28refactor: extract SLF4J loggers for re-useHarsh Shandilya
2023-01-26chore(deps): upgrade security-crypto to 1.1.0-alpha04Harsh Shandilya
2023-01-26fix(app): address UI inconsistencies in proxy configuration screenHarsh Shandilya
2023-01-19refactor: use a ViewModel to pass around decryption passphraseHarsh Shandilya
2023-01-12fix: remove deprecated methodHarsh Shandilya
2023-01-05fix: add ProGuard rules for LeakCanary's reflective usesHarsh Shandilya
2022-12-31chore: reword confusing commentsHarsh Shandilya
2022-12-31chore: add inherited deprecation annotationHarsh Shandilya
2022-12-31fix: remove unnecessary log statementHarsh Shandilya
2022-12-22fix(lint): adjust TrustAllX509TrustManager regexpHarsh Shandilya
2022-12-19chore: refresh Lint baselineHarsh Shandilya
2022-12-19refactor: merge format-common-impl into format-commonHarsh Shandilya
Also converts the format-common module into an Android library since UriTotpFinder requires the Android SDK.
2022-12-12fix(autofill): fall back to remote views when inline presentations are ↵Harsh Shandilya
unavailable Fixes #2290
2022-12-11Sync localisations from Crowdin (#2295)Harsh Shandilya
strings: sync with crowdin Co-authored-by: GitHub Actions <noreply@github.com>
2022-12-09chore(deps): upgrade ktfmt to 0.42Harsh Shandilya