Skip to content

Commit d9c70f0

Browse files
committed
Merge branch 'develop'
2 parents c9cd540 + 4167b05 commit d9c70f0

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

uPic/AppDelegate.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ extension AppDelegate {
151151
var urls = [URL]()
152152

153153
for path in filenames {
154-
if fileExtensions.contains(path.pathExtension.lowercased()) {
154+
if (fileExtensions.count == 0 || fileExtensions.contains(path.pathExtension.lowercased())) {
155155
urls.append(URL(fileURLWithPath: path))
156156
}
157157
}

uPic/Supporting Files/Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
<key>CFBundlePackageType</key>
2020
<string>APPL</string>
2121
<key>CFBundleShortVersionString</key>
22-
<string>0.7.4</string>
22+
<string>0.7.5</string>
2323
<key>CFBundleVersion</key>
24-
<string>20190721</string>
24+
<string>20190722</string>
2525
<key>LSApplicationCategoryType</key>
2626
<string>public.app-category.utilities</string>
2727
<key>LSMinimumSystemVersion</key>

uPic/en.lproj/Localizable.strings

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
"host.placeholder.repo" = "Just the repo name, not the repo URL";
138138
"host.placeholder.domain" = "domain:https://xxx.com";
139139
"host.placeholder.domain-has-default" = "Can be empty, there is a default domain";
140-
"host.placeholder.resultPath" = "The path to the URL field in Response JSON, eg: data/ URL";
140+
"host.placeholder.resultPath" = "The path to the URL field in Response JSON";
141141
"host.placeholder.custom-domain" = "(optional),When filled, URL = domain + URL path value";
142142

143143

uPic/zh-Hans.lproj/Localizable.strings

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@
134134
"host.placeholder.repo" = "只需要仓库名称,而不是仓库连接";
135135
"host.placeholder.domain" = "访问域名:https://xxx.com";
136136
"host.placeholder.domain-has-default" = "可为空,有默认域名";
137-
"host.placeholder.resultPath" = "返回 JSON 中的URL字段的路径,如:data/url";
137+
"host.placeholder.resultPath" = "返回 JSON 中的 URL 字段的路径";
138138
"host.placeholder.custom-domain" = "(可选),当填写时,URL = 前缀 + URL 路径值";
139139

140140
/*host type*/

0 commit comments

Comments
 (0)