Comparing version 0.3.0 to 0.3.1
# Changelog | ||
## v0.3.1 | ||
- Added missing string table rounding up for `VersionInfo` (#13, thanks to @AlexanderOMara) | ||
## v0.3.0 | ||
@@ -8,2 +12,3 @@ | ||
- (Internal change) Updated package dependencies for developments | ||
- TypeScript version is updated to 3.7.x, so the type definitions might be incompatible for older version of TypeScript (especially <3.4.x) | ||
@@ -10,0 +15,0 @@ ## v0.2.2 |
@@ -109,3 +109,3 @@ "use strict"; | ||
} | ||
offset = childData[0]; | ||
offset = functions_1.roundUp(childData[0], 4); | ||
}; | ||
@@ -130,3 +130,3 @@ while (offset < last) { | ||
if (view.getUint16(offset + 4, true) !== 0) { | ||
offset += childDataLen; | ||
offset += functions_1.roundUp(childDataLen, 4); | ||
continue; | ||
@@ -133,0 +133,0 @@ } |
@@ -1,2 +0,2 @@ | ||
declare const _default: "0.3.0"; | ||
declare const _default: "0.3.1"; | ||
export default _default; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = '0.3.0'; | ||
exports.default = '0.3.1'; |
{ | ||
"name": "resedit", | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
"engines": { | ||
@@ -5,0 +5,0 @@ "node": ">=10", |
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
184386