Version Description
New feature: Convert Vietnamese to English letters for automatically change image filename.
Download this release
Release Info
Developer | qqworld |
Plugin | QQWorld Auto Save Images |
Version | 1.7.15.5 |
Comparing to | |
See all releases |
Code changes from version 1.7.15.4 to 1.7.15.5
- qqworld-auto-save-images.php +23 -2
- readme.txt +713 -0
qqworld-auto-save-images.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: QQWorld Auto Save Images
|
4 |
Plugin URI: https://wordpress.org/plugins/qqworld-auto-save-images/
|
5 |
Description: Automatically keep the all remote picture to the local, and automatically set featured image.
|
6 |
-
Version: 1.7.15.
|
7 |
Author: Michael Wang
|
8 |
Author URI: http://www.qqworld.org
|
9 |
Text Domain: qqworld_auto_save_images
|
@@ -91,6 +91,26 @@ class QQWorld_auto_save_images {
|
|
91 |
add_filter( 'post_updated_messages', array($this, 'post_updated_messages') );
|
92 |
add_filter( 'qqworld-auto-save-images-custom-filename-structure', array($this, 'custom_filename_structure') );
|
93 |
add_action( 'admin_notices', array($this, 'admin_notices') );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
}
|
95 |
|
96 |
public function languages() {
|
@@ -1343,6 +1363,7 @@ function save_outside_link($content, $link) {
|
|
1343 |
case 'all':
|
1344 |
global $post;
|
1345 |
$name = urldecode($this->get_post_name());
|
|
|
1346 |
break;
|
1347 |
}
|
1348 |
return apply_filters('qqworld-auto-save-images-custom-filename-structure', $name) . $extension;
|
@@ -1400,7 +1421,7 @@ function save_outside_link($content, $link) {
|
|
1400 |
$url = parse_url($image_url);
|
1401 |
$fp = @fsockopen($url['host'], 80, $errno, $errstr, 30);
|
1402 |
if ($fp) {
|
1403 |
-
|
1404 |
$out = "HEAD {$url['path']} HTTP/1.1\r\n";
|
1405 |
$out .= "Host: {$url['host']}\r\n";
|
1406 |
$out .= "Connection: Close\r\n\r\n";
|
3 |
Plugin Name: QQWorld Auto Save Images
|
4 |
Plugin URI: https://wordpress.org/plugins/qqworld-auto-save-images/
|
5 |
Description: Automatically keep the all remote picture to the local, and automatically set featured image.
|
6 |
+
Version: 1.7.15.5
|
7 |
Author: Michael Wang
|
8 |
Author URI: http://www.qqworld.org
|
9 |
Text Domain: qqworld_auto_save_images
|
91 |
add_filter( 'post_updated_messages', array($this, 'post_updated_messages') );
|
92 |
add_filter( 'qqworld-auto-save-images-custom-filename-structure', array($this, 'custom_filename_structure') );
|
93 |
add_action( 'admin_notices', array($this, 'admin_notices') );
|
94 |
+
add_filter( 'qqworld-auto-save-images-string-compatible', array($this, 'string_compatible_vietnamese_to_english') );
|
95 |
+
}
|
96 |
+
|
97 |
+
public function string_compatible_vietnamese_to_english($str) {
|
98 |
+
$str = preg_replace("/(à|á|ạ|ả|ã|â|ầ|ấ|ậ|ẩ|ẫ|ă|ằ|ắ|ặ|ẳ|ẵ)/", 'a', $str);
|
99 |
+
$str = preg_replace("/(è|é|ẹ|ẻ|ẽ|ê|ề|ế|ệ|ể|ễ)/", 'e', $str);
|
100 |
+
$str = preg_replace("/(ì|í|ị|ỉ|ĩ)/", 'i', $str);
|
101 |
+
$str = preg_replace("/(ò|ó|ọ|ỏ|õ|ô|ồ|ố|ộ|ổ|ỗ|ơ|ờ|ớ|ợ|ở|ỡ)/", 'o', $str);
|
102 |
+
$str = preg_replace("/(ù|ú|ụ|ủ|ũ|ư|ừ|ứ|ự|ử|ữ)/", 'u', $str);
|
103 |
+
$str = preg_replace("/(ỳ|ý|ỵ|ỷ|ỹ)/", 'y', $str);
|
104 |
+
$str = preg_replace("/(đ)/", 'd', $str);
|
105 |
+
$str = preg_replace("/(À|Á|Ạ|Ả|Ã|Â|Ầ|Ấ|Ậ|Ẩ|Ẫ|Ă|Ằ|Ắ|Ặ|Ẳ|Ẵ)/", 'A', $str);
|
106 |
+
$str = preg_replace("/(È|É|Ẹ|Ẻ|Ẽ|Ê|Ề|Ế|Ệ|Ể|Ễ)/", 'E', $str);
|
107 |
+
$str = preg_replace("/(Ì|Í|Ị|Ỉ|Ĩ)/", 'I', $str);
|
108 |
+
$str = preg_replace("/(Ò|Ó|Ọ|Ỏ|Õ|Ô|Ồ|Ố|Ộ|Ổ|Ỗ|Ơ|Ờ|Ớ|Ợ|Ở|Ỡ)/", 'O', $str);
|
109 |
+
$str = preg_replace("/(Ù|Ú|Ụ|Ủ|Ũ|Ư|Ừ|Ứ|Ự|Ử|Ữ)/", 'U', $str);
|
110 |
+
$str = preg_replace("/(Ỳ|Ý|Ỵ|Ỷ|Ỹ)/", 'Y', $str);
|
111 |
+
$str = preg_replace("/(Đ)/", 'D', $str);
|
112 |
+
//$str = str_replace(" ", "-", str_replace("&*#39;","",$str));
|
113 |
+
return $str;
|
114 |
}
|
115 |
|
116 |
public function languages() {
|
1363 |
case 'all':
|
1364 |
global $post;
|
1365 |
$name = urldecode($this->get_post_name());
|
1366 |
+
$name = apply_filters('qqworld-auto-save-images-string-compatible', $name);
|
1367 |
break;
|
1368 |
}
|
1369 |
return apply_filters('qqworld-auto-save-images-custom-filename-structure', $name) . $extension;
|
1421 |
$url = parse_url($image_url);
|
1422 |
$fp = @fsockopen($url['host'], 80, $errno, $errstr, 30);
|
1423 |
if ($fp) {
|
1424 |
+
//这里请求设置为HEAD
|
1425 |
$out = "HEAD {$url['path']} HTTP/1.1\r\n";
|
1426 |
$out .= "Host: {$url['host']}\r\n";
|
1427 |
$out .= "Connection: Close\r\n\r\n";
|
readme.txt
ADDED
@@ -0,0 +1,713 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
=== QQWorld Auto Save Images ===
|
2 |
+
Contributors: qqworld
|
3 |
+
Donate link:
|
4 |
+
Tags: auto, save, local, fetch, images
|
5 |
+
Requires at least: 3.5
|
6 |
+
Tested up to: 4.3.1
|
7 |
+
Stable tag: 1.7.15.5
|
8 |
+
License: GPLv2 or later
|
9 |
+
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
+
|
11 |
+
Automatically keep the all remote picture to the local media libary when you publishing posts, and automatically set featured image.
|
12 |
+
|
13 |
+
== Description ==
|
14 |
+
|
15 |
+
Automatically keep the all remote picture to the local media libary when you publishing posts, and automatically set featured image.
|
16 |
+
|
17 |
+
And more powerful functional is waiting for you. What exactly is it? Hehe...
|
18 |
+
|
19 |
+
<h4>Notice:</h4>
|
20 |
+
<ul>
|
21 |
+
<li>This plugin has a little problem that is all the image url must be full url, it means must included "http(s)://", for example:
|
22 |
+
<ul>
|
23 |
+
<li><img src="http://img.whitehouse.gov/image/2014/08/09/gogogo.jpg" /></li>
|
24 |
+
<li><img src="http://www.bubugao.me/image/travel/beijing.png?date=20140218" /></li>
|
25 |
+
<li><img src="http://r4.ykimg.com/05410408543927D66A0B4D03A98AED24" /></li>
|
26 |
+
<li><img src="https://example.com/image?id=127457" /></li>
|
27 |
+
</ul>
|
28 |
+
</li>
|
29 |
+
<li>The examples that not works:
|
30 |
+
<ul>
|
31 |
+
<li><img src="/images/great.png" /></li>
|
32 |
+
<li><img src="./photo-lab/2014-08-09.jpg" /></li>
|
33 |
+
<li><img src="img/background/black.gif" /></li>
|
34 |
+
</ul>
|
35 |
+
</li>
|
36 |
+
</ul>
|
37 |
+
I'v tried to figure this out, but i couldn't get the host name to make image src full.
|
38 |
+
|
39 |
+
So if you encounter these codes, plaese manually fix the images src to full url.
|
40 |
+
|
41 |
+
Good News: Professional Edition has able to fix this.
|
42 |
+
|
43 |
+
<h4>Compatibility with</h4>
|
44 |
+
<a href="https://wordpress.org/plugins/custom-upload-dir/">Custom Upload Dir</a>
|
45 |
+
|
46 |
+
<h4>Plugin's Plugins</h4>
|
47 |
+
<a href="https://wordpress.org/plugins/grabber-for-qqworld-auto-save-images/">Grabber for QQWorld Auto Save Images</a>: Grab PDF.
|
48 |
+
|
49 |
+
<h4>Professional Edition</h4>
|
50 |
+
<p>Features of Pro Edition</p>
|
51 |
+
<ul>
|
52 |
+
|
53 |
+
<li>Automatically delete the HTML code of remote images smaller than Minimum-Picture-Size.</li>
|
54 |
+
<li>Detecting replicated images in media library by Original-link and CRC (Only for new images that after v1.1 updated).</li>
|
55 |
+
<li>Automatically exclude specified remote images by CRC.</li>
|
56 |
+
<li>Automatically delete html code of specified remote images by CRC.</li>
|
57 |
+
<li>New manual mode with multi-thread (Faster than automatic mode and modify Title & Alt in realtime)</li>
|
58 |
+
<li>Download Images from WeChat</li>
|
59 |
+
<li>Cron Scan Posts</li>
|
60 |
+
<li>Watermark</li>
|
61 |
+
<li>Images Compression (JPG Only)</li>
|
62 |
+
<li>Use Proxy</li>
|
63 |
+
<li>Smart Grabbing, Automatically detect 2 images url from href/src of remote image with outside link, and grab the bigger one.</li>
|
64 |
+
<li>Use Cookie-Free Domain & CDN Servive (AliYun OSS, UpYun, QiNiu)</li>
|
65 |
+
<li>Collect webpage manually: Easy reprint articles, and get all the images to choose from web pages.</li>
|
66 |
+
<li>Translation (Baidu Translation, Google Translation)</li>
|
67 |
+
<li>Set no remote images saved into media library, it means would not generate thumbnail with many sizes. but if you checked Set-Featured-Image, the first remote image will be saved into media library.</li>
|
68 |
+
<li>Support automatically convert BMP to JPG.</li>
|
69 |
+
</ul>
|
70 |
+
Buy: <a href="http://www.qqworld.org/products/qqworld-collector" target="_blank">QQWorld Collector (USD $8.55)</a> | <a href="http://www.qqworld.org/how-to-buy">How to buy?</a>
|
71 |
+
(No need understand chinese, there is a language switcher on right sidebar.)
|
72 |
+
|
73 |
+
Contact:
|
74 |
+
E-mail: admin@qqworld.org
|
75 |
+
QQ: 172269588
|
76 |
+
|
77 |
+
////////////////////////////////////////////////////
|
78 |
+
|
79 |
+
在发布文章时自动保存远程图片到本地媒体库,自动设置特色图片,并且支持机器人采集软件从外部提交。
|
80 |
+
|
81 |
+
还有更强大的功能等着你,到底是什么呢?呵呵……
|
82 |
+
|
83 |
+
<h4>注意:</h4>
|
84 |
+
<ul>
|
85 |
+
<li>该插件有个小问题,所有的远程图像的URL必须是完整的,就是说必须得包含"http(s)://",比如:
|
86 |
+
<ul>
|
87 |
+
<li><img src="http://img.whitehouse.gov/image/2014/08/09/gogogo.jpg" /></li>
|
88 |
+
<li><img src="http://www.bubugao.me/image/travel/beijing.png?date=20140218" /></li>
|
89 |
+
<li><img src="http://r4.ykimg.com/05410408543927D66A0B4D03A98AED24" /></li>
|
90 |
+
<li><img src="https://example.com/image?id=127457" /></li>
|
91 |
+
</ul>
|
92 |
+
</li>
|
93 |
+
<li>不能保存的例子:
|
94 |
+
<ul>
|
95 |
+
<li><img src="/images/great.png" /></li>
|
96 |
+
<li><img src="./photo-lab/2014-08-09.jpg" /></li>
|
97 |
+
<li><img src="img/background/black.gif" /></li>
|
98 |
+
</ul>
|
99 |
+
</li>
|
100 |
+
</ul>
|
101 |
+
我尝试解决这个问题,但是我无法让程序获取到主机名从而让图片的URL完整。
|
102 |
+
|
103 |
+
所以,如果你碰到这样的代码,请手动将图片地址改成完整的,或者使用采集工具自动补完图片的URL然后从外部提交给Wordpress。
|
104 |
+
|
105 |
+
好消息:专业版可以解决这个问题。
|
106 |
+
|
107 |
+
<h4>兼容于其他插件</h4>
|
108 |
+
<a href="https://wordpress.org/plugins/custom-upload-dir/">Custom Upload Dir</a>
|
109 |
+
|
110 |
+
<h4>插件的插件</h4>
|
111 |
+
<a href="https://wordpress.org/plugins/grabber-for-qqworld-auto-save-images/">QQWorld自动保存图片的捕手</a>:抓取 PDF。
|
112 |
+
|
113 |
+
<h4>专业版</h4>
|
114 |
+
<p>专业版特性</p>
|
115 |
+
<ul>
|
116 |
+
<li>可选择自动删除小于最小图像尺寸的远程图像HTML代码</li>
|
117 |
+
<li>在数据库中通过原链接和CRC检测重复图像(仅用于更新1.1版之后下载的图像)</li>
|
118 |
+
<li>可以自动通过检验图像文件CRC忽略指定的远程图像</li>
|
119 |
+
<li>可以自动通过检验图像文件CRC删除指定的远程图像HTML代码</li>
|
120 |
+
<li>多线程的手动模式(下载速度是自动模式的N倍,且支持即时修改Title和Alt)</li>
|
121 |
+
<li>下载微信图片</li>
|
122 |
+
<li>定时扫描文章</li>
|
123 |
+
<li>水印</li>
|
124 |
+
<li>压缩优化图片</li>
|
125 |
+
<li>使用代理服务器(可下载需要翻墙的图片)</li>
|
126 |
+
<li>智能抓取(从图片src和链接href中提取图片地址,并抓取较大的一个)</li>
|
127 |
+
<li>使用Cookie-Free域名和外部存储器(阿里云OSS、七牛云存储、又拍云存储等)</li>
|
128 |
+
<li>手动采集功能:轻松转载文章、从网页中获取所有图片供选择</li>
|
129 |
+
<li>翻译(百度翻译,谷歌翻译),支持简繁体互转喔!</li>
|
130 |
+
<li>可选择不保存图像到媒体库,这意味着不会生成各种尺寸的缩略图,但是如果勾选了自动设置特色图片,则只会将第一幅图片保存到媒体库。</li>
|
131 |
+
<li>支持BMP转JPG</li>
|
132 |
+
</ul>
|
133 |
+
购买:<a href="http://www.qqworld.org/products/qqworld-collector" target="_blank">QQWorld收藏家 (CNY ¥45)</a> | <a href="http://www.qqworld.org/how-to-buy-cn">如何购买?</a>
|
134 |
+
|
135 |
+
联系方式:
|
136 |
+
邮件:admin@qqworld.org
|
137 |
+
QQ:172269588
|
138 |
+
|
139 |
+
== Installation ==
|
140 |
+
|
141 |
+
<ol>
|
142 |
+
<li>Make sure the server configuration <strong>allow_url_fopen=1</strong> and remove ";" from in front of <strong>extension=php_gd2.dll</strong> and <strong>extension=php_curl.dll</strong> in php.ini.<br />
|
143 |
+
请确保php.ini的设置中 <strong>allow_url_fopen=1</strong>,并且去掉<strong>extension=php_gd2.dll</strong>和<strong>extension=php_curl.dll</strong>之前的“;”</li>
|
144 |
+
<li>Warning: If your website domain has changed, you must modify all image link to new domain from database, or else all images which not modified in post content will be saved again.<br />
|
145 |
+
警告:如果你的网站域名更改了,必须在数据库中将所有的图片链接更新到新域名,否则插件会把未更改的图片再保存一次。</li>
|
146 |
+
</ol>
|
147 |
+
|
148 |
+
== Screenshots ==
|
149 |
+
|
150 |
+
1. User interface - Settings
|
151 |
+
2. 用户界面 - 设置
|
152 |
+
3. User interface - Preview watermark feature
|
153 |
+
4. 用户界面 - 水印功能预览
|
154 |
+
5. User interface - Scan posts
|
155 |
+
6. 用户界面 - 扫描文章
|
156 |
+
|
157 |
+
== Changelog ==
|
158 |
+
= 1.7.15.5 =
|
159 |
+
New feature: Convert Vietnamese to English letters for automatically change image filename.<br />
|
160 |
+
新特性:自动更改文件名时自动将越南语字母转换为英语字母
|
161 |
+
|
162 |
+
= 1.7.15.4 =
|
163 |
+
Bug Fixed: Removed unnecessary backslashes escaped.<br />
|
164 |
+
修Bug:去除不必要的自动反斜线转义。
|
165 |
+
|
166 |
+
= 1.7.15.3 =
|
167 |
+
New feature: Automatically detect uploaded images as featured image.<br />
|
168 |
+
新特性:自动检测已上传的图像作为特色图片。
|
169 |
+
|
170 |
+
= 1.7.15.2 =
|
171 |
+
New feature: Update the Information of Pro Edition.<br />
|
172 |
+
新特性:更新专业版信息。
|
173 |
+
|
174 |
+
= 1.7.15.1 =
|
175 |
+
New feature: Supported save remote images via Schedule Publish.<br />
|
176 |
+
新特性:支持定时发布时保存远程图像。
|
177 |
+
|
178 |
+
= 1.7.15 =
|
179 |
+
<ul>
|
180 |
+
<li>New feature:
|
181 |
+
<ul>
|
182 |
+
<li>Compatibility with Custom Upload Dir.</li>
|
183 |
+
</ul>
|
184 |
+
</li>
|
185 |
+
<li>新特性:
|
186 |
+
<ul>
|
187 |
+
<li>和Custom Upload Dir兼容。</li>
|
188 |
+
</ul>
|
189 |
+
</li>
|
190 |
+
<li>Bugs Fixed:
|
191 |
+
<ul>
|
192 |
+
<li>Save duplicate image</li>
|
193 |
+
<li>Save duplicate revision post</li>
|
194 |
+
<li>String '%20' in class</li>
|
195 |
+
</ul>
|
196 |
+
</li>
|
197 |
+
<li>修复Bug:
|
198 |
+
<ul>
|
199 |
+
<li>重复保存图片</li>
|
200 |
+
<li>重复保存文章历史版本</li>
|
201 |
+
<li>在class中有“%20”字符串</li>
|
202 |
+
</ul>
|
203 |
+
</li>
|
204 |
+
</ul>
|
205 |
+
|
206 |
+
= 1.7.14.1 =
|
207 |
+
Bug fixed: Couldn't grabbing the image url contain spaces.<br />
|
208 |
+
修复Bug:不能抓取包含空格的图像url。
|
209 |
+
|
210 |
+
= 1.7.14 =
|
211 |
+
Bug fixed: A bug of regular expression ( '{' & '}' ).<br />
|
212 |
+
修复Bug:修复正则表达式的bug( '{' 和 '}' )。
|
213 |
+
|
214 |
+
= 1.7.13.9 =
|
215 |
+
New feature: Added new format option Align-To<br />
|
216 |
+
新特性:添加对齐方式的格式化选项。
|
217 |
+
|
218 |
+
= 1.7.13.8 =
|
219 |
+
New feature: Automatically add caption shortcode.<br />
|
220 |
+
新特性:自动添加图说短代码。
|
221 |
+
|
222 |
+
= 1.7.13.7 =
|
223 |
+
New Interface: Update user interface of Pro Edition<br />
|
224 |
+
新界面:更新专业版的用户界面
|
225 |
+
|
226 |
+
= 1.7.13.6 =
|
227 |
+
Bug fixed: Couldn't handle the Maximum Image Size of remote image resource by GZIP compressed. (Needs PHP 5.4+)<br />
|
228 |
+
修复Bug:无法控制被GZIP压缩的图片资源的最大尺寸。(须PHP 5.4+)
|
229 |
+
|
230 |
+
= 1.7.13.5 =
|
231 |
+
New feature: Enhanced ability for grab remote image by GZIP compressed. (Needs PHP 5.4+)<br />
|
232 |
+
新特性:加强对GZIP压缩的图片资源的抓取功能。(须PHP 5.4+)
|
233 |
+
|
234 |
+
= 1.7.13.4 =
|
235 |
+
New feature: Supply a hook that can custom link text of the outside link or even more complicated.<br />
|
236 |
+
新特性:提供1个Hook来自定义外部链接的链接文本或更加复杂的内容。。
|
237 |
+
|
238 |
+
= 1.7.13.3 =
|
239 |
+
New feature: Add <strong>rel="nofollow"</strong> into outside link's tag when checked the option Save-Outside-Links.<br />
|
240 |
+
新特性:当选择保存外部链接时,自动在外部链接的标签中加入<strong>rel="nofollow"。</strong>。<br />
|
241 |
+
Bug fixed: Manual scan posts can not check missing remote images.<br />
|
242 |
+
修复Bug:手动扫描文章无法检测丢失的远程图片。
|
243 |
+
|
244 |
+
= 1.7.13.2 =
|
245 |
+
New feature: Add <strong>rel="nofollow"</strong> into outside link's tag when checked the option Keep-Outside-Links.<br />
|
246 |
+
新特性:当选择保留外部链接时,自动在外部链接的标签中加入<strong>rel="nofollow"。</strong>。
|
247 |
+
|
248 |
+
= 1.7.13.1 =
|
249 |
+
New feature: The feature Maximum-Picture-Size Automatically reduction image size support PHP 5.3 now.<br />
|
250 |
+
新特性:最大图像尺寸的自动缩小图片功能支持PHP5.3。
|
251 |
+
|
252 |
+
= 1.7.13 =
|
253 |
+
News: QQWorld Auto Save Images Pro Edition is avaliable.<br />
|
254 |
+
新闻:QQWorld自动保存图片专业版已发售。
|
255 |
+
|
256 |
+
= 1.7.12.14 =
|
257 |
+
New feature:<br />
|
258 |
+
For plugin working issue, adds server check to help user handle server configuation issues.
|
259 |
+
<br />
|
260 |
+
新特性<br />
|
261 |
+
为了使插件工作正常,增加服务器检测帮助用户处理服务器配置问题
|
262 |
+
|
263 |
+
= 1.7.12.13 =
|
264 |
+
<ul>
|
265 |
+
<li>New feature:
|
266 |
+
<ul>
|
267 |
+
<li>Save first ? image(s) from each posts.</li>
|
268 |
+
</ul>
|
269 |
+
</li>
|
270 |
+
<li>新特性:
|
271 |
+
<ul>
|
272 |
+
<li>保存每篇文章前 ? 幅图像</li>
|
273 |
+
</ul>
|
274 |
+
</li>
|
275 |
+
<li>Bugs Fixed:
|
276 |
+
<ul>
|
277 |
+
<li>Keep-outside-links didn't works.</li>
|
278 |
+
<li>Allowed "maximum picture size" to set blank.</li>
|
279 |
+
</ul>
|
280 |
+
</li>
|
281 |
+
<li>修复Bug:
|
282 |
+
<ul>
|
283 |
+
<li>“保留外部链接”无效</li>
|
284 |
+
<li>允许“最大图像尺寸”都设置为空白</li>
|
285 |
+
</ul>
|
286 |
+
</li>
|
287 |
+
</ul>
|
288 |
+
|
289 |
+
= 1.7.12.12 =
|
290 |
+
New feature:<br />
|
291 |
+
Automatic change remote filename that have Non-ASCii characters (for Windows Server).<br />
|
292 |
+
Custom filename structure.<br />
|
293 |
+
新特性:<br />
|
294 |
+
自动修改包含非ASCii字符的远程图片文件名(用于Windows服务器)<br />
|
295 |
+
自定义文件名结构。
|
296 |
+
|
297 |
+
= 1.7.12.11 =
|
298 |
+
New feature:<br />
|
299 |
+
Supplied some interface for others additional functions.<br />
|
300 |
+
新特性:<br />
|
301 |
+
为其他附加功能提供了接口。
|
302 |
+
|
303 |
+
= 1.7.12.10 =
|
304 |
+
Bug Fixed:<br />
|
305 |
+
Handle missing/undownloadable remote image failed. <br />
|
306 |
+
修复Bug:<br />
|
307 |
+
无法处理 不存在/无法下载 的远程图片
|
308 |
+
|
309 |
+
= 1.7.12.9 =
|
310 |
+
New feature:<br />
|
311 |
+
Automatic save outside links to description of attachments.<br />
|
312 |
+
新特性:<br />
|
313 |
+
自动将远程图片的链接保存到附件的描述中。
|
314 |
+
|
315 |
+
= 1.7.12.8 =
|
316 |
+
New feature:<br />
|
317 |
+
Automatic change attachment url to rewrite permalink.<br />
|
318 |
+
新特性:<br />
|
319 |
+
自动将附件的url转换为伪静态固定链接
|
320 |
+
|
321 |
+
= 1.7.12.7 =
|
322 |
+
Bug Fixed:<br />
|
323 |
+
Broken if the value of img tag property including single quote(')<br />
|
324 |
+
修复Bug:<br />
|
325 |
+
如果图片标签属性值包含单引号(')会出错
|
326 |
+
|
327 |
+
= 1.7.12.6 =
|
328 |
+
Bug Fixed:<br />
|
329 |
+
Download remote image failed on some servers. <br />
|
330 |
+
修复Bug:<br />
|
331 |
+
在某些服务器上下载远程图片失败。
|
332 |
+
|
333 |
+
= 1.7.12.5 =
|
334 |
+
New feature:<br />
|
335 |
+
Automatically change image title & alt as post title.<br />
|
336 |
+
新特性:<br />
|
337 |
+
自动参照文章标题添加图片标题和替代文本
|
338 |
+
|
339 |
+
= 1.7.12.4 =
|
340 |
+
New feature:<br />
|
341 |
+
Using 3 ways to download remote images.<br />
|
342 |
+
新特性:<br />
|
343 |
+
使用三种方法下载远程图片
|
344 |
+
|
345 |
+
= 1.7.12.3 =
|
346 |
+
New feature:<br />
|
347 |
+
Use curl instead of fopen to download remote images.<br />
|
348 |
+
新特性:<br />
|
349 |
+
使用cUrl代替fopen来下载远程图片
|
350 |
+
|
351 |
+
= 1.7.12.2 =
|
352 |
+
Bug fixed:<br />
|
353 |
+
Now the option 3 of change name feature would not generate URL encoded file name.<br />
|
354 |
+
修复Bug:<br />
|
355 |
+
现在更改文件名功能的第3项不会产生URL编码的的文件名了。
|
356 |
+
|
357 |
+
= 1.7.12.1 =
|
358 |
+
Bug fixed:<br />
|
359 |
+
Now the feature automatic-change-remote-images-filename-and-alt-as-post-name supporte IFTTT.<br />
|
360 |
+
修复Bug:<br />
|
361 |
+
现在自动更改文件名为文章名(Post Name | Slug)已支持IFTTT.
|
362 |
+
|
363 |
+
= 1.7.12 =
|
364 |
+
Mew format feature:<br />
|
365 |
+
Automatic change remote images filename and alt as post name. if you choose this, please make sure post name | slug exclude Chinese or other East Asian characters.<br />
|
366 |
+
格式化新功能:<br />
|
367 |
+
自动更改文件名为文章名(Post Name | Slug),如果选择此项,请确保文章名(Post Name | Slug)不包含中文以及其他东亚字符。
|
368 |
+
|
369 |
+
= 1.7.11.4 =
|
370 |
+
Bug fixed:<br />
|
371 |
+
About image maximum size filter settings, support any size of one of width and height.<br />
|
372 |
+
修复Bug:<br />
|
373 |
+
在图片尺寸过滤设置中,支持高度和宽度其中之一为任意尺寸。
|
374 |
+
|
375 |
+
= 1.7.11.3 =
|
376 |
+
Bug fixed:<br />
|
377 |
+
Select category doesn't works on scan feature.<br />
|
378 |
+
修复Bug:<br />
|
379 |
+
扫描文章功能的选择分类不能正常工作。
|
380 |
+
|
381 |
+
= 1.7.11.2 =
|
382 |
+
Bug fixed:<br />
|
383 |
+
Can't format image url that has (*).<br />
|
384 |
+
修复Bug:<br />
|
385 |
+
不能格式化带*号的图片链接
|
386 |
+
|
387 |
+
= 1.7.11.1 =
|
388 |
+
Bug fixed:<br />
|
389 |
+
Ignore PHP warning messages has missing images when scanning posts.<br />
|
390 |
+
修复Bug:<br />
|
391 |
+
扫描文章时忽略远程图片不存在的警告信息。
|
392 |
+
|
393 |
+
= 1.7.11 =
|
394 |
+
New feature:<br />
|
395 |
+
Display addistional content after the each remote images.<br />
|
396 |
+
新特性:<br />
|
397 |
+
显示额外的内容到每一个自动保存的远程图片后面。
|
398 |
+
|
399 |
+
= 1.7.10.1 =
|
400 |
+
New feature:<br />
|
401 |
+
If PHP version lower than 5.4, automatic disabled the Maximum-Picture-Size feature.<br />
|
402 |
+
新特性:<br />
|
403 |
+
如果PHP版本低于5.4,自动禁用设置最大图像的功能。
|
404 |
+
|
405 |
+
= 1.7.10 =
|
406 |
+
New feature:<br />
|
407 |
+
Automatic reduction is greater than the size of the picture. default: 1280x1280(px)<br />
|
408 |
+
新特性:<br />
|
409 |
+
自动缩小大于所设置尺寸的图像。默认:1280x1280(像素)
|
410 |
+
|
411 |
+
= 1.7.9 =
|
412 |
+
New feature:<br />
|
413 |
+
Allowed to Ignore small size picture, such as some icons. default: 32x32(px)<br />
|
414 |
+
新特性:<br />
|
415 |
+
允许忽略小尺寸图像,比如一些小图标。默认:32x32(像素)
|
416 |
+
|
417 |
+
= 1.7.8 =
|
418 |
+
<ul>
|
419 |
+
<li>New features:
|
420 |
+
<ul>
|
421 |
+
<li>Ignore animated GIF when doing watermark as preview option.</li>
|
422 |
+
<li>Modified 'http://' to 'http(s)://' in Exclude-Domain/Keyword of General Options.</li>
|
423 |
+
</ul>
|
424 |
+
</li>
|
425 |
+
<li>新特性:
|
426 |
+
<ul>
|
427 |
+
<li>添加水印时忽略GIF动画的预览选项</li>
|
428 |
+
<li>将常规选项中的排除域名/关键词中的'http://'改为'http(s)://'</li>
|
429 |
+
</ul>
|
430 |
+
</li>
|
431 |
+
</ul>
|
432 |
+
|
433 |
+
= 1.7.7 =
|
434 |
+
New features:<br />
|
435 |
+
Allowed to keeps outside links of remote images.<br />
|
436 |
+
新特性:<br />
|
437 |
+
允许保留远程图片的外部链接。
|
438 |
+
|
439 |
+
= 1.7.6 =
|
440 |
+
Fixed a bug of regular expression that cleaned many contents in Visual-mode of Editor and in Manual-mode of plugin.<br />
|
441 |
+
修复正则表达式的bug,在可视化编辑情况下手动保存图片有时候会清空大量的内容。
|
442 |
+
|
443 |
+
= 1.7.5 =
|
444 |
+
New features:<br />
|
445 |
+
Added format options. The <img> code formated just like insert to post.<br />
|
446 |
+
新特性:<br />
|
447 |
+
增加格式化选项。格式化的<img>代码就像插入到文章的。
|
448 |
+
|
449 |
+
= 1.7.4 =
|
450 |
+
<ul>
|
451 |
+
<li>Bugs fixed:
|
452 |
+
<ol>
|
453 |
+
<li>Manual mode of Scan-Post did saved remote images in process.</li>
|
454 |
+
<li>Javascript parse error on select checkbox of pages of scan-posts in English website language.</li>
|
455 |
+
</ol>
|
456 |
+
</li>
|
457 |
+
<li>New features:
|
458 |
+
<ul>
|
459 |
+
<li>Preview watermark.</li>
|
460 |
+
</ul>
|
461 |
+
</li>
|
462 |
+
<li>修复Bugs:
|
463 |
+
<ol>
|
464 |
+
<li>扫描文章的手动模式会在扫描过程中偷偷保存远程图片。</li>
|
465 |
+
<li>站点语言为英文时,选择扫描文章的页面文章类型会报Javascript语法错误。</li>
|
466 |
+
</ol>
|
467 |
+
</li>
|
468 |
+
<li>新特性:
|
469 |
+
<ul>
|
470 |
+
<li>水印功能预览</li>
|
471 |
+
</ul>
|
472 |
+
</li>
|
473 |
+
</ul>
|
474 |
+
|
475 |
+
= 1.7.3 =
|
476 |
+
Bug fixed:<br />
|
477 |
+
The bug that Added a backslash "\" in front of apostrophes (') in text mode of editor and in manual mode of plugin.<br />
|
478 |
+
修复Bug:<br />
|
479 |
+
在插件的手动模式和编辑器的文本模式下,在(')之前加上"\"
|
480 |
+
|
481 |
+
= 1.7.2 =
|
482 |
+
New features:<br />
|
483 |
+
In manual mode, Supported auto save images from remote publishing.<br />
|
484 |
+
Bugs fixed:<br />
|
485 |
+
Some dynamic links had problem with change name.<br /><br />
|
486 |
+
新特性:<br />
|
487 |
+
支持在手动模式下允许通过远程发布保存图片。<br />
|
488 |
+
修复Bugs:<br />
|
489 |
+
采集一些动态链接出现Bug
|
490 |
+
|
491 |
+
= 1.7.1 =
|
492 |
+
<ul>
|
493 |
+
<li>New features:
|
494 |
+
<ol>
|
495 |
+
<li>Auto change image filename, If it's possible to encounter remote images filename containing Chinese or other East Asian characters, i suggest enable it.</li>
|
496 |
+
<li>Added Order/Order-by/Status filters for scan-posts mode.</li>
|
497 |
+
</ol>
|
498 |
+
</li>
|
499 |
+
<li>新特性:
|
500 |
+
<ol>
|
501 |
+
<li>自动图片文件更名,如果你有可能碰到包含中文或其他东亚字符的远程图片文件名,建议开启。</li>
|
502 |
+
<li>扫描文章模式增加 排序/排序依据/状态 筛选。</li>
|
503 |
+
</ol>
|
504 |
+
</li>
|
505 |
+
</ul>
|
506 |
+
|
507 |
+
= 1.7 =
|
508 |
+
<ul>
|
509 |
+
<li>New features:
|
510 |
+
<ol>
|
511 |
+
<li>New interface.</li>
|
512 |
+
<li>Added categories filter for scan-posts mode.</li>
|
513 |
+
</ol>
|
514 |
+
</li>
|
515 |
+
<li>新特性:
|
516 |
+
<ol>
|
517 |
+
<li>新用户界面。</li>
|
518 |
+
<li>扫描文章模式增加分类筛选。</li>
|
519 |
+
</ol>
|
520 |
+
</li>
|
521 |
+
</ul>
|
522 |
+
|
523 |
+
= 1.6.1 =
|
524 |
+
<ul>
|
525 |
+
<li>New features:
|
526 |
+
<ol>
|
527 |
+
<li>Supported more type of dynamic link.</li>
|
528 |
+
<li>More detail notifications for automatic/manual mode.</li>
|
529 |
+
</ol>
|
530 |
+
</li>
|
531 |
+
<li>新特性:
|
532 |
+
<ol>
|
533 |
+
<li>支持更多类型的动态连接。</li>
|
534 |
+
<li>自动/手动模式拥有更详细的通知信息</li>
|
535 |
+
</ol>
|
536 |
+
</li>
|
537 |
+
</ul>
|
538 |
+
|
539 |
+
= 1.6 =
|
540 |
+
New feature: Supported fetching images from some dynamic link.<br />
|
541 |
+
新特性:支持从部分动态连接抓取图片。
|
542 |
+
|
543 |
+
= 1.5.9.1 =
|
544 |
+
fixed a bug of regular expression.<br />
|
545 |
+
修复正则表达式的bug。
|
546 |
+
|
547 |
+
= 1.5.9 =
|
548 |
+
New feature: Set Exclude-Domain/Keyword.<br />
|
549 |
+
新特性:设置排除域名/关键词。
|
550 |
+
|
551 |
+
= 1.5.8 =
|
552 |
+
New feature: supported XMLRPC, means remote publishing from IFTTT.<br />
|
553 |
+
新特性:支持XMLRPC,意味着支持从IFTTT远程发布。
|
554 |
+
|
555 |
+
= 1.5.7.5 =
|
556 |
+
fixed a bug of regular expression.<br />
|
557 |
+
修复正则表达式的bug。
|
558 |
+
|
559 |
+
= 1.5.7.4 =
|
560 |
+
Hide posts do not have remote images from list in automatic mode.<br />
|
561 |
+
在自动扫描的列表中隐藏没有远程图像的文章。
|
562 |
+
|
563 |
+
= 1.5.7.3 =
|
564 |
+
Show post number in error notification<br />
|
565 |
+
在错误提示中显示文章的序号
|
566 |
+
|
567 |
+
= 1.5.7.2 =
|
568 |
+
The debug system can pass errors let process go to the end<br />
|
569 |
+
增加调试系统可以跳过错误让进程运行到底
|
570 |
+
|
571 |
+
= 1.5.7.1 =
|
572 |
+
New feature: Debug system added<br />
|
573 |
+
新特性:增加调试系统
|
574 |
+
|
575 |
+
= 1.5.7 =
|
576 |
+
<ul>
|
577 |
+
<li>Fixed:
|
578 |
+
<ol>
|
579 |
+
<li>A bug of the stops process by some special characters.</li>
|
580 |
+
<li>some english error messages.</li>
|
581 |
+
</ol>
|
582 |
+
</li>
|
583 |
+
<li>修复:
|
584 |
+
<ol>
|
585 |
+
<li>一些特殊字符停止程序进程的bug。</li>
|
586 |
+
<li>一些英文错误消息。</li>
|
587 |
+
</ol>
|
588 |
+
</li>
|
589 |
+
</ul>
|
590 |
+
|
591 |
+
= 1.5.6 =
|
592 |
+
<ul>
|
593 |
+
<li>New features:
|
594 |
+
<ol>
|
595 |
+
<li>Set scope of ID for scan.</li>
|
596 |
+
<li>List posts including remote images and handle them manually.</li>
|
597 |
+
</ol>
|
598 |
+
</li>
|
599 |
+
<li>新功能:
|
600 |
+
<ol>
|
601 |
+
<li>设置文章ID的扫描范围。</li>
|
602 |
+
<li>列出包含远程图像的文章,并且手动处理它们。</li>
|
603 |
+
</ol>
|
604 |
+
</li>
|
605 |
+
</ul>
|
606 |
+
|
607 |
+
= 1.5.5 =
|
608 |
+
Enhance the scanning speed of up to 10 times.<br />
|
609 |
+
可提升最多10倍扫描速度
|
610 |
+
|
611 |
+
= 1.5.4 =
|
612 |
+
Because of PHP runs for a limited time, so now using ajax to scan posts. but it runs slower than 1.5.3.<br />
|
613 |
+
因为PHP有运行时间限制,所以现在改为使用AJAX来扫描文章。但运行速度比1.5.3慢。
|
614 |
+
|
615 |
+
= 1.5.3 =
|
616 |
+
Added a filter set scan range for scanner<br />
|
617 |
+
添加过滤器来设置扫描仪的扫描范围
|
618 |
+
|
619 |
+
= 1.5.2 =
|
620 |
+
Make the plugin more proffesional<br />
|
621 |
+
让插件更专业
|
622 |
+
|
623 |
+
= 1.5.1 =
|
624 |
+
Make the plugin more secure<br />
|
625 |
+
让插件更安全
|
626 |
+
|
627 |
+
= 1.5 =
|
628 |
+
New feature: Scan posts and save remote images in all posts to local media library. Maybe take a long time.<br />
|
629 |
+
新功能:扫描所有的文章,将所有远程图片保存到本地,可能需要很长时间。
|
630 |
+
|
631 |
+
= 1.4.3 =
|
632 |
+
Now you can choose automatically set featured image or not.<br />
|
633 |
+
现在你可以选择是否自动设置特色图片。
|
634 |
+
|
635 |
+
= 1.4.2 =
|
636 |
+
Fixed 1 bug: If remote images are too big or too many, program need more time to download, When default time out, whole process stoped.<br />
|
637 |
+
If remote images are too many, sometimes you need fetch twice.<br />
|
638 |
+
修复bug:如果远程图片太大或太多,程序需要更多时间来下载,当默认的运行超时,程序会卡住。<br />
|
639 |
+
如果远程图片太多,有时候需要抓取两次。
|
640 |
+
|
641 |
+
= 1.4.1 =
|
642 |
+
New functional optimized<br />
|
643 |
+
优化了新功能
|
644 |
+
|
645 |
+
= 1.4 =
|
646 |
+
Add a new type allow user manually save remote images via click a button on the top of editor.<br />
|
647 |
+
You can change the Type in the plugin's setting page.<br />
|
648 |
+
添加一个新类型允许用户通过单击编辑器顶部的按钮手动保存远程图像。<br />
|
649 |
+
你可以在插件的设置页面更改类型。
|
650 |
+
|
651 |
+
= 1.3 =
|
652 |
+
<ul>
|
653 |
+
<li>Fixed 2 bugs:
|
654 |
+
<ol>
|
655 |
+
<li>Failed to save remote image to local when the image url include "(\?(.*?))?", now it's works.</li>
|
656 |
+
<li>If the remote image url is invalid, will not to save it to a blank attachment.</li>
|
657 |
+
</ol>
|
658 |
+
</li>
|
659 |
+
<li>修复两个bug:
|
660 |
+
<ol>
|
661 |
+
<li>如果远程图片地址包含 "(\?(.*?))?" 会无法保存到本地,现在工作正常。</li>
|
662 |
+
<li>如果远程图片地址无效,则不会保存一个空的附件到本地。</li>
|
663 |
+
</ol>
|
664 |
+
</li>
|
665 |
+
</ul>
|
666 |
+
|
667 |
+
= 1.2 =
|
668 |
+
add admin page to control use which action to save remote image.<br />
|
669 |
+
添加后台页面来管理选择使用下载远程图片的动作。
|
670 |
+
|
671 |
+
= 1.1 =
|
672 |
+
Remove auto rename.<br />
|
673 |
+
移除自动更名功能。<br />
|
674 |
+
if you want to upload images with chinese file name and server does not support chinese filename, please using 1.0.<br />
|
675 |
+
如果需要上传中文名图片,服务器又不支持中文文件名,请使用1.0
|
676 |
+
|
677 |
+
= 1.0 =
|
678 |
+
Born for Capture.<br />
|
679 |
+
The feature is can automatically change image filename.<br />
|
680 |
+
为采集而生<br />
|
681 |
+
特色是可以自动更改图片的文件名
|
682 |
+
|
683 |
+
== Upgrade Notice ==
|
684 |
+
|
685 |
+
= 1.7.10 =
|
686 |
+
This version used a new GD2 function, you need at least PHP 5.4 to run it.
|
687 |
+
该版本使用了一个新GD2函数,你至少需要PHP5.4来运行。
|
688 |
+
|
689 |
+
= 1.1 =
|
690 |
+
if you want to upload images with chinese file name and server does not support chinese filename, please using 1.0.<br />
|
691 |
+
如果需要上传中文名图片,服务器又不支持中文文件名,请使用1.0
|
692 |
+
|
693 |
+
= 1.0 =
|
694 |
+
The feature is can automatically change image filename.<br />
|
695 |
+
特色是可以自动更改图片的文件名
|
696 |
+
|
697 |
+
== Frequently Asked Questions ==
|
698 |
+
|
699 |
+
= Why the Maximum-Picture-Size fields are gray? =
|
700 |
+
|
701 |
+
Because PHP version is lower than 5.4. please upgrade your PHP.
|
702 |
+
|
703 |
+
= Why the Watermark featrue does not works? =
|
704 |
+
|
705 |
+
Because of it's only a preview. Full functionality is being developed in the Professional Edition. and i don't know what time Professional Edition released. who cares..
|
706 |
+
|
707 |
+
= 为什么“最大图像尺寸”设置输入框是灰色的? =
|
708 |
+
|
709 |
+
因为PHP版本低于5.4,请升级PHP。
|
710 |
+
|
711 |
+
= 为什么水印功能不能用? =
|
712 |
+
|
713 |
+
因为只是预览,完整的功能将在开发中的专业版中。我也不知道专业什么时候发布,管它呢……
|