From 6fccf14c06478756146e8b6956f96b97937271c1 Mon Sep 17 00:00:00 2001 From: Aorimn Date: Sun, 16 Nov 2014 18:13:24 +0100 Subject: [PATCH] Prepare for v0.4, add changelog This is past time to have a 0.4 version of dislocker. --- CHANGELOG.txt | 28 +++++++++++++++++++++++++++- src/Makefile | 4 ++-- 2 files changed, 29 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index b525e36c..5a30a75a 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,29 @@ +v0.4 -- Bugfixes: + - Installation process is now ok; + - Various crashes have been fixed; + - Some minor display errors have been fixed. + + -- Features improvement: + - Adding of the write capability on some Windows 8 encrypted volumes; + - Stealth password and recovery key in `ps' output; + - Adding `--stateok' argument to tell dislocker not to check for the BitLocker + volume state - as in 'partially decrypted', 'partially encrypted', and so on: + `- One can read partially encrypted volumes now! + + -- Notable changes: + - A brew file is now available for OSX users; + - The embedded PolarSSL library has been removed, due to licensing problems + when packaging, so users need to install PolarSSL on their own now - see + INSTALL.txt for hints on how to do it; + - The core part is now a library - dynamic shared object or dynamic library, + depending on the OS - and four binaries are now using this library. + `- The library is not yet for use by other developers, its interface is not + well enough defined yet. + `- The NOTE part of the README.txt/INSTALL.txt files lists these binaries. + + -- Portability: + - Support added for FreeBSD. + v0.3 -- Bugfixes: - One can now read from a device from /dev; @@ -7,7 +33,7 @@ v0.3 -- Bugfixes: - Code cleaned and reorganised (yes, it's a bugfix); - Better BitLocker's files handling. This is not optimal yet, as it should involve the NTFS layer, which is currently completely dislocker-independant. - + -- Features improvement: - One can write on a BitLocker encrypted volume; - Adding `--readonly' argument to deny writes on the BitLocker volume; diff --git a/src/Makefile b/src/Makefile index 3520952f..3cafbc57 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,8 +1,8 @@ PROGNAME = dislocker AUTHOR = \"Romain Coltel\" VERSION_MAJOR = 0 -VERSION_MINOR = 3 -VERSION_RELEASE = 1 +VERSION_MINOR = 4 +VERSION_RELEASE = 0 VERSION = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_RELEASE) ARCH = $(shell uname -m) OS = $(shell uname -s)