Version Description
Download this release
Release Info
Developer | poporon |
Plugin | Pz-LinkCard |
Version | 2.4.2.2 |
Comparing to | |
See all releases |
Code changes from version 2.4.2.1 to 2.4.2.2
- lib/pz-linkcard-init.php +1 -1
- pz-linkcard.php +3 -3
- readme.txt +6 -0
lib/pz-linkcard-init.php
CHANGED
@@ -65,7 +65,7 @@
|
|
65 |
$css_file = $css_dir .'style.css';
|
66 |
$css_file_url = $css_dir_url.'style.css';
|
67 |
if (preg_match('/.*(\/\/.*)/', $css_file_url, $m)) { // スキームを外す
|
68 |
-
$
|
69 |
}
|
70 |
}
|
71 |
$this->options['css-path'] = $css_file;
|
65 |
$css_file = $css_dir .'style.css';
|
66 |
$css_file_url = $css_dir_url.'style.css';
|
67 |
if (preg_match('/.*(\/\/.*)/', $css_file_url, $m)) { // スキームを外す
|
68 |
+
$css_file_url = $m[1];
|
69 |
}
|
70 |
}
|
71 |
$this->options['css-path'] = $css_file;
|
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: 2.4.2.
|
7 |
Author: poporon
|
8 |
Author URI: http://poporon.poponet.jp
|
9 |
License: GPLv2 or later
|
@@ -37,7 +37,7 @@ class Pz_LinkCard {
|
|
37 |
'plugin-link' => null,
|
38 |
'plugin-url' => 'https://popozure.info/pz-linkcard',
|
39 |
'plugin-name' => 'Pz-LinkCard',
|
40 |
-
'plugin-version' => '2.4.2.
|
41 |
|
42 |
'flg-invalid' => null,
|
43 |
'invalid-url' => null,
|
@@ -1786,7 +1786,7 @@ class Pz_LinkCard {
|
|
1786 |
$css_version = $this->options['plugin-version'].'.'.$this->options['css-count'];
|
1787 |
wp_enqueue_style ('pz-linkcard', $this->options['css-url'], array(), $css_version);
|
1788 |
if ($this->options['css-url-add']) {
|
1789 |
-
wp_enqueue_style('pz-linkcard-add', $this->options['css-add
|
1790 |
}
|
1791 |
}
|
1792 |
|
3 |
Plugin Name: Pz-LinkCard
|
4 |
Plugin URI: http://poporon.poponet.jp/pz-linkcard
|
5 |
Description: リンクをカード形式で表示します。
|
6 |
+
Version: 2.4.2.2
|
7 |
Author: poporon
|
8 |
Author URI: http://poporon.poponet.jp
|
9 |
License: GPLv2 or later
|
37 |
'plugin-link' => null,
|
38 |
'plugin-url' => 'https://popozure.info/pz-linkcard',
|
39 |
'plugin-name' => 'Pz-LinkCard',
|
40 |
+
'plugin-version' => '2.4.2.2',
|
41 |
|
42 |
'flg-invalid' => null,
|
43 |
'invalid-url' => null,
|
1786 |
$css_version = $this->options['plugin-version'].'.'.$this->options['css-count'];
|
1787 |
wp_enqueue_style ('pz-linkcard', $this->options['css-url'], array(), $css_version);
|
1788 |
if ($this->options['css-url-add']) {
|
1789 |
+
wp_enqueue_style('pz-linkcard-add', $this->options['css-url-add'], array(), $css_version);
|
1790 |
}
|
1791 |
}
|
1792 |
|
readme.txt
CHANGED
@@ -170,6 +170,12 @@ A7.
|
|
170 |
|
171 |
|
172 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
173 |
Ver2.4.2.1
|
174 |
* 外部サイトのサムネイル画像に失敗してエラーが出てしまう不具合を修正。(Ver2.4.1で発生)(Thanks @kotobatoad)
|
175 |
Fixed: Fixed a bug that an error occurs when thumbnail images on external sites fail.
|
170 |
|
171 |
|
172 |
== Changelog ==
|
173 |
+
Ver.2.4.2.2
|
174 |
+
* 追加するCSSファイルが呼び出せていなかった不具合を修正。(Thanks @longer_n)
|
175 |
+
Fixed: Fixed a bug that the additional CSS function does not work properly
|
176 |
+
* CSSのURLが正しくなくてスタイルシートが適用されない不具合を修正。(Thanks @longer_n)
|
177 |
+
Fixed a bug that CSS could not be read correctly
|
178 |
+
|
179 |
Ver2.4.2.1
|
180 |
* 外部サイトのサムネイル画像に失敗してエラーが出てしまう不具合を修正。(Ver2.4.1で発生)(Thanks @kotobatoad)
|
181 |
Fixed: Fixed a bug that an error occurs when thumbnail images on external sites fail.
|