From 0e046b73de8bb22998998cfd704416a6a6681fd7 Mon Sep 17 00:00:00 2001 From: nowrep Date: Thu, 23 Aug 2012 18:40:56 +0200 Subject: [PATCH] Don't show size of folders in directory listing. - updated CHANGELOG --- CHANGELOG | 25 +++++++++++++++++++ .../schemehandlers/fileschemehandler.cpp | 2 +- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index d3650a62b..53fd7ed89 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,28 @@ +Version 1.3.5 + * not yet released + * new Persion translation + * option to remove web search bar + * warning user when removing page from speed dial + * option to align pages to center in speed dial + * added shortcut for Clear private data + * new options in AdBlock menu to disable it for domain and for single page + * added option to disable search suggestions in search bar + * added option to choose what to suggest in address bar + * Save x as ... actions will always show file dialog + * possibility to choose to use external download manager on every download + * remember last section in preferences + * new User Agent manager lets you set User Agent per site + * new restore session page lets you choose which tabs you want to restore + * new scheme handler for file protocol allows browsing through directories + * fixed visibility of navigation bar in fullscreen + * fixed bad position of add tab button when there is a lot of tabs + * fixed gui with RTL languages + * fixed issue with infinite opening mailto links + * fixed issue with showing warning after creating new profile + * fixed clearing highlight when search text not found + * fixed closing bookmarks menu when menu toolbar is hidden + * fixed occasional crashes when closing tab while it is still loading + Version 1.3.1 * released 16 July 2012 * Ctrl+= shortcut for + zoom in webview diff --git a/src/lib/network/schemehandlers/fileschemehandler.cpp b/src/lib/network/schemehandlers/fileschemehandler.cpp index 76a8f591c..866b7dea1 100644 --- a/src/lib/network/schemehandlers/fileschemehandler.cpp +++ b/src/lib/network/schemehandlers/fileschemehandler.cpp @@ -189,7 +189,7 @@ QString FileSchemeReply::loadDirectory() line += "\">"; line += info.fileName(); line += ""; - line += qz_fileSizeToString(info.size()); + line += info.isDir() ? "" : qz_fileSizeToString(info.size()); line += ""; line += info.lastModified().toString("dd.MM.yyyy"); line += "";