Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/mft.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md5
-rw-r--r--src/attribute/mod.rs6
2 files changed, 11 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1fb0869..878e430 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## [0.5.1] - 2020-02-06
+
+### Fixed
+- Added support for additional MFT attributes (parsed as raw streams)
+
## [0.5.0] - 2020-01-06
### Changed
diff --git a/src/attribute/mod.rs b/src/attribute/mod.rs
index e50f21c..8ac11ce 100644
--- a/src/attribute/mod.rs
+++ b/src/attribute/mod.rs
@@ -149,6 +149,12 @@ pub enum MftAttributeType {
BITMAP = 0xB0_u32,
/// The reparse point data.
ReparsePoint = 0xC0_u32,
+ /// Used for backward compatibility with OS/2 applications (HPFS)
+ EaInformation = 0xD0_u32,
+ /// Used for backward compatibility with OS/2 applications (HPFS)
+ EA = 0xE0_u32,
+ /// Keys and other information about encrypted attributes (NTFS 3.0+; Windows 2000+)
+ LoggedUtilityStream = 0x100_u32,
}
bitflags! {