aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/thialfihar/android/apg/Preferences.java
Commit message (Collapse)AuthorAgeFilesLines
* Allow to regenerate shared preferencesMarkus Doits2010-12-301-2/+6
| | | | | | | | | | | | | | | I encountered a problem that changing preferences in APG did not change the preferences in ApgService after it was called once: 1. call getPreferences 2. change settings in APG 3. call getPreferences again --> the result at 3. was still having preferences from 1. To work around this, the function getPreferences has been updated to force the new generation of preferences while not breaking any other code relying on the old behaviour.
* added a key server preference, allowing multiple key servers to be addedThialfihar2010-08-171-0/+33
| | | | | Update issue 9 Key server preference added.
* added a "force V3 signature" setting similar to the GPG version, hopefully ↵Thialfihar2010-07-271-0/+10
| | | | | | | | | | | | 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 little getting started dialog for first-time use, explaining some ↵Thialfihar2010-07-241-0/+10
| | | | | | | | | | | | | | | | | basics and recommending other apps Update issue 39 Added: <string name="title_help">Getting Started</string> <string name="menu_help">Help</string> <!-- "OI File Manager", "ASTRO", and "K-9 Mail" must NOT be translated in order for the links to the market to work. --> <string name="text_help">Install K-9 Mail for the best integration, it supports APG for PGP/INLINE and lets you directly encrypt/decrypt emails. \n\nIt is recommended that you install OI File Manager or ASTRO to be able to use the browse button for file selection in APG. \n\nFirst you need some keys. Either import them via the option menus in \"Manage Public Keys\" and \"Manage Secret Keys\" or create them in \"Manage Secret Keys\". \n\nYou can also add a GMail account in the main activity via \"Add Account\", which simplifies decrypting emails received there. \n\nCheck out the option menus in the various activities to find more functions. </string>
* added a language setting to change the language directlyThialfihar2010-07-181-0/+10
|
* using proper PreferenceActivity now, tho the underlying storage of the ↵Thialfihar2010-06-171-0/+106
values remained almost the same, some changes how the preferences are accessed and how the cache service is started