aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/thialfihar/android/apg/PreferencesActivity.java
Commit message (Collapse)AuthorAgeFilesLines
* renaming whole package to org.apg to simplifiy nameDominik2012-03-091-265/+0
|
* Switch to spongycastleMarkus Doits2011-11-031-6/+6
| | | | | | | https://github.com/rtyley/spongycastle It replaces bouncycastle2. Looks like a cleaner and better integration. A precompiled .jar ist in the "lib/"-dir.
* moved IntegerListPreference to apg.ui.widgetThialfihar2010-08-171-0/+1
|
* added a key server preference, allowing multiple key servers to be addedThialfihar2010-08-171-0/+36
| | | | | Update issue 9 Key server preference added.
* added a "force V3 signature" setting similar to the GPG version, hopefully ↵Thialfihar2010-07-271-0/+13
| | | | | | | | | | | | making APG useful for some special cases where that is needed Update issue 39 Two new strings: <string name="section_advanced">Advanced</string> <string name="label_forceV3Signature">Force V3 Signatures</string> "V3" is just "version 3" and should remain untranslated, both strings can be seen at the bottom of the preferences activity.
* added a language setting to change the language directlyThialfihar2010-07-181-2/+37
|
* set svn:eol-style to LF for all code/resource filesThialfihar2010-07-161-180/+180
|
* trying to add support for various source and destination modes for ↵Thialfihar2010-07-091-1/+0
| | | | encryption and decryption (String, byte[], filename, content stream), also more Intent options added
* added some info about the speed of compression algorithms, mostly to warn ↵Thialfihar2010-07-051-4/+9
| | | | about BZIP2, also added support for content URIs in file encrypt/decrypt activities
* using proper PreferenceActivity now, tho the underlying storage of the ↵Thialfihar2010-06-171-166/+121
| | | | values remained almost the same, some changes how the preferences are accessed and how the cache service is started
* added a service to handle the caching, this'll ensure the cache works while ↵Thialfihar2010-06-031-1/+0
| | | | | | no activity is around, which is better for k9mail integration it also is a more efficient and much smarter cache, not requiring an own timer thread, just a service that sleeps must of the time, it also is more accurate in cleaning up the entries, ensuring that the worst case of too late removal is 5 seconds
* default message/file compression settings added, also a setting for file ↵Thialfihar2010-05-161-11/+73
| | | | decryption to change the default when a file requires it
* honour the pass phrase cache TTL by running a timer and removing expired ↵Thialfihar2010-05-161-2/+2
| | | | cached pass phrases
* added pass phrase cache to preferences, not used yet, but preference and ↵Thialfihar2010-05-151-8/+45
| | | | about menu item now show up in every activity
* a lot of renaming of IDs, following a strict naming scheme again, moved most ↵Thialfihar2010-05-131-3/+3
| | | | strings into string.xml in preparation for internationalization, APG.java still has to be changed to allow that, as it isn't Context aware in most methods
* removed some useless importsThialfihar2010-04-291-1/+0
|
* add preferences, use them where applicableThialfihar2010-04-281-0/+124