Skip to content

Commit

Permalink
* Some doc changes
Browse files Browse the repository at this point in the history
*Fix:Sort ordering disklist
  • Loading branch information
iddekingej committed Sep 18, 2016
1 parent a8b51ea commit f6db301
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 25 deletions.
34 changes: 13 additions & 21 deletions Readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Function : This program list information about all block devices in a nice GUI.
Note: This program is only for displaying information, it is not possible to mount or change the drives.
Os : Linux/KDE5 or KDE4
License : Gpl
Version : 0.6
Version : 0.7



Expand Down Expand Up @@ -94,7 +94,7 @@ It support the following type of block devices:
* BTRFS


Devices:
Disks:
* Device name
* Partition name
* Drive model
Expand Down Expand Up @@ -124,27 +124,19 @@ information(if available).
Other functions:
* Pressing the "Refresh" button will refresh the information
* Auto refresh: on (un)mount/remove medium
* Settings=>Fields: For configuring the fields shown under the "Disk" tab. (There is no field configuration for the raid and fstab tab yet)
* Double clicking the row in the "Disk" tab will show more information about the selected device
* Settings=>Fields: For configuring the fields shown under the "Disks" tab. (There is no field configuration for the raid and fstab tab yet)
And switch between tree and grid view for "Disks" tab
* Double clicking the row in the "Disks" tab will show more information about the selected device

Changes:
=======


0.6<=0.5
* Code cleanup
- Linklist iterators
- Configuration manager
* Configure which tabs are visible
* New columns:
-Start of partition
* Device details:
-Redone partition tab: Add start of partition
-Select different device
-Display scsi bus
-Display iscsi host
* Partition details:
-Navigate to device.
* Fix: free size
* Fix: raid level
* Fix: few memory leaks
0.7<=0.6
* Under disks:Treeview or grid view
* Compiles under kde4
* Device statistics
* Better navigation between partition details and device details
* Fix: Double clicking field sometimes add field twice
* Fix: Disable editing grid cells.
* Fix: Sometimes false "Mounted on different path"
4 changes: 2 additions & 2 deletions base/version.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#ifndef __VERSION_H_
#define __VERSION_H_
#define VERSION "0.6"
#endif
#define VERSION "0.7"
#endif
3 changes: 3 additions & 0 deletions gui/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,8 @@ void TMainWindow::fillDeviceTree()
}
ui.diskList->setWordWrap(false);
ui.diskList->setModel(l_model);
ui.diskList->setSortingEnabled(true);

setExpandedDevRows(l_expanded);
}

Expand Down Expand Up @@ -479,6 +481,7 @@ TMainWindow::TMainWindow(QWidget *p_parent):QMainWindow(p_parent)
tabsVisible[2]=nullptr;
tabsVisible[3]=nullptr;
tabsVisible[4]=nullptr;
ui.diskList->sortByColumn(0,Qt::AscendingOrder);
setVisibleTabs();

}
Expand Down
4 changes: 2 additions & 2 deletions ui/main.ui
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
<set>QAbstractItemView::NoEditTriggers</set>
</property>
<property name="sortingEnabled">
<bool>true</bool>
<bool>false</bool>
</property>
<property name="expandsOnDoubleClick">
<bool>false</bool>
Expand Down Expand Up @@ -278,7 +278,7 @@
<x>0</x>
<y>0</y>
<width>846</width>
<height>30</height>
<height>29</height>
</rect>
</property>
<widget class="QMenu" name="menuFile">
Expand Down

0 comments on commit f6db301

Please sign in to comment.