fir-cli 1.6.9 → 1.6.10
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 +4 -4
- data/README.md +7 -1
- data/fir-cli.gemspec +3 -2
- data/lib/fir/cli.rb +0 -1
- data/lib/fir/util/publish.rb +4 -5
- data/lib/fir/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bf87b2090e56a14408b10d4973a2320d7ec7f376
|
4
|
+
data.tar.gz: 27eaf1b6c753ce5f9c5aed86fec210c510a72514
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7480243d964d717d9ec2f9bc74d63e7bf75d04447be80280d42020b1c412b95f1ae0bdac715c256d9a109dc9e4853ec8241508c5342d74bec53b73bbc51286cf
|
7
|
+
data.tar.gz: 765d60eb04fd77fcd4f8914172ab67f37f359d5f536e54759b94cb252b986d5a9a29f56785f2fbdc0d17d0271ae1da1090dc6d233cdd4f104b40603c836c5540
|
data/README.md
CHANGED
@@ -14,7 +14,8 @@ fir.im-cli 可以通过指令查看, 上传, iOS/Android 应用.
|
|
14
14
|
|
15
15
|
|
16
16
|
# 重要提示
|
17
|
-
|
17
|
+
|
18
|
+
- 由于 CDN 厂商技术原因, 部分老版本用户会出现 579 错误,解决该问题请升级fir-cli 至最新版
|
18
19
|
- 由于部分地区上传时遇到的证书问题, 新版本默认忽略证书校验. 如需打开, 请在命令前加入`UPLOAD_VERIFY_SSL=1`
|
19
20
|
- 介于在ios 等编译越来越复杂化, fir-cli 自带的 `build_ipa` 编译功能较为简单, 不能很好的满足用户需求, 推荐用户使用 fastlane (fastlane gym)进行打包,生成好 ipa 文件后,再使用 `fir publish` 上传生成的ipa
|
20
21
|
- 现已添加 docker 版本, 具体请见 `Docker 运行 fir-cli ` 说明
|
@@ -56,6 +57,11 @@ fir login token
|
|
56
57
|
fir help
|
57
58
|
```
|
58
59
|
|
60
|
+
## 最近更新
|
61
|
+
- (1.6.10) 增加显示release_id 以及 app_id
|
62
|
+
- (1.6.9) 取消了依赖 CFPropertyList 的具体版本号
|
63
|
+
- (1.6.8) 取消了远端回调, 改为本地callback
|
64
|
+
|
59
65
|
## 提交反馈
|
60
66
|
|
61
67
|
- 联系微信 `atpking`
|
data/fir-cli.gemspec
CHANGED
@@ -27,10 +27,11 @@ Gem::Specification.new do |spec|
|
|
27
27
|
/_/ /___/_/ |_| \____/_____/___/
|
28
28
|
|
29
29
|
## 更新记录
|
30
|
-
- (1.6.
|
30
|
+
- (1.6.10) 增加显示release_id 以及 app_id
|
31
|
+
- (1.6.9) 取消了依赖 cfpropertylist 的具体版本号
|
31
32
|
- (1.6.8) 取消了远端回调, 改为本地callback
|
32
33
|
- (1.6.8) fir-cli 也支持了私有部署模式
|
33
|
-
- [fir-cli](https://github.com/
|
34
|
+
- [fir-cli](https://github.com/firhq/fir-cli) 已经开源
|
34
35
|
- 欢迎 fork, issue 和 pull request
|
35
36
|
)
|
36
37
|
|
data/lib/fir/cli.rb
CHANGED
@@ -107,7 +107,6 @@ module FIR
|
|
107
107
|
method_option :short, type: :string, aliases: '-s', desc: 'Set custom short link'
|
108
108
|
method_option :changelog, type: :string, aliases: '-c', desc: 'Set changelog'
|
109
109
|
method_option :qrcode, type: :boolean, aliases: '-Q', desc: 'Generate qrcode'
|
110
|
-
method_option :show_release_id, type: :boolean, aliases: '-r', desc: 'show release id'
|
111
110
|
|
112
111
|
method_option :mappingfile, type: :string, aliases: '-m', desc: 'App mapping file'
|
113
112
|
method_option :proj, type: :string, aliases: '-P', desc: 'Project id in BugHD.com if upload app mapping file'
|
data/lib/fir/util/publish.rb
CHANGED
@@ -19,9 +19,7 @@ module FIR
|
|
19
19
|
logger_info_app_short_and_qrcode
|
20
20
|
|
21
21
|
upload_mapping_file_with_publish(options)
|
22
|
-
|
23
|
-
logger.info "release id = #{answer[:release_id]}"
|
24
|
-
end
|
22
|
+
|
25
23
|
logger_info_blank_line
|
26
24
|
end
|
27
25
|
|
@@ -40,8 +38,9 @@ module FIR
|
|
40
38
|
@binary_cert = @uploading_info[:cert][:binary]
|
41
39
|
|
42
40
|
upload_app_icon unless @app_info[:icons].blank?
|
43
|
-
|
44
|
-
logger.
|
41
|
+
@app_uploaded_callback_data = upload_app_binary
|
42
|
+
logger.info "App id is #{@app_id}"
|
43
|
+
logger.info "Release id is #{@app_uploaded_callback_data[:release_id]}"
|
45
44
|
upload_device_info
|
46
45
|
update_app_info
|
47
46
|
fetch_app_info
|
data/lib/fir/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fir-cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.6.
|
4
|
+
version: 1.6.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- NaixSpirit
|
@@ -248,8 +248,8 @@ metadata: {}
|
|
248
248
|
post_install_message: "\n ______________ ________ ____\n /
|
249
249
|
____/ _/ __ \\ / ____/ / / _/\n / /_ / // /_/ /_____/ / / / /
|
250
250
|
/\n / __/ _/ // _, _/_____/ /___/ /____/ /\n /_/ /___/_/ |_| \\____/_____/___/\n\n
|
251
|
-
\ ## 更新记录 \n - (1.6.
|
252
|
-
\
|
251
|
+
\ ## 更新记录 \n - (1.6.10) 增加显示release_id 以及 app_id\n - (1.6.9) 取消了依赖 cfpropertylist
|
252
|
+
的具体版本号\n - (1.6.8) 取消了远端回调, 改为本地callback\n - (1.6.8) fir-cli 也支持了私有部署模式\n - [fir-cli](https://github.com/firhq/fir-cli)
|
253
253
|
已经开源\n - 欢迎 fork, issue 和 pull request\n "
|
254
254
|
rdoc_options: []
|
255
255
|
require_paths:
|