Pz-LinkCard - Version 2.1.4.2

Version Description

Download this release

Release Info

Developer poporon
Plugin Icon 128x128 Pz-LinkCard
Version 2.1.4.2
Comparing to
See all releases

Code changes from version 2.1.4.1 to 2.1.4.2

Files changed (3) hide show
  1. js/mce-pz-lkc.js +2 -2
  2. pz-linkcard.php +2 -2
  3. readme.txt +5 -1
js/mce-pz-lkc.js CHANGED
@@ -2,12 +2,12 @@
2
  tinymce.create('tinymce.plugins.pzlinkcard', {
3
  init: function(ed, url){
4
  ed.addButton('pz_linkcard',{
5
- title: 'リンクカード作成',
6
  image: url + '/button.png',
7
  cmd: 'insert_pz_linkcard'
8
  });
9
  ed.addCommand('insert_pz_linkcard', function() {
10
- var insert_tag = window.prompt('リンクカードを作成するURLを入力してください', 'http://');
11
  if (insert_tag !== null) {
12
  ed.execCommand('mceInsertContent', 0, '[blogcard url="' + insert_tag + '"]');
13
  }
2
  tinymce.create('tinymce.plugins.pzlinkcard', {
3
  init: function(ed, url){
4
  ed.addButton('pz_linkcard',{
5
+ title: 'Insert Pz-LinkCard',
6
  image: url + '/button.png',
7
  cmd: 'insert_pz_linkcard'
8
  });
9
  ed.addCommand('insert_pz_linkcard', function() {
10
+ var insert_tag = window.prompt('Input URL', 'http://');
11
  if (insert_tag !== null) {
12
  ed.execCommand('mceInsertContent', 0, '[blogcard url="' + insert_tag + '"]');
13
  }
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.1.4.1
7
  Author: poporon
8
  Author URI: http://poporon.poponet.jp
9
  License: GPLv2 or later
@@ -155,7 +155,7 @@ class Pz_LinkCard {
155
  'invalid-time' => null,
156
  'plugin-link' => null,
157
  'plugin-name' => 'Pz-LinkCard',
158
- 'plugin-version' => '2.1.4.1',
159
  'plugin-url' => 'https://popozure.info/pz-linkcard',
160
  'pz-hbc-options' => null,
161
  'debug-time' => null
3
  Plugin Name: Pz-LinkCard
4
  Plugin URI: http://poporon.poponet.jp/pz-linkcard
5
  Description: リンクをカード形式で表示します。
6
+ Version: 2.1.4.2
7
  Author: poporon
8
  Author URI: http://poporon.poponet.jp
9
  License: GPLv2 or later
155
  'invalid-time' => null,
156
  'plugin-link' => null,
157
  'plugin-name' => 'Pz-LinkCard',
158
+ 'plugin-version' => '2.1.4.2',
159
  'plugin-url' => 'https://popozure.info/pz-linkcard',
160
  'pz-hbc-options' => null,
161
  'debug-time' => null
readme.txt CHANGED
@@ -2,7 +2,7 @@
2
  Contributors: poporon
3
  Tags: post, internal link, external link, blogcard, linkcard
4
  Requires at least: 4.3
5
- Tested up to: 4.9.7
6
  Stable tag: trunk
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -163,6 +163,10 @@ A7.
163
  5. "Write shortcode and url"
164
 
165
  == Changelog ==
 
 
 
 
166
  Ver2.1.4.1
167
  * URLの記述ミスに対応しました。
168
  Modified: Corresponded to URL mistake.
2
  Contributors: poporon
3
  Tags: post, internal link, external link, blogcard, linkcard
4
  Requires at least: 4.3
5
+ Tested up to: 4.9.8
6
  Stable tag: trunk
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
163
  5. "Write shortcode and url"
164
 
165
  == Changelog ==
166
+ Ver2.1.4.2
167
+ * WordPress 4.9.8 での動作確認。
168
+ Compatible with WordPress 4.9.8
169
+
170
  Ver2.1.4.1
171
  * URLの記述ミスに対応しました。
172
  Modified: Corresponded to URL mistake.