app-info 2.4.2 → 2.4.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fa6ab3f0095cdaf689b80cf62592f60d346fa390f9c70a8b2beef12ae5f97052
4
- data.tar.gz: 81fa946c1b95c0f5893acfa9f58eb1bfe5a4171cc22cc4e75e3c1d13455c5b12
3
+ metadata.gz: d3a8120207a6e2e38bc41581e3fb1bfa8f181d9262cd5f5f2b2ef7a416bd2dd7
4
+ data.tar.gz: 00e5f7124fc1152494ab159baf8a8b737ab4651dab5e8f173c32d3a726a0836f
5
5
  SHA512:
6
- metadata.gz: 5b4995b8249c46de8f7f08226c6de54f2f06279868dfaae8a6d92e86a4c7025f08df1a1859bd8f24c85ace1f24e3cb8708db6a901e3ee48982a8c95aa80410e9
7
- data.tar.gz: 2e22de4ac9bfd8dd012a4ff494703b302fa9c2ce0d3b745b033645fdacba0f70266aa5192a92c19cb25a4e3cf34a7e103fec581f47f53a85cac0019c039ee445
6
+ metadata.gz: 8e118a9412150f37e3b5675027c486b6028b09328554b4d8e3a62d83cabe828b40f25742aa8d4739fc6049a42efd1909f3811613a516a15d2fa0a2edfbea093c
7
+ data.tar.gz: 888e45ddaae86097e6eb150aa37c98294d708fa94d519dbeabfb22088f8c1ac94fecdc9aa4806966a3895e283ded8da90c8aa1685d201822129e300d87cd9f5c
data/CHANGELOG.md CHANGED
@@ -9,6 +9,16 @@ 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.4.3] (2021-04-12)
13
+
14
+ ### Fixed
15
+
16
+ - Fix throws an exception 'IHDR not in place for PNG' during parse ipa file.
17
+
18
+ ### Changed
19
+
20
+ - Temporary remove `dimensions` key from icons method (Only ipa file)
21
+
12
22
  ## [2.4.2] (2021-04-06)
13
23
 
14
24
  ### Changed
@@ -108,7 +118,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
108
118
 
109
119
  - Updated dependency of CFPropertly list be a range between 2.3.4. (thanks @[cschroed](https://github.com/cschroed))
110
120
 
111
- [Unreleased]: https://github.com/icyleaf/app-info/compare/v2.4.2..HEAD
121
+ [Unreleased]: https://github.com/icyleaf/app-info/compare/v2.4.3..HEAD
122
+ [2.4.3]: https://github.com/icyleaf/app-info/compare/v2.4.2...v2.4.3
112
123
  [2.4.2]: https://github.com/icyleaf/app-info/compare/v2.4.1...v2.4.2
113
124
  [2.4.1]: https://github.com/icyleaf/app-info/compare/v2.3.0...v2.4.1
114
125
  [2.3.0]: https://github.com/icyleaf/app-info/compare/v2.2.0...v2.3.0
data/README.md CHANGED
@@ -82,7 +82,7 @@ ipa.bundle_id
82
82
 
83
83
  # get app icons
84
84
  ipa.icons
85
- # => [{:name=>"AppIcon29x29@2x~ipad.png", :file=>"/var/folders/mb/8cm0fz4d499968yss9y1j8bc0000gp/T/d20160728-69669-1xnub30/AppInfo-ios-a5369339399e62046d7d59c52254dac6/Payload/bundle.app/AppIcon29x29@2x~ipad.png", :dimensions=>[58, 58]}, ...]
85
+ # => [{:name=>"AppIcon29x29@2x~ipad.png", :file=>"/var/folders/mb/8cm0fz4d499968yss9y1j8bc0000gp/T/d20160728-69669-1xnub30/AppInfo-ios-a5369339399e62046d7d59c52254dac6/Payload/bundle.app/AppIcon29x29@2x~ipad.png"}, ...]
86
86
 
87
87
  # get provisioning profile devices
88
88
  ipa.devices
@@ -239,6 +239,11 @@ apk.tv?
239
239
  apk.wear?
240
240
  ```
241
241
 
242
+ ## Best Practice
243
+
244
+ - [fastlane-plugin-app_info](https://github.com/icyleaf/fastlane-plugin-app_info): fastlane plugin
245
+ - [zealot](https://github.com/tryzealot/zealot/): Over The Air Server for deployment of Android and iOS apps
246
+
242
247
  ## Development
243
248
 
244
249
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
@@ -247,7 +252,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
247
252
 
248
253
  ## Contributing
249
254
 
250
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/app-info. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
255
+ Bug reports and pull requests are welcome on GitHub at https://github.com/icyleaf/app-info. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
251
256
 
252
257
  ## License
253
258
 
@@ -58,8 +58,7 @@ module AppInfo
58
58
  Dir.glob(File.join(@app_path, "#{items}*")).find_all.each do |file|
59
59
  dict = {
60
60
  name: File.basename(file),
61
- file: file,
62
- dimensions: ImageSize.path(file).size
61
+ file: file
63
62
  }
64
63
 
65
64
  @icons.push(dict)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AppInfo
4
- VERSION = '2.4.2'
4
+ VERSION = '2.4.3'
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.4.2
4
+ version: 2.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - icyleaf
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-04-06 00:00:00.000000000 Z
11
+ date: 2021-04-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: CFPropertyList