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: a9843c15f3662429dcf0837081ee12de51e0d095b5144890011a54839d351cd9
4
- data.tar.gz: 6a26f5ab29d3577185e513384faaaec1f2b205694c6012227c8be63ab78679d8
3
+ metadata.gz: f23f6e9c6f3b4f3feecdadd0747f191ce4581273464ab6bd831e7e4ad0ede515
4
+ data.tar.gz: 5885d939f2efdcbb360a76a8a63fe21966692345aa0e24c5dec7ae4706f45759
5
5
  SHA512:
6
- metadata.gz: 34b20032663051d6a67bd4025b17bd4bd755aac28bf1a71c749d5378993bcb773d2530a2d39b6b9796be473a147e680f1304d0c48a3e72b702f1c50ba461480d
7
- data.tar.gz: c636f82079e2aa7106634bfd1222e1c75fbf5c384cf3c4ad993e297feabd61ef0d13235f7a11281ce990ca09c41f132263e05649d7c266b36df6a5dcb76ce926
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: false,
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: false,
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: false,
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: false,
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: false,
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: false,
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。",
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module WorkWechat
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-work_wechat
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - DevZhang