app-info 2.5.1 → 2.5.2

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: 927106ea47092b85df2f8e1c88321d8949da8d7c9e7bc712d907e89932cd4072
4
- data.tar.gz: f2d5acb9cd901f7af25307ed385d8d276e19d04e5e02644e3ea15e9698d5363a
3
+ metadata.gz: 356bbacf5f30701fcda88a5e72563926a2ef59c43623eb11b6417d1085cfde0d
4
+ data.tar.gz: c877773f464fb2af488f2693f932649aa45362fc4235175b16f118798774b03b
5
5
  SHA512:
6
- metadata.gz: af27de4ad9737a4d87bad27f910b010f42338586ed02ecfd16414997ff8a07e78a1a3b681ca9ccdba6944d6f306cd47cd9730f3bd73a453ce43fe1d280085030
7
- data.tar.gz: 8d11fac42b959acc59e9abd71db8c204866ad11e5bd6a3fb746883284f9d1032e959e5636411d6ef4c3e69d020eb42f99c8df04c381c8d295bd063f9bc447f56
6
+ metadata.gz: c9a2213cd4b2022dcde3767dac5f53090bb7d95714fba75fede8399cd8f4aedc6c46a697930122738e3894b041de60a736f0b7398a54f971751730bf9ee0708a
7
+ data.tar.gz: d5f223e1ff4e73f542b50f10e2828cf442104f8228b2bc19a0fecdb8d0042c07420994d9afa9cd7d1c7df47a3ed76ea159006cb8cc73bbfcb5f05b4447fec318
data/CHANGELOG.md CHANGED
@@ -9,6 +9,12 @@ 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.5.2] (2021-04-15)
13
+
14
+ ### Fixed
15
+
16
+ - Fix handle get Android application name from manifest first [#29](https://github.com/icyleaf/app_info/issues/29) thanks @[DreamPWJ](https://github.com/DreamPWJ)
17
+
12
18
  ## [2.5.1] (2021-04-14)
13
19
 
14
20
  ### Add
@@ -124,8 +130,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
124
130
 
125
131
  - Updated dependency of CFPropertly list be a range between 2.3.4. (thanks @[cschroed](https://github.com/cschroed))
126
132
 
127
- [Unreleased]: https://github.com/icyleaf/app-info/compare/v2.5.1..HEAD
128
- [2.5.0]: https://github.com/icyleaf/app-info/compare/v2.4.3...v2.5.1
133
+ [Unreleased]: https://github.com/icyleaf/app-info/compare/v2.5.2..HEAD
134
+ [2.5.2]: https://github.com/icyleaf/app-info/compare/v2.5.1...v2.5.2
135
+ [2.5.1]: https://github.com/icyleaf/app-info/compare/v2.4.3...v2.5.1
129
136
  [2.4.3]: https://github.com/icyleaf/app-info/compare/v2.4.2...v2.4.3
130
137
  [2.4.2]: https://github.com/icyleaf/app-info/compare/v2.4.1...v2.4.2
131
138
  [2.4.1]: https://github.com/icyleaf/app-info/compare/v2.3.0...v2.4.1
data/lib/app_info/apk.rb CHANGED
@@ -48,7 +48,7 @@ module AppInfo
48
48
  alias build_version version_code
49
49
 
50
50
  def name
51
- resource.find('@string/app_name')
51
+ manifest.label || resource.find('@string/app_name')
52
52
  end
53
53
 
54
54
  def device_type
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AppInfo
4
- VERSION = '2.5.1'
4
+ VERSION = '2.5.2'
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.5.1
4
+ version: 2.5.2
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-14 00:00:00.000000000 Z
11
+ date: 2021-04-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: CFPropertyList