Changeset 3286010
- Timestamp:
- 05/02/2025 06:29:44 AM (8 months ago)
- Location:
- mxp-pchome2wp
- Files:
-
- 3 deleted
- 6 edited
- 1 copied
-
tags/1.0.4 (deleted)
-
tags/1.0.5 (deleted)
-
tags/1.0.6 (deleted)
-
tags/1.0.8 (copied) (copied from mxp-pchome2wp/trunk)
-
tags/1.0.8/index.php (modified) (2 diffs)
-
tags/1.0.8/readme.txt (modified) (2 diffs)
-
tags/1.0.8/update.php (modified) (2 diffs)
-
trunk/index.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/update.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mxp-pchome2wp/tags/1.0.8/index.php
r2031544 r3286010 4 4 * Plugin URI: https://tw.wordpress.org/plugins/mxp-pchome2wp/ 5 5 * Description: 使用此外掛把你的 PChome 新聞台搬家來 WordPress ,做你真正的自媒體吧! 6 * Version: 1.0. 76 * Version: 1.0.8 7 7 * Author: Chun 8 8 * Author URI: https://www.mxp.tw/contact/ … … 15 15 } 16 16 class Mxp_PCHOME2WP { 17 static $version = '1.0. 7';17 static $version = '1.0.8'; 18 18 protected static $instance = null; 19 19 public $slug = 'mxp-pchome2wp'; 20 20 protected static $blog2wp_api = 'https://api.undo.im/wp-json/mxp_pchome2wp/v1/app'; 21 21 /* 22 Core Functions23 */22 Core Functions 23 */ 24 24 private function __construct() { 25 25 //check if install or not -
mxp-pchome2wp/tags/1.0.8/readme.txt
r2884103 r3286010 5 5 Requires at least: 4.7 6 6 Requires PHP: 5.4 7 Tested up to: 6. 28 Stable tag: 1.0. 77 Tested up to: 6.8 8 Stable tag: 1.0.8 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 88 88 == Changelog == 89 89 90 = 1.0.8 = 91 92 * 更新支援的 WP Core 版本 93 90 94 = 1.0.7 = 91 95 -
mxp-pchome2wp/tags/1.0.8/update.php
r2031544 r3286010 6 6 //更新方法都寫這,方法必須要回傳 true 才算更新完成。 7 7 class Mxp_Update_PCHOME2WP { 8 public static $version_list = array('1.0.0', '1.0.1', '1.0.2', '1.0.3', '1.0.4', '1.0.5', '1.0.6', '1.0.7' );8 public static $version_list = array('1.0.0', '1.0.1', '1.0.2', '1.0.3', '1.0.4', '1.0.5', '1.0.6', '1.0.7', '1.0.8'); 9 9 10 10 public static function apply_update($ver) { … … 63 63 return true; 64 64 } 65 public function mxp_update_to_v1_0_8() { 66 // 更新支援版本 67 return true; 68 } 65 69 } -
mxp-pchome2wp/trunk/index.php
r2031544 r3286010 4 4 * Plugin URI: https://tw.wordpress.org/plugins/mxp-pchome2wp/ 5 5 * Description: 使用此外掛把你的 PChome 新聞台搬家來 WordPress ,做你真正的自媒體吧! 6 * Version: 1.0. 76 * Version: 1.0.8 7 7 * Author: Chun 8 8 * Author URI: https://www.mxp.tw/contact/ … … 15 15 } 16 16 class Mxp_PCHOME2WP { 17 static $version = '1.0. 7';17 static $version = '1.0.8'; 18 18 protected static $instance = null; 19 19 public $slug = 'mxp-pchome2wp'; 20 20 protected static $blog2wp_api = 'https://api.undo.im/wp-json/mxp_pchome2wp/v1/app'; 21 21 /*