fastlane-plugin-work_wechat 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f23f6e9c6f3b4f3feecdadd0747f191ce4581273464ab6bd831e7e4ad0ede515
|
|
4
|
+
data.tar.gz: 5885d939f2efdcbb360a76a8a63fe21966692345aa0e24c5dec7ae4706f45759
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1ed3f947bce8f9f9ae5751fc54ba58e2bdfca41246089c72048a25180c7ce04c7b2e9b8f7cb704d564f30a5ff521dfd2020520ca4bbf9309cc554cd44eb2e27b
|
|
7
|
+
data.tar.gz: 4f7a310dc5d14117b8e382548603eeb03360e7514535652673cb90f645fb5c1f4f6d061e0cfa0f755e045329eaa2ec01a3cfc1da9301d47f3ccfa4444c34bb1c
|
|
@@ -153,7 +153,7 @@ module Fastlane
|
|
|
153
153
|
type: String),
|
|
154
154
|
FastlaneCore::ConfigItem.new(key: :text_content,
|
|
155
155
|
description: "文本内容,最长不超过2048个字节,必须是utf8编码",
|
|
156
|
-
optional:
|
|
156
|
+
optional: true,
|
|
157
157
|
type: String,
|
|
158
158
|
conflicting_options:[:markdown_content,:image_base64,:image_md5,:news_title,:news_description,:news_url,:news_picurl]),
|
|
159
159
|
FastlaneCore::ConfigItem.new(key: :text_mentioned_list,
|
|
@@ -168,22 +168,22 @@ module Fastlane
|
|
|
168
168
|
conflicting_options:[:markdown_content,:image_base64,:image_md5,:news_title,:news_description,:news_url,:news_picurl]),
|
|
169
169
|
FastlaneCore::ConfigItem.new(key: :markdown_content,
|
|
170
170
|
description: "markdown内容,最长不超过4096个字节,必须是utf8编码",
|
|
171
|
-
optional:
|
|
171
|
+
optional: true,
|
|
172
172
|
type: String,
|
|
173
173
|
conflicting_options:[:text_content,:text_mentioned_list,:text_mentioned_mobile_list,:image_base64,:image_md5,:news_title,:news_description,:news_url,:news_url,:news_picurl]),
|
|
174
174
|
FastlaneCore::ConfigItem.new(key: :image_base64,
|
|
175
175
|
description: "图片内容的base64编码",
|
|
176
|
-
optional:
|
|
176
|
+
optional: true,
|
|
177
177
|
type: String,
|
|
178
178
|
conflicting_options:[:text_content,:text_mentioned_list,:text_mentioned_mobile_list,:markdown_content,:news_title,:news_description,:news_url,:news_url,:news_picurl]),
|
|
179
179
|
FastlaneCore::ConfigItem.new(key: :image_md5,
|
|
180
180
|
description: "图片内容(base64编码前)的md5值",
|
|
181
|
-
optional:
|
|
181
|
+
optional: true,
|
|
182
182
|
type: String,
|
|
183
183
|
conflicting_options:[:text_content,:text_mentioned_list,:text_mentioned_mobile_list,:markdown_content,:news_title,:news_description,:news_url,:news_url,:news_picurl]),
|
|
184
184
|
FastlaneCore::ConfigItem.new(key: :news_title,
|
|
185
185
|
description: "标题,不超过128个字节,超过会自动截断",
|
|
186
|
-
optional:
|
|
186
|
+
optional: true,
|
|
187
187
|
type: String,
|
|
188
188
|
conflicting_options:[:text_content,:text_mentioned_list,:text_mentioned_mobile_list,:markdown_content,:image_base64,:image_md5]),
|
|
189
189
|
FastlaneCore::ConfigItem.new(key: :news_description,
|
|
@@ -193,7 +193,7 @@ module Fastlane
|
|
|
193
193
|
conflicting_options:[:text_content,:text_mentioned_list,:text_mentioned_mobile_list,:markdown_content,:image_base64,:image_md5]),
|
|
194
194
|
FastlaneCore::ConfigItem.new(key: :news_url,
|
|
195
195
|
description: "点击后跳转的链接。",
|
|
196
|
-
optional:
|
|
196
|
+
optional: true,
|
|
197
197
|
type: String,conflicting_options:[:text_content,:text_mentioned_list,:text_mentioned_mobile_list,:markdown_content,:image_base64,:image_md5]),
|
|
198
198
|
FastlaneCore::ConfigItem.new(key: :news_picurl,
|
|
199
199
|
description: "图文消息的图片链接,支持JPG、PNG格式,较好的效果为大图 1068*455,小图150*150。",
|