File tree Expand file tree Collapse file tree 7 files changed +10
-11
lines changed
Expand file tree Collapse file tree 7 files changed +10
-11
lines changed Original file line number Diff line number Diff line change 1- # KWipe 3.1.1
1+ # KWipe 3.1.2
22### KWipe is a secure erase (wipe) application, completely written in PyQt!
33
44![ KWipe 3.1.0] ( https://github.com/PyCoder/KWipe/blob/master/screenshots/difference.png?raw=true )
Original file line number Diff line number Diff line change 1- 3.1.1
1+ 3.1.2
Original file line number Diff line number Diff line change 8383 <bool >true</bool >
8484 </attribute >
8585 <attribute name =" verticalHeaderVisible" >
86- <bool >false </bool >
86+ <bool >true </bool >
8787 </attribute >
8888 <attribute name =" verticalHeaderHighlightSections" >
8989 <bool >false</bool >
Original file line number Diff line number Diff line change @@ -186,4 +186,8 @@ Fixed glitch in about.ui
186186
1871873.1.1
188188Fixed catching IOError and OSError in main.py thread.run()
189- Added error handeling in case the directio.write() crashes
189+ Added error handeling in case the directio.write() crashes
190+
191+ 3.1.2
192+ Added vertical header
193+ Removed O_SYNC and O_NONBLOCKING
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -357,7 +357,7 @@ def run(self):
357357 limit = int (self .size / _MEGABYTE ) * _MEGABYTE
358358 rest = int (self .size - limit )
359359
360- fd = os .open (self .device , os .O_RDWR | os .O_DIRECT | os . O_SYNC | os . O_NONBLOCK )
360+ fd = os .open (self .device , os .O_RDWR | os .O_DIRECT )
361361
362362 # Set current position like seek()
363363 os .lseek (fd , self .position , os .SEEK_SET )
Original file line number Diff line number Diff line change 1717#
1818# Author(s): Fabian Di Milia <fabian.dimilia@gmail.com>
1919
20- VERSION = '3.1.1 '
20+ VERSION = '3.1.2 '
2121URL = 'https://raw.githubusercontent.com/PyCoder/KWipe/master/RELEASE'
You can’t perform that action at this time.
0 commit comments