aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/KeychainApplication.java
Commit message (Collapse)AuthorAgeFilesLines
* change sync interval on change in codeAdithya Abraham Philip2016-03-241-0/+5
|
* Use BC provider as default oneDominik Schürmann2016-02-211-3/+7
|
* Fix SecurityException on Android 6 due to remove contacts on disabled syncDominik Schürmann2016-02-091-1/+1
|
* Remove leftovers from spongycastleDominik Schürmann2016-02-091-1/+1
|
* Replace spongycastle with bouncycastleDominik Schürmann2016-02-091-1/+1
|
* delete linked contacts on turning off contact syncAdithya Abraham Philip2016-02-061-2/+2
|
* prevent rare KeyserverSyncAdapterService crashAdithya Abraham Philip2016-01-271-4/+15
|
* fixed key update preference not turning offAdithya Abraham Philip2015-12-211-2/+27
|
* re-enable contact sync by defaultDominik Schürmann2015-11-231-1/+1
|
* Disable contact sync by default on Android >= 6Dominik Schürmann2015-11-231-31/+4
|
* Rename TemporaryStorageProvider to TemporaryFileProvider, use interface for ↵Dominik Schürmann2015-10-151-2/+2
| | | | db contract
* Use api.keybase.ioDominik Schürmann2015-09-211-6/+1
|
* Pin keybase certificateDominik Schürmann2015-09-211-0/+6
|
* Keyservers: Dont follow redirects, pin pgp.mit.edu, check for pinned cert on ↵Dominik Schürmann2015-09-201-2/+3
| | | | add (OKC-01-018)
* introduced constants for keyserver sync, fixed sync issueAdithya Abraham Philip2015-08-201-17/+3
|
* reworked keyserversyncadapterservice flowAdithya Abraham Philip2015-08-201-2/+18
|
* Rename updatePreferences() to upgradePreferences()Thialfihar2015-07-211-1/+1
| | | | | This is really an upgrade of the preference store and not an update of values, it also is consistent with SQLiteOpenHelper.onUpgrade().
* Fix drawer background color for ViewKeyActivityThialfihar2015-07-211-1/+2
|
* Force db upgrade on app startDominik Schürmann2015-06-291-2/+9
|
* Import R and BuildConfig explicitlyThialfihar2015-06-261-0/+1
|
* Allow debug build besides release buildDominik Schürmann2015-06-101-3/+1
|
* profiling says: caching qrCode bitmaps is a good ideaVincent Breitmoser2015-04-271-0/+14
|
* contacts work on all supported api levelsAdithya Abraham Philip2015-03-171-16/+13
|
* Cleanup of contact sync, debuggingDominik Schürmann2015-03-031-14/+16
|
* Fix multi select and more colorsDominik Schürmann2015-02-221-1/+1
|
* rewrite PgpSignEncrypt data flowVincent Breitmoser2015-02-011-2/+2
| | | | | | | - introduce high-level SignEncryptOperation for uri to uri signing/encryption - use SignEncryptParcel for high-level operation parameters - use PgpSignEncryptInput plus streams for low-level operation parameters - get rid of all sign/encrypt logic in KeychainIntentService
* Minor code cleanupDominik Schürmann2014-11-211-1/+1
|
* Fix crash on Android 5Dominik Schürmann2014-10-221-11/+16
|
* package reordering: merge util and helper, there were no real difference; ↵Dominik Schürmann2014-09-171-2/+2
| | | | created ui.util for everything related to formatting
* Consolidate on database upgradeDominik Schürmann2014-09-091-1/+1
|
* Pull from transifexDominik Schürmann2014-09-021-1/+1
|
* Catch security exception, known problem...Dominik Schürmann2014-09-021-13/+23
|
* Revert "No need for setSyncAutomatically, this is only for network tickles"Dominik Schürmann2014-08-221-0/+1
| | | | | | | This reverts commit 0c1e65bc8bbfed59d299e2f0ca7a6a30eef22664. Conflicts: OpenKeychain/src/main/java/org/sufficientlysecure/keychain/KeychainApplication.java
* Add account only on jelly bean and aboveDominik Schürmann2014-08-211-8/+12
|
* No need for setSyncAutomatically, this is only for network ticklesDominik Schürmann2014-08-211-3/+5
|
* Change account typeDominik Schürmann2014-08-211-2/+2
|
* Enable sync adapter, changelogDominik Schürmann2014-08-201-2/+6
|
* consolidate: prevent concurrent calls of step 2Vincent Breitmoser2014-08-201-4/+9
|
* consolidate: use KeychainProvider for deletion operationVincent Breitmoser2014-08-201-2/+0
|
* Start consolidate activityDominik Schürmann2014-08-191-1/+8
|
* stub for consolidate recovery in KeychainApplicationVincent Breitmoser2014-08-191-1/+8
|
* Use CompressionAlgorithmTags instead of homebrew constantsDominik Schürmann2014-08-051-1/+1
|
* Optimize importsDominik Schürmann2014-08-051-1/+0
|
* Merge pull request #728 from mar-v-in/improve-file-moreDominik Schürmann2014-08-041-3/+4
|\ | | | | Improve file encrypt
| * Add temporary file storage as discussed in #665mar-v-in2014-07-011-0/+3
| | | | | | | | Writable from OpenKeychain, readable worldwide. Should be used to write shared files to it by first creating the file using TemporaryStorageProvider.createFile and then write to the Uri returned.
| * Merge branch 'master' into improve-file-moremar-v-in2014-07-011-0/+7
| |\ | | | | | | | | | | | | | | | | | | | | | Conflicts: OpenKeychain/src/main/java/org/sufficientlysecure/keychain/KeychainApplication.java OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/DecryptFileFragment.java OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/EncryptFileFragment.java OpenKeychain/src/main/java/org/sufficientlysecure/keychain/ui/dialog/FileDialogFragment.java
| * | Improve file more, Part 1mar-v-in2014-06-221-4/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Use Uris where it makes sense, Use File class to clarify it's a file (and not whatever else a string could be) - Show sdcard in side menu in storage API #665 - Propose filename with gpg ending when storing it using the storage API #665 - Don't show output dialog on Android 4.4 #665 - Only show filename on Android < 4.4 #665 TODO: - File deletion for Android < 4.4 - Testing (especially with Android < 4.4) - Batch-encryption - UI - Temporary content provider (see #665 discussion)
* | | remove debug output about security providers (cleaner unit tests)Vincent Breitmoser2014-08-011-0/+2
| |/ |/|
* | Move sks-keyservers.net CA into assets foldermar-v-in2014-06-251-0/+3
| |
* | Update Keyservers to use hkps as neededmar-v-in2014-06-241-1/+4
|/