adbkit-apkreader
Advanced tools
Comparing version 3.0.0 to 3.0.1
# Changelog | ||
## 3.0.1 (2018-04-20) | ||
### Fixes | ||
* Fixed parsing of long strings. Thanks @mingyuan-xia! | ||
## 3.0.0 (2017-09-21) | ||
@@ -4,0 +10,0 @@ |
@@ -116,3 +116,3 @@ 'use strict' | ||
if (len & 0x80) { | ||
len = (len & 0x7f) << 7 | ||
len = (len & 0x7f) << 8 | ||
len += this.readU8() | ||
@@ -126,3 +126,3 @@ } | ||
if (len & 0x8000) { | ||
len = (len & 0x7fff) << 15 | ||
len = (len & 0x7fff) << 16 | ||
len += this.readU16() | ||
@@ -129,0 +129,0 @@ } |
{ | ||
"name": "adbkit-apkreader", | ||
"version": "3.0.0", | ||
"version": "3.0.1", | ||
"description": "Extracts information from APK files.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
33874
0