aboutsummaryrefslogtreecommitdiff
path: root/lumina-fileinfo/MainUI.cpp
Commit message (Collapse)AuthorAge
* Replace the "tabBarAutoHide" setting with a manual check/hide of the tab bar ↵Ken Moore2015-10-28
| | | | in lumina-fileinfo. This reduces the minimum Qt version from 5.4 back down to about 5.2
* Avoid follow symlinks for size information.Carlos Bohórquez2015-09-08
| | | | | | | | | Qt follows symlinks in Unix when size function is used. As a result, if you have several symlinks that points to big files, the information will be "wrong". It's better to avoid call size on symlinks and lost several hundred of bytes instead of get the size of the same file several times. If needed, lstat systemcall can be used to get symlinks real size.
* Solves the issue 11073Carlos Bohórquez2015-09-08
| | | | | Now directories displays the size correctly. In addition, number of files and directories are displayed too.
* Completely overhaul lumina-fileinfo so that it is just a front-end to the ↵Ken Moore2015-08-31
XDGDesktop structure now, instead of using the regex's and template files like before. This also makes it easier to update later, since there are more information fields in the XDGDesktop structure than lumina-fileinfo currently handles (TryExec, Actions, ShowIn, etc).
bgstack15