partitioninfo
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -34,3 +34,3 @@ var BOOT_RECORD_SIZE, MasterBootRecord, Promise, fs; | ||
result = new Buffer(BOOT_RECORD_SIZE); | ||
return fs.openAsync(image, 'r+').then(function(fd) { | ||
return fs.openAsync(image, 'r').then(function(fd) { | ||
return fs.readAsync(fd, result, 0, BOOT_RECORD_SIZE, position)["return"](fd); | ||
@@ -37,0 +37,0 @@ }).then(function(fd) { |
@@ -6,4 +6,10 @@ # Change Log | ||
## [1.0.2] - 2015-11-24 | ||
## [1.1.1] - 2015-04-10 | ||
### Changed | ||
- Remove unnecessary write fs open flag. | ||
## [1.1.0] - 2015-04-04 | ||
### Added | ||
@@ -13,2 +19,4 @@ | ||
## [1.0.2] - 2015-11-24 | ||
### Changed | ||
@@ -24,4 +32,5 @@ | ||
[1.1.1]: https://github.com/resin-io-modules/partitioninfo/compare/v1.1.0...v1.1.1 | ||
[1.1.0]: https://github.com/resin-io-modules/partitioninfo/compare/v1.0.2...v1.1.0 | ||
[1.0.2]: https://github.com/resin-io-modules/partitioninfo/compare/v1.0.1...v1.0.2 | ||
[1.0.1]: https://github.com/resin-io-modules/partitioninfo/compare/v1.0.0...v1.0.1 |
{ | ||
"name": "partitioninfo", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "Get information about a partition from an image file", | ||
@@ -5,0 +5,0 @@ "main": "build/partitioninfo.js", |
Sorry, the diff of this file is not supported yet
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
36993