Commit Graph

2800 Commits

Author SHA1 Message Date
cketti 52469db66c Updated french translation (erkan2005) 2011-11-12 00:54:09 +01:00
Jesse Vincent ff352343c2 Bumped manifest to 3.990 2011-11-10 21:38:30 -05:00
cketti e1233257ad Wikified release notes 2011-11-10 00:31:33 +01:00
cketti a69f05c5f4 Don't call super.onBackPressed()
MessageView contained code that would call super.onBackPressed() if the
parent class had such a method (checked using reflection). But the
bytecode verifier prevented loading of MessageView because it contained
a (static) call to super.onBackPressed(). For this to work the method
had to be called using reflection.
I removed this code entirely since we don't do it in MessageList and
FolderList either. And all the time it worked just fine.
With that change we can re-enable support for Android 1.5-2.0.1 devices.
2011-11-09 22:35:22 +01:00
cketti d0bc28bff7 Turn off developer mode for 4.0 2011-11-09 18:20:08 +01:00
Andrew Chen 54ec1413cc Consolidate translation updates. 2011-11-09 05:43:17 -08:00
cketti 65420ca15c Added draft for the release notes 2011-11-09 06:33:35 +01:00
cketti 652f2c35e1 Added placeholders for untranslated strings 2011-11-09 04:25:30 +01:00
cketti 4a7a8cc213 Merge branch 'reply-after-quote' of git://github.com/ashleywillis/k-9 into 4.0-MAINT 2011-11-09 03:18:42 +01:00
ashley willis efe591c34d added "mQuotedHtmlContent.setFooterInsertionPoint(bodyOffset);" because bodyOffset could refer to header or footer 2011-11-07 01:59:03 -06:00
Jesse Vincent d2ab1f8d5c Bumped manifest to 3.913 2011-11-06 21:00:59 -05:00
cketti 6497ac4cf4 Default authentication type for SMTP is automatic 2011-11-07 01:58:38 +01:00
cketti 6d9463801e Don't call promptForServerPasswords() if we already know all passwords 2011-11-07 01:45:52 +01:00
cketti d6c03de6f5 Fixed logic bug that prevented imported accounts from being recognized
We have to add new account UUIDs to "accountUuids" for them to show up
in the account list.
2011-11-07 01:45:52 +01:00
Jesse Vincent 2a8f353fe9 Bumped manifest to 3.912 2011-11-06 18:11:36 -05:00
cketti e2e9f8b6a3 Fixed startActivityForResult() failing for MessageList
Fixes issue 3638
2011-11-07 00:07:06 +01:00
Jesse Vincent f677781bce Bumped manifest to 3.911 2011-11-06 18:04:36 -05:00
Jesse Vincent 31e2da0af4 Backport Turkish translation from Kaiten 2011-11-06 17:19:28 -05:00
Jesse Vincent f13ac8c164 don't translate the date format strings 2011-11-06 17:19:28 -05:00
Jesse Vincent 20832f0b98 fixed some formatting errors in the turkish translation 2011-11-06 17:19:28 -05:00
Jesse Vincent 45aa47ef04 Initial Turkish translation from Recep PAYVERDI 2011-11-06 17:19:28 -05:00
Jesse Vincent 7ca72b9d0f Work around broken office suites by sending an explicit mime type with files we open 2011-11-06 17:00:25 -05:00
cketti 70dc27c481 Make MimeUtility.getMimeTypeForViewing() return lower case MIME types
MIME type matching in Android is case-sensitive. So we convert the MIME
types we read from the email to lower case.
2011-11-06 02:05:47 +01:00
cketti 6f2be3226e Removed hardcoded strings from layout 2011-11-05 19:53:27 +01:00
cketti 88a2dd6289 Merge branch 'issue549'
Conflicts:
	src/com/fsck/k9/Account.java
	src/com/fsck/k9/mail/store/WebDavStore.java
2011-11-05 18:47:55 +01:00
Andrew Chen 4a1046a893 Merge pull request #93 from andrewgaul/cursor-close-quietly
Introduce and use Utility.closeQuietly(Cursor)
2011-11-04 16:20:22 -07:00
Andrew Gaul 39aa577651 Introduce and use Utility.closeQuietly(Cursor)
This helper is in the same spirit as IOUtils.closeQuietly.
2011-11-04 09:58:55 -07:00
Andrew Chen 357af7da3a Merge pull request #94 from andrewgaul/string-format
Avoid string concatenation in String.format
2011-11-04 09:08:36 -07:00
Andrew Gaul d301089f3c Avoid string concatenation in String.format 2011-11-03 18:47:34 -07:00
cketti 5d9bf309c9 Avoid NullPointerException in services when process/service is restarted
See issue 3750
2011-11-03 22:10:24 +01:00
Andrew Chen 57e0abbf8f Merge pull request #84 from andrewgaul/api7
Use LinkedList instead of Deque.
2011-11-03 07:41:09 -07:00
Andrew Chen 981dc6cca6 Merge pull request #92 from andrewgaul/remove-combine-uuids
Prefer Utility.combine over Account.combinedUuids
2011-11-03 06:41:33 -07:00
Andrew Chen 7f046e5f0a Merge pull request #91 from andrewgaul/findbugs-stream-close
Improve the way we open/close streams.
2011-11-03 06:40:07 -07:00
Andrew Chen d80e5bfbd0 Merge pull request #90 from andrewgaul/close-quietly
Call IOUtils.closeQuietly instead of using empty try/catch block.
2011-11-03 06:35:42 -07:00
Andrew Chen 64b299ebec Merge pull request #89 from andrewgaul/is-empty
Prefer Collection.isEmpty over size
2011-11-03 06:34:15 -07:00
Andrew Chen 9e74f9ffcf Merge pull request #88 from andrewgaul/log-throwable
Log Throwables instead of concatenating
2011-11-03 06:32:20 -07:00
Andrew Chen 64e2247e8f Merge pull request #87 from andrewgaul/map-initialization
Optimize static map, remove unneeded inner class, and use unmodifiable map.
2011-11-03 06:31:32 -07:00
Andrew Chen 8dccc7a996 Merge pull request #86 from andrewgaul/findbugs-concatenation
Prefer StringBuilder.append over String.concat
2011-11-03 06:28:51 -07:00
Andrew Chen 5c30abc4da Merge pull request #85 from andrewgaul/findbugs-dead-local-store
Remove dead stores
2011-11-03 06:27:24 -07:00
Andrew Gaul c2e9e4b345 Prefer Utility.combine over Account.combinedUuids 2011-11-02 22:57:06 -07:00
Andrew Gaul b53b0d33ba Close streams on exceptional paths
Addresses FindBugs complaints.
2011-11-02 22:48:37 -07:00
Andrew Gaul b1a807a712 Call IOUtils.closeQuietly where appropriate 2011-11-02 22:22:15 -07:00
Andrew Gaul 2599bdcc75 Log Throwable instead of concatenating 2011-11-02 22:18:30 -07:00
Andrew Gaul 70b635ec30 Initialize static map optimally
Remove unneeded inner class, use unmodifiable map, and mark as static.
2011-11-02 22:16:12 -07:00
Andrew Gaul cb14cd9d78 Prefer StringBuilder.append over String.concat
Addresses FindBugs complaints.
2011-11-02 22:10:02 -07:00
Andrew Gaul 61c850e077 Remove dead stores
Addresses FindBugs complaints.
2011-11-02 22:02:41 -07:00
Andrew Gaul 98d0b61890 API 7 fixes 2011-11-02 20:47:48 -07:00
Andrew Gaul 647ae0a31c Prefer Collection.isEmpty over size 2011-11-02 20:03:07 -07:00
Jesse Vincent 976761e0e5 Bumped manifest to 3.910 2011-11-02 21:05:24 -04:00
Andrew Chen 674c39f3d5 Merge pull request #80 from andrewachen/unify_gesturedetector
Make the K9Activity.GestureDetector reusable
2011-11-02 18:04:01 -07:00