diff --git a/readme-ja.txt b/readme-ja.txt index 06822b5..f0bd859 100644 --- a/readme-ja.txt +++ b/readme-ja.txt @@ -158,7 +158,7 @@ wp-config.phpの準備が終わったら、次のステップに進みます。 * [Yet Another Related Posts](http://wordpress.org/extend/plugins/yet-another-related-posts-plugin/) * [Better Related Posts](http://wordpress.org/extend/plugins/better-related/) -たぶん、もっとあるでしょう。 +たぶん、もっとあるでしょう。動作しないプラグインを見つけたら、お知らせいただけると助かります。 == Upgrade Notice == @@ -168,9 +168,11 @@ SQLite Integrationのアップグレードに失敗するようなら、FTPを == Changelog == = 1.3 (2013-08-11) = -* エラーメッセージの出力方法を一部変更しました。 -* query_create.class.phpの_rewrite_field_types()を変更しました。 -* BETWEEN関数が使えるようになりました。 +* ダッシュボードのスタイルをMP6プラグインに合わせたものに変えました。 +* 言語カタログが読み込まれていないときのエラーメッセージの出力方法を一部変更しました。 +* query_create.class.phpの_rewrite_field_types()を変更しました。dbDelta()関数が意図したとおりに実行されます。 +* BETWEENステートメントが使えるようになりました。 +* クエリからインデックスヒントを全て削除して実行するようにしました。 * New StatPressプラグインが使えるように、ALTER TABLE CHANGE COLUMNの扱いを修正しました。 = 1.2.1 (2013-08-04) = diff --git a/readme.txt b/readme.txt index ad4a4a2..d670d7e 100644 --- a/readme.txt +++ b/readme.txt @@ -150,7 +150,7 @@ These are other examples: * [Yet Another Related Posts](http://wordpress.org/extend/plugins/yet-another-related-posts-plugin/) * [Better Related Posts](http://wordpress.org/extend/plugins/better-related/) -Probably there are more, I'm afraid. +Probably there are more, I'm afraid. If you find one, please let me know. == Upgrade Notice == @@ -159,9 +159,11 @@ When auto upgrading of SQLite Integration fails, please try manual upgrade via F == Changelog == = 1.3 (2013-08-10) = -* Changed the way of putting out the error messages. -* Modified the _rewrite_field_types() in query_create.class.php. -* Added the support for BETWEEN function. +* Changed the dashboard style to match MP6 plugin. +* Changed the way of putting out the error messages when language catalogs are not loaded. +* Modified the _rewrite_field_types() in query_create.class.php for the dbDelta() function to work properly. +* Added the support for BETWEEN statement. +* Changed the regular expression to remove all the index hints from the query string. * Fixed the manipulation of ALTER TABLE CHANGE COLUMN query for NewStatPress plugin to work. = 1.2.1 (2013-08-04) = diff --git a/styles/doc.css b/styles/doc.css index 0e43ab2..957c4bf 100644 --- a/styles/doc.css +++ b/styles/doc.css @@ -41,6 +41,7 @@ } .menu-item a { text-decoration: none; + color: rgb(256, 256, 256); } #sqlite-admin-wrap { color: #1d1d1d; diff --git a/utilities/utility.php b/utilities/utility.php index 14ed133..71e33d0 100644 --- a/utilities/utility.php +++ b/utilities/utility.php @@ -198,7 +198,7 @@ class SQLiteIntegrationUtils { $db_file = FQDB; if (file_exists($db_file)) { $size = filesize($db_file); - clearstatcache(false, $db_file); + clearstatcache(true, $db_file); return $this->convert_to_formatted_number($size); } }