From d8b85b757647f61e433d40337ac6175bf103cd1b Mon Sep 17 00:00:00 2001 From: KATO Kanryu Date: Mon, 23 Sep 2019 23:47:19 +0900 Subject: [PATCH] faster extracting 7z archives, support for more archive formats - Significant improvement in support for solid compressed archives - Attempt to expand by 7z about the various archives on supported by SevenZip(7z) - support to delete archives on viewing by the app - Bound on the right side was added to the context menu. - COPYING of ResizeHalf - bugfixed: Greek translation was disabled --- QuickViewer/QuickViewer.pro | 2 +- fileloader/fileloader7zarchive.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/QuickViewer/QuickViewer.pro b/QuickViewer/QuickViewer.pro index 8c030556..a923d3b0 100644 --- a/QuickViewer/QuickViewer.pro +++ b/QuickViewer/QuickViewer.pro @@ -16,7 +16,7 @@ contains(DEFINES, QV_WITHOUT_OPENGL) { QT += opengl opengl-private } -VERSION = 1.1.6 +VERSION = 1.1.7 TARGET = QuickViewer TEMPLATE = app diff --git a/fileloader/fileloader7zarchive.cpp b/fileloader/fileloader7zarchive.cpp index a232331d..da86aae6 100644 --- a/fileloader/fileloader7zarchive.cpp +++ b/fileloader/fileloader7zarchive.cpp @@ -391,7 +391,7 @@ class FileLoader7zArchivePrivate : public QObject , m_hasExtractedFiles(false) { m_archiveFile.setFileName(sevenzippath); - qDebug() << m_archiveFile; + //qDebug() << m_archiveFile; if(!m_archiveFile.open(QIODevice::ReadOnly)) { m_pArchive = nullptr; return;