Changeset 2528784
- Timestamp:
- 05/10/2021 03:59:21 AM (5 years ago)
- Location:
- beepress/trunk
- Files:
-
- 3 edited
-
beebox/includes/Endpoint/License.php (modified) (2 diffs)
-
beepress.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
beepress/trunk/beebox/includes/Endpoint/License.php
r2445775 r2528784 17 17 add_action( 'rest_api_init', array( $this, 'register_routes' ) ); 18 18 add_action('before_delete_post', array( $this, 'delete_images_of_post')); 19 add_filter('rest_url', array( $this, 'process_rest_url'), 1, 4); 19 20 } 20 21 … … 26 27 } 27 28 return self::$instance; 29 } 30 31 public function process_rest_url($url, $path, $bid, $scheme) { 32 $newUrl = $url; 33 if ($scheme == 'rest') { 34 $newUrl = str_replace(home_url(), site_url(), $newUrl); 35 } 36 return $newUrl; 28 37 } 29 38 -
beepress/trunk/beepress.php
r2523046 r2528784 4 4 Plugin URI: http://xingyue.artizen.me?source=wp 5 5 Description: 蜜蜂采集(BeePress) 是一款能够帮助你导入微信公众号文章、知乎专栏文章、简书文章、今日头条文章的插件(支持规则配置采集其他网站文章),可以实现单篇或者批量导入、自动同步文章、采集指定公众号所有历史文章,支持将图片资源保存到本地,同时集成了强大的内容推荐功能。 6 Version: 6.9. 26 Version: 6.9.3 7 7 Author: Bee 8 8 Author URI: http://xingyue.artizen.me?source=wp … … 13 13 * 初始化 14 14 */ 15 define('BEEPRESS_VERSION', '6.9. 2');15 define('BEEPRESS_VERSION', '6.9.3'); 16 16 if(!class_exists('simple_html_dom_node')){ 17 17 require_once("simple_html_dom.php"); -
beepress/trunk/readme.txt
r2523046 r2528784 4 4 Author URI: http://xingyue.artizen.me?source=wp 5 5 Plugin URI: http://xingyue.artizen.me?source=wp 6 Stable tag: 6.9. 26 Stable tag: 6.9.3 7 7 Requires at least: 4.2 8 8 Requires PHP: 5.3.0 … … 57 57 None 58 58 == Changelog == 59 = 6.9.3 = 60 * 适配wordpress地址和站点地址不一致时导致无法授权的情况 59 61 = 6.9.2 = 60 62 * 修复对长文采集出现空白内容的 bug
Note: See TracChangeset
for help on using the changeset viewer.