Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
gee1k committed Jul 21, 2019
2 parents c9cd540 + 4167b05 commit d9c70f0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion uPic/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ extension AppDelegate {
var urls = [URL]()

for path in filenames {
if fileExtensions.contains(path.pathExtension.lowercased()) {
if (fileExtensions.count == 0 || fileExtensions.contains(path.pathExtension.lowercased())) {
urls.append(URL(fileURLWithPath: path))
}
}
Expand Down
4 changes: 2 additions & 2 deletions uPic/Supporting Files/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.7.4</string>
<string>0.7.5</string>
<key>CFBundleVersion</key>
<string>20190721</string>
<string>20190722</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.utilities</string>
<key>LSMinimumSystemVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion uPic/en.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
"host.placeholder.repo" = "Just the repo name, not the repo URL";
"host.placeholder.domain" = "domain:https://xxx.com";
"host.placeholder.domain-has-default" = "Can be empty, there is a default domain";
"host.placeholder.resultPath" = "The path to the URL field in Response JSON, eg: data/ URL";
"host.placeholder.resultPath" = "The path to the URL field in Response JSON";
"host.placeholder.custom-domain" = "(optional),When filled, URL = domain + URL path value";


Expand Down
2 changes: 1 addition & 1 deletion uPic/zh-Hans.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
"host.placeholder.repo" = "只需要仓库名称,而不是仓库连接";
"host.placeholder.domain" = "访问域名:https://xxx.com";
"host.placeholder.domain-has-default" = "可为空,有默认域名";
"host.placeholder.resultPath" = "返回 JSON 中的URL字段的路径,如:data/url";
"host.placeholder.resultPath" = "返回 JSON 中的 URL 字段的路径";
"host.placeholder.custom-domain" = "(可选),当填写时,URL = 前缀 + URL 路径值";

/*host type*/
Expand Down

0 comments on commit d9c70f0

Please sign in to comment.