Fix the database optimization bug. Add a new screenshot.
git-svn-id: https://plugins.svn.wordpress.org/sqlite-integration/trunk@765246 b8457f37-d9ea-0310-8a92-e5e31aec5664
This commit is contained in:
parent
be737aa08e
commit
953f18e719
|
@ -158,7 +158,7 @@ wp-config.phpの準備が終わったら、次のステップに進みます。
|
||||||
* [Yet Another Related Posts](http://wordpress.org/extend/plugins/yet-another-related-posts-plugin/)
|
* [Yet Another Related Posts](http://wordpress.org/extend/plugins/yet-another-related-posts-plugin/)
|
||||||
* [Better Related Posts](http://wordpress.org/extend/plugins/better-related/)
|
* [Better Related Posts](http://wordpress.org/extend/plugins/better-related/)
|
||||||
|
|
||||||
たぶん、もっとあるでしょう。
|
たぶん、もっとあるでしょう。動作しないプラグインを見つけたら、お知らせいただけると助かります。
|
||||||
|
|
||||||
|
|
||||||
== Upgrade Notice ==
|
== Upgrade Notice ==
|
||||||
|
@ -168,9 +168,11 @@ SQLite Integrationのアップグレードに失敗するようなら、FTPを
|
||||||
== Changelog ==
|
== Changelog ==
|
||||||
|
|
||||||
= 1.3 (2013-08-11) =
|
= 1.3 (2013-08-11) =
|
||||||
* エラーメッセージの出力方法を一部変更しました。
|
* ダッシュボードのスタイルをMP6プラグインに合わせたものに変えました。
|
||||||
* query_create.class.phpの_rewrite_field_types()を変更しました。
|
* 言語カタログが読み込まれていないときのエラーメッセージの出力方法を一部変更しました。
|
||||||
* BETWEEN関数が使えるようになりました。
|
* query_create.class.phpの_rewrite_field_types()を変更しました。dbDelta()関数が意図したとおりに実行されます。
|
||||||
|
* BETWEENステートメントが使えるようになりました。
|
||||||
|
* クエリからインデックスヒントを全て削除して実行するようにしました。
|
||||||
* New StatPressプラグインが使えるように、ALTER TABLE CHANGE COLUMNの扱いを修正しました。
|
* New StatPressプラグインが使えるように、ALTER TABLE CHANGE COLUMNの扱いを修正しました。
|
||||||
|
|
||||||
= 1.2.1 (2013-08-04) =
|
= 1.2.1 (2013-08-04) =
|
||||||
|
|
10
readme.txt
10
readme.txt
|
@ -150,7 +150,7 @@ These are other examples:
|
||||||
* [Yet Another Related Posts](http://wordpress.org/extend/plugins/yet-another-related-posts-plugin/)
|
* [Yet Another Related Posts](http://wordpress.org/extend/plugins/yet-another-related-posts-plugin/)
|
||||||
* [Better Related Posts](http://wordpress.org/extend/plugins/better-related/)
|
* [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 ==
|
== Upgrade Notice ==
|
||||||
|
|
||||||
|
@ -159,9 +159,11 @@ When auto upgrading of SQLite Integration fails, please try manual upgrade via F
|
||||||
== Changelog ==
|
== Changelog ==
|
||||||
|
|
||||||
= 1.3 (2013-08-10) =
|
= 1.3 (2013-08-10) =
|
||||||
* Changed the way of putting out the error messages.
|
* Changed the dashboard style to match MP6 plugin.
|
||||||
* Modified the _rewrite_field_types() in query_create.class.php.
|
* Changed the way of putting out the error messages when language catalogs are not loaded.
|
||||||
* Added the support for BETWEEN function.
|
* 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.
|
* Fixed the manipulation of ALTER TABLE CHANGE COLUMN query for NewStatPress plugin to work.
|
||||||
|
|
||||||
= 1.2.1 (2013-08-04) =
|
= 1.2.1 (2013-08-04) =
|
||||||
|
|
|
@ -41,6 +41,7 @@
|
||||||
}
|
}
|
||||||
.menu-item a {
|
.menu-item a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
color: rgb(256, 256, 256);
|
||||||
}
|
}
|
||||||
#sqlite-admin-wrap {
|
#sqlite-admin-wrap {
|
||||||
color: #1d1d1d;
|
color: #1d1d1d;
|
||||||
|
|
|
@ -198,7 +198,7 @@ class SQLiteIntegrationUtils {
|
||||||
$db_file = FQDB;
|
$db_file = FQDB;
|
||||||
if (file_exists($db_file)) {
|
if (file_exists($db_file)) {
|
||||||
$size = filesize($db_file);
|
$size = filesize($db_file);
|
||||||
clearstatcache(false, $db_file);
|
clearstatcache(true, $db_file);
|
||||||
return $this->convert_to_formatted_number($size);
|
return $this->convert_to_formatted_number($size);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue