aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* added secure file deletion, overwriting the file with random data before ↵Thialfihar2010-07-246-19/+83
| | | | | | | | | | | | | actual deletion Update issue 56 Added a method for secure file deletion. We'll possibly have to test this a bit and make sure it actually *is* secure on the filesystems used (vfat for SD card, yaffs2 for phone flash memory by default). This sort of overwrite might be absolutely useless on some filesystems. I also wanted to add an option at first, but this seems reasonably fast and in general it should be what the user wants, so for now it will ALWAYS securely delete. If there is a demand for plain deletion, then options can be added. Update issue 39 A new string: <string name="progress_deletingSecurely">deleting \'%s\' securely...</string>
* have a direct set/change pass phrase button in key creation/editing, instead ↵Thialfihar2010-07-238-37/+66
| | | | of hiding it in the menu, also capitalize user id names automatically and give the email field an inputType of textEmailAddress
* small translation changes (sl)tripetdevet2010-07-221-2/+4
|
* added a language setting to change the language directlyThialfihar2010-07-188-3/+244
|
* fixed two variable namesThialfihar2010-07-181-9/+9
|
* fixed the made-up word "authentification", also changed the title of that ↵Thialfihar2010-07-186-17/+16
| | | | | | | dialog to "Pass Phrase", dialog message then only contains the key details or "Symmetric encryption." Update issue 39 I tried to change "title_athentication", "passPhraseForSymmetricEncryption", and "passPhraseFor" in all languages. I think the changes are correct, but if you guys could make sure I didn't do anything dumb, then that'd be better. :)
* 1.0.x changes merged into trunkThialfihar2010-07-1610-86/+94
|
* set svn:eol-style to LF for all code/resource filesThialfihar2010-07-1637-7339/+7339
|
* removed unnecessary importsThialfihar2010-07-163-3/+3
|
* trying to add support for various source and destination modes for ↵Thialfihar2010-07-0915-186/+380
| | | | encryption and decryption (String, byte[], filename, content stream), also more Intent options added
* some playing with content stream decryption and providing the result as ↵Thialfihar2010-07-093-35/+116
| | | | content stream
* some small changes in translation.tripetdevet2010-07-081-1/+6
|
* added some info about the speed of compression algorithms, mostly to warn ↵Thialfihar2010-07-056-28/+84
| | | | about BZIP2, also added support for content URIs in file encrypt/decrypt activities
* prevent endless loop on some binary data during stream content determination ↵Thialfihar2010-07-011-0/+1
| | | | in GeneralActivity
* merge 1.0.x back into trunkThialfihar2010-06-3045-32/+21
|
* (no commit message)tripetdevet2010-06-291-0/+2
|
* Author-line added to italian translation file (thx Oliver!)Rick Deckard2010-06-291-0/+2
|
* Italian translationRick Deckard2010-06-291-0/+259
|
* author for German translation added to the license headerThialfihar2010-06-281-0/+2
|
* German translation by cwoehrl addedThialfihar2010-06-281-205/+241
|
* removed some translation files again, as they weren't being translated after ↵Thialfihar2010-06-223-767/+0
| | | | all... just annoying to keep their English content up to date
* some fixes among English stringsThialfihar2010-06-221-6/+6
|
* much better version reading by directly looking for the APG package, rather ↵Thialfihar2010-06-181-12/+7
| | | | than looping through all installed packages
* applied cketti's patch to escape apostrophesThialfihar2010-06-177-57/+57
| | | | fixes Issue 47
* removed an outdated TODO commentThialfihar2010-06-171-3/+0
|
* using proper PreferenceActivity now, tho the underlying storage of the ↵Thialfihar2010-06-1716-482/+530
| | | | values remained almost the same, some changes how the preferences are accessed and how the cache service is started
* recent 1.0.x changes into trunkThialfihar2010-06-174-9/+12
|
* added Italian values directoryThialfihar2010-06-161-0/+259
|
* update to slovenian translationtripetdevet2010-06-101-8/+8
|
* Danish translation addedThialfihar2010-06-091-0/+258
|
* lift trunk to 1.0.3Thialfihar2010-06-081-1/+1
|
* useless imports removedThialfihar2010-06-081-4/+0
|
* finally read APG version dynamicly, so the version name doesn't have to be ↵Thialfihar2010-06-084-7/+39
| | | | changed anywhere but the manifest
* make sure the preselected encryption key can encrypt, otherwise deselect it ↵Thialfihar2010-06-071-0/+4
| | | | again at display time
* in the encrypt activity automatically select the signature key as encryption ↵Thialfihar2010-06-071-1/+17
| | | | key, if it is set, and if the button is pressed
* better filter for GeneralActivity againThialfihar2010-06-061-0/+7
|
* limit GeneralActivity to non-Uri Intents or file:// Uri Intents, now ↵Thialfihar2010-06-064-19/+68
| | | | handling key imports as well
* content provider changes, especially querying key rings by emailsThialfihar2010-06-061-26/+82
|
* should have been in the last commitThialfihar2010-06-061-0/+4
|
* the select public key list now uses the selection for the ordering, putting ↵Thialfihar2010-06-062-16/+23
| | | | already selected keys on top, also correctly maintains the selection over repeated filtering
* some Activity Intent filter cleanup, pass messages via Strings rather than ↵Thialfihar2010-06-063-10/+7
| | | | ByteArrays, avoid some encoding issues
* working encryption/decryption of text and files after GeneralActivity hands ↵Thialfihar2010-06-067-37/+82
| | | | it over
* added search to option menu and make it pop up when keys on the physical ↵Thialfihar2010-06-0512-4/+41
| | | | keyboard are pressed
* added search feature for key management and select ActivitiesThialfihar2010-06-0520-75/+486
|
* introduced a general application to handle certain Intents, only to hand ↵Thialfihar2010-06-056-15/+216
| | | | them to other APG Activities after looking at the content of the passed data
* branching trunk out of latest 1.0.x to get a clean start for itThialfihar2010-06-0541-2595/+2840
|\
| * make sure the Intent passed to Service.onStart() is not null, not sure why ↵Thialfihar2010-06-041-1/+3
| | | | | | | | it would be, but saw such an exception on the market
| * fix the inbox list for GMail accountThialfihar2010-06-041-1/+1
| |
| * lifted 1.0.x to new versionThialfihar2010-06-032-2/+2
| |
| * make sure previously cache settings of "until quit" are changed to the new ↵Thialfihar2010-06-031-2/+9
| | | | | | | | default of 3 minutes, as indefinite caching is no longer supported