- 20 Oct, 2019 1 commit
-
-
Elvis Angelaccio authored
Ark can only compress local files. BUG: 409835 FIXED-IN: 19.08.3
-
- 19 Jun, 2019 1 commit
-
-
Laurent Montel authored
-
- 25 Nov, 2018 1 commit
-
-
Elvis Angelaccio authored
These days Qt offers the QT_MESSAGE_PATTERN env variable, so function names can be automatically added to each debug output line using the `%{function}` placeholder.
-
- 23 Jul, 2017 1 commit
-
-
Elvis Angelaccio authored
Commit 6865cef0 broke drags of entries for read-only archives. Disabling drops should not disable drags as well. Closes T6566
-
- 01 Jun, 2017 1 commit
-
-
Elvis Angelaccio authored
Add a slot in ArchiveView that the Part can just connect to, without the need to figure out which is the correct model to call index() on. CCBUG: 379802
-
- 20 Dec, 2016 1 commit
-
-
Elvis Angelaccio authored
GIT_SILENT
-
- 08 Nov, 2016 1 commit
-
-
Elvis Angelaccio authored
ArchiveModel now uses the `DoNotNotifyView` behavior when listing, which means the `columnsInserted` signal was never emitted and `Part::adjustColumns()` never called. This slot was not necessary in the first place, we can just move its code to the ArchiveView constructor. Differential Revision: D3281
-
- 11 Oct, 2016 1 commit
-
-
Elvis Angelaccio authored
-
- 19 Sep, 2016 1 commit
-
-
Elvis Angelaccio authored
This fixes a small regression introduced by 1f075366.
-
- 15 Sep, 2016 2 commits
-
-
Elvis Angelaccio authored
-
Elvis Angelaccio authored
ArchiveView was accepting drops events unconditionally, overriding the MainWindow's ones. This resulted in a crash when the ArchiveView was empty. Now we initially disable drop events, so that we can actually open an archive by dropping it to any position in the Ark window. BUG: 368807 FIXED-IN: 16.08.2
-
- 15 Aug, 2016 1 commit
-
-
Vladyslav Batyrenko authored
See: https://phabricator.kde.org/T917
-
- 15 Oct, 2015 1 commit
-
-
Ragnar Thomsen authored
This macro was introduced in ECM 5.14.0 and generates logging category declarations. This removes the necessity of Q_LOGGING_CATEGORY calls in cpp files. A header with Q_DECLARE_LOGGING_CATEGORY is automatically generated, so the old logging.h file can be removed. Also the identifier is now ARK everywhere, so all qCDebug() should be qCDebug(ARK). This bumps the required dep version for ECM to 5.14.0.
-
- 10 Sep, 2015 1 commit
-
-
Ragnar Thomsen authored
This commit implements multi-selection drag'n'drop extraction. This is used when dragging multiple files from Ark to e.g. Dolphin for extraction. It's based partially on work done by Raphael in the multiple-dnd-selection git branch. Dragged files are extracted without path. Dragged folders are extracted without path, but with all folders/files beneath them extracted with relative path (i.e. path beneath the selected folder). A struct called FileRootNodePair is added to Kerfuffle::Archive, which contains two strings (the filename with path and a root node). A FileRootNodePair is passed for each entry to be extracted in a QVariantList to ArchiveModel::extractFiles(), which creates the ExtractJob. All children of folders are added to the QVariantList. The QVariantList is in turn passed to CliPlugin::copyFiles and hence LibArchiveInterface::copyFiles(). The latter is modified to remove the specific rootnode from each file when extracting. The CLI plugins, e.g. clizip and clirar, still extract with full path, due to not supporting individual RootNodes. However, this is a separate issue and should be fixed separately. BUG: 187152 FIXED-IN: 15.08.1 REVIEW: 124018
-
- 22 Aug, 2015 1 commit
-
-
Ragnar Thomsen authored
This is recommended by krazy2.
-
- 12 Jul, 2015 1 commit
-
-
Raphael Kubo da Costa authored
There is no point in keeping dead code in the tree. In this case, however, instead of getting rid of it it makes more sense to just uncomment out most calls: most of them were commented out during the port to KF5 in commits such as efe61f23 ("Port to qDebug") and 58b55d1a ("--kdelibs4support, extraction fixes"). A couple of comments were actually removed because they were also commented out in the KDE4 code.
-
- 18 May, 2015 1 commit
-
-
Ragnar Thomsen authored
Use QLoggingCategory for output/logging. Four categories are defined: main, kerfuffle, kerfuffle_plugins and part. By default only qWarning and higher are output to terminal. To enable qDebug output, set the environment variable QT_LOGGING_RULES=ark.*.debug=true
-
- 30 Oct, 2014 1 commit
-
-
Laurent Montel authored
-
- 15 Oct, 2014 1 commit
-
-
Lukáš Tinkl authored
-
- 14 Oct, 2014 1 commit
-
-
Lukáš Tinkl authored
ark can now successfully extract all archives; adding to up next :)
-
- 08 Oct, 2014 2 commits
-
-
Arnold Dumas authored
-
Laurent Montel authored
-
- 23 Aug, 2014 1 commit
-
-
Bhushan Shah authored
-
- 07 Aug, 2014 1 commit
-
-
Raphael Kubo da Costa authored
The commit being reverted seems to work fine for the ZIP and LHA backends, but for libarchive and RAR it can extract files with the wrong name, a varying hierarchy depending on which of the selected entries is being dragged or sometimes even leave selected entries out. While it is certainly bad to go back to the previous state, it is worse to have this working at varying degrees in each backend, the worst case including partial extraction with wrong names. This reverts commit 52ac4aea. CCBUG: 187152
-
- 06 Aug, 2014 1 commit
-
-
REVIEW: 110672 BUGS: 187152 FIXED-IN: 4.14.0
-
- 03 Dec, 2011 1 commit
-
-
Raphael Kubo da Costa authored
This was removed in 3a3445e0 and caused the following situation: one drags a file out of Ark and all the columns but the file name one are deselected.
-
- 31 Jul, 2011 1 commit
-
-
Laurent Montel authored
svn path=/trunk/KDE/kdeutils/ark/; revision=1244154
-
- 19 Jun, 2011 1 commit
-
-
Raphael Kubo da Costa authored
svn path=/trunk/KDE/kdeutils/ark/; revision=1237561
-
- 18 Oct, 2010 1 commit
-
-
Raphael Kubo da Costa authored
* Add {}'s in all if clauses * Remove superfluous extra lines * Remove extra whitespace before trailing ;'s * While at it, remove some of the extra whitespace that montel's commits have introduced svn path=/trunk/KDE/kdeutils/ark/; revision=1186941
-
- 17 Oct, 2010 1 commit
-
-
Raphael Kubo da Costa authored
SVN_SILENT svn path=/trunk/KDE/kdeutils/ark/; revision=1186828
-
- 27 Sep, 2010 1 commit
-
-
Laurent Montel authored
svn path=/trunk/KDE/kdeutils/ark/; revision=1180383
-
- 29 Aug, 2010 1 commit
-
-
Raphael Kubo da Costa authored
Forward-port of r1169696. SVN_SILENT svn path=/trunk/KDE/kdeutils/ark/; revision=1169697
-
- 20 Mar, 2010 1 commit
-
-
Harald Hvaal authored
svn path=/trunk/KDE/kdeutils/ark/; revision=1105483
-
- 10 Nov, 2009 3 commits
-
-
Raphael Kubo da Costa authored
svn path=/trunk/KDE/kdeutils/ark/; revision=1046968
-
Raphael Kubo da Costa authored
svn path=/trunk/KDE/kdeutils/ark/; revision=1046966
-
Raphael Kubo da Costa authored
svn path=/trunk/KDE/kdeutils/ark/; revision=1046965
-
- 25 Jun, 2009 1 commit
-
-
Raphael Kubo da Costa authored
when calling kDebug(). svn path=/trunk/KDE/kdeutils/ark/; revision=987309
-
- 12 Jun, 2009 1 commit
-
-
Raphael Kubo da Costa authored
svn path=/trunk/KDE/kdeutils/ark/; revision=980565
-
- 27 May, 2009 1 commit
-
-
Raphael Kubo da Costa authored
It was made obsolete by the commits that checked for single and double-click settings. svn path=/trunk/KDE/kdeutils/ark/; revision=973417
-
- 16 May, 2009 1 commit
-
-
Raphael Kubo da Costa authored
which automatically resizes to fit all names. Ark automatically resizes the columns to best fit when the archive is first loaded. BUG: 192237 svn path=/trunk/KDE/kdeutils/ark/; revision=968552
-