Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: synapticweb/CipherPass
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.0
Choose a base ref
...
head repository: synapticweb/CipherPass
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 3 commits
  • 19 files changed
  • 1 contributor

Commits on Feb 11, 2021

  1. Updated readme

    synapticweb authored Feb 11, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    9b20225 View commit details

Commits on Jun 20, 2021

  1. Changed license.

    synapticweb committed Jun 20, 2021
    Copy the full SHA
    e42a682 View commit details
  2. Copy the full SHA
    4d49a5c View commit details
Showing with 770 additions and 264 deletions.
  1. +674 −202 LICENSE
  2. +3 −1 README.md
  3. +1 −1 app/src/androidTest/java/net/synapticweb/cipherpass/di/TestAppComponent.kt
  4. +1 −1 app/src/androidTest/java/net/synapticweb/cipherpass/di/TestRepositoryModule.kt
  5. +1 −0 app/src/androidTest/java/net/synapticweb/cipherpass/model/TestRepositoryImpl.kt
  6. +1 −1 app/src/main/java/net/synapticweb/cipherpass/LockStateViewModel.kt
  7. +1 −1 app/src/main/java/net/synapticweb/cipherpass/addeditentry/AddeditEntryViewModel.kt
  8. +1 −1 app/src/main/java/net/synapticweb/cipherpass/authenticate/AuthenticateViewModel.kt
  9. +5 −2 app/src/main/java/net/synapticweb/cipherpass/{model → data}/CipherPassDao.kt
  10. +2 −1 app/src/main/java/net/synapticweb/cipherpass/{model → data}/CipherPassDatabase.kt
  11. +4 −2 app/src/main/java/net/synapticweb/cipherpass/{model → data}/Repository.kt
  12. +4 −1 app/src/main/java/net/synapticweb/cipherpass/{model → data}/RepositoryImpl.kt
  13. +2 −2 app/src/main/java/net/synapticweb/cipherpass/di/RepositoryModule.kt
  14. +1 −1 app/src/main/java/net/synapticweb/cipherpass/entrieslist/EntriesListViewModel.kt
  15. +1 −1 app/src/main/java/net/synapticweb/cipherpass/entrydetail/EntryDetailViewModel.kt
  16. +46 −0 app/src/main/java/net/synapticweb/cipherpass/model/CustomField.kt
  17. +0 −45 app/src/main/java/net/synapticweb/cipherpass/model/{Tables.kt → Entry.kt}
  18. +21 −0 app/src/main/java/net/synapticweb/cipherpass/model/Hash.kt
  19. +1 −1 app/src/main/java/net/synapticweb/cipherpass/settings/SettingsViewModel.kt
Loading