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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ae557489ffda7fe36f804077460329de53862d01e960031ef15071270271beea
4
- data.tar.gz: 6e7d93e19cb32389cfe0ebf452abc6e49c73fbabf815449c05df8873f7946e4e
3
+ metadata.gz: ec1ec092bf819b2a33bd95eabd72656e5220ae993bd28855d9b7ec11116f3470
4
+ data.tar.gz: ff26401d6b6332d064479244f032539266b17fe2a490db1860a9847767d8f631
5
5
  SHA512:
6
- metadata.gz: fc5b722b6b1a9b6814e90523362a61861830a9e22dbb6eab47ab296da0ab23d36e7826332d421eb96f6d8c7df9436dfcbd4e5c55e880064deda1d50e9d2f3ba8
7
- data.tar.gz: 7c54fa9f38d3e518ff56020384445a4794ee95c46d4fc25aee8c6f5b9d41b0a8a9794705131953c42057886b9541fb942effc9acc91a45dffd6be30a32d550a1
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.2..HEAD
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 ||= f.name
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)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AppInfo
4
- VERSION = '2.1.3'
4
+ VERSION = '2.1.4'
5
5
  end
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.3
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-16 00:00:00.000000000 Z
11
+ date: 2020-01-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: CFPropertyList