aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/EncryptFilesFragment.java
Commit message (Collapse)AuthorAgeFilesLines
* Shifted duplicate method implementations from KeyRing to openpgp-api submoduleAlex Fong2016-05-151-1/+2
|
* PgpSignEncryptOperation refactoringAndrea Torlaschi2016-05-101-4/+7
|
* Fix Wrong file encrypted from cached inputDurgesh2016-04-151-0/+2
| | | | Signed-off-by: Durgesh <007durgesh219@gmail.com>
* Remove uri from pending even when already addedAndrea Torlaschi2016-03-041-2/+2
|
* Handle denied storage permission, use ContentResolver.SCHEME_FILE constantDominik Schürmann2015-11-191-3/+6
|
* Request READ_EXTERNAL_STORAGE permission for encryption of files (shared by ↵Dominik Schürmann2015-11-191-31/+106
| | | | file managers to OpenKeychain)
* Mime type consistencyDominik Schürmann2015-10-151-1/+1
|
* Rename TemporaryStorageProvider to TemporaryFileProvider, use interface for ↵Dominik Schürmann2015-10-151-3/+3
| | | | db contract
* Merge branch 'master' into encrypted-exportVincent Breitmoser2015-10-091-26/+3
|\
| * Revert "Check that the encrypt input uris are not linked to our own internal ↵Dominik Schürmann2015-10-081-26/+3
| | | | | | | | | | | | | | | | storage (OKC-01-010)" Fix was not sufficient This reverts commit b10b14d9bc737edc56af0eec3a14bed5ebf3ea39.
* | Merge branch 'master' into encrypted-exportVincent Breitmoser2015-10-081-19/+2
|\|
| * Remove ShareHelper: Not compat with Android >= 5, reduce code complexityDominik Schürmann2015-10-081-19/+2
| |
* | use annotations for android sdk constraintsVincent Breitmoser2015-09-281-2/+4
|/
* Check that the encrypt input uris are not linked to our own internal storage ↵Dominik Schürmann2015-09-251-3/+26
| | | | (OKC-01-010)
* Cleanup FileHelperDominik Schürmann2015-09-241-3/+2
|
* Remove save support for Android < 4.4 (OKC-01-014)Dominik Schürmann2015-09-241-0/+11
|
* some cleanup in FileHelper, and allow input of filename during exportVincent Breitmoser2015-08-271-21/+5
|
* Improve comments and reasons in PgpConstants, simple checks for insecure ↵Dominik Schürmann2015-08-101-6/+5
| | | | asymmetric keys
* Introduce constants in OpenPgpSignature and DecryptionResult for ↵Dominik Schürmann2015-08-091-4/+8
| | | | unsigned/unencrypted content, update API, introduce simple checks for insecure symmetric algos
* made mSignatureTime optional in CryptoOperationHelperAdithya Abraham Philip2015-07-151-4/+6
|
* hide keyboard before operations, tooVincent Breitmoser2015-07-081-0/+3
|
* hide keyboard on crypto error/successVincent Breitmoser2015-07-081-0/+3
|
* introduce QueueingCryptoOperationFragment to queue result handling in ↵Vincent Breitmoser2015-07-071-5/+2
| | | | detached state
* better getActivity and getSystemService null handling in encryptfilesfragmentVincent Breitmoser2015-07-051-9/+20
|
* made CryptoOperationFragment implement OperationHelper.CallbackAdithya Abraham Philip2015-06-301-2/+2
|
* don't expose dataset for FileAdapter in encrypt view, small improvements to ↵Vincent Breitmoser2015-06-221-26/+34
| | | | error handling
* instrument: some updates to asymmetric decrypt testsVincent Breitmoser2015-06-221-2/+7
|
* use uris for clipboard data if available in DecryptActivityVincent Breitmoser2015-06-201-3/+1
|
* drop clipboard backwards compatibility for api level < 11Vincent Breitmoser2015-06-201-26/+52
|
* allow encrypting to clipboard in EncryptFileFragmentVincent Breitmoser2015-06-201-16/+39
|
* working DisplayTextActivity, more input support in DecryptActivityVincent Breitmoser2015-06-201-7/+8
|
* fix typo in excluder activity nameVincent Breitmoser2015-06-181-1/+1
|
* some bugfixes for new CryptoOperationFragmentVincent Breitmoser2015-06-111-7/+0
|
* eventbus: initial attempt, replace messenger hack with eventbus communicationVincent Breitmoser2015-06-061-92/+53
|
* Merge branch 'v/sticky-prefs'Vincent Breitmoser2015-06-031-12/+93
|\
| * keep prefernces individual per dialog (affects only compression)Vincent Breitmoser2015-06-031-3/+2
| |
| * implement sticky preferencesVincent Breitmoser2015-05-311-12/+94
| |
* | renamed KeychainIntentService to KeychainServiceAdithya Abraham Philip2015-06-011-8/+8
| |
* | merged servicesAdithya Abraham Philip2015-06-011-3/+3
|/
* rewrite data flow in EncryptFileFragment preserve state correctlyVincent Breitmoser2015-05-301-50/+68
|
* correctly preserve state in EncryptFilesFragmentVincent Breitmoser2015-05-271-7/+36
|
* move synchronous encryption into activity, and preserve checkbox stateVincent Breitmoser2015-05-271-8/+5
|
* rewrite EncryptActivity data flowVincent Breitmoser2015-05-271-102/+71
|
* Fixed Snackbar behind layoutManoj Khanna2015-04-221-7/+7
| | | | Surrounded string with quotes
* More cleanupDominik Schürmann2015-04-151-0/+1
|
* Fix nullpointer with Intent API, fix clearing of encrypt file list, notify ↵Dominik Schürmann2015-04-041-3/+2
| | | | when adding a range of input uris
* Better check if file is already addedDominik Schürmann2015-03-311-19/+42
|
* Merge branch 'v/crypto-input-parcel' of ↵Vincent Breitmoser2015-03-301-102/+207
|\ | | | | | | | | | | | | github.com:open-keychain/open-keychain into v/crypto-input-parcel Conflicts: OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/EncryptFilesFragment.java
| * Use RecyclerView in EncryptFilesFragmentDominik Schürmann2015-03-301-103/+208
| |
* | remove unused NfcActivityVincent Breitmoser2015-03-301-5/+5
| |