├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── run_tests.yml │ └── sonar.yml ├── .gitignore ├── .gitmodules ├── .readthedocs.yaml ├── 3rdparty ├── 3rdparty.pri └── pyotherside.pri ├── BACKERS.md ├── CONTRIBUTING.md ├── COPYRIGHT ├── LICENSE ├── README.md ├── docs ├── app-store.md ├── bulk-operations.md ├── css │ └── extra.css ├── development.md ├── extension-server.md ├── faq.md ├── favicon.ico ├── index.md ├── install.md ├── known-issues.md ├── lg-keyspaces.md ├── native-formatters.md ├── quick-start.md ├── requirements.txt └── server_spec.yaml ├── mkdocs.yml ├── sonar-project.properties ├── src ├── app │ ├── app.cpp │ ├── app.h │ ├── apputils.h │ ├── darkmode.h │ ├── events.cpp │ ├── events.h │ ├── jsonutils.cpp │ ├── jsonutils.h │ ├── models │ │ ├── configmanager.cpp │ │ ├── configmanager.h │ │ ├── connectionconf.cpp │ │ ├── connectionconf.h │ │ ├── connectiongroup.cpp │ │ ├── connectiongroup.h │ │ ├── connectionsmanager.cpp │ │ ├── connectionsmanager.h │ │ ├── key-models │ │ │ ├── abstractkey.h │ │ │ ├── bfkey.cpp │ │ │ ├── bfkey.h │ │ │ ├── hashkey.cpp │ │ │ ├── hashkey.h │ │ │ ├── keyfactory.cpp │ │ │ ├── keyfactory.h │ │ │ ├── listkey.cpp │ │ │ ├── listkey.h │ │ │ ├── listlikekey.cpp │ │ │ ├── listlikekey.h │ │ │ ├── newkeyrequest.cpp │ │ │ ├── newkeyrequest.h │ │ │ ├── rejsonkey.cpp │ │ │ ├── rejsonkey.h │ │ │ ├── rowcache.h │ │ │ ├── setkey.cpp │ │ │ ├── setkey.h │ │ │ ├── sortedsetkey.cpp │ │ │ ├── sortedsetkey.h │ │ │ ├── stream.cpp │ │ │ ├── stream.h │ │ │ ├── stringkey.cpp │ │ │ ├── stringkey.h │ │ │ ├── unknownkey.cpp │ │ │ └── unknownkey.h │ │ ├── treeoperations.cpp │ │ └── treeoperations.h │ ├── qcompress.cpp │ ├── qcompress.h │ ├── qmlutils.cpp │ └── qmlutils.h ├── main.cpp ├── modules │ ├── bulk-operations │ │ ├── bulkoperationsmanager.cpp │ │ ├── bulkoperationsmanager.h │ │ ├── connections.h │ │ └── operations │ │ │ ├── abstractoperation.cpp │ │ │ ├── abstractoperation.h │ │ │ ├── copyoperation.cpp │ │ │ ├── copyoperation.h │ │ │ ├── deleteoperation.cpp │ │ │ ├── deleteoperation.h │ │ │ ├── rdbimport.cpp │ │ │ ├── rdbimport.h │ │ │ ├── ttloperation.cpp │ │ │ └── ttloperation.h │ ├── common │ │ ├── baselistmodel.cpp │ │ ├── baselistmodel.h │ │ ├── callbackwithowner.h │ │ ├── sortfilterproxymodel.cpp │ │ ├── sortfilterproxymodel.h │ │ ├── tabmodel.cpp │ │ ├── tabmodel.h │ │ ├── tabviewmodel.cpp │ │ └── tabviewmodel.h │ ├── connections-tree │ │ ├── items │ │ │ ├── abstractnamespaceitem.cpp │ │ │ ├── abstractnamespaceitem.h │ │ │ ├── databaseitem.cpp │ │ │ ├── databaseitem.h │ │ │ ├── keyitem.cpp │ │ │ ├── keyitem.h │ │ │ ├── loadmoreitem.cpp │ │ │ ├── loadmoreitem.h │ │ │ ├── memoryusage.h │ │ │ ├── namespaceitem.cpp │ │ │ ├── namespaceitem.h │ │ │ ├── servergroup.cpp │ │ │ ├── servergroup.h │ │ │ ├── serveritem.cpp │ │ │ ├── serveritem.h │ │ │ ├── sortabletreeitem.h │ │ │ ├── treeitem.cpp │ │ │ └── treeitem.h │ │ ├── keysrendering.cpp │ │ ├── keysrendering.h │ │ ├── model.cpp │ │ ├── model.h │ │ ├── operations.h │ │ ├── utils.cpp │ │ └── utils.h │ ├── console │ │ ├── autocompletemodel.cpp │ │ ├── autocompletemodel.h │ │ ├── consolemodel.cpp │ │ └── consolemodel.h │ ├── exception.h │ ├── extension-server │ │ ├── client │ │ │ ├── CMakeLists.txt │ │ │ ├── OAIDataFormatter.cpp │ │ │ ├── OAIDataFormatter.h │ │ │ ├── OAIDecodePayload.cpp │ │ │ ├── OAIDecodePayload.h │ │ │ ├── OAIDefaultApi.cpp │ │ │ ├── OAIDefaultApi.h │ │ │ ├── OAIEncodePayload.cpp │ │ │ ├── OAIEncodePayload.h │ │ │ ├── OAIEnum.h │ │ │ ├── OAIHelpers.cpp │ │ │ ├── OAIHelpers.h │ │ │ ├── OAIHttpFileElement.cpp │ │ │ ├── OAIHttpFileElement.h │ │ │ ├── OAIHttpRequest.cpp │ │ │ ├── OAIHttpRequest.h │ │ │ ├── OAIInline_response_400.cpp │ │ │ ├── OAIInline_response_400.h │ │ │ ├── OAIOauth.cpp │ │ │ ├── OAIOauth.h │ │ │ ├── OAIObject.h │ │ │ ├── OAIServerConfiguration.h │ │ │ ├── OAIServerVariable.h │ │ │ └── client.pri │ │ ├── dataformattermanager.cpp │ │ ├── dataformattermanager.h │ │ └── generate_client.sh │ ├── server-actions │ │ ├── serverstatsmodel.cpp │ │ └── serverstatsmodel.h │ └── value-editor │ │ ├── abstractkeyfactory.h │ │ ├── embeddedformattersmanager.cpp │ │ ├── embeddedformattersmanager.h │ │ ├── keymodel.h │ │ ├── largetextmodel.cpp │ │ ├── largetextmodel.h │ │ ├── syntaxhighlighter.cpp │ │ ├── syntaxhighlighter.h │ │ ├── tabsmodel.cpp │ │ ├── tabsmodel.h │ │ ├── textcharformat.cpp │ │ ├── textcharformat.h │ │ ├── valueviewmodel.cpp │ │ └── valueviewmodel.h ├── py │ ├── formatters │ │ ├── __init__.py │ │ ├── base.py │ │ ├── binary.py │ │ ├── cbor.py │ │ ├── msgpack.py │ │ ├── phpserialize.py │ │ └── pickle.py │ ├── py.qrc │ ├── rdb │ │ └── __init__.py │ └── requirements.txt ├── qml │ ├── AppToolBar.qml │ ├── LogView.qml │ ├── QuickStartDialog.qml │ ├── WelcomeTab.qml │ ├── app.qml │ ├── bulk-operations │ │ └── BulkOperationsDialog.qml │ ├── common │ │ ├── AddressInput.qml │ │ ├── BetterButton.qml │ │ ├── BetterCheckbox.qml │ │ ├── BetterComboBox.qml │ │ ├── BetterDialog.qml │ │ ├── BetterDialogButtonBox.qml │ │ ├── BetterGroupbox.qml │ │ ├── BetterLabel.qml │ │ ├── BetterMenu.qml │ │ ├── BetterMenuItem.qml │ │ ├── BetterMessageDialog.qml │ │ ├── BetterRadioButton.qml │ │ ├── BetterSpinBox.qml │ │ ├── BetterSplitView.qml │ │ ├── BetterTab.qml │ │ ├── BetterTabButton.qml │ │ ├── BetterTabView.qml │ │ ├── BetterTextField.qml │ │ ├── BetterToolTip.qml │ │ ├── ColorInput.qml │ │ ├── FastTextView.qml │ │ ├── FilePathInput.qml │ │ ├── ImageButton.qml │ │ ├── JsonHighlighter.qml │ │ ├── LegacyTableView.qml │ │ ├── NewTextArea.qml │ │ ├── OkDialog.qml │ │ ├── OkDialogOverlay.qml │ │ ├── PasswordInput.qml │ │ ├── RichTextWithLinks.qml │ │ ├── SaveToFileButton.qml │ │ ├── SettingsGroupTitle.qml │ │ └── platformutils.js │ ├── connections-tree │ │ ├── BetterTreeView.qml │ │ ├── ConnectionGroupDialog.qml │ │ ├── TreeItemDelegate.qml │ │ └── menu │ │ │ ├── InlineMenu.qml │ │ │ ├── database.qml │ │ │ ├── key.qml │ │ │ ├── namespace.qml │ │ │ ├── server.qml │ │ │ └── server_group.qml │ ├── connections │ │ ├── AskSecretDialog.qml │ │ └── ConnectionSettignsDialog.qml │ ├── console │ │ ├── BaseConsole.qml │ │ ├── Consoles.qml │ │ └── RedisConsole.qml │ ├── dummy.qml │ ├── extension-server │ │ └── ExtensionServerSettings.qml │ ├── qml.qrc │ ├── server-actions │ │ ├── ServerAction.qml │ │ ├── ServerActionTabs.qml │ │ ├── ServerCharts.qml │ │ ├── ServerClients.qml │ │ ├── ServerConfig.qml │ │ ├── ServerPubSub.qml │ │ └── ServerSlowlog.qml │ ├── settings │ │ ├── BoolOption.qml │ │ ├── ComboboxOption.qml │ │ ├── FontSizeOption.qml │ │ ├── GlobalSettings.qml │ │ └── IntOption.qml │ └── value-editor │ │ ├── AddKeyDialog.qml │ │ ├── Pagination.qml │ │ ├── ValueTable.qml │ │ ├── ValueTableActions.qml │ │ ├── ValueTableCell.qml │ │ ├── ValueTabs.qml │ │ ├── editors │ │ ├── AbstractEditor.qml │ │ ├── HashItemEditor.qml │ │ ├── MultilineEditor.qml │ │ ├── ReadOnlySingleItemEditor.qml │ │ ├── SingleItemEditor.qml │ │ ├── SortedSetItemEditor.qml │ │ ├── StreamItemEditor.qml │ │ ├── UnsupportedDataType.qml │ │ ├── editor.js │ │ └── formatters │ │ │ ├── ValueFormatters.qml │ │ │ └── hexy.js │ │ └── filters │ │ ├── ListFilters.qml │ │ └── StreamFilters.qml ├── resources │ ├── Info.plist.sample │ ├── commands.json │ ├── commands.qrc │ ├── convert_commands.py │ ├── flatpak │ │ ├── app.resp.RESP.desktop │ │ └── app.resp.RESP.metainfo.xml │ ├── fonts.qrc │ ├── fonts │ │ ├── Inconsolata-Regular.ttf │ │ └── OpenSans.ttc │ ├── icons.qrc │ ├── icons_qrc_generator.py │ ├── images.qrc │ ├── images │ │ ├── aws_logo.svg │ │ ├── aws_logo_white.svg │ │ ├── azure_logo.svg │ │ ├── dark_theme │ │ │ ├── add.svg │ │ │ ├── alert.svg │ │ │ ├── back.svg │ │ │ ├── binary_file.svg │ │ │ ├── bulk_operations.svg │ │ │ ├── cleanup.svg │ │ │ ├── cleanup_filtered.svg │ │ │ ├── clear.svg │ │ │ ├── clients.svg │ │ │ ├── cluster.svg │ │ │ ├── code_file.svg │ │ │ ├── console.svg │ │ │ ├── copy.svg │ │ │ ├── copy_2.svg │ │ │ ├── database.svg │ │ │ ├── db-copy.svg │ │ │ ├── delete.svg │ │ │ ├── document.svg │ │ │ ├── export.svg │ │ │ ├── file.svg │ │ │ ├── filter.svg │ │ │ ├── github.svg │ │ │ ├── help.svg │ │ │ ├── import.svg │ │ │ ├── key.svg │ │ │ ├── list.svg │ │ │ ├── live_update.svg │ │ │ ├── live_update_disable.svg │ │ │ ├── loader.svg │ │ │ ├── log.svg │ │ │ ├── maximize.svg │ │ │ ├── memory_usage.svg │ │ │ ├── minimize.svg │ │ │ ├── namespace.svg │ │ │ ├── namespace_open.svg │ │ │ ├── offline.svg │ │ │ ├── ok.svg │ │ │ ├── plus.svg │ │ │ ├── pub-sub-channels.svg │ │ │ ├── refresh.svg │ │ │ ├── save.svg │ │ │ ├── search.svg │ │ │ ├── sentinel.svg │ │ │ ├── server-config.svg │ │ │ ├── server-stats.svg │ │ │ ├── server.svg │ │ │ ├── server_2.svg │ │ │ ├── server_group.svg │ │ │ ├── server_group_open.svg │ │ │ ├── server_offline.svg │ │ │ ├── settings.svg │ │ │ ├── slowlog.svg │ │ │ ├── sort.svg │ │ │ ├── square-half.svg │ │ │ ├── telegram.svg │ │ │ ├── ttl.svg │ │ │ ├── twi.svg │ │ │ └── wait.svg │ │ ├── digitalocean_logo.svg │ │ ├── heroku_logo.svg │ │ ├── light_theme │ │ │ ├── add.svg │ │ │ ├── alert.svg │ │ │ ├── back.svg │ │ │ ├── binary_file.svg │ │ │ ├── bulk_operations.svg │ │ │ ├── cleanup.svg │ │ │ ├── cleanup_filtered.svg │ │ │ ├── clear.svg │ │ │ ├── clients.svg │ │ │ ├── cluster.svg │ │ │ ├── code_file.svg │ │ │ ├── console.svg │ │ │ ├── copy.svg │ │ │ ├── copy_2.svg │ │ │ ├── database.svg │ │ │ ├── db-copy.svg │ │ │ ├── delete.svg │ │ │ ├── document.svg │ │ │ ├── export.svg │ │ │ ├── file.svg │ │ │ ├── filter.svg │ │ │ ├── github.svg │ │ │ ├── help.svg │ │ │ ├── import.svg │ │ │ ├── key.svg │ │ │ ├── list.svg │ │ │ ├── live_update.svg │ │ │ ├── live_update_disable.svg │ │ │ ├── loader.svg │ │ │ ├── log.svg │ │ │ ├── maximize.svg │ │ │ ├── memory_usage.svg │ │ │ ├── minimize.svg │ │ │ ├── namespace.svg │ │ │ ├── namespace_open.svg │ │ │ ├── offline.svg │ │ │ ├── ok.svg │ │ │ ├── plus.svg │ │ │ ├── pub-sub-channels.svg │ │ │ ├── refresh.svg │ │ │ ├── save.svg │ │ │ ├── search.svg │ │ │ ├── sentinel.svg │ │ │ ├── server-config.svg │ │ │ ├── server-stats.svg │ │ │ ├── server.svg │ │ │ ├── server_2.svg │ │ │ ├── server_group.svg │ │ │ ├── server_group_open.svg │ │ │ ├── server_offline.svg │ │ │ ├── settings.svg │ │ │ ├── slowlog.svg │ │ │ ├── sort.svg │ │ │ ├── square-half.svg │ │ │ ├── telegram.svg │ │ │ ├── ttl.svg │ │ │ ├── twi.svg │ │ │ └── wait.svg │ │ ├── logo.ico │ │ ├── logo.png │ │ ├── logo.svg │ │ ├── redisinsight.svg │ │ ├── resp.png │ │ └── resp_m.png │ ├── logo.icns │ ├── resp.desktop │ ├── tr.qrc │ └── translations │ │ ├── rdm.ts │ │ ├── rdm_es_ES.ts │ │ ├── rdm_ja_JP.ts │ │ ├── rdm_uk_UA.ts │ │ ├── rdm_zh_CN.ts │ │ └── rdm_zh_TW.ts └── resp.pro └── tests ├── py_tests ├── requirements.txt └── test_formatters │ ├── test_msgpack_formatter.py │ ├── test_php_formatter.py │ └── test_pickle_formatter.py ├── qml_tests ├── qml_test_runner.cpp ├── qml_tests.pro ├── setup.cpp ├── setup.h ├── tst_MultilineEditor.qml └── tst_formatters.qml ├── smoke_test.bat ├── tests.pro └── unit_tests ├── generate_coverage_report ├── main.cpp ├── respbasetestcase.h ├── testcases ├── app │ ├── app-tests.pri │ ├── connections.json │ ├── test_apputils.cpp │ ├── test_apputils.h │ ├── test_configmanager.cpp │ ├── test_configmanager.h │ ├── test_connectionsmanager.cpp │ ├── test_connectionsmanager.h │ ├── test_keymodels.cpp │ ├── test_keymodels.h │ ├── test_treeoperations.cpp │ └── test_treeoperations.h ├── connections-tree │ ├── connections-tree-tests.pri │ ├── mocks.cpp │ ├── mocks.h │ ├── test_databaseitem.cpp │ ├── test_databaseitem.h │ ├── test_model.cpp │ ├── test_model.h │ ├── test_serveritem.cpp │ └── test_serveritem.h ├── console │ ├── console-tests.pri │ ├── test_consolemodel.cpp │ └── test_consolemodel.h └── value-editor │ └── value-editor-tests.pri └── unit_tests.pro /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/run_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/.github/workflows/run_tests.yml -------------------------------------------------------------------------------- /.github/workflows/sonar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/.github/workflows/sonar.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/.gitmodules -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /3rdparty/3rdparty.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/3rdparty/3rdparty.pri -------------------------------------------------------------------------------- /3rdparty/pyotherside.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/3rdparty/pyotherside.pri -------------------------------------------------------------------------------- /BACKERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/BACKERS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/README.md -------------------------------------------------------------------------------- /docs/app-store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/docs/app-store.md -------------------------------------------------------------------------------- /docs/bulk-operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/docs/bulk-operations.md -------------------------------------------------------------------------------- /docs/css/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/docs/css/extra.css -------------------------------------------------------------------------------- /docs/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/docs/development.md -------------------------------------------------------------------------------- /docs/extension-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/docs/extension-server.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/docs/install.md -------------------------------------------------------------------------------- /docs/known-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/docs/known-issues.md -------------------------------------------------------------------------------- /docs/lg-keyspaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/docs/lg-keyspaces.md -------------------------------------------------------------------------------- /docs/native-formatters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/docs/native-formatters.md -------------------------------------------------------------------------------- /docs/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/docs/quick-start.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/server_spec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/docs/server_spec.yaml -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/app/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/app.cpp -------------------------------------------------------------------------------- /src/app/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/app.h -------------------------------------------------------------------------------- /src/app/apputils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/apputils.h -------------------------------------------------------------------------------- /src/app/darkmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/darkmode.h -------------------------------------------------------------------------------- /src/app/events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/events.cpp -------------------------------------------------------------------------------- /src/app/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/events.h -------------------------------------------------------------------------------- /src/app/jsonutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/jsonutils.cpp -------------------------------------------------------------------------------- /src/app/jsonutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/jsonutils.h -------------------------------------------------------------------------------- /src/app/models/configmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/configmanager.cpp -------------------------------------------------------------------------------- /src/app/models/configmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/configmanager.h -------------------------------------------------------------------------------- /src/app/models/connectionconf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/connectionconf.cpp -------------------------------------------------------------------------------- /src/app/models/connectionconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/connectionconf.h -------------------------------------------------------------------------------- /src/app/models/connectiongroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/connectiongroup.cpp -------------------------------------------------------------------------------- /src/app/models/connectiongroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/connectiongroup.h -------------------------------------------------------------------------------- /src/app/models/connectionsmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/connectionsmanager.cpp -------------------------------------------------------------------------------- /src/app/models/connectionsmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/connectionsmanager.h -------------------------------------------------------------------------------- /src/app/models/key-models/abstractkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/key-models/abstractkey.h -------------------------------------------------------------------------------- /src/app/models/key-models/bfkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/key-models/bfkey.cpp -------------------------------------------------------------------------------- /src/app/models/key-models/bfkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/key-models/bfkey.h -------------------------------------------------------------------------------- /src/app/models/key-models/hashkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/key-models/hashkey.cpp -------------------------------------------------------------------------------- /src/app/models/key-models/hashkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/key-models/hashkey.h -------------------------------------------------------------------------------- /src/app/models/key-models/keyfactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/key-models/keyfactory.cpp -------------------------------------------------------------------------------- /src/app/models/key-models/keyfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/key-models/keyfactory.h -------------------------------------------------------------------------------- /src/app/models/key-models/listkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/key-models/listkey.cpp -------------------------------------------------------------------------------- /src/app/models/key-models/listkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/key-models/listkey.h -------------------------------------------------------------------------------- /src/app/models/key-models/listlikekey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/key-models/listlikekey.cpp -------------------------------------------------------------------------------- /src/app/models/key-models/listlikekey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/key-models/listlikekey.h -------------------------------------------------------------------------------- /src/app/models/key-models/newkeyrequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/key-models/newkeyrequest.cpp -------------------------------------------------------------------------------- /src/app/models/key-models/newkeyrequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/key-models/newkeyrequest.h -------------------------------------------------------------------------------- /src/app/models/key-models/rejsonkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/key-models/rejsonkey.cpp -------------------------------------------------------------------------------- /src/app/models/key-models/rejsonkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/key-models/rejsonkey.h -------------------------------------------------------------------------------- /src/app/models/key-models/rowcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/key-models/rowcache.h -------------------------------------------------------------------------------- /src/app/models/key-models/setkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/key-models/setkey.cpp -------------------------------------------------------------------------------- /src/app/models/key-models/setkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/key-models/setkey.h -------------------------------------------------------------------------------- /src/app/models/key-models/sortedsetkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/key-models/sortedsetkey.cpp -------------------------------------------------------------------------------- /src/app/models/key-models/sortedsetkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/key-models/sortedsetkey.h -------------------------------------------------------------------------------- /src/app/models/key-models/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/key-models/stream.cpp -------------------------------------------------------------------------------- /src/app/models/key-models/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/key-models/stream.h -------------------------------------------------------------------------------- /src/app/models/key-models/stringkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/key-models/stringkey.cpp -------------------------------------------------------------------------------- /src/app/models/key-models/stringkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/key-models/stringkey.h -------------------------------------------------------------------------------- /src/app/models/key-models/unknownkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/key-models/unknownkey.cpp -------------------------------------------------------------------------------- /src/app/models/key-models/unknownkey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/key-models/unknownkey.h -------------------------------------------------------------------------------- /src/app/models/treeoperations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/treeoperations.cpp -------------------------------------------------------------------------------- /src/app/models/treeoperations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/models/treeoperations.h -------------------------------------------------------------------------------- /src/app/qcompress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/qcompress.cpp -------------------------------------------------------------------------------- /src/app/qcompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/qcompress.h -------------------------------------------------------------------------------- /src/app/qmlutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/qmlutils.cpp -------------------------------------------------------------------------------- /src/app/qmlutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/app/qmlutils.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/modules/bulk-operations/bulkoperationsmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/bulk-operations/bulkoperationsmanager.cpp -------------------------------------------------------------------------------- /src/modules/bulk-operations/bulkoperationsmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/bulk-operations/bulkoperationsmanager.h -------------------------------------------------------------------------------- /src/modules/bulk-operations/connections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/bulk-operations/connections.h -------------------------------------------------------------------------------- /src/modules/bulk-operations/operations/abstractoperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/bulk-operations/operations/abstractoperation.cpp -------------------------------------------------------------------------------- /src/modules/bulk-operations/operations/abstractoperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/bulk-operations/operations/abstractoperation.h -------------------------------------------------------------------------------- /src/modules/bulk-operations/operations/copyoperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/bulk-operations/operations/copyoperation.cpp -------------------------------------------------------------------------------- /src/modules/bulk-operations/operations/copyoperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/bulk-operations/operations/copyoperation.h -------------------------------------------------------------------------------- /src/modules/bulk-operations/operations/deleteoperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/bulk-operations/operations/deleteoperation.cpp -------------------------------------------------------------------------------- /src/modules/bulk-operations/operations/deleteoperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/bulk-operations/operations/deleteoperation.h -------------------------------------------------------------------------------- /src/modules/bulk-operations/operations/rdbimport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/bulk-operations/operations/rdbimport.cpp -------------------------------------------------------------------------------- /src/modules/bulk-operations/operations/rdbimport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/bulk-operations/operations/rdbimport.h -------------------------------------------------------------------------------- /src/modules/bulk-operations/operations/ttloperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/bulk-operations/operations/ttloperation.cpp -------------------------------------------------------------------------------- /src/modules/bulk-operations/operations/ttloperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/bulk-operations/operations/ttloperation.h -------------------------------------------------------------------------------- /src/modules/common/baselistmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/common/baselistmodel.cpp -------------------------------------------------------------------------------- /src/modules/common/baselistmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/common/baselistmodel.h -------------------------------------------------------------------------------- /src/modules/common/callbackwithowner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/common/callbackwithowner.h -------------------------------------------------------------------------------- /src/modules/common/sortfilterproxymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/common/sortfilterproxymodel.cpp -------------------------------------------------------------------------------- /src/modules/common/sortfilterproxymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/common/sortfilterproxymodel.h -------------------------------------------------------------------------------- /src/modules/common/tabmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/common/tabmodel.cpp -------------------------------------------------------------------------------- /src/modules/common/tabmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/common/tabmodel.h -------------------------------------------------------------------------------- /src/modules/common/tabviewmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/common/tabviewmodel.cpp -------------------------------------------------------------------------------- /src/modules/common/tabviewmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/common/tabviewmodel.h -------------------------------------------------------------------------------- /src/modules/connections-tree/items/abstractnamespaceitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/connections-tree/items/abstractnamespaceitem.cpp -------------------------------------------------------------------------------- /src/modules/connections-tree/items/abstractnamespaceitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/connections-tree/items/abstractnamespaceitem.h -------------------------------------------------------------------------------- /src/modules/connections-tree/items/databaseitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/connections-tree/items/databaseitem.cpp -------------------------------------------------------------------------------- /src/modules/connections-tree/items/databaseitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/connections-tree/items/databaseitem.h -------------------------------------------------------------------------------- /src/modules/connections-tree/items/keyitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/connections-tree/items/keyitem.cpp -------------------------------------------------------------------------------- /src/modules/connections-tree/items/keyitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/connections-tree/items/keyitem.h -------------------------------------------------------------------------------- /src/modules/connections-tree/items/loadmoreitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/connections-tree/items/loadmoreitem.cpp -------------------------------------------------------------------------------- /src/modules/connections-tree/items/loadmoreitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/connections-tree/items/loadmoreitem.h -------------------------------------------------------------------------------- /src/modules/connections-tree/items/memoryusage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/connections-tree/items/memoryusage.h -------------------------------------------------------------------------------- /src/modules/connections-tree/items/namespaceitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/connections-tree/items/namespaceitem.cpp -------------------------------------------------------------------------------- /src/modules/connections-tree/items/namespaceitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/connections-tree/items/namespaceitem.h -------------------------------------------------------------------------------- /src/modules/connections-tree/items/servergroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/connections-tree/items/servergroup.cpp -------------------------------------------------------------------------------- /src/modules/connections-tree/items/servergroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/connections-tree/items/servergroup.h -------------------------------------------------------------------------------- /src/modules/connections-tree/items/serveritem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/connections-tree/items/serveritem.cpp -------------------------------------------------------------------------------- /src/modules/connections-tree/items/serveritem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/connections-tree/items/serveritem.h -------------------------------------------------------------------------------- /src/modules/connections-tree/items/sortabletreeitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/connections-tree/items/sortabletreeitem.h -------------------------------------------------------------------------------- /src/modules/connections-tree/items/treeitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/connections-tree/items/treeitem.cpp -------------------------------------------------------------------------------- /src/modules/connections-tree/items/treeitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/connections-tree/items/treeitem.h -------------------------------------------------------------------------------- /src/modules/connections-tree/keysrendering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/connections-tree/keysrendering.cpp -------------------------------------------------------------------------------- /src/modules/connections-tree/keysrendering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/connections-tree/keysrendering.h -------------------------------------------------------------------------------- /src/modules/connections-tree/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/connections-tree/model.cpp -------------------------------------------------------------------------------- /src/modules/connections-tree/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/connections-tree/model.h -------------------------------------------------------------------------------- /src/modules/connections-tree/operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/connections-tree/operations.h -------------------------------------------------------------------------------- /src/modules/connections-tree/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/connections-tree/utils.cpp -------------------------------------------------------------------------------- /src/modules/connections-tree/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/connections-tree/utils.h -------------------------------------------------------------------------------- /src/modules/console/autocompletemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/console/autocompletemodel.cpp -------------------------------------------------------------------------------- /src/modules/console/autocompletemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/console/autocompletemodel.h -------------------------------------------------------------------------------- /src/modules/console/consolemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/console/consolemodel.cpp -------------------------------------------------------------------------------- /src/modules/console/consolemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/console/consolemodel.h -------------------------------------------------------------------------------- /src/modules/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/exception.h -------------------------------------------------------------------------------- /src/modules/extension-server/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/extension-server/client/CMakeLists.txt -------------------------------------------------------------------------------- /src/modules/extension-server/client/OAIDataFormatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/extension-server/client/OAIDataFormatter.cpp -------------------------------------------------------------------------------- /src/modules/extension-server/client/OAIDataFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/extension-server/client/OAIDataFormatter.h -------------------------------------------------------------------------------- /src/modules/extension-server/client/OAIDecodePayload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/extension-server/client/OAIDecodePayload.cpp -------------------------------------------------------------------------------- /src/modules/extension-server/client/OAIDecodePayload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/extension-server/client/OAIDecodePayload.h -------------------------------------------------------------------------------- /src/modules/extension-server/client/OAIDefaultApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/extension-server/client/OAIDefaultApi.cpp -------------------------------------------------------------------------------- /src/modules/extension-server/client/OAIDefaultApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/extension-server/client/OAIDefaultApi.h -------------------------------------------------------------------------------- /src/modules/extension-server/client/OAIEncodePayload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/extension-server/client/OAIEncodePayload.cpp -------------------------------------------------------------------------------- /src/modules/extension-server/client/OAIEncodePayload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/extension-server/client/OAIEncodePayload.h -------------------------------------------------------------------------------- /src/modules/extension-server/client/OAIEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/extension-server/client/OAIEnum.h -------------------------------------------------------------------------------- /src/modules/extension-server/client/OAIHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/extension-server/client/OAIHelpers.cpp -------------------------------------------------------------------------------- /src/modules/extension-server/client/OAIHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/extension-server/client/OAIHelpers.h -------------------------------------------------------------------------------- /src/modules/extension-server/client/OAIHttpFileElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/extension-server/client/OAIHttpFileElement.cpp -------------------------------------------------------------------------------- /src/modules/extension-server/client/OAIHttpFileElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/extension-server/client/OAIHttpFileElement.h -------------------------------------------------------------------------------- /src/modules/extension-server/client/OAIHttpRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/extension-server/client/OAIHttpRequest.cpp -------------------------------------------------------------------------------- /src/modules/extension-server/client/OAIHttpRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/extension-server/client/OAIHttpRequest.h -------------------------------------------------------------------------------- /src/modules/extension-server/client/OAIInline_response_400.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/extension-server/client/OAIInline_response_400.cpp -------------------------------------------------------------------------------- /src/modules/extension-server/client/OAIInline_response_400.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/extension-server/client/OAIInline_response_400.h -------------------------------------------------------------------------------- /src/modules/extension-server/client/OAIOauth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/extension-server/client/OAIOauth.cpp -------------------------------------------------------------------------------- /src/modules/extension-server/client/OAIOauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/extension-server/client/OAIOauth.h -------------------------------------------------------------------------------- /src/modules/extension-server/client/OAIObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/extension-server/client/OAIObject.h -------------------------------------------------------------------------------- /src/modules/extension-server/client/OAIServerConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/extension-server/client/OAIServerConfiguration.h -------------------------------------------------------------------------------- /src/modules/extension-server/client/OAIServerVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/extension-server/client/OAIServerVariable.h -------------------------------------------------------------------------------- /src/modules/extension-server/client/client.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/extension-server/client/client.pri -------------------------------------------------------------------------------- /src/modules/extension-server/dataformattermanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/extension-server/dataformattermanager.cpp -------------------------------------------------------------------------------- /src/modules/extension-server/dataformattermanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/extension-server/dataformattermanager.h -------------------------------------------------------------------------------- /src/modules/extension-server/generate_client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/extension-server/generate_client.sh -------------------------------------------------------------------------------- /src/modules/server-actions/serverstatsmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/server-actions/serverstatsmodel.cpp -------------------------------------------------------------------------------- /src/modules/server-actions/serverstatsmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/server-actions/serverstatsmodel.h -------------------------------------------------------------------------------- /src/modules/value-editor/abstractkeyfactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/value-editor/abstractkeyfactory.h -------------------------------------------------------------------------------- /src/modules/value-editor/embeddedformattersmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/value-editor/embeddedformattersmanager.cpp -------------------------------------------------------------------------------- /src/modules/value-editor/embeddedformattersmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/value-editor/embeddedformattersmanager.h -------------------------------------------------------------------------------- /src/modules/value-editor/keymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/value-editor/keymodel.h -------------------------------------------------------------------------------- /src/modules/value-editor/largetextmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/value-editor/largetextmodel.cpp -------------------------------------------------------------------------------- /src/modules/value-editor/largetextmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/value-editor/largetextmodel.h -------------------------------------------------------------------------------- /src/modules/value-editor/syntaxhighlighter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/value-editor/syntaxhighlighter.cpp -------------------------------------------------------------------------------- /src/modules/value-editor/syntaxhighlighter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/value-editor/syntaxhighlighter.h -------------------------------------------------------------------------------- /src/modules/value-editor/tabsmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/value-editor/tabsmodel.cpp -------------------------------------------------------------------------------- /src/modules/value-editor/tabsmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/value-editor/tabsmodel.h -------------------------------------------------------------------------------- /src/modules/value-editor/textcharformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/value-editor/textcharformat.cpp -------------------------------------------------------------------------------- /src/modules/value-editor/textcharformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/value-editor/textcharformat.h -------------------------------------------------------------------------------- /src/modules/value-editor/valueviewmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/value-editor/valueviewmodel.cpp -------------------------------------------------------------------------------- /src/modules/value-editor/valueviewmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/modules/value-editor/valueviewmodel.h -------------------------------------------------------------------------------- /src/py/formatters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/py/formatters/__init__.py -------------------------------------------------------------------------------- /src/py/formatters/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/py/formatters/base.py -------------------------------------------------------------------------------- /src/py/formatters/binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/py/formatters/binary.py -------------------------------------------------------------------------------- /src/py/formatters/cbor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/py/formatters/cbor.py -------------------------------------------------------------------------------- /src/py/formatters/msgpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/py/formatters/msgpack.py -------------------------------------------------------------------------------- /src/py/formatters/phpserialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/py/formatters/phpserialize.py -------------------------------------------------------------------------------- /src/py/formatters/pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/py/formatters/pickle.py -------------------------------------------------------------------------------- /src/py/py.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/py/py.qrc -------------------------------------------------------------------------------- /src/py/rdb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/py/rdb/__init__.py -------------------------------------------------------------------------------- /src/py/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/py/requirements.txt -------------------------------------------------------------------------------- /src/qml/AppToolBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/AppToolBar.qml -------------------------------------------------------------------------------- /src/qml/LogView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/LogView.qml -------------------------------------------------------------------------------- /src/qml/QuickStartDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/QuickStartDialog.qml -------------------------------------------------------------------------------- /src/qml/WelcomeTab.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/WelcomeTab.qml -------------------------------------------------------------------------------- /src/qml/app.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/app.qml -------------------------------------------------------------------------------- /src/qml/bulk-operations/BulkOperationsDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/bulk-operations/BulkOperationsDialog.qml -------------------------------------------------------------------------------- /src/qml/common/AddressInput.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/AddressInput.qml -------------------------------------------------------------------------------- /src/qml/common/BetterButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/BetterButton.qml -------------------------------------------------------------------------------- /src/qml/common/BetterCheckbox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/BetterCheckbox.qml -------------------------------------------------------------------------------- /src/qml/common/BetterComboBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/BetterComboBox.qml -------------------------------------------------------------------------------- /src/qml/common/BetterDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/BetterDialog.qml -------------------------------------------------------------------------------- /src/qml/common/BetterDialogButtonBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/BetterDialogButtonBox.qml -------------------------------------------------------------------------------- /src/qml/common/BetterGroupbox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/BetterGroupbox.qml -------------------------------------------------------------------------------- /src/qml/common/BetterLabel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/BetterLabel.qml -------------------------------------------------------------------------------- /src/qml/common/BetterMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/BetterMenu.qml -------------------------------------------------------------------------------- /src/qml/common/BetterMenuItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/BetterMenuItem.qml -------------------------------------------------------------------------------- /src/qml/common/BetterMessageDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/BetterMessageDialog.qml -------------------------------------------------------------------------------- /src/qml/common/BetterRadioButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/BetterRadioButton.qml -------------------------------------------------------------------------------- /src/qml/common/BetterSpinBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/BetterSpinBox.qml -------------------------------------------------------------------------------- /src/qml/common/BetterSplitView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/BetterSplitView.qml -------------------------------------------------------------------------------- /src/qml/common/BetterTab.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/BetterTab.qml -------------------------------------------------------------------------------- /src/qml/common/BetterTabButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/BetterTabButton.qml -------------------------------------------------------------------------------- /src/qml/common/BetterTabView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/BetterTabView.qml -------------------------------------------------------------------------------- /src/qml/common/BetterTextField.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/BetterTextField.qml -------------------------------------------------------------------------------- /src/qml/common/BetterToolTip.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/BetterToolTip.qml -------------------------------------------------------------------------------- /src/qml/common/ColorInput.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/ColorInput.qml -------------------------------------------------------------------------------- /src/qml/common/FastTextView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/FastTextView.qml -------------------------------------------------------------------------------- /src/qml/common/FilePathInput.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/FilePathInput.qml -------------------------------------------------------------------------------- /src/qml/common/ImageButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/ImageButton.qml -------------------------------------------------------------------------------- /src/qml/common/JsonHighlighter.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/JsonHighlighter.qml -------------------------------------------------------------------------------- /src/qml/common/LegacyTableView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/LegacyTableView.qml -------------------------------------------------------------------------------- /src/qml/common/NewTextArea.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/NewTextArea.qml -------------------------------------------------------------------------------- /src/qml/common/OkDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/OkDialog.qml -------------------------------------------------------------------------------- /src/qml/common/OkDialogOverlay.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/OkDialogOverlay.qml -------------------------------------------------------------------------------- /src/qml/common/PasswordInput.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/PasswordInput.qml -------------------------------------------------------------------------------- /src/qml/common/RichTextWithLinks.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/RichTextWithLinks.qml -------------------------------------------------------------------------------- /src/qml/common/SaveToFileButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/SaveToFileButton.qml -------------------------------------------------------------------------------- /src/qml/common/SettingsGroupTitle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/SettingsGroupTitle.qml -------------------------------------------------------------------------------- /src/qml/common/platformutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/common/platformutils.js -------------------------------------------------------------------------------- /src/qml/connections-tree/BetterTreeView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/connections-tree/BetterTreeView.qml -------------------------------------------------------------------------------- /src/qml/connections-tree/ConnectionGroupDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/connections-tree/ConnectionGroupDialog.qml -------------------------------------------------------------------------------- /src/qml/connections-tree/TreeItemDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/connections-tree/TreeItemDelegate.qml -------------------------------------------------------------------------------- /src/qml/connections-tree/menu/InlineMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/connections-tree/menu/InlineMenu.qml -------------------------------------------------------------------------------- /src/qml/connections-tree/menu/database.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/connections-tree/menu/database.qml -------------------------------------------------------------------------------- /src/qml/connections-tree/menu/key.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/connections-tree/menu/key.qml -------------------------------------------------------------------------------- /src/qml/connections-tree/menu/namespace.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/connections-tree/menu/namespace.qml -------------------------------------------------------------------------------- /src/qml/connections-tree/menu/server.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/connections-tree/menu/server.qml -------------------------------------------------------------------------------- /src/qml/connections-tree/menu/server_group.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/connections-tree/menu/server_group.qml -------------------------------------------------------------------------------- /src/qml/connections/AskSecretDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/connections/AskSecretDialog.qml -------------------------------------------------------------------------------- /src/qml/connections/ConnectionSettignsDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/connections/ConnectionSettignsDialog.qml -------------------------------------------------------------------------------- /src/qml/console/BaseConsole.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/console/BaseConsole.qml -------------------------------------------------------------------------------- /src/qml/console/Consoles.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/console/Consoles.qml -------------------------------------------------------------------------------- /src/qml/console/RedisConsole.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/console/RedisConsole.qml -------------------------------------------------------------------------------- /src/qml/dummy.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/dummy.qml -------------------------------------------------------------------------------- /src/qml/extension-server/ExtensionServerSettings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/extension-server/ExtensionServerSettings.qml -------------------------------------------------------------------------------- /src/qml/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/qml.qrc -------------------------------------------------------------------------------- /src/qml/server-actions/ServerAction.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/server-actions/ServerAction.qml -------------------------------------------------------------------------------- /src/qml/server-actions/ServerActionTabs.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/server-actions/ServerActionTabs.qml -------------------------------------------------------------------------------- /src/qml/server-actions/ServerCharts.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/server-actions/ServerCharts.qml -------------------------------------------------------------------------------- /src/qml/server-actions/ServerClients.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/server-actions/ServerClients.qml -------------------------------------------------------------------------------- /src/qml/server-actions/ServerConfig.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/server-actions/ServerConfig.qml -------------------------------------------------------------------------------- /src/qml/server-actions/ServerPubSub.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/server-actions/ServerPubSub.qml -------------------------------------------------------------------------------- /src/qml/server-actions/ServerSlowlog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/server-actions/ServerSlowlog.qml -------------------------------------------------------------------------------- /src/qml/settings/BoolOption.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/settings/BoolOption.qml -------------------------------------------------------------------------------- /src/qml/settings/ComboboxOption.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/settings/ComboboxOption.qml -------------------------------------------------------------------------------- /src/qml/settings/FontSizeOption.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/settings/FontSizeOption.qml -------------------------------------------------------------------------------- /src/qml/settings/GlobalSettings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/settings/GlobalSettings.qml -------------------------------------------------------------------------------- /src/qml/settings/IntOption.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/settings/IntOption.qml -------------------------------------------------------------------------------- /src/qml/value-editor/AddKeyDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/value-editor/AddKeyDialog.qml -------------------------------------------------------------------------------- /src/qml/value-editor/Pagination.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/value-editor/Pagination.qml -------------------------------------------------------------------------------- /src/qml/value-editor/ValueTable.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/value-editor/ValueTable.qml -------------------------------------------------------------------------------- /src/qml/value-editor/ValueTableActions.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/value-editor/ValueTableActions.qml -------------------------------------------------------------------------------- /src/qml/value-editor/ValueTableCell.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/value-editor/ValueTableCell.qml -------------------------------------------------------------------------------- /src/qml/value-editor/ValueTabs.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/value-editor/ValueTabs.qml -------------------------------------------------------------------------------- /src/qml/value-editor/editors/AbstractEditor.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/value-editor/editors/AbstractEditor.qml -------------------------------------------------------------------------------- /src/qml/value-editor/editors/HashItemEditor.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/value-editor/editors/HashItemEditor.qml -------------------------------------------------------------------------------- /src/qml/value-editor/editors/MultilineEditor.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/value-editor/editors/MultilineEditor.qml -------------------------------------------------------------------------------- /src/qml/value-editor/editors/ReadOnlySingleItemEditor.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/value-editor/editors/ReadOnlySingleItemEditor.qml -------------------------------------------------------------------------------- /src/qml/value-editor/editors/SingleItemEditor.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/value-editor/editors/SingleItemEditor.qml -------------------------------------------------------------------------------- /src/qml/value-editor/editors/SortedSetItemEditor.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/value-editor/editors/SortedSetItemEditor.qml -------------------------------------------------------------------------------- /src/qml/value-editor/editors/StreamItemEditor.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/value-editor/editors/StreamItemEditor.qml -------------------------------------------------------------------------------- /src/qml/value-editor/editors/UnsupportedDataType.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/value-editor/editors/UnsupportedDataType.qml -------------------------------------------------------------------------------- /src/qml/value-editor/editors/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/value-editor/editors/editor.js -------------------------------------------------------------------------------- /src/qml/value-editor/editors/formatters/ValueFormatters.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/value-editor/editors/formatters/ValueFormatters.qml -------------------------------------------------------------------------------- /src/qml/value-editor/editors/formatters/hexy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/value-editor/editors/formatters/hexy.js -------------------------------------------------------------------------------- /src/qml/value-editor/filters/ListFilters.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/value-editor/filters/ListFilters.qml -------------------------------------------------------------------------------- /src/qml/value-editor/filters/StreamFilters.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/qml/value-editor/filters/StreamFilters.qml -------------------------------------------------------------------------------- /src/resources/Info.plist.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/Info.plist.sample -------------------------------------------------------------------------------- /src/resources/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/commands.json -------------------------------------------------------------------------------- /src/resources/commands.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/commands.qrc -------------------------------------------------------------------------------- /src/resources/convert_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/convert_commands.py -------------------------------------------------------------------------------- /src/resources/flatpak/app.resp.RESP.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/flatpak/app.resp.RESP.desktop -------------------------------------------------------------------------------- /src/resources/flatpak/app.resp.RESP.metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/flatpak/app.resp.RESP.metainfo.xml -------------------------------------------------------------------------------- /src/resources/fonts.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/fonts.qrc -------------------------------------------------------------------------------- /src/resources/fonts/Inconsolata-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/fonts/Inconsolata-Regular.ttf -------------------------------------------------------------------------------- /src/resources/fonts/OpenSans.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/fonts/OpenSans.ttc -------------------------------------------------------------------------------- /src/resources/icons.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/icons.qrc -------------------------------------------------------------------------------- /src/resources/icons_qrc_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/icons_qrc_generator.py -------------------------------------------------------------------------------- /src/resources/images.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images.qrc -------------------------------------------------------------------------------- /src/resources/images/aws_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/aws_logo.svg -------------------------------------------------------------------------------- /src/resources/images/aws_logo_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/aws_logo_white.svg -------------------------------------------------------------------------------- /src/resources/images/azure_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/azure_logo.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/add.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/alert.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/back.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/binary_file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/binary_file.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/bulk_operations.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/bulk_operations.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/cleanup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/cleanup.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/cleanup_filtered.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/cleanup_filtered.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/clear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/clear.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/clients.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/clients.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/cluster.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/cluster.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/code_file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/code_file.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/console.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/console.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/copy.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/copy_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/copy_2.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/database.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/database.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/db-copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/db-copy.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/delete.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/document.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/export.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/file.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/filter.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/github.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/help.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/import.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/import.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/key.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/list.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/live_update.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/live_update.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/live_update_disable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/live_update_disable.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/loader.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/log.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/log.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/maximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/maximize.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/memory_usage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/memory_usage.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/minimize.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/namespace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/namespace.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/namespace_open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/namespace_open.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/offline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/offline.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/ok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/ok.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/plus.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/pub-sub-channels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/pub-sub-channels.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/refresh.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/save.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/search.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/sentinel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/sentinel.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/server-config.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/server-config.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/server-stats.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/server-stats.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/server.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/server_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/server_2.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/server_group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/server_group.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/server_group_open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/server_group_open.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/server_offline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/server_offline.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/settings.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/slowlog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/slowlog.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/sort.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/square-half.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/square-half.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/telegram.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/ttl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/ttl.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/twi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/twi.svg -------------------------------------------------------------------------------- /src/resources/images/dark_theme/wait.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/dark_theme/wait.svg -------------------------------------------------------------------------------- /src/resources/images/digitalocean_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/digitalocean_logo.svg -------------------------------------------------------------------------------- /src/resources/images/heroku_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/heroku_logo.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/add.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/alert.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/back.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/binary_file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/binary_file.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/bulk_operations.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/bulk_operations.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/cleanup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/cleanup.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/cleanup_filtered.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/cleanup_filtered.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/clear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/clear.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/clients.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/clients.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/cluster.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/cluster.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/code_file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/code_file.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/console.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/console.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/copy.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/copy_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/copy_2.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/database.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/database.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/db-copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/db-copy.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/delete.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/document.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/export.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/file.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/filter.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/github.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/help.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/import.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/import.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/key.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/list.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/live_update.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/live_update.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/live_update_disable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/live_update_disable.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/loader.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/log.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/log.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/maximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/maximize.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/memory_usage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/memory_usage.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/minimize.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/namespace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/namespace.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/namespace_open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/namespace_open.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/offline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/offline.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/ok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/ok.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/plus.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/pub-sub-channels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/pub-sub-channels.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/refresh.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/save.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/search.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/sentinel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/sentinel.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/server-config.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/server-config.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/server-stats.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/server-stats.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/server.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/server_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/server_2.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/server_group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/server_group.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/server_group_open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/server_group_open.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/server_offline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/server_offline.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/settings.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/slowlog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/slowlog.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/sort.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/square-half.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/square-half.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/telegram.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/ttl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/ttl.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/twi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/twi.svg -------------------------------------------------------------------------------- /src/resources/images/light_theme/wait.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/light_theme/wait.svg -------------------------------------------------------------------------------- /src/resources/images/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/logo.ico -------------------------------------------------------------------------------- /src/resources/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/logo.png -------------------------------------------------------------------------------- /src/resources/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/logo.svg -------------------------------------------------------------------------------- /src/resources/images/redisinsight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/redisinsight.svg -------------------------------------------------------------------------------- /src/resources/images/resp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/resp.png -------------------------------------------------------------------------------- /src/resources/images/resp_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/images/resp_m.png -------------------------------------------------------------------------------- /src/resources/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/logo.icns -------------------------------------------------------------------------------- /src/resources/resp.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/resp.desktop -------------------------------------------------------------------------------- /src/resources/tr.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/tr.qrc -------------------------------------------------------------------------------- /src/resources/translations/rdm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/translations/rdm.ts -------------------------------------------------------------------------------- /src/resources/translations/rdm_es_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/translations/rdm_es_ES.ts -------------------------------------------------------------------------------- /src/resources/translations/rdm_ja_JP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/translations/rdm_ja_JP.ts -------------------------------------------------------------------------------- /src/resources/translations/rdm_uk_UA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/translations/rdm_uk_UA.ts -------------------------------------------------------------------------------- /src/resources/translations/rdm_zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/translations/rdm_zh_CN.ts -------------------------------------------------------------------------------- /src/resources/translations/rdm_zh_TW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resources/translations/rdm_zh_TW.ts -------------------------------------------------------------------------------- /src/resp.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/src/resp.pro -------------------------------------------------------------------------------- /tests/py_tests/requirements.txt: -------------------------------------------------------------------------------- 1 | ddt 2 | nose 3 | -------------------------------------------------------------------------------- /tests/py_tests/test_formatters/test_msgpack_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/py_tests/test_formatters/test_msgpack_formatter.py -------------------------------------------------------------------------------- /tests/py_tests/test_formatters/test_php_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/py_tests/test_formatters/test_php_formatter.py -------------------------------------------------------------------------------- /tests/py_tests/test_formatters/test_pickle_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/py_tests/test_formatters/test_pickle_formatter.py -------------------------------------------------------------------------------- /tests/qml_tests/qml_test_runner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/qml_tests/qml_test_runner.cpp -------------------------------------------------------------------------------- /tests/qml_tests/qml_tests.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/qml_tests/qml_tests.pro -------------------------------------------------------------------------------- /tests/qml_tests/setup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/qml_tests/setup.cpp -------------------------------------------------------------------------------- /tests/qml_tests/setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/qml_tests/setup.h -------------------------------------------------------------------------------- /tests/qml_tests/tst_MultilineEditor.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/qml_tests/tst_MultilineEditor.qml -------------------------------------------------------------------------------- /tests/qml_tests/tst_formatters.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/qml_tests/tst_formatters.qml -------------------------------------------------------------------------------- /tests/smoke_test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/smoke_test.bat -------------------------------------------------------------------------------- /tests/tests.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/tests.pro -------------------------------------------------------------------------------- /tests/unit_tests/generate_coverage_report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/unit_tests/generate_coverage_report -------------------------------------------------------------------------------- /tests/unit_tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/unit_tests/main.cpp -------------------------------------------------------------------------------- /tests/unit_tests/respbasetestcase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/unit_tests/respbasetestcase.h -------------------------------------------------------------------------------- /tests/unit_tests/testcases/app/app-tests.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/unit_tests/testcases/app/app-tests.pri -------------------------------------------------------------------------------- /tests/unit_tests/testcases/app/connections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/unit_tests/testcases/app/connections.json -------------------------------------------------------------------------------- /tests/unit_tests/testcases/app/test_apputils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/unit_tests/testcases/app/test_apputils.cpp -------------------------------------------------------------------------------- /tests/unit_tests/testcases/app/test_apputils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/unit_tests/testcases/app/test_apputils.h -------------------------------------------------------------------------------- /tests/unit_tests/testcases/app/test_configmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/unit_tests/testcases/app/test_configmanager.cpp -------------------------------------------------------------------------------- /tests/unit_tests/testcases/app/test_configmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/unit_tests/testcases/app/test_configmanager.h -------------------------------------------------------------------------------- /tests/unit_tests/testcases/app/test_connectionsmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/unit_tests/testcases/app/test_connectionsmanager.cpp -------------------------------------------------------------------------------- /tests/unit_tests/testcases/app/test_connectionsmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/unit_tests/testcases/app/test_connectionsmanager.h -------------------------------------------------------------------------------- /tests/unit_tests/testcases/app/test_keymodels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/unit_tests/testcases/app/test_keymodels.cpp -------------------------------------------------------------------------------- /tests/unit_tests/testcases/app/test_keymodels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/unit_tests/testcases/app/test_keymodels.h -------------------------------------------------------------------------------- /tests/unit_tests/testcases/app/test_treeoperations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/unit_tests/testcases/app/test_treeoperations.cpp -------------------------------------------------------------------------------- /tests/unit_tests/testcases/app/test_treeoperations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/unit_tests/testcases/app/test_treeoperations.h -------------------------------------------------------------------------------- /tests/unit_tests/testcases/connections-tree/connections-tree-tests.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/unit_tests/testcases/connections-tree/connections-tree-tests.pri -------------------------------------------------------------------------------- /tests/unit_tests/testcases/connections-tree/mocks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/unit_tests/testcases/connections-tree/mocks.cpp -------------------------------------------------------------------------------- /tests/unit_tests/testcases/connections-tree/mocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/unit_tests/testcases/connections-tree/mocks.h -------------------------------------------------------------------------------- /tests/unit_tests/testcases/connections-tree/test_databaseitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/unit_tests/testcases/connections-tree/test_databaseitem.cpp -------------------------------------------------------------------------------- /tests/unit_tests/testcases/connections-tree/test_databaseitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/unit_tests/testcases/connections-tree/test_databaseitem.h -------------------------------------------------------------------------------- /tests/unit_tests/testcases/connections-tree/test_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/unit_tests/testcases/connections-tree/test_model.cpp -------------------------------------------------------------------------------- /tests/unit_tests/testcases/connections-tree/test_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/unit_tests/testcases/connections-tree/test_model.h -------------------------------------------------------------------------------- /tests/unit_tests/testcases/connections-tree/test_serveritem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/unit_tests/testcases/connections-tree/test_serveritem.cpp -------------------------------------------------------------------------------- /tests/unit_tests/testcases/connections-tree/test_serveritem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/unit_tests/testcases/connections-tree/test_serveritem.h -------------------------------------------------------------------------------- /tests/unit_tests/testcases/console/console-tests.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/unit_tests/testcases/console/console-tests.pri -------------------------------------------------------------------------------- /tests/unit_tests/testcases/console/test_consolemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/unit_tests/testcases/console/test_consolemodel.cpp -------------------------------------------------------------------------------- /tests/unit_tests/testcases/console/test_consolemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/unit_tests/testcases/console/test_consolemodel.h -------------------------------------------------------------------------------- /tests/unit_tests/testcases/value-editor/value-editor-tests.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/unit_tests/testcases/value-editor/value-editor-tests.pri -------------------------------------------------------------------------------- /tests/unit_tests/unit_tests.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisDesktopManager/HEAD/tests/unit_tests/unit_tests.pro --------------------------------------------------------------------------------