Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1qgIZV-00F5la-Ug for pgadmin-hackers@arkaria.postgresql.org; Wed, 13 Sep 2023 05:37:53 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.94.2) (envelope-from ) id 1qgIZU-00EkOy-QI for pgadmin-hackers@arkaria.postgresql.org; Wed, 13 Sep 2023 05:37:52 +0000 Received: from makus.postgresql.org ([2001:4800:3e1:1::229]) by malur.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1qgIZU-00EkOV-Hs for pgadmin-hackers@lists.postgresql.org; Wed, 13 Sep 2023 05:37:52 +0000 Received: from out-21.smtp.github.com ([192.30.252.204]) by makus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1qgIZL-004HLb-56 for pgadmin-hackers@lists.postgresql.org; Wed, 13 Sep 2023 05:37:49 +0000 Received: from github.com (hubbernetes-node-9bb0373.ac4-iad.github.net [10.52.211.17]) by smtp.github.com (Postfix) with ESMTPA id C8CA7701029 for ; Tue, 12 Sep 2023 22:37:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2023; t=1694583461; bh=xnIkyIghVxolZ+Eb+XC8WI/mWpcNAf4hrHM2pK9AXJs=; h=Date:From:To:Subject:From; b=FFTEiaSZjym4FnzXFFNvWQaReqhlLJxyUiKPD0+8GCPPrMi+G3RuVEB+NPnNGMQRu G0NY/1HDmG172RsIwwYhj24n3S/OPKNDQTWDw3W/7ZjUmMNF9OMXKXZUbDJ91DNktK /RZh/mDqpRBa0NVbiuZi3kA4D8PVRWC74xZS4BnY= Date: Tue, 12 Sep 2023 22:37:41 -0700 From: Nikhil Mohite To: pgadmin-hackers@lists.postgresql.org Message-ID: Subject: [pgadmin-org/pgadmin4] aa973f: Added support to select/deselect objects in the Ba... Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-GitHub-Recipient-Address: pgadmin-hackers@lists.postgresql.org X-Auto-Response-Suppress: All List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk Branch: refs/heads/master Home: https://github.com/pgadmin-org/pgadmin4 Commit: aa973fc8ae805c87a0f6141a32c013d9f0f85889 https://github.com/pgadmin-org/pgadmin4/commit/aa973fc8ae805c87a0f6141a32c013d9f0f85889 Author: Nikhil Mohite Date: 2023-09-13 (Wed, 13 Sep 2023) Changed paths: M docs/en_US/backup_dialog.rst A docs/en_US/images/backup_object_selection.png M web/package.json A web/pgadmin/static/js/PgTreeView/index.jsx M web/pgadmin/static/js/SchemaView/FormView.jsx M web/pgadmin/static/js/SchemaView/MappedControl.jsx M web/pgadmin/static/js/components/EmptyPanelMessage.jsx M web/pgadmin/static/js/components/FormComponents.jsx M web/pgadmin/tools/backup/__init__.py M web/pgadmin/tools/backup/static/js/backup.js M web/pgadmin/tools/backup/static/js/backup.ui.js M web/pgadmin/tools/backup/tests/test_create_backup_job.py M web/pgadmin/tools/grant_wizard/__init__.py M web/pgadmin/tools/sqleditor/__init__.py M web/pgadmin/tools/sqleditor/static/js/components/QueryToolComponent.jsx M web/pgadmin/tools/sqleditor/utils/start_running_query.py M web/regression/javascript/schema_ui_files/backup.ui.spec.js M web/yarn.lock Log Message: ----------- Added support to select/deselect objects in the Backup dialog. #642