├── .github └── workflows │ └── CI.yml ├── .gitignore ├── .gitmodules ├── 3rdparty └── ankerl │ └── unordered_dense.h ├── LICENSE ├── README.md ├── extras └── win │ └── natvis │ └── file_commander.natvis ├── file-commander-core ├── config.pri ├── core-tests │ ├── core-tests.pro │ ├── filecomparator │ │ ├── filecomparator.pro │ │ └── filecomparator_test.cpp │ ├── filesystemobject-high-level │ │ ├── filesystemobject-high-level.pro │ │ └── fso_test_high_level.cpp │ ├── filesystemobject │ │ ├── QDir_Test │ │ ├── QFileInfo_Test │ │ ├── filesystemobject.pro │ │ ├── fso_test.cpp │ │ ├── qdir_test.cpp │ │ ├── qdir_test.h │ │ ├── qfileinfo_test.cpp │ │ └── qfileinfo_test.h │ ├── operationperformer │ │ ├── operationperformer.pro │ │ ├── operationperformertest.cpp │ │ └── test_folder │ │ │ ├── 1 │ │ │ ├── 1 │ │ │ ├── 2 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ │ ├── 1 │ │ │ │ │ ├── .conf │ │ │ │ │ └── 2.txt │ │ │ │ ├── .conf │ │ │ │ └── 2.txt │ │ │ ├── .conf │ │ │ └── 2.txt │ │ │ └── a │ │ │ ├── 1 │ │ │ ├── 2 │ │ │ ├── 1 │ │ │ ├── 2 │ │ │ │ ├── 1 │ │ │ │ ├── .conf │ │ │ │ └── 2.txt │ │ │ ├── .conf │ │ │ └── 2.txt │ │ │ ├── .conf │ │ │ ├── 2.txt │ │ │ └── b │ │ │ ├── 1 │ │ │ ├── .conf │ │ │ ├── 2.txt │ │ │ └── c │ │ │ ├── 1 │ │ │ ├── .conf │ │ │ └── 2.txt │ └── test-utils │ │ ├── src │ │ ├── catch2_utils.hpp │ │ ├── cfolderenumeratorrecursive.cpp │ │ ├── cfolderenumeratorrecursive.h │ │ ├── crandomdatagenerator.cpp │ │ ├── crandomdatagenerator.h │ │ ├── ctestfoldergenerator.cpp │ │ ├── ctestfoldergenerator.h │ │ ├── foldercomparator.cpp │ │ ├── foldercomparator.h │ │ ├── qt_helpers.cpp │ │ └── qt_helpers.hpp │ │ └── test-utils.pro ├── core_project_suppressions.cfg ├── file-commander-core.pro ├── include │ └── settings.h ├── src │ ├── ccontroller.cpp │ ├── ccontroller.h │ ├── cfilemanipulator.cpp │ ├── cfilemanipulator.h │ ├── cfilesystemobject.cpp │ ├── cfilesystemobject.h │ ├── cpanel.cpp │ ├── cpanel.h │ ├── detail │ │ ├── file_list_hashmap.h │ │ └── hashmap_helpers.h │ ├── directoryscanner.cpp │ ├── directoryscanner.h │ ├── diskenumerator │ │ ├── cvolumeenumerator.cpp │ │ ├── cvolumeenumerator.h │ │ ├── cvolumeenumerator_impl_freebsd.cpp │ │ ├── cvolumeenumerator_impl_linux.cpp │ │ ├── cvolumeenumerator_impl_mac.cpp │ │ ├── cvolumeenumerator_impl_win.cpp │ │ ├── volumeinfo.hpp │ │ └── volumeinfohelper.hpp │ ├── favoritelocationslist │ │ ├── cfavoritelocations.cpp │ │ └── cfavoritelocations.h │ ├── filecomparator │ │ ├── cfilecomparator.cpp │ │ └── cfilecomparator.h │ ├── fileoperationresultcode.h │ ├── fileoperations │ │ ├── coperationperformer.cpp │ │ ├── coperationperformer.h │ │ └── operationcodes.h │ ├── filesearchengine │ │ ├── cfilesearchengine.cpp │ │ └── cfilesearchengine.h │ ├── filesystemhelperfunctions.cpp │ ├── filesystemhelperfunctions.h │ ├── filesystemhelpers │ │ ├── filesystemhelpers.cpp │ │ └── filesystemhelpers.hpp │ ├── filesystemwatcher │ │ ├── cfilesystemwatchertimerbased.cpp │ │ ├── cfilesystemwatchertimerbased.h │ │ ├── cfilesystemwatcherwindows.cpp │ │ └── cfilesystemwatcherwindows.h │ ├── iconprovider │ │ ├── ciconprovider.cpp │ │ ├── ciconprovider.h │ │ ├── ciconproviderimpl.cpp │ │ └── ciconproviderimpl.h │ ├── pluginengine │ │ ├── cpluginengine.cpp │ │ ├── cpluginengine.h │ │ └── pluginengine.pri │ ├── plugininterface │ │ ├── cfilecommanderplugin.cpp │ │ ├── cfilecommanderplugin.h │ │ ├── cfilecommandertoolplugin.cpp │ │ ├── cfilecommandertoolplugin.h │ │ ├── cfilecommanderviewerplugin.cpp │ │ ├── cfilecommanderviewerplugin.h │ │ ├── cpluginproxy.cpp │ │ ├── cpluginproxy.h │ │ ├── cpluginwindow.cpp │ │ ├── cpluginwindow.h │ │ ├── plugin_export.h │ │ ├── plugininterface.pri │ │ └── wcx │ │ │ ├── cwcxpluginhost.cpp │ │ │ ├── cwcxpluginhost.h │ │ │ ├── cwcxpluginhost_stub.h │ │ │ └── wcxhead.h │ └── shell │ │ ├── cshell.cpp │ │ ├── cshell.h │ │ └── cshell_mac.mm └── suppressions.cfg ├── file-commander.pro ├── file-commander.smproj ├── file-commander_solution_suppressions.cfg ├── installer ├── linux │ └── file_commander.desktop ├── mac │ └── create_dmg.sh └── windows │ ├── 3rdparty binaries │ ├── 32 │ │ ├── libcrypto-1_1.dll │ │ └── libssl-1_1.dll │ └── 64 │ │ ├── libcrypto-1_1-x64.dll │ │ └── libssl-1_1-x64.dll │ ├── create_installer.bat │ └── setup.iss ├── plugins ├── tools │ └── filecomparisonplugin │ │ ├── cfilecomparisonplugin.cpp │ │ ├── cfilecomparisonplugin.h │ │ └── filecomparisonplugin.pro └── viewer │ ├── imageviewer │ ├── imageviewer.pro │ └── src │ │ ├── cimageviewerplugin.cpp │ │ ├── cimageviewerplugin.h │ │ ├── cimageviewerwidget.cpp │ │ ├── cimageviewerwidget.h │ │ ├── cimageviewerwindow.cpp │ │ ├── cimageviewerwindow.h │ │ └── cimageviewerwindow.ui │ └── textviewer │ ├── plugin_textviewer_project_suppressions.cfg │ ├── src │ ├── cfinddialog.cpp │ ├── cfinddialog.h │ ├── cfinddialog.ui │ ├── ctexteditwithimagesupport.cpp │ ├── ctexteditwithimagesupport.h │ ├── ctextviewerplugin.cpp │ ├── ctextviewerplugin.h │ ├── ctextviewerwindow.cpp │ ├── ctextviewerwindow.h │ ├── ctextviewerwindow.ui │ ├── icons.qrc │ └── resources │ │ └── text_doc.ico │ └── textviewer.pro ├── push_repository.bat ├── push_repository.sh ├── qt-app ├── FileCommander_project_suppressions.cfg ├── file_commander.desktop ├── gui-tests │ ├── combobox │ │ ├── combobox.pro │ │ └── src │ │ │ ├── main.cpp │ │ │ ├── mainwindow.cpp │ │ │ ├── mainwindow.h │ │ │ └── mainwindow.ui │ └── gui-tests.pro ├── qt-app.pro ├── resources │ ├── app-resources.qrc │ ├── file_commander.icns │ ├── file_commander.rc │ ├── fonts │ │ └── Roboto_Mono │ │ │ ├── LICENSE.txt │ │ │ └── RobotoMono-Light.ttf │ ├── icon.ico │ └── icon.png └── src │ ├── aboutdialog │ ├── caboutdialog.cpp │ ├── caboutdialog.h │ └── caboutdialog.ui │ ├── cmainwindow.cpp │ ├── cmainwindow.h │ ├── cmainwindow.ui │ ├── favoritelocationseditor │ ├── cfavoritelocationseditor.cpp │ ├── cfavoritelocationseditor.h │ ├── cfavoritelocationseditor.ui │ ├── cnewfavoritelocationdialog.cpp │ ├── cnewfavoritelocationdialog.h │ └── cnewfavoritelocationdialog.ui │ ├── filessearchdialog │ ├── cfilessearchwindow.cpp │ ├── cfilessearchwindow.h │ └── cfilessearchwindow.ui │ ├── main.cpp │ ├── panel │ ├── columns.h │ ├── cpaneldisplaycontroller.cpp │ ├── cpaneldisplaycontroller.h │ ├── cpanelwidget.cpp │ ├── cpanelwidget.h │ ├── cpanelwidget.ui │ ├── filelistwidget │ │ ├── cfilelistfilterdialog.cpp │ │ ├── cfilelistfilterdialog.h │ │ ├── cfilelistfilterdialog.ui │ │ ├── cfilelistview.cpp │ │ ├── cfilelistview.h │ │ ├── cfocusframestyle.cpp │ │ ├── cfocusframestyle.h │ │ ├── delegate │ │ │ ├── cfilelistitemdelegate.cpp │ │ │ └── cfilelistitemdelegate.h │ │ └── model │ │ │ ├── cfilelistmodel.cpp │ │ │ ├── cfilelistmodel.h │ │ │ ├── cfilelistsortfilterproxymodel.cpp │ │ │ └── cfilelistsortfilterproxymodel.h │ ├── qflowlayout.cpp │ └── qflowlayout.h │ ├── progressdialogs │ ├── ccopymovedialog.cpp │ ├── ccopymovedialog.h │ ├── ccopymovedialog.ui │ ├── cdeleteprogressdialog.cpp │ ├── cdeleteprogressdialog.h │ ├── cdeleteprogressdialog.ui │ ├── cfileoperationconfirmationprompt.cpp │ ├── cfileoperationconfirmationprompt.h │ ├── cfileoperationconfirmationprompt.ui │ ├── cpromptdialog.cpp │ ├── cpromptdialog.h │ ├── cpromptdialog.ui │ ├── progressdialoghelpers.cpp │ └── progressdialoghelpers.h │ ├── settings │ ├── csettingspageedit.cpp │ ├── csettingspageedit.h │ ├── csettingspageedit.ui │ ├── csettingspageinterface.cpp │ ├── csettingspageinterface.h │ ├── csettingspageinterface.ui │ ├── csettingspageoperations.cpp │ ├── csettingspageoperations.h │ ├── csettingspageoperations.ui │ ├── csettingspageother.cpp │ ├── csettingspageother.h │ └── csettingspageother.ui │ └── version.h ├── sonar-project.properties ├── update_repository.bat └── update_repository.sh /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/.gitmodules -------------------------------------------------------------------------------- /3rdparty/ankerl/unordered_dense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/3rdparty/ankerl/unordered_dense.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/README.md -------------------------------------------------------------------------------- /extras/win/natvis/file_commander.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/extras/win/natvis/file_commander.natvis -------------------------------------------------------------------------------- /file-commander-core/config.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/config.pri -------------------------------------------------------------------------------- /file-commander-core/core-tests/core-tests.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/core-tests/core-tests.pro -------------------------------------------------------------------------------- /file-commander-core/core-tests/filecomparator/filecomparator.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/core-tests/filecomparator/filecomparator.pro -------------------------------------------------------------------------------- /file-commander-core/core-tests/filecomparator/filecomparator_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/core-tests/filecomparator/filecomparator_test.cpp -------------------------------------------------------------------------------- /file-commander-core/core-tests/filesystemobject-high-level/filesystemobject-high-level.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/core-tests/filesystemobject-high-level/filesystemobject-high-level.pro -------------------------------------------------------------------------------- /file-commander-core/core-tests/filesystemobject-high-level/fso_test_high_level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/core-tests/filesystemobject-high-level/fso_test_high_level.cpp -------------------------------------------------------------------------------- /file-commander-core/core-tests/filesystemobject/QDir_Test: -------------------------------------------------------------------------------- 1 | #include "qdir_test.h" 2 | -------------------------------------------------------------------------------- /file-commander-core/core-tests/filesystemobject/QFileInfo_Test: -------------------------------------------------------------------------------- 1 | #include "qfileinfo_test.h" 2 | -------------------------------------------------------------------------------- /file-commander-core/core-tests/filesystemobject/filesystemobject.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/core-tests/filesystemobject/filesystemobject.pro -------------------------------------------------------------------------------- /file-commander-core/core-tests/filesystemobject/fso_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/core-tests/filesystemobject/fso_test.cpp -------------------------------------------------------------------------------- /file-commander-core/core-tests/filesystemobject/qdir_test.cpp: -------------------------------------------------------------------------------- 1 | #include "QDir_Test" 2 | -------------------------------------------------------------------------------- /file-commander-core/core-tests/filesystemobject/qdir_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/core-tests/filesystemobject/qdir_test.h -------------------------------------------------------------------------------- /file-commander-core/core-tests/filesystemobject/qfileinfo_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/core-tests/filesystemobject/qfileinfo_test.cpp -------------------------------------------------------------------------------- /file-commander-core/core-tests/filesystemobject/qfileinfo_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/core-tests/filesystemobject/qfileinfo_test.h -------------------------------------------------------------------------------- /file-commander-core/core-tests/operationperformer/operationperformer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/core-tests/operationperformer/operationperformer.pro -------------------------------------------------------------------------------- /file-commander-core/core-tests/operationperformer/operationperformertest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/core-tests/operationperformer/operationperformertest.cpp -------------------------------------------------------------------------------- /file-commander-core/core-tests/operationperformer/test_folder/1/.conf: -------------------------------------------------------------------------------- 1 | 345 -------------------------------------------------------------------------------- /file-commander-core/core-tests/operationperformer/test_folder/1/1: -------------------------------------------------------------------------------- 1 | 123 -------------------------------------------------------------------------------- /file-commander-core/core-tests/operationperformer/test_folder/1/2.txt: -------------------------------------------------------------------------------- 1 | 268 -------------------------------------------------------------------------------- /file-commander-core/core-tests/operationperformer/test_folder/1/2/.conf: -------------------------------------------------------------------------------- 1 | 678 -------------------------------------------------------------------------------- /file-commander-core/core-tests/operationperformer/test_folder/1/2/1: -------------------------------------------------------------------------------- 1 | 456 -------------------------------------------------------------------------------- /file-commander-core/core-tests/operationperformer/test_folder/1/2/2.txt: -------------------------------------------------------------------------------- 1 | 987 -------------------------------------------------------------------------------- /file-commander-core/core-tests/operationperformer/test_folder/1/2/2/.conf: -------------------------------------------------------------------------------- 1 | 67856 -------------------------------------------------------------------------------- /file-commander-core/core-tests/operationperformer/test_folder/1/2/2/1: -------------------------------------------------------------------------------- 1 | 45678 -------------------------------------------------------------------------------- /file-commander-core/core-tests/operationperformer/test_folder/1/2/2/2.txt: -------------------------------------------------------------------------------- 1 | 98743 -------------------------------------------------------------------------------- /file-commander-core/core-tests/operationperformer/test_folder/a/.conf: -------------------------------------------------------------------------------- 1 | 345 -------------------------------------------------------------------------------- /file-commander-core/core-tests/operationperformer/test_folder/a/1: -------------------------------------------------------------------------------- 1 | 123 -------------------------------------------------------------------------------- /file-commander-core/core-tests/operationperformer/test_folder/a/2.txt: -------------------------------------------------------------------------------- 1 | 268 -------------------------------------------------------------------------------- /file-commander-core/core-tests/operationperformer/test_folder/a/2/.conf: -------------------------------------------------------------------------------- 1 | 678 -------------------------------------------------------------------------------- /file-commander-core/core-tests/operationperformer/test_folder/a/2/1: -------------------------------------------------------------------------------- 1 | 456 -------------------------------------------------------------------------------- /file-commander-core/core-tests/operationperformer/test_folder/a/2/2.txt: -------------------------------------------------------------------------------- 1 | 987 -------------------------------------------------------------------------------- /file-commander-core/core-tests/operationperformer/test_folder/a/2/2/.conf: -------------------------------------------------------------------------------- 1 | 67856 -------------------------------------------------------------------------------- /file-commander-core/core-tests/operationperformer/test_folder/a/2/2/1: -------------------------------------------------------------------------------- 1 | 45678 -------------------------------------------------------------------------------- /file-commander-core/core-tests/operationperformer/test_folder/a/2/2/2.txt: -------------------------------------------------------------------------------- 1 | 98743 -------------------------------------------------------------------------------- /file-commander-core/core-tests/operationperformer/test_folder/a/b/.conf: -------------------------------------------------------------------------------- 1 | 345 -------------------------------------------------------------------------------- /file-commander-core/core-tests/operationperformer/test_folder/a/b/1: -------------------------------------------------------------------------------- 1 | 123 -------------------------------------------------------------------------------- /file-commander-core/core-tests/operationperformer/test_folder/a/b/2.txt: -------------------------------------------------------------------------------- 1 | 268 -------------------------------------------------------------------------------- /file-commander-core/core-tests/operationperformer/test_folder/a/b/c/.conf: -------------------------------------------------------------------------------- 1 | 345 -------------------------------------------------------------------------------- /file-commander-core/core-tests/operationperformer/test_folder/a/b/c/1: -------------------------------------------------------------------------------- 1 | 123 -------------------------------------------------------------------------------- /file-commander-core/core-tests/operationperformer/test_folder/a/b/c/2.txt: -------------------------------------------------------------------------------- 1 | 268 -------------------------------------------------------------------------------- /file-commander-core/core-tests/test-utils/src/catch2_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/core-tests/test-utils/src/catch2_utils.hpp -------------------------------------------------------------------------------- /file-commander-core/core-tests/test-utils/src/cfolderenumeratorrecursive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/core-tests/test-utils/src/cfolderenumeratorrecursive.cpp -------------------------------------------------------------------------------- /file-commander-core/core-tests/test-utils/src/cfolderenumeratorrecursive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/core-tests/test-utils/src/cfolderenumeratorrecursive.h -------------------------------------------------------------------------------- /file-commander-core/core-tests/test-utils/src/crandomdatagenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/core-tests/test-utils/src/crandomdatagenerator.cpp -------------------------------------------------------------------------------- /file-commander-core/core-tests/test-utils/src/crandomdatagenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/core-tests/test-utils/src/crandomdatagenerator.h -------------------------------------------------------------------------------- /file-commander-core/core-tests/test-utils/src/ctestfoldergenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/core-tests/test-utils/src/ctestfoldergenerator.cpp -------------------------------------------------------------------------------- /file-commander-core/core-tests/test-utils/src/ctestfoldergenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/core-tests/test-utils/src/ctestfoldergenerator.h -------------------------------------------------------------------------------- /file-commander-core/core-tests/test-utils/src/foldercomparator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/core-tests/test-utils/src/foldercomparator.cpp -------------------------------------------------------------------------------- /file-commander-core/core-tests/test-utils/src/foldercomparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/core-tests/test-utils/src/foldercomparator.h -------------------------------------------------------------------------------- /file-commander-core/core-tests/test-utils/src/qt_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/core-tests/test-utils/src/qt_helpers.cpp -------------------------------------------------------------------------------- /file-commander-core/core-tests/test-utils/src/qt_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/core-tests/test-utils/src/qt_helpers.hpp -------------------------------------------------------------------------------- /file-commander-core/core-tests/test-utils/test-utils.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/core-tests/test-utils/test-utils.pro -------------------------------------------------------------------------------- /file-commander-core/core_project_suppressions.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/core_project_suppressions.cfg -------------------------------------------------------------------------------- /file-commander-core/file-commander-core.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/file-commander-core.pro -------------------------------------------------------------------------------- /file-commander-core/include/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/include/settings.h -------------------------------------------------------------------------------- /file-commander-core/src/ccontroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/ccontroller.cpp -------------------------------------------------------------------------------- /file-commander-core/src/ccontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/ccontroller.h -------------------------------------------------------------------------------- /file-commander-core/src/cfilemanipulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/cfilemanipulator.cpp -------------------------------------------------------------------------------- /file-commander-core/src/cfilemanipulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/cfilemanipulator.h -------------------------------------------------------------------------------- /file-commander-core/src/cfilesystemobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/cfilesystemobject.cpp -------------------------------------------------------------------------------- /file-commander-core/src/cfilesystemobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/cfilesystemobject.h -------------------------------------------------------------------------------- /file-commander-core/src/cpanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/cpanel.cpp -------------------------------------------------------------------------------- /file-commander-core/src/cpanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/cpanel.h -------------------------------------------------------------------------------- /file-commander-core/src/detail/file_list_hashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/detail/file_list_hashmap.h -------------------------------------------------------------------------------- /file-commander-core/src/detail/hashmap_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/detail/hashmap_helpers.h -------------------------------------------------------------------------------- /file-commander-core/src/directoryscanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/directoryscanner.cpp -------------------------------------------------------------------------------- /file-commander-core/src/directoryscanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/directoryscanner.h -------------------------------------------------------------------------------- /file-commander-core/src/diskenumerator/cvolumeenumerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/diskenumerator/cvolumeenumerator.cpp -------------------------------------------------------------------------------- /file-commander-core/src/diskenumerator/cvolumeenumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/diskenumerator/cvolumeenumerator.h -------------------------------------------------------------------------------- /file-commander-core/src/diskenumerator/cvolumeenumerator_impl_freebsd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/diskenumerator/cvolumeenumerator_impl_freebsd.cpp -------------------------------------------------------------------------------- /file-commander-core/src/diskenumerator/cvolumeenumerator_impl_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/diskenumerator/cvolumeenumerator_impl_linux.cpp -------------------------------------------------------------------------------- /file-commander-core/src/diskenumerator/cvolumeenumerator_impl_mac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/diskenumerator/cvolumeenumerator_impl_mac.cpp -------------------------------------------------------------------------------- /file-commander-core/src/diskenumerator/cvolumeenumerator_impl_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/diskenumerator/cvolumeenumerator_impl_win.cpp -------------------------------------------------------------------------------- /file-commander-core/src/diskenumerator/volumeinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/diskenumerator/volumeinfo.hpp -------------------------------------------------------------------------------- /file-commander-core/src/diskenumerator/volumeinfohelper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/diskenumerator/volumeinfohelper.hpp -------------------------------------------------------------------------------- /file-commander-core/src/favoritelocationslist/cfavoritelocations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/favoritelocationslist/cfavoritelocations.cpp -------------------------------------------------------------------------------- /file-commander-core/src/favoritelocationslist/cfavoritelocations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/favoritelocationslist/cfavoritelocations.h -------------------------------------------------------------------------------- /file-commander-core/src/filecomparator/cfilecomparator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/filecomparator/cfilecomparator.cpp -------------------------------------------------------------------------------- /file-commander-core/src/filecomparator/cfilecomparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/filecomparator/cfilecomparator.h -------------------------------------------------------------------------------- /file-commander-core/src/fileoperationresultcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/fileoperationresultcode.h -------------------------------------------------------------------------------- /file-commander-core/src/fileoperations/coperationperformer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/fileoperations/coperationperformer.cpp -------------------------------------------------------------------------------- /file-commander-core/src/fileoperations/coperationperformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/fileoperations/coperationperformer.h -------------------------------------------------------------------------------- /file-commander-core/src/fileoperations/operationcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/fileoperations/operationcodes.h -------------------------------------------------------------------------------- /file-commander-core/src/filesearchengine/cfilesearchengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/filesearchengine/cfilesearchengine.cpp -------------------------------------------------------------------------------- /file-commander-core/src/filesearchengine/cfilesearchengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/filesearchengine/cfilesearchengine.h -------------------------------------------------------------------------------- /file-commander-core/src/filesystemhelperfunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/filesystemhelperfunctions.cpp -------------------------------------------------------------------------------- /file-commander-core/src/filesystemhelperfunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/filesystemhelperfunctions.h -------------------------------------------------------------------------------- /file-commander-core/src/filesystemhelpers/filesystemhelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/filesystemhelpers/filesystemhelpers.cpp -------------------------------------------------------------------------------- /file-commander-core/src/filesystemhelpers/filesystemhelpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/filesystemhelpers/filesystemhelpers.hpp -------------------------------------------------------------------------------- /file-commander-core/src/filesystemwatcher/cfilesystemwatchertimerbased.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/filesystemwatcher/cfilesystemwatchertimerbased.cpp -------------------------------------------------------------------------------- /file-commander-core/src/filesystemwatcher/cfilesystemwatchertimerbased.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/filesystemwatcher/cfilesystemwatchertimerbased.h -------------------------------------------------------------------------------- /file-commander-core/src/filesystemwatcher/cfilesystemwatcherwindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/filesystemwatcher/cfilesystemwatcherwindows.cpp -------------------------------------------------------------------------------- /file-commander-core/src/filesystemwatcher/cfilesystemwatcherwindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/filesystemwatcher/cfilesystemwatcherwindows.h -------------------------------------------------------------------------------- /file-commander-core/src/iconprovider/ciconprovider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/iconprovider/ciconprovider.cpp -------------------------------------------------------------------------------- /file-commander-core/src/iconprovider/ciconprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/iconprovider/ciconprovider.h -------------------------------------------------------------------------------- /file-commander-core/src/iconprovider/ciconproviderimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/iconprovider/ciconproviderimpl.cpp -------------------------------------------------------------------------------- /file-commander-core/src/iconprovider/ciconproviderimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/iconprovider/ciconproviderimpl.h -------------------------------------------------------------------------------- /file-commander-core/src/pluginengine/cpluginengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/pluginengine/cpluginengine.cpp -------------------------------------------------------------------------------- /file-commander-core/src/pluginengine/cpluginengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/pluginengine/cpluginengine.h -------------------------------------------------------------------------------- /file-commander-core/src/pluginengine/pluginengine.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/pluginengine/pluginengine.pri -------------------------------------------------------------------------------- /file-commander-core/src/plugininterface/cfilecommanderplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/plugininterface/cfilecommanderplugin.cpp -------------------------------------------------------------------------------- /file-commander-core/src/plugininterface/cfilecommanderplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/plugininterface/cfilecommanderplugin.h -------------------------------------------------------------------------------- /file-commander-core/src/plugininterface/cfilecommandertoolplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/plugininterface/cfilecommandertoolplugin.cpp -------------------------------------------------------------------------------- /file-commander-core/src/plugininterface/cfilecommandertoolplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/plugininterface/cfilecommandertoolplugin.h -------------------------------------------------------------------------------- /file-commander-core/src/plugininterface/cfilecommanderviewerplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/plugininterface/cfilecommanderviewerplugin.cpp -------------------------------------------------------------------------------- /file-commander-core/src/plugininterface/cfilecommanderviewerplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/plugininterface/cfilecommanderviewerplugin.h -------------------------------------------------------------------------------- /file-commander-core/src/plugininterface/cpluginproxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/plugininterface/cpluginproxy.cpp -------------------------------------------------------------------------------- /file-commander-core/src/plugininterface/cpluginproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/plugininterface/cpluginproxy.h -------------------------------------------------------------------------------- /file-commander-core/src/plugininterface/cpluginwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/plugininterface/cpluginwindow.cpp -------------------------------------------------------------------------------- /file-commander-core/src/plugininterface/cpluginwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/plugininterface/cpluginwindow.h -------------------------------------------------------------------------------- /file-commander-core/src/plugininterface/plugin_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/plugininterface/plugin_export.h -------------------------------------------------------------------------------- /file-commander-core/src/plugininterface/plugininterface.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/plugininterface/plugininterface.pri -------------------------------------------------------------------------------- /file-commander-core/src/plugininterface/wcx/cwcxpluginhost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/plugininterface/wcx/cwcxpluginhost.cpp -------------------------------------------------------------------------------- /file-commander-core/src/plugininterface/wcx/cwcxpluginhost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/plugininterface/wcx/cwcxpluginhost.h -------------------------------------------------------------------------------- /file-commander-core/src/plugininterface/wcx/cwcxpluginhost_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/plugininterface/wcx/cwcxpluginhost_stub.h -------------------------------------------------------------------------------- /file-commander-core/src/plugininterface/wcx/wcxhead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/plugininterface/wcx/wcxhead.h -------------------------------------------------------------------------------- /file-commander-core/src/shell/cshell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/shell/cshell.cpp -------------------------------------------------------------------------------- /file-commander-core/src/shell/cshell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/shell/cshell.h -------------------------------------------------------------------------------- /file-commander-core/src/shell/cshell_mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander-core/src/shell/cshell_mac.mm -------------------------------------------------------------------------------- /file-commander-core/suppressions.cfg: -------------------------------------------------------------------------------- 1 | [cppcheck] 2 | 3 | *:ctimeelapsed.cpp:211 -------------------------------------------------------------------------------- /file-commander.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander.pro -------------------------------------------------------------------------------- /file-commander.smproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander.smproj -------------------------------------------------------------------------------- /file-commander_solution_suppressions.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/file-commander_solution_suppressions.cfg -------------------------------------------------------------------------------- /installer/linux/file_commander.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/installer/linux/file_commander.desktop -------------------------------------------------------------------------------- /installer/mac/create_dmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/installer/mac/create_dmg.sh -------------------------------------------------------------------------------- /installer/windows/3rdparty binaries/32/libcrypto-1_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/installer/windows/3rdparty binaries/32/libcrypto-1_1.dll -------------------------------------------------------------------------------- /installer/windows/3rdparty binaries/32/libssl-1_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/installer/windows/3rdparty binaries/32/libssl-1_1.dll -------------------------------------------------------------------------------- /installer/windows/3rdparty binaries/64/libcrypto-1_1-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/installer/windows/3rdparty binaries/64/libcrypto-1_1-x64.dll -------------------------------------------------------------------------------- /installer/windows/3rdparty binaries/64/libssl-1_1-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/installer/windows/3rdparty binaries/64/libssl-1_1-x64.dll -------------------------------------------------------------------------------- /installer/windows/create_installer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/installer/windows/create_installer.bat -------------------------------------------------------------------------------- /installer/windows/setup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/installer/windows/setup.iss -------------------------------------------------------------------------------- /plugins/tools/filecomparisonplugin/cfilecomparisonplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/plugins/tools/filecomparisonplugin/cfilecomparisonplugin.cpp -------------------------------------------------------------------------------- /plugins/tools/filecomparisonplugin/cfilecomparisonplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/plugins/tools/filecomparisonplugin/cfilecomparisonplugin.h -------------------------------------------------------------------------------- /plugins/tools/filecomparisonplugin/filecomparisonplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/plugins/tools/filecomparisonplugin/filecomparisonplugin.pro -------------------------------------------------------------------------------- /plugins/viewer/imageviewer/imageviewer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/plugins/viewer/imageviewer/imageviewer.pro -------------------------------------------------------------------------------- /plugins/viewer/imageviewer/src/cimageviewerplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/plugins/viewer/imageviewer/src/cimageviewerplugin.cpp -------------------------------------------------------------------------------- /plugins/viewer/imageviewer/src/cimageviewerplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/plugins/viewer/imageviewer/src/cimageviewerplugin.h -------------------------------------------------------------------------------- /plugins/viewer/imageviewer/src/cimageviewerwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/plugins/viewer/imageviewer/src/cimageviewerwidget.cpp -------------------------------------------------------------------------------- /plugins/viewer/imageviewer/src/cimageviewerwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/plugins/viewer/imageviewer/src/cimageviewerwidget.h -------------------------------------------------------------------------------- /plugins/viewer/imageviewer/src/cimageviewerwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/plugins/viewer/imageviewer/src/cimageviewerwindow.cpp -------------------------------------------------------------------------------- /plugins/viewer/imageviewer/src/cimageviewerwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/plugins/viewer/imageviewer/src/cimageviewerwindow.h -------------------------------------------------------------------------------- /plugins/viewer/imageviewer/src/cimageviewerwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/plugins/viewer/imageviewer/src/cimageviewerwindow.ui -------------------------------------------------------------------------------- /plugins/viewer/textviewer/plugin_textviewer_project_suppressions.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/plugins/viewer/textviewer/plugin_textviewer_project_suppressions.cfg -------------------------------------------------------------------------------- /plugins/viewer/textviewer/src/cfinddialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/plugins/viewer/textviewer/src/cfinddialog.cpp -------------------------------------------------------------------------------- /plugins/viewer/textviewer/src/cfinddialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/plugins/viewer/textviewer/src/cfinddialog.h -------------------------------------------------------------------------------- /plugins/viewer/textviewer/src/cfinddialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/plugins/viewer/textviewer/src/cfinddialog.ui -------------------------------------------------------------------------------- /plugins/viewer/textviewer/src/ctexteditwithimagesupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/plugins/viewer/textviewer/src/ctexteditwithimagesupport.cpp -------------------------------------------------------------------------------- /plugins/viewer/textviewer/src/ctexteditwithimagesupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/plugins/viewer/textviewer/src/ctexteditwithimagesupport.h -------------------------------------------------------------------------------- /plugins/viewer/textviewer/src/ctextviewerplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/plugins/viewer/textviewer/src/ctextviewerplugin.cpp -------------------------------------------------------------------------------- /plugins/viewer/textviewer/src/ctextviewerplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/plugins/viewer/textviewer/src/ctextviewerplugin.h -------------------------------------------------------------------------------- /plugins/viewer/textviewer/src/ctextviewerwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/plugins/viewer/textviewer/src/ctextviewerwindow.cpp -------------------------------------------------------------------------------- /plugins/viewer/textviewer/src/ctextviewerwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/plugins/viewer/textviewer/src/ctextviewerwindow.h -------------------------------------------------------------------------------- /plugins/viewer/textviewer/src/ctextviewerwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/plugins/viewer/textviewer/src/ctextviewerwindow.ui -------------------------------------------------------------------------------- /plugins/viewer/textviewer/src/icons.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/plugins/viewer/textviewer/src/icons.qrc -------------------------------------------------------------------------------- /plugins/viewer/textviewer/src/resources/text_doc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/plugins/viewer/textviewer/src/resources/text_doc.ico -------------------------------------------------------------------------------- /plugins/viewer/textviewer/textviewer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/plugins/viewer/textviewer/textviewer.pro -------------------------------------------------------------------------------- /push_repository.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/push_repository.bat -------------------------------------------------------------------------------- /push_repository.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/push_repository.sh -------------------------------------------------------------------------------- /qt-app/FileCommander_project_suppressions.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/FileCommander_project_suppressions.cfg -------------------------------------------------------------------------------- /qt-app/file_commander.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/file_commander.desktop -------------------------------------------------------------------------------- /qt-app/gui-tests/combobox/combobox.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/gui-tests/combobox/combobox.pro -------------------------------------------------------------------------------- /qt-app/gui-tests/combobox/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/gui-tests/combobox/src/main.cpp -------------------------------------------------------------------------------- /qt-app/gui-tests/combobox/src/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/gui-tests/combobox/src/mainwindow.cpp -------------------------------------------------------------------------------- /qt-app/gui-tests/combobox/src/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/gui-tests/combobox/src/mainwindow.h -------------------------------------------------------------------------------- /qt-app/gui-tests/combobox/src/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/gui-tests/combobox/src/mainwindow.ui -------------------------------------------------------------------------------- /qt-app/gui-tests/gui-tests.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/gui-tests/gui-tests.pro -------------------------------------------------------------------------------- /qt-app/qt-app.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/qt-app.pro -------------------------------------------------------------------------------- /qt-app/resources/app-resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/resources/app-resources.qrc -------------------------------------------------------------------------------- /qt-app/resources/file_commander.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/resources/file_commander.icns -------------------------------------------------------------------------------- /qt-app/resources/file_commander.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/resources/file_commander.rc -------------------------------------------------------------------------------- /qt-app/resources/fonts/Roboto_Mono/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/resources/fonts/Roboto_Mono/LICENSE.txt -------------------------------------------------------------------------------- /qt-app/resources/fonts/Roboto_Mono/RobotoMono-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/resources/fonts/Roboto_Mono/RobotoMono-Light.ttf -------------------------------------------------------------------------------- /qt-app/resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/resources/icon.ico -------------------------------------------------------------------------------- /qt-app/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/resources/icon.png -------------------------------------------------------------------------------- /qt-app/src/aboutdialog/caboutdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/aboutdialog/caboutdialog.cpp -------------------------------------------------------------------------------- /qt-app/src/aboutdialog/caboutdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/aboutdialog/caboutdialog.h -------------------------------------------------------------------------------- /qt-app/src/aboutdialog/caboutdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/aboutdialog/caboutdialog.ui -------------------------------------------------------------------------------- /qt-app/src/cmainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/cmainwindow.cpp -------------------------------------------------------------------------------- /qt-app/src/cmainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/cmainwindow.h -------------------------------------------------------------------------------- /qt-app/src/cmainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/cmainwindow.ui -------------------------------------------------------------------------------- /qt-app/src/favoritelocationseditor/cfavoritelocationseditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/favoritelocationseditor/cfavoritelocationseditor.cpp -------------------------------------------------------------------------------- /qt-app/src/favoritelocationseditor/cfavoritelocationseditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/favoritelocationseditor/cfavoritelocationseditor.h -------------------------------------------------------------------------------- /qt-app/src/favoritelocationseditor/cfavoritelocationseditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/favoritelocationseditor/cfavoritelocationseditor.ui -------------------------------------------------------------------------------- /qt-app/src/favoritelocationseditor/cnewfavoritelocationdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/favoritelocationseditor/cnewfavoritelocationdialog.cpp -------------------------------------------------------------------------------- /qt-app/src/favoritelocationseditor/cnewfavoritelocationdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/favoritelocationseditor/cnewfavoritelocationdialog.h -------------------------------------------------------------------------------- /qt-app/src/favoritelocationseditor/cnewfavoritelocationdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/favoritelocationseditor/cnewfavoritelocationdialog.ui -------------------------------------------------------------------------------- /qt-app/src/filessearchdialog/cfilessearchwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/filessearchdialog/cfilessearchwindow.cpp -------------------------------------------------------------------------------- /qt-app/src/filessearchdialog/cfilessearchwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/filessearchdialog/cfilessearchwindow.h -------------------------------------------------------------------------------- /qt-app/src/filessearchdialog/cfilessearchwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/filessearchdialog/cfilessearchwindow.ui -------------------------------------------------------------------------------- /qt-app/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/main.cpp -------------------------------------------------------------------------------- /qt-app/src/panel/columns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/panel/columns.h -------------------------------------------------------------------------------- /qt-app/src/panel/cpaneldisplaycontroller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/panel/cpaneldisplaycontroller.cpp -------------------------------------------------------------------------------- /qt-app/src/panel/cpaneldisplaycontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/panel/cpaneldisplaycontroller.h -------------------------------------------------------------------------------- /qt-app/src/panel/cpanelwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/panel/cpanelwidget.cpp -------------------------------------------------------------------------------- /qt-app/src/panel/cpanelwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/panel/cpanelwidget.h -------------------------------------------------------------------------------- /qt-app/src/panel/cpanelwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/panel/cpanelwidget.ui -------------------------------------------------------------------------------- /qt-app/src/panel/filelistwidget/cfilelistfilterdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/panel/filelistwidget/cfilelistfilterdialog.cpp -------------------------------------------------------------------------------- /qt-app/src/panel/filelistwidget/cfilelistfilterdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/panel/filelistwidget/cfilelistfilterdialog.h -------------------------------------------------------------------------------- /qt-app/src/panel/filelistwidget/cfilelistfilterdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/panel/filelistwidget/cfilelistfilterdialog.ui -------------------------------------------------------------------------------- /qt-app/src/panel/filelistwidget/cfilelistview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/panel/filelistwidget/cfilelistview.cpp -------------------------------------------------------------------------------- /qt-app/src/panel/filelistwidget/cfilelistview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/panel/filelistwidget/cfilelistview.h -------------------------------------------------------------------------------- /qt-app/src/panel/filelistwidget/cfocusframestyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/panel/filelistwidget/cfocusframestyle.cpp -------------------------------------------------------------------------------- /qt-app/src/panel/filelistwidget/cfocusframestyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/panel/filelistwidget/cfocusframestyle.h -------------------------------------------------------------------------------- /qt-app/src/panel/filelistwidget/delegate/cfilelistitemdelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/panel/filelistwidget/delegate/cfilelistitemdelegate.cpp -------------------------------------------------------------------------------- /qt-app/src/panel/filelistwidget/delegate/cfilelistitemdelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/panel/filelistwidget/delegate/cfilelistitemdelegate.h -------------------------------------------------------------------------------- /qt-app/src/panel/filelistwidget/model/cfilelistmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/panel/filelistwidget/model/cfilelistmodel.cpp -------------------------------------------------------------------------------- /qt-app/src/panel/filelistwidget/model/cfilelistmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/panel/filelistwidget/model/cfilelistmodel.h -------------------------------------------------------------------------------- /qt-app/src/panel/filelistwidget/model/cfilelistsortfilterproxymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/panel/filelistwidget/model/cfilelistsortfilterproxymodel.cpp -------------------------------------------------------------------------------- /qt-app/src/panel/filelistwidget/model/cfilelistsortfilterproxymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/panel/filelistwidget/model/cfilelistsortfilterproxymodel.h -------------------------------------------------------------------------------- /qt-app/src/panel/qflowlayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/panel/qflowlayout.cpp -------------------------------------------------------------------------------- /qt-app/src/panel/qflowlayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/panel/qflowlayout.h -------------------------------------------------------------------------------- /qt-app/src/progressdialogs/ccopymovedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/progressdialogs/ccopymovedialog.cpp -------------------------------------------------------------------------------- /qt-app/src/progressdialogs/ccopymovedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/progressdialogs/ccopymovedialog.h -------------------------------------------------------------------------------- /qt-app/src/progressdialogs/ccopymovedialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/progressdialogs/ccopymovedialog.ui -------------------------------------------------------------------------------- /qt-app/src/progressdialogs/cdeleteprogressdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/progressdialogs/cdeleteprogressdialog.cpp -------------------------------------------------------------------------------- /qt-app/src/progressdialogs/cdeleteprogressdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/progressdialogs/cdeleteprogressdialog.h -------------------------------------------------------------------------------- /qt-app/src/progressdialogs/cdeleteprogressdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/progressdialogs/cdeleteprogressdialog.ui -------------------------------------------------------------------------------- /qt-app/src/progressdialogs/cfileoperationconfirmationprompt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/progressdialogs/cfileoperationconfirmationprompt.cpp -------------------------------------------------------------------------------- /qt-app/src/progressdialogs/cfileoperationconfirmationprompt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/progressdialogs/cfileoperationconfirmationprompt.h -------------------------------------------------------------------------------- /qt-app/src/progressdialogs/cfileoperationconfirmationprompt.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/progressdialogs/cfileoperationconfirmationprompt.ui -------------------------------------------------------------------------------- /qt-app/src/progressdialogs/cpromptdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/progressdialogs/cpromptdialog.cpp -------------------------------------------------------------------------------- /qt-app/src/progressdialogs/cpromptdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/progressdialogs/cpromptdialog.h -------------------------------------------------------------------------------- /qt-app/src/progressdialogs/cpromptdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/progressdialogs/cpromptdialog.ui -------------------------------------------------------------------------------- /qt-app/src/progressdialogs/progressdialoghelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/progressdialogs/progressdialoghelpers.cpp -------------------------------------------------------------------------------- /qt-app/src/progressdialogs/progressdialoghelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/progressdialogs/progressdialoghelpers.h -------------------------------------------------------------------------------- /qt-app/src/settings/csettingspageedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/settings/csettingspageedit.cpp -------------------------------------------------------------------------------- /qt-app/src/settings/csettingspageedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/settings/csettingspageedit.h -------------------------------------------------------------------------------- /qt-app/src/settings/csettingspageedit.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/settings/csettingspageedit.ui -------------------------------------------------------------------------------- /qt-app/src/settings/csettingspageinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/settings/csettingspageinterface.cpp -------------------------------------------------------------------------------- /qt-app/src/settings/csettingspageinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/settings/csettingspageinterface.h -------------------------------------------------------------------------------- /qt-app/src/settings/csettingspageinterface.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/settings/csettingspageinterface.ui -------------------------------------------------------------------------------- /qt-app/src/settings/csettingspageoperations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/settings/csettingspageoperations.cpp -------------------------------------------------------------------------------- /qt-app/src/settings/csettingspageoperations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/settings/csettingspageoperations.h -------------------------------------------------------------------------------- /qt-app/src/settings/csettingspageoperations.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/settings/csettingspageoperations.ui -------------------------------------------------------------------------------- /qt-app/src/settings/csettingspageother.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/settings/csettingspageother.cpp -------------------------------------------------------------------------------- /qt-app/src/settings/csettingspageother.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/settings/csettingspageother.h -------------------------------------------------------------------------------- /qt-app/src/settings/csettingspageother.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/settings/csettingspageother.ui -------------------------------------------------------------------------------- /qt-app/src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/qt-app/src/version.h -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /update_repository.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/update_repository.bat -------------------------------------------------------------------------------- /update_repository.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VioletGiraffe/file-commander/HEAD/update_repository.sh --------------------------------------------------------------------------------