app-info 2.1.3 → 2.1.4
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/CHANGELOG.md +15 -1
- data/lib/app_info/dsym.rb +4 -1
- data/lib/app_info/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ec1ec092bf819b2a33bd95eabd72656e5220ae993bd28855d9b7ec11116f3470
|
|
4
|
+
data.tar.gz: ff26401d6b6332d064479244f032539266b17fe2a490db1860a9847767d8f631
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1c643af0daecb633dd2d1b2cfd6977496316cef3ff595c699b9654349cfc39bb413e411a866255737040972b0b26dc81c04b7fbd5d9748a3313190d6d3b0b32c
|
|
7
|
+
data.tar.gz: d54160c181fba55dc99fc58963da826d55d3a817f705da220170f154e88215314b22630983de96e6bef353ea14602bd147feabbe9b920b175aff9f50d91d1f56
|
data/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
9
9
|
|
|
10
10
|
> List all changes before release a new version.
|
|
11
11
|
|
|
12
|
+
## [2.1.4] (2020-01-21)
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- Correct Zipped dSYM filename with directory.
|
|
17
|
+
|
|
18
|
+
## [2.1.3] (2020-01-16)
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
|
|
22
|
+
- Store Android icon with BINARY mode AGAIN(correct way).
|
|
23
|
+
|
|
12
24
|
## [2.1.2] (2020-01-11)
|
|
13
25
|
|
|
14
26
|
### Fixed
|
|
@@ -63,7 +75,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
63
75
|
|
|
64
76
|
- Updated dependency of CFPropertly list be a range between 2.3.4. (thanks @[cschroed](https://github.com/cschroed))
|
|
65
77
|
|
|
66
|
-
[Unreleased]: https://github.com/icyleaf/app-info/compare/v2.1.
|
|
78
|
+
[Unreleased]: https://github.com/icyleaf/app-info/compare/v2.1.4..HEAD
|
|
79
|
+
[2.1.4]: https://github.com/icyleaf/app-info/compare/v2.1.3...v2.1.4
|
|
80
|
+
[2.1.3]: https://github.com/icyleaf/app-info/compare/v2.1.2...v2.1.3
|
|
67
81
|
[2.1.2]: https://github.com/icyleaf/app-info/compare/v2.1.1...v2.1.2
|
|
68
82
|
[2.1.1]: https://github.com/icyleaf/app-info/compare/v2.1.0...v2.1.1
|
|
69
83
|
[2.1.0]: https://github.com/icyleaf/app-info/compare/v2.0.0...v2.1.0
|
data/lib/app_info/dsym.rb
CHANGED
|
@@ -84,7 +84,10 @@ module AppInfo
|
|
|
84
84
|
dsym_dir = nil
|
|
85
85
|
@contents = Util.unarchive(@file, path: 'dsym') do |path, zip_file|
|
|
86
86
|
zip_file.each do |f|
|
|
87
|
-
dsym_dir
|
|
87
|
+
unless dsym_dir
|
|
88
|
+
dsym_dir = f.name
|
|
89
|
+
dsym_dir = dsym_dir.split('/')[0] # fix filename is xxx.app.dSYM/Contents
|
|
90
|
+
end
|
|
88
91
|
|
|
89
92
|
f_path = File.join(path, f.name)
|
|
90
93
|
zip_file.extract(f, f_path) unless File.exist?(f_path)
|
data/lib/app_info/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: app-info
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- icyleaf
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-01-
|
|
11
|
+
date: 2020-01-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: CFPropertyList
|