Compare commits

...

14 Commits

Author SHA1 Message Date
Jesse Vincent bc144d684b Bumped manifest to 4.801 2013-11-07 10:43:16 -08:00
Jesse Vincent 9469a433bd release notes for 4.801 2013-11-07 10:42:58 -08:00
Jesse Vincent 68d0a5823b Revert "Revert "Temporarily bump ourselves up only install on KitKat for a market hack""
This reverts commit 3a0dcd70b8.
2013-11-07 10:41:23 -08:00
Jesse Vincent be14a88103 With the new webview scrollview combo we've got loadinoverviewmode seems to behave better. 2013-11-07 10:40:01 -08:00
cketti ed3a160403 Fix file selection for import
Using FLAG_ACTIVITY_NO_HISTORY will cause the file selection
to fail when KitKat's "Open from" activity opens a third-party activity.
2013-11-07 09:31:21 -08:00
Koji Arai d97176e6c7 Fixed typo. 2013-11-06 23:47:28 +09:00
Koji Arai 4ac1b6328b Updated Japanese translation of the changelog. 2013-11-06 23:34:11 +09:00
Jesse Vincent 3a0dcd70b8 Revert "Temporarily bump ourselves up only install on KitKat for a market hack"
This reverts commit 4134685c65.
2013-11-05 21:12:23 -05:00
Jesse Vincent c0b6793053 changelog version bump 2013-11-05 20:58:24 -05:00
Jesse Vincent 99193195f9 Bumped manifest to 4.800 2013-11-05 20:57:53 -05:00
Jesse Vincent e8bbd01cd5 4.800 release version 2013-11-05 20:57:23 -05:00
Jesse Vincent 4134685c65 Temporarily bump ourselves up only install on KitKat for a market hack 2013-11-05 20:56:56 -05:00
Jesse Vincent bc10b8d965 turn off developer mode for release 2013-11-05 20:55:44 -05:00
Jesse Vincent 20ce31146a changelog for 4.800 2013-11-05 20:55:16 -05:00
6 changed files with 26 additions and 14 deletions

View File

@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
android:versionCode="19002"
android:versionName="4.701" package="com.fsck.k9"
android:versionCode="20002"
android:versionName="4.801" package="com.fsck.k9"
>
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17"
android:minSdkVersion="19"
android:targetSdkVersion="19"
/>
<supports-screens
android:largeScreens="true"

View File

@ -1,5 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<changelog>
<release version="4.800" versioncode="20001" >
<change>これはKitKatデバイスでよりよく振る舞うべくリリースされました。古いデバイスで動く4.8のバージョンはすぐに現れなければなりませんでした</change>
</release>
<release version="4.701" versioncode="19002" >
<change>KitKatでの問題を修正するためにメッセージビューのスクロールの仕方を見直しました。ありがとう Joe Steele!</change>
<change>TLS暗号スイートとバージョンを堅牢にしました</change>
<change>引用テキストがない場合に不要な空行を追加しないようにしました</change>
<change>メッセージの下書きに関連するいくつかの問題を修正しました</change>
<change>アカウントを削除した時に古いデータの削除を改善しました</change>
<change>KitKatのバグを一時的に回避するため設定のインポートを停止しました</change>
<change>ドイツ語、ギリシャ語、日本語、韓国語、リトアニア語、ポルトガル語、ロシア語そしてスロバキア語の翻訳を更新しました</change>
</release>
<release version="4.700" versioncode="19001" >
<change>コードをきれいにしました</change>
<change>ドラフトメッセージが送信されてしまうバグを修正しました</change>

View File

@ -8,6 +8,13 @@
They are automatically updated with "ant bump-version".
-->
<changelog>
<release version="4.801" versioncode="20002" >
<change>Further bugfixes for importing settings on KitKat</change>
<change>First pass at a fix for blank messages showing up when the 'Auto-fit messages' option is checked</change>
</release>
<release version="4.800" versioncode="20001" >
<change>This release should behave better on KitKat devices. A version of 4.8 that runs on older devices should appear shortly.</change>
</release>
<release version="4.701" versioncode="19002" >
<change>Overhauled how we do message view scrolling to fix a KitKat issue. Thanks to Joe Steele!</change>
<change>Hardened TLS cipher suites and versions</change>

View File

@ -117,7 +117,7 @@ public class K9 extends Application {
* It should NEVER be on for Market builds
* Right now, it just governs strictmode
**/
public static boolean DEVELOPER_MODE = true;
public static boolean DEVELOPER_MODE = false;
/**

View File

@ -1371,10 +1371,8 @@ public class Accounts extends K9ListActivity implements OnItemClickListener {
private void onImport() {
Intent i = new Intent(Intent.ACTION_GET_CONTENT);
i.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
i.addCategory(Intent.CATEGORY_OPENABLE);
i.setType("*/*"); // KitKat seems to be ignoring mimetypes and won't load settings
// MimeUtility.K9_SETTINGS_MIME_TYPE);
i.setType("*/*");
PackageManager packageManager = getPackageManager();
List<ResolveInfo> infos = packageManager.queryIntentActivities(i, 0);

View File

@ -111,12 +111,7 @@ public class MessageWebView extends RigidWebView {
webSettings.setBuiltInZoomControls(true);
webSettings.setUseWideViewPort(true);
if (K9.autofitWidth()) {
// 1% will be smaller than overview, so it effectively
// goes into overview mode.
// Tried the following, neither of which worked:
// webSettings.setLoadWithOverviewMode(true);
// setInitialScale(0);
setInitialScale(1);
webSettings.setLoadWithOverviewMode(true);
}
disableDisplayZoomControls();