Version Description
Download this release
Release Info
Developer | poporon |
Plugin | Pz-LinkCard |
Version | 1.7.8 |
Comparing to | |
See all releases |
Code changes from version 1.7.6 to 1.7.8
- lib/pz-linkcard-cacheman.php +22 -12
- lib/pz-linkcard-init.php +1 -8
- pz-linkcard.php +8 -3
- readme.txt +45 -37
lib/pz-linkcard-cacheman.php
CHANGED
@@ -228,22 +228,32 @@ if (strpos($sql, '--') || strpos($sql, 'UPDATE') || strpos($sql, 'UNION') ) { //
|
|
228 |
$domain_list = $wpdb->get_results($sql); // テーブルデータ
|
229 |
|
230 |
// SUB(CASE WHEN ... END) で一気に取れないぽい?
|
231 |
-
$
|
232 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
233 |
$result = $wpdb->get_row("SELECT COUNT(*) AS count FROM $this->db_name WHERE url LIKE '".get_bloginfo('url')."%'");
|
234 |
-
$
|
|
|
|
|
235 |
$result = $wpdb->get_row("SELECT COUNT(*) AS count FROM $this->db_name WHERE url NOT LIKE '".get_bloginfo('url')."%'");
|
236 |
-
$
|
|
|
|
|
237 |
$result = $wpdb->get_row("SELECT COUNT(*) AS count FROM $this->db_name WHERE alive_result <> result_code");
|
238 |
-
$
|
239 |
-
|
|
|
240 |
?>
|
241 |
-
|
242 |
<ul class='subsubsub'>
|
243 |
-
<li class="all"><a href="?page=pz-linkcard-cache&link_type=all&orderby=regist&order=desc"
|
244 |
-
<li class="all"><a href="?page=pz-linkcard-cache&link_type=internal&orderby=regist&order=desc"
|
245 |
-
<li class="all"><a href="?page=pz-linkcard-cache&link_type=external&orderby=regist&order=desc"
|
246 |
-
<li class="all"><a href="?page=pz-linkcard-cache&link_type=modify&orderby=regist&order=desc"
|
247 |
</ul>
|
248 |
|
249 |
<form id="posts-filter" action="" method="post">
|
@@ -369,7 +379,7 @@ foreach ($data_all as $data) {
|
|
369 |
$sns_count = $data->sns_hatena;
|
370 |
echo ' <td style="font-size: 60%;">'.(($sns_count >= 0) ? $sns_count : '-').'</td>';
|
371 |
|
372 |
-
echo ' <td>'.$data->regist.'
|
373 |
echo ' <td style="word-break: break-all;"><a href="'.get_permalink($data->post_id).'" target="_blank" title="'.get_the_title($data->post_id).'">'.$data->post_id.'</td>';
|
374 |
echo ' <td>'.$data->result_code.($data->result_code <> $data->alive_result ? '<br><span style="color:#f00;">('.$data->alive_result.')</span>' : '').'</td>';
|
375 |
echo '</tr>';
|
228 |
$domain_list = $wpdb->get_results($sql); // テーブルデータ
|
229 |
|
230 |
// SUB(CASE WHEN ... END) で一気に取れないぽい?
|
231 |
+
$count_all = 0;
|
232 |
+
$count_internal = 0;
|
233 |
+
$count_external = 0;
|
234 |
+
$count_modify = 0;
|
235 |
+
$result = $wpdb->get_row("SELECT COUNT(*) AS count FROM $this->db_name");
|
236 |
+
if (isset($result) && isset($result->count)) {
|
237 |
+
$count_all = $result->count;
|
238 |
+
}
|
239 |
$result = $wpdb->get_row("SELECT COUNT(*) AS count FROM $this->db_name WHERE url LIKE '".get_bloginfo('url')."%'");
|
240 |
+
if (isset($result) && isset($result->count)) {
|
241 |
+
$count_internal = $result->count;
|
242 |
+
}
|
243 |
$result = $wpdb->get_row("SELECT COUNT(*) AS count FROM $this->db_name WHERE url NOT LIKE '".get_bloginfo('url')."%'");
|
244 |
+
if (isset($result) && isset($result->count)) {
|
245 |
+
$count_external = $result->count;
|
246 |
+
}
|
247 |
$result = $wpdb->get_row("SELECT COUNT(*) AS count FROM $this->db_name WHERE alive_result <> result_code");
|
248 |
+
if (isset($result) && isset($result->count)) {
|
249 |
+
$count_modify = $result->count;
|
250 |
+
}
|
251 |
?>
|
|
|
252 |
<ul class='subsubsub'>
|
253 |
+
<li class="all"><a href="?page=pz-linkcard-cache&link_type=all&orderby=regist&order=desc" <?php if ($link_type == 'all') echo 'class="current"'; ?>><?php _e('All', $this->text_domain); ?> <span class="count">(<?php echo $count_all; ?>)</span></a> |</li>
|
254 |
+
<li class="all"><a href="?page=pz-linkcard-cache&link_type=internal&orderby=regist&order=desc" <?php if ($link_type == 'internal') echo 'class="current"'; ?>><?php _e('Internal', $this->text_domain); ?> <span class="count">(<?php echo $count_internal; ?>)</span></a> |</li>
|
255 |
+
<li class="all"><a href="?page=pz-linkcard-cache&link_type=external&orderby=regist&order=desc" <?php if ($link_type == 'external') echo 'class="current"'; ?>><?php _e('External', $this->text_domain); ?> <span class="count">(<?php echo $count_external; ?>)</span></a> |</li>
|
256 |
+
<li class="all"><a href="?page=pz-linkcard-cache&link_type=modify&orderby=regist&order=desc" <?php if ($link_type == 'modify') echo 'class="current"'; ?>><?php _e('Modify', $this->text_domain); ?> <span class="count">(<?php echo $count_modify; ?>)</span></a></li>
|
257 |
</ul>
|
258 |
|
259 |
<form id="posts-filter" action="" method="post">
|
379 |
$sns_count = $data->sns_hatena;
|
380 |
echo ' <td style="font-size: 60%;">'.(($sns_count >= 0) ? $sns_count : '-').'</td>';
|
381 |
|
382 |
+
echo ' <td>'.$data->regist.'</td>';
|
383 |
echo ' <td style="word-break: break-all;"><a href="'.get_permalink($data->post_id).'" target="_blank" title="'.get_the_title($data->post_id).'">'.$data->post_id.'</td>';
|
384 |
echo ' <td>'.$data->result_code.($data->result_code <> $data->alive_result ? '<br><span style="color:#f00;">('.$data->alive_result.')</span>' : '').'</td>';
|
385 |
echo '</tr>';
|
lib/pz-linkcard-init.php
CHANGED
@@ -1,13 +1,5 @@
|
|
1 |
<?php if (!function_exists("get_option")) die; ?>
|
2 |
<?php
|
3 |
-
|
4 |
-
// if ( is_multisite() ) {
|
5 |
-
// global $current_site , $current_blog ;
|
6 |
-
// if ( !$blog_id ) {
|
7 |
-
// return;
|
8 |
-
// }
|
9 |
-
// }
|
10 |
-
|
11 |
$this->options = get_option( 'Pz_LinkCard_options', $this->defaults );
|
12 |
foreach( $this->defaults as $key => $value ) {
|
13 |
if ( !isset( $this->options[$key] ) ) {
|
@@ -27,6 +19,7 @@
|
|
27 |
$sql = "CREATE TABLE ".$this->db_name." (
|
28 |
id INT UNSIGNED NOT NULL AUTO_INCREMENT,
|
29 |
url VARCHAR(2048) DEFAULT '',
|
|
|
30 |
scheme VARCHAR(16) DEFAULT '',
|
31 |
address VARCHAR(2048) DEFAULT '',
|
32 |
site_name VARCHAR(100) DEFAULT '',
|
1 |
<?php if (!function_exists("get_option")) die; ?>
|
2 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
$this->options = get_option( 'Pz_LinkCard_options', $this->defaults );
|
4 |
foreach( $this->defaults as $key => $value ) {
|
5 |
if ( !isset( $this->options[$key] ) ) {
|
19 |
$sql = "CREATE TABLE ".$this->db_name." (
|
20 |
id INT UNSIGNED NOT NULL AUTO_INCREMENT,
|
21 |
url VARCHAR(2048) DEFAULT '',
|
22 |
+
url_key VARBINARY(255) NOT NULL,
|
23 |
scheme VARCHAR(16) DEFAULT '',
|
24 |
address VARCHAR(2048) DEFAULT '',
|
25 |
site_name VARCHAR(100) DEFAULT '',
|
pz-linkcard.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Pz-LinkCard
|
4 |
Plugin URI: http://poporon.poponet.jp/pz-linkcard
|
5 |
Description: リンクをカード形式で表示します。
|
6 |
-
Version: 1.7.
|
7 |
Author: poporon
|
8 |
Author URI: http://poporon.poponet.jp
|
9 |
License: GPLv2 or later
|
@@ -122,7 +122,7 @@ class Pz_LinkCard {
|
|
122 |
'presence' => null,
|
123 |
'plugin-link' => null,
|
124 |
'plugin-name' => 'Pz-LinkCard',
|
125 |
-
'plugin-version' => '1.7.
|
126 |
'plugin-url' => 'http://poporon.poponet.jp/pz-linkcard',
|
127 |
'pz-hbc-options' => null,
|
128 |
'debug-time' => null
|
@@ -149,6 +149,8 @@ class Pz_LinkCard {
|
|
149 |
global $wpdb;
|
150 |
$this->db_name = $wpdb->prefix.'pz_linkcard';
|
151 |
|
|
|
|
|
152 |
// バージョンが違っていたら、DBとオプションを更新する
|
153 |
if ($this->options['plugin-version'] <> $this->defaults['plugin-version']) {
|
154 |
$this->activate();
|
@@ -872,7 +874,10 @@ class Pz_LinkCard {
|
|
872 |
}
|
873 |
}
|
874 |
$thumbnail_id = get_post_thumbnail_id( $post_id ); // サムネイル
|
875 |
-
$
|
|
|
|
|
|
|
876 |
} else {
|
877 |
// カテゴリページ等は内部取得できないので外部取得する
|
878 |
$data = $this->pz_GetCURL( $data );
|
3 |
Plugin Name: Pz-LinkCard
|
4 |
Plugin URI: http://poporon.poponet.jp/pz-linkcard
|
5 |
Description: リンクをカード形式で表示します。
|
6 |
+
Version: 1.7.8
|
7 |
Author: poporon
|
8 |
Author URI: http://poporon.poponet.jp
|
9 |
License: GPLv2 or later
|
122 |
'presence' => null,
|
123 |
'plugin-link' => null,
|
124 |
'plugin-name' => 'Pz-LinkCard',
|
125 |
+
'plugin-version' => '1.7.8',
|
126 |
'plugin-url' => 'http://poporon.poponet.jp/pz-linkcard',
|
127 |
'pz-hbc-options' => null,
|
128 |
'debug-time' => null
|
149 |
global $wpdb;
|
150 |
$this->db_name = $wpdb->prefix.'pz_linkcard';
|
151 |
|
152 |
+
echo 'db_name='.$this->db_name.'<br>';
|
153 |
+
|
154 |
// バージョンが違っていたら、DBとオプションを更新する
|
155 |
if ($this->options['plugin-version'] <> $this->defaults['plugin-version']) {
|
156 |
$this->activate();
|
874 |
}
|
875 |
}
|
876 |
$thumbnail_id = get_post_thumbnail_id( $post_id ); // サムネイル
|
877 |
+
$attach = wp_get_attachment_image_src( $thumbnail_id , true );
|
878 |
+
if (isset($attach) && count($attach) && isset($attach[0])) {
|
879 |
+
$thumbnail = $attach[0];
|
880 |
+
}
|
881 |
} else {
|
882 |
// カテゴリページ等は内部取得できないので外部取得する
|
883 |
$data = $this->pz_GetCURL( $data );
|
readme.txt
CHANGED
@@ -155,18 +155,26 @@ A5.
|
|
155 |
|
156 |
== Changelog ==
|
157 |
|
158 |
-
|
159 |
-
*
|
160 |
-
|
161 |
-
*
|
162 |
|
|
|
|
|
|
|
|
|
|
|
163 |
* Pzカード設定画面に用例などを追加。
|
|
|
164 |
* 「かんたん書式設定」に「縫い目」を追加。(Thanks @i_tsu_tsu)
|
|
|
165 |
* サムネイルのサイズを指定できるように変更。(Thanks @misoji_13)
|
|
|
166 |
|
167 |
-
|
168 |
-
|
169 |
-
*
|
170 |
* Cleaning up garbage from the database at activation.
|
171 |
* Modefied: Cleaned up the settings screen
|
172 |
* Added: Add tips at settings screen
|
@@ -175,8 +183,7 @@ A5.
|
|
175 |
* Fixed: facebook API.
|
176 |
* Fixed: bugfix.
|
177 |
|
178 |
-
|
179 |
-
* アクティベート/バージョンアップ時に重複データを削除。
|
180 |
* Pzカード設定画面の項目追加と整理。
|
181 |
* Pzカード設定画面に用例などを追加。
|
182 |
* Pzカード管理画面での内部リンクの判定方法を変更。
|
@@ -190,17 +197,17 @@ A5.
|
|
190 |
* フェイスブックのシェア数取得方法の修正。(Thanks @i_tsu_tsu)
|
191 |
* WebAPIに使用しているURLのデフォルトをSSL対応のものに変更。(Thanks @fumieblog、@hareannie01)
|
192 |
|
193 |
-
|
194 |
* Fixed: Fixed a bug that table is not created.
|
195 |
|
196 |
* キャッシュ用DBが作成されない不具合を修正。
|
197 |
|
198 |
-
|
199 |
* Fixed: Fixed a bug that domain-name disappears.
|
200 |
|
201 |
* ドメイン名が取得できていない不具合を修正。
|
202 |
|
203 |
-
|
204 |
* Compatible with WordPress 4.6.
|
205 |
* Modefied: Modified so as also to small character size to fit the size of screen.
|
206 |
* Fixed: Fixed a bug that social count disappears.
|
@@ -213,7 +220,7 @@ A5.
|
|
213 |
* 内部リンクの画像が取得できない不具合を修正。(1.7.1で発生)(Thanks @i_tsu_tsu)
|
214 |
* マルチサイトへの対応方法が誤っていたため修正。(1.7.1で発生)(Thanks @kyutechnabe)
|
215 |
|
216 |
-
|
217 |
* Fixed: Fixed a bug that article content can not be acquired.
|
218 |
* Modefied: Time of the error, modified so that it does not display the thumbnail.
|
219 |
* Modefied: Modification of the order to respond to multi-site.
|
@@ -222,14 +229,14 @@ A5.
|
|
222 |
* 取得時エラーのもののサムネイル表示をしないように修正。(Thanks @misoji_13)
|
223 |
* マルチサイトへの仮対応。(Thanks @kyutechnabe)
|
224 |
|
225 |
-
|
226 |
* Added: Added setting. `In the case of domain names, to ignore the trailing-slash`.
|
227 |
* Added: Added border `Wheat'.
|
228 |
|
229 |
* ドメイン名のみのときに最後のスラッシュを削除する機能を追加。(Thanks @toru1231)
|
230 |
* 定型書式に「小麦色」を追加。(Thanks @fumieblog)
|
231 |
|
232 |
-
|
233 |
* Compatible with WordPress 4.5.3.
|
234 |
* Modefied: Scaled down to fit the screen size in setting. Default change `disabled` to `enabled`.
|
235 |
* Modefied: Use an alternative API to get the Twitter count.
|
@@ -246,7 +253,7 @@ A5.
|
|
246 |
|
247 |
* リンク切れチェック(準備中)(Thanks @misoji_13)
|
248 |
|
249 |
-
|
250 |
* Compatible with WordPress 4.5.2.
|
251 |
* Fixed: Fixed a notice.
|
252 |
* Fixed: Fixed an error. In had failed Perth META tags.
|
@@ -257,17 +264,17 @@ A5.
|
|
257 |
* 指定したリンク先によってはMETAタグを内部テーブルに展開するのに失敗してFatalエラーが出るのを修正。(Thanks @misoji_13 , @ryu-blacknd)
|
258 |
* カード管理画面のPHPショートタグを使用しないように修正しました。(Thanks @toru1231)
|
259 |
|
260 |
-
|
261 |
* Added: Added a method of article excerpt internal link in setting.
|
262 |
|
263 |
* 内部リンクの記事抜粋方法を選択する機能を設定に追加。(Thanks @okamurajun)
|
264 |
|
265 |
-
|
266 |
* Added: Scaled down to fit the screen size in setting.
|
267 |
|
268 |
* 画面の幅によってサムネイルを小さくする機能を設定に追加。(Thanks 弁保社長)
|
269 |
|
270 |
-
|
271 |
* Compatible with WordPress 4.4.
|
272 |
* Added: Add a border of letters in setting.
|
273 |
* Fixed: Fixed an error in the URL of facebook.
|
@@ -276,14 +283,14 @@ A5.
|
|
276 |
* 設定画面に文字のふちどり指定を追加。(Thanks @okaerinasainet)
|
277 |
* facebookのシェアURLの指定が誤っていたため修正。
|
278 |
|
279 |
-
|
280 |
* Fixed: Shares of facebook has not been able to properly get.
|
281 |
* Added: Grant function of any class name
|
282 |
|
283 |
* フェイスブックのシェア数が2以上でも1と表示されていたのを修正。(Thanks 弁保社長)
|
284 |
* 設定画面にリンクカードのDIV要素に任意のクラス名を設定できるように追加。(Thanks @misoji_13)
|
285 |
|
286 |
-
|
287 |
* Modefied: Correspondence associated with the end Tweets number acquiring API.
|
288 |
* Bugfix
|
289 |
|
@@ -291,17 +298,17 @@ A5.
|
|
291 |
* ツイッターのシェア数表示の初期選択を「表示しない」に変更。
|
292 |
* カード管理画面からソーシャルカウントの再取得を行ったとき、処理を二度行っていたので修正。(1.6.0で発生した不具合)
|
293 |
|
294 |
-
|
295 |
* Modefied: Deadline of Tweets number get me grew day.
|
296 |
|
297 |
* サンフランシスコ時間で11月20日になりましたが、ツイート数が取得できているので制限を一時的に解除。
|
298 |
|
299 |
-
|
300 |
* Modefied: Deadline of Tweets number get me grew day.
|
301 |
|
302 |
* 標準時間で11月20日になりましたが、ツイート数が取得できているので制限を一日延長。
|
303 |
|
304 |
-
|
305 |
* Modefied: Acquired without the wp_remote_get, modified to use a cURL.
|
306 |
* Modefied: Fixed character set acquisition method.
|
307 |
* Modefied: Fixed social count set acquisition method.
|
@@ -312,33 +319,33 @@ A5.
|
|
312 |
* ソーシャルカウントの取得をスケジュール方式に変更。
|
313 |
* 「カード内側の余白」の設定を追加と、それに伴うCSS修正。(Thanks yunosuke)
|
314 |
|
315 |
-
|
316 |
* Fixed: Fixed to had failed parsing of meta tags.
|
317 |
|
318 |
* METAタグの取得方法を修正しました。
|
319 |
|
320 |
-
|
321 |
* Modefied: Since November 20, 2015 , it does not use the Twitter API.
|
322 |
* Added: It can be selected "Other than mobile" and "All client" in the setting of "Open new window/tab".
|
323 |
|
324 |
* 2015年11月20日までのTwitter非公式API廃止に伴い、同日以降取得しないように修正。
|
325 |
* 「新しいウィンドウで開く」をチェックボックスからリストに変更し、「モバイル以外(のみ新しいウィンドウで開く)」を追加。(Thanks @misoji_13)
|
326 |
|
327 |
-
|
328 |
* キャッシュ保存時にキーが正しく設定されないことがあったのを修正。
|
329 |
* 「カード管理」画面で内部ID(連番)を表示するように修正。
|
330 |
* 定型書式「紙がめくれる効果」を修正。(テーマによってはレイアウトが崩れる可能性があります)
|
331 |
* 定型書式「テープと紙めくれ」を追加。(テーマによってはレイアウトが崩れる可能性があります)
|
332 |
|
333 |
-
|
334 |
* 「カード管理」でキャッシュを編集したとき、一部の文字をエスケープしていなかったのを修正。
|
335 |
* バージョンアップの度に一部のパラメータがデフォルトに戻らないように修正。
|
336 |
* プログラム内でのキャッシュの読み書き方法の改善。
|
337 |
|
338 |
-
|
339 |
* 「カード管理」でキャッシュを編集したとき、内部IDがクリアされてしまう不具合を修正。
|
340 |
|
341 |
-
|
342 |
* 全体的なプログラムの見直し。
|
343 |
* URLが空欄などの場合の対応。
|
344 |
* 文字エンコードまわりを修正。
|
@@ -354,11 +361,11 @@ A5.
|
|
354 |
* ドメインで抽出できるように修正。
|
355 |
* ページング機能を追加。
|
356 |
|
357 |
-
|
358 |
* <head>にprefixなどがあるときに、metaタグの解析に失敗していたのを修正。
|
359 |
* パラメータに閉じの「半角角かっこ(大かっこ)」がある場合に、URLに余分なコードが入ってしまったのを改善。
|
360 |
|
361 |
-
|
362 |
* content=''になっているOGP情報は無視するように修正。
|
363 |
* サムネイル取得APIをWordPress.comのものを初期値に変更。
|
364 |
* metaタグ表記にシングルクォートが使われている場合、取得できていなかったため対応。
|
@@ -368,25 +375,26 @@ A5.
|
|
368 |
* 設定画面の「サイト情報」の位置を変更。
|
369 |
* 設定画面にサイト情報と記事内容の間を区切るための「区切り線」を変更。
|
370 |
|
371 |
-
|
372 |
* 「新しいウィンドウで開く」の設定を追加。
|
373 |
* カード管理画面のソート順を修正。
|
374 |
* フェイスブックの表記を「f」から「fb」へ変更。
|
375 |
|
376 |
-
|
377 |
* 公開後発見されたバグを修正。
|
378 |
|
379 |
-
|
380 |
* 公式プラグインディレクトリでの最初の公開バージョン。
|
381 |
|
382 |
-
|
383 |
* 当サイトでの最初の公開バージョン。
|
384 |
|
385 |
-
|
386 |
* 途中まで作成していたバージョンを破棄。Pz-HatenaBlogCard ver1.2.5 を元に、DBアクセス部分を移植して、Pz-LinkCardを作成。
|
387 |
* テストサイトでの動作検証。
|
388 |
* 当サイトでの本番環境での動作検証。
|
389 |
|
|
|
390 |
== Upgrade notice ==
|
391 |
|
392 |
== Arbitrary section ==
|
155 |
|
156 |
== Changelog ==
|
157 |
|
158 |
+
Ver1.7.8
|
159 |
+
* Fixed: Fixed a bug that table is not created.
|
160 |
+
|
161 |
+
* キャッシュ用DBが作成されない不具合を修正。(Thanks @J_kindan)
|
162 |
|
163 |
+
Ver1.7.7
|
164 |
+
* アイキャッチ画像が設定されていないテーマの場合にエラーが発生してしまうのを修正。(Thanks enomoto、sato)
|
165 |
+
Fixed: Fixed a bug
|
166 |
+
|
167 |
+
Ver1.7.6
|
168 |
* Pzカード設定画面に用例などを追加。
|
169 |
+
Added: Add tips at settings screen
|
170 |
* 「かんたん書式設定」に「縫い目」を追加。(Thanks @i_tsu_tsu)
|
171 |
+
Added: Tiny format 'Stitch'.
|
172 |
* サムネイルのサイズを指定できるように変更。(Thanks @misoji_13)
|
173 |
+
Modefied: Able to change the size of the thumbnail.
|
174 |
|
175 |
+
Ver1.7.5
|
176 |
+
* WordPress 4.7.1 での動作確認。
|
177 |
+
* アクティベート/バージョンアップ時に重複データを削除。
|
178 |
* Cleaning up garbage from the database at activation.
|
179 |
* Modefied: Cleaned up the settings screen
|
180 |
* Added: Add tips at settings screen
|
183 |
* Fixed: facebook API.
|
184 |
* Fixed: bugfix.
|
185 |
|
186 |
+
Compatible with WordPress 4.7.1.
|
|
|
187 |
* Pzカード設定画面の項目追加と整理。
|
188 |
* Pzカード設定画面に用例などを追加。
|
189 |
* Pzカード管理画面での内部リンクの判定方法を変更。
|
197 |
* フェイスブックのシェア数取得方法の修正。(Thanks @i_tsu_tsu)
|
198 |
* WebAPIに使用しているURLのデフォルトをSSL対応のものに変更。(Thanks @fumieblog、@hareannie01)
|
199 |
|
200 |
+
Ver1.7.4
|
201 |
* Fixed: Fixed a bug that table is not created.
|
202 |
|
203 |
* キャッシュ用DBが作成されない不具合を修正。
|
204 |
|
205 |
+
Ver1.7.3
|
206 |
* Fixed: Fixed a bug that domain-name disappears.
|
207 |
|
208 |
* ドメイン名が取得できていない不具合を修正。
|
209 |
|
210 |
+
Ver1.7.2
|
211 |
* Compatible with WordPress 4.6.
|
212 |
* Modefied: Modified so as also to small character size to fit the size of screen.
|
213 |
* Fixed: Fixed a bug that social count disappears.
|
220 |
* 内部リンクの画像が取得できない不具合を修正。(1.7.1で発生)(Thanks @i_tsu_tsu)
|
221 |
* マルチサイトへの対応方法が誤っていたため修正。(1.7.1で発生)(Thanks @kyutechnabe)
|
222 |
|
223 |
+
Ver1.7.1
|
224 |
* Fixed: Fixed a bug that article content can not be acquired.
|
225 |
* Modefied: Time of the error, modified so that it does not display the thumbnail.
|
226 |
* Modefied: Modification of the order to respond to multi-site.
|
229 |
* 取得時エラーのもののサムネイル表示をしないように修正。(Thanks @misoji_13)
|
230 |
* マルチサイトへの仮対応。(Thanks @kyutechnabe)
|
231 |
|
232 |
+
Ver1.7.0
|
233 |
* Added: Added setting. `In the case of domain names, to ignore the trailing-slash`.
|
234 |
* Added: Added border `Wheat'.
|
235 |
|
236 |
* ドメイン名のみのときに最後のスラッシュを削除する機能を追加。(Thanks @toru1231)
|
237 |
* 定型書式に「小麦色」を追加。(Thanks @fumieblog)
|
238 |
|
239 |
+
Ver1.6.9
|
240 |
* Compatible with WordPress 4.5.3.
|
241 |
* Modefied: Scaled down to fit the screen size in setting. Default change `disabled` to `enabled`.
|
242 |
* Modefied: Use an alternative API to get the Twitter count.
|
253 |
|
254 |
* リンク切れチェック(準備中)(Thanks @misoji_13)
|
255 |
|
256 |
+
Ver1.6.8
|
257 |
* Compatible with WordPress 4.5.2.
|
258 |
* Fixed: Fixed a notice.
|
259 |
* Fixed: Fixed an error. In had failed Perth META tags.
|
264 |
* 指定したリンク先によってはMETAタグを内部テーブルに展開するのに失敗してFatalエラーが出るのを修正。(Thanks @misoji_13 , @ryu-blacknd)
|
265 |
* カード管理画面のPHPショートタグを使用しないように修正しました。(Thanks @toru1231)
|
266 |
|
267 |
+
Ver1.6.7
|
268 |
* Added: Added a method of article excerpt internal link in setting.
|
269 |
|
270 |
* 内部リンクの記事抜粋方法を選択する機能を設定に追加。(Thanks @okamurajun)
|
271 |
|
272 |
+
Ver1.6.6
|
273 |
* Added: Scaled down to fit the screen size in setting.
|
274 |
|
275 |
* 画面の幅によってサムネイルを小さくする機能を設定に追加。(Thanks 弁保社長)
|
276 |
|
277 |
+
Ver1.6.5
|
278 |
* Compatible with WordPress 4.4.
|
279 |
* Added: Add a border of letters in setting.
|
280 |
* Fixed: Fixed an error in the URL of facebook.
|
283 |
* 設定画面に文字のふちどり指定を追加。(Thanks @okaerinasainet)
|
284 |
* facebookのシェアURLの指定が誤っていたため修正。
|
285 |
|
286 |
+
Ver1.6.4
|
287 |
* Fixed: Shares of facebook has not been able to properly get.
|
288 |
* Added: Grant function of any class name
|
289 |
|
290 |
* フェイスブックのシェア数が2以上でも1と表示されていたのを修正。(Thanks 弁保社長)
|
291 |
* 設定画面にリンクカードのDIV要素に任意のクラス名を設定できるように追加。(Thanks @misoji_13)
|
292 |
|
293 |
+
Ver1.6.3
|
294 |
* Modefied: Correspondence associated with the end Tweets number acquiring API.
|
295 |
* Bugfix
|
296 |
|
298 |
* ツイッターのシェア数表示の初期選択を「表示しない」に変更。
|
299 |
* カード管理画面からソーシャルカウントの再取得を行ったとき、処理を二度行っていたので修正。(1.6.0で発生した不具合)
|
300 |
|
301 |
+
Ver1.6.2
|
302 |
* Modefied: Deadline of Tweets number get me grew day.
|
303 |
|
304 |
* サンフランシスコ時間で11月20日になりましたが、ツイート数が取得できているので制限を一時的に解除。
|
305 |
|
306 |
+
Ver1.6.1
|
307 |
* Modefied: Deadline of Tweets number get me grew day.
|
308 |
|
309 |
* 標準時間で11月20日になりましたが、ツイート数が取得できているので制限を一日延長。
|
310 |
|
311 |
+
Ver1.6.0
|
312 |
* Modefied: Acquired without the wp_remote_get, modified to use a cURL.
|
313 |
* Modefied: Fixed character set acquisition method.
|
314 |
* Modefied: Fixed social count set acquisition method.
|
319 |
* ソーシャルカウントの取得をスケジュール方式に変更。
|
320 |
* 「カード内側の余白」の設定を追加と、それに伴うCSS修正。(Thanks yunosuke)
|
321 |
|
322 |
+
Ver1.1.1
|
323 |
* Fixed: Fixed to had failed parsing of meta tags.
|
324 |
|
325 |
* METAタグの取得方法を修正しました。
|
326 |
|
327 |
+
Ver1.1.0
|
328 |
* Modefied: Since November 20, 2015 , it does not use the Twitter API.
|
329 |
* Added: It can be selected "Other than mobile" and "All client" in the setting of "Open new window/tab".
|
330 |
|
331 |
* 2015年11月20日までのTwitter非公式API廃止に伴い、同日以降取得しないように修正。
|
332 |
* 「新しいウィンドウで開く」をチェックボックスからリストに変更し、「モバイル以外(のみ新しいウィンドウで開く)」を追加。(Thanks @misoji_13)
|
333 |
|
334 |
+
Ver1.0.3
|
335 |
* キャッシュ保存時にキーが正しく設定されないことがあったのを修正。
|
336 |
* 「カード管理」画面で内部ID(連番)を表示するように修正。
|
337 |
* 定型書式「紙がめくれる効果」を修正。(テーマによってはレイアウトが崩れる可能性があります)
|
338 |
* 定型書式「テープと紙めくれ」を追加。(テーマによってはレイアウトが崩れる可能性があります)
|
339 |
|
340 |
+
Ver1.0.2
|
341 |
* 「カード管理」でキャッシュを編集したとき、一部の文字をエスケープしていなかったのを修正。
|
342 |
* バージョンアップの度に一部のパラメータがデフォルトに戻らないように修正。
|
343 |
* プログラム内でのキャッシュの読み書き方法の改善。
|
344 |
|
345 |
+
Ver1.0.1
|
346 |
* 「カード管理」でキャッシュを編集したとき、内部IDがクリアされてしまう不具合を修正。
|
347 |
|
348 |
+
Ver1.0.0
|
349 |
* 全体的なプログラムの見直し。
|
350 |
* URLが空欄などの場合の対応。
|
351 |
* 文字エンコードまわりを修正。
|
361 |
* ドメインで抽出できるように修正。
|
362 |
* ページング機能を追加。
|
363 |
|
364 |
+
Ver0.1.4
|
365 |
* <head>にprefixなどがあるときに、metaタグの解析に失敗していたのを修正。
|
366 |
* パラメータに閉じの「半角角かっこ(大かっこ)」がある場合に、URLに余分なコードが入ってしまったのを改善。
|
367 |
|
368 |
+
Ver0.1.3
|
369 |
* content=''になっているOGP情報は無視するように修正。
|
370 |
* サムネイル取得APIをWordPress.comのものを初期値に変更。
|
371 |
* metaタグ表記にシングルクォートが使われている場合、取得できていなかったため対応。
|
375 |
* 設定画面の「サイト情報」の位置を変更。
|
376 |
* 設定画面にサイト情報と記事内容の間を区切るための「区切り線」を変更。
|
377 |
|
378 |
+
Ver0.1.2
|
379 |
* 「新しいウィンドウで開く」の設定を追加。
|
380 |
* カード管理画面のソート順を修正。
|
381 |
* フェイスブックの表記を「f」から「fb」へ変更。
|
382 |
|
383 |
+
Ver0.1.1
|
384 |
* 公開後発見されたバグを修正。
|
385 |
|
386 |
+
Ver0.1.0
|
387 |
* 公式プラグインディレクトリでの最初の公開バージョン。
|
388 |
|
389 |
+
Ver0.0.1
|
390 |
* 当サイトでの最初の公開バージョン。
|
391 |
|
392 |
+
Ver0.0.0
|
393 |
* 途中まで作成していたバージョンを破棄。Pz-HatenaBlogCard ver1.2.5 を元に、DBアクセス部分を移植して、Pz-LinkCardを作成。
|
394 |
* テストサイトでの動作検証。
|
395 |
* 当サイトでの本番環境での動作検証。
|
396 |
|
397 |
+
|
398 |
== Upgrade notice ==
|
399 |
|
400 |
== Arbitrary section ==
|