Skip to content

Commit 3a1a13f

Browse files
authored
Merge pull request #7 from PyCoder/development
Development
2 parents 7894fe9 + e9b0d93 commit 3a1a13f

File tree

7 files changed

+10
-11
lines changed

7 files changed

+10
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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)

RELEASE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.1.1
1+
3.1.2

share/kwipe/Ui/kwipe.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
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>

share/kwipe/docs/changelog.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,4 +186,8 @@ Fixed glitch in about.ui
186186

187187
3.1.1
188188
Fixed 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

share/kwipe/docs/credits.txt

Lines changed: 0 additions & 5 deletions
This file was deleted.

share/kwipe/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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)

share/kwipe/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
#
1818
# Author(s): Fabian Di Milia <fabian.dimilia@gmail.com>
1919

20-
VERSION = '3.1.1'
20+
VERSION = '3.1.2'
2121
URL = 'https://raw.githubusercontent.com/PyCoder/KWipe/master/RELEASE'

0 commit comments

Comments
 (0)