From 753e758b0a72472730e5c2d1cb45efd068bb9bfd Mon Sep 17 00:00:00 2001 From: PartialVolume Date: Thu, 28 Oct 2021 23:34:46 +0100 Subject: [PATCH] Update files for 0.32 release Confirmed the following release files were/are updated. configure.ac CHANGELOG.md nwipe.1 version.c --- CHANGELOG.md | 9 +++++++++ configure.ac | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a1259d55..171209a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ RELEASE NOTES ============= +v0.32 +----------------------- +- Add ones (0xFF) wipe to the methods. Renamed Zero Fill to Fill with Zeros and the new ones wipe, is called Fill with Ones. +- Add ones verication to the methods. Renamed Verify Blank to Verify Zeros (0x00) and the new verification is called Verify Ones (0xFF). +- Move method information from below the list of methods to the right of the method list. This allows better use of the screen space by allowing more methods to be added to the list, especially relevant to nwipe running as a standalone application on small distros such as shredos 2020 in frame buffer mode. +- Removed the old DBAN syslinux.cfg configuration hints as not relevant to nwipe. See nwipe --help or man nwipe for command line options. +- Add fdatasync errors to the error summary table. +- During a wipe, you can now toggle between dark screen, blank screen and default blue screen by repeatedly pressing the b key. Dark screen, which is grey text on black background has been introduced to prevent TFT/LCD image persistence on monitors that are sensitive to that issue. + v0.31 ----------------------- - Blanking disabled in GUI for OPS2 (mandatory requirement of standard). [#326](https://github.com/martijnvanbrummelen/nwipe/pull/326) diff --git a/configure.ac b/configure.ac index a3e14bea..9b142b02 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.64]) -AC_INIT([nwipe], [0.31], [git@brumit.nl]) +AC_INIT([nwipe], [0.32], [git@brumit.nl]) AM_INIT_AUTOMAKE(foreign subdir-objects) AC_OUTPUT(Makefile src/Makefile man/Makefile) AC_CONFIG_SRCDIR([src/nwipe.c])