* master: (28 commits)
Updated MIME Type list with http://www.stdicon.com/mimetypes
It turns out that not every android release has a good extension to mimetype mapping. restore our previous hardcoded mime database as a fallback
Fix for NPE when changing the identity
Bumped manifest to ${version.name}
Fix phantom messages in unified inbox.
added a synchronous variant of searchLocalMessages
Bumped manifest to ${version.name}
first pass at importing the traditional chinese translation from Issue 2500 ( thanks to zhangyin@research.neu.edu.cn)
notification that the dataset changed needs to happen on the UI thread.
When returning from a messageview to a messagelist do our listview updates on a thread rather than on the main ui thread. it results in the list blinking with old data, but that's still a better user experience than "frozen"
astyle
update a comment about an uncommon code path
Add gmail-style "to me" and "cc me" indicators in messagelist
When doing a message search, break it into "first 10" and "more" - because a long SQL query takes more time before starting to return results, K-9 was increasingly slow on large folders.
Running heavy operations on the UI thread makes K-9's UI slow and freezy. addOrUpdateMessages is very heavy. and very common.
Corrected small typo
Update issue 7031 http://code.google.com/p/android/issues/detail?id=7031 added removeDialog() for every dismissDialog()
Same as r2450 Rename strings-sv.xml to strings.xml (Android ignores the actual file name, rename is for consistency)
Revert "For the common case of "getMessage" where we actually have the object in"
Calculate preview for html-only messages
...
Conflicts:
AndroidManifest.xml
src/com/fsck/k9/activity/MessageList.java
src/com/fsck/k9/provider/MessageProvider.java
Added an option whether the registered name color is change or not
Avoid "Connection error" when MessageView is opened. The contacts.getName() might return null.
Extracted notification related settings in separate class (see Issue 2268)
Update issue 371
Status: Fixed
Added ability to disable LED notification for new messages
When selecting one of the five vibrate patterns or the number of repetitions, we should demonstrate to the user what the vibrate pattern feels like. (Thanks to achen.code)
use the ListPreference instead of the EditTextPreference to set vibrate times.
Update issue 1916
Status: started
I updated the existing strings.xml with many of your fixes and added a Canadian French specific strings.xml: it only contains terms that differ.
Identified terms (fr / fr_CA) :
e-mail / courriel
spam / pourriel
You can now choose "Français (Canada)" language from the configuration screen.
I tried to match the Gmail application running on a system configured with French locale: it mainly use the "message" term and sometime "e-mail" like in notifications as well as "spam".
Some other modifications are spelling fixes.
Added option to automatically show images in message view (always, if sender is in contacts, never).
Patch by paulkilroy (thanks!)
Includes bugfix for the "Show pictures" on orientation change code introduced earlier.
* remotes/issue814:
Changed the appearance of the ChooseAccount activity to better match the look of the account list.
svn:eol-style set to LF (UNIX style)
Update issue 814 Status: Started Cc: +fiouzy Reuse of res/layout/accounts_item.xml to match account list Automatically expand/scroll to Intent-presented account
- Patch provided by fiouzy (ability to choose identity from other accounts) - Modifications in MessageCompose by cketti (use MessageReference to replace mFolder and mSourceMessageUid)
Created branch for issue 814 (Feature to select account to send from in compose screen)
Update issue 662
Added the long press initiation of text selection. I also noticed we'll have to make sure text selection is not recognized as a gesture (or at least ignored as gesture).
Update issue 1988
Status: Started
Owner: thialfihar
You are absolutely right, English was not displayed for anyone. Oops. Added now, so it'll be in the next build.
The standard ScrollView causes problems when selecting text (and the message is long enough so scrolling is possible). The newly introduced ToggleScrollView can be set to disable scrolling via touch gestures thus making copying multi-line text sections possible.
Fixes issue 662