app-info 2.4.2 → 2.4.3
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 +12 -1
- data/README.md +7 -2
- data/lib/app_info/ipa/info_plist.rb +1 -2
- 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: d3a8120207a6e2e38bc41581e3fb1bfa8f181d9262cd5f5f2b2ef7a416bd2dd7
|
|
4
|
+
data.tar.gz: 00e5f7124fc1152494ab159baf8a8b737ab4651dab5e8f173c32d3a726a0836f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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"
|
|
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/
|
|
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
|
|
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.4.
|
|
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-
|
|
11
|
+
date: 2021-04-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: CFPropertyList
|