public inbox for [email protected]  
help / color / mirror / Atom feed
pgAdmin 4 commit: Fixed the following issues for RM 3794:
4+ messages / 1 participants
[nested] [flat]

* pgAdmin 4 commit: Fixed the following issues for RM 3794:
@ 2020-10-08 06:08 Akshay Joshi <[email protected]>
  0 siblings, 0 replies; 4+ messages in thread

From: Akshay Joshi @ 2020-10-08 06:08 UTC (permalink / raw)
  To: [email protected]

Fixed the following issues for RM 3794:

1. Updated connection success message. (Added database name in the success message.)
2. Resolve issue of the mouse pointer and dropdown will show below the connection string only.
3. Added loader for both new connections and load existing connections.
4. Removed async: false for update connection.

refs #3794

Branch
------
master

Details
-------
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=1c796720be24838ba78ef2b83e1fc6ff4353...
Author: Nikhil Mohite <[email protected]>

Modified Files
--------------
.../static/js/sqleditor/new_connection_dialog.js   | 15 +++++--
.../js/sqleditor/new_connection_dialog_model.js    | 13 ++++--
.../tools/datagrid/templates/datagrid/index.html   | 10 +++--
web/pgadmin/tools/sqleditor/static/js/sqleditor.js | 47 ++++++++++++----------
.../tools/sqleditor/static/scss/_sqleditor.scss    |  6 +++
5 files changed, 57 insertions(+), 34 deletions(-)



^ permalink  raw  reply  [nested|flat] 4+ messages in thread

* pgAdmin 4 commit: Fixed the following issues:
@ 2020-10-27 05:45 Akshay Joshi <[email protected]>
  0 siblings, 0 replies; 4+ messages in thread

From: Akshay Joshi @ 2020-10-27 05:45 UTC (permalink / raw)
  To: [email protected]

Fixed the following issues:

RM-4232:
1. If the user adds a percentage (other than for placeholders) then it is stripped off.
2. Backslash is getting removed in the connection string if we provide the backslash(\) in placeholders or the database name contains it.
3. If the user added only spaces( )in placeholders it is not getting reset to default values.

RM-4230:
1. Rename panel option is not working in the debugger.
2. Added Rename panel for schema diff.

Fixes #4232 #4230

Branch
------
master

Details
-------
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=b5f9fffaddaf652aef3477bb5a9b7fe25ea6...
Author: Nikhil Mohite <[email protected]>

Modified Files
--------------
web/pgadmin/preferences/__init__.py                |  6 ++++
.../static/js/sqleditor/new_connection_dialog.js   | 27 +++++++--------
web/pgadmin/tools/datagrid/static/js/datagrid.js   |  3 +-
.../datagrid/static/js/datagrid_panel_title.js     | 19 +++--------
web/pgadmin/tools/datagrid/static/js/show_data.js  | 24 ++++----------
web/pgadmin/tools/debugger/static/js/debugger.js   | 15 +++++++++
.../tools/debugger/static/js/debugger_utils.js     | 38 ++++++++--------------
.../tools/schema_diff/static/js/schema_diff.js     | 19 +++++++++--
.../tools/schema_diff/static/js/schema_diff_ui.js  |  1 -
9 files changed, 75 insertions(+), 77 deletions(-)



^ permalink  raw  reply  [nested|flat] 4+ messages in thread

* pgAdmin 4 commit: Fixed the following issues for the new query tool:
@ 2022-04-25 12:42 Akshay Joshi <[email protected]>
  0 siblings, 0 replies; 4+ messages in thread

From: Akshay Joshi @ 2022-04-25 12:42 UTC (permalink / raw)
  To: [email protected]

Fixed the following issues for the new query tool:
 1) Failed to fetch query history error sometimes.
 2) In copy paste row, if a copied row has [null], then those are pasted as an empty string.
 3) When Data output is empty, show an empty grid.
 4) Schema diff generates a script button resulting in an empty window. Fixes #7306.
 5) Detach the DataOutput panel > Try editing text cell > Text editor is hidden behind the data output panel

refs #6131

Branch
------
master

Details
-------
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=25b89f76242da9f98c3aa099322079de52b6...
Author: Aditya Toshniwal <[email protected]>

Modified Files
--------------
web/pgadmin/static/js/SchemaView/index.jsx         |  4 ++--
web/pgadmin/static/js/helpers/Layout.jsx           |  2 +-
web/pgadmin/static/scss/_codemirror.overrides.scss |  5 +++--
web/pgadmin/tools/erd/__init__.py                  |  1 +
.../js/erd_tool/ui_components/BodyWidget.jsx       |  3 +++
.../static/js/components/QueryToolComponent.jsx    |  2 +-
.../js/components/QueryToolDataGrid/CopyData.js    |  2 ++
.../js/components/QueryToolDataGrid/Editors.jsx    |  5 ++---
.../js/components/QueryToolDataGrid/index.jsx      |  8 ++------
.../static/js/components/sections/Query.jsx        |  4 +++-
.../static/js/components/sections/QueryHistory.jsx | 18 ++++++++++++++----
.../static/js/components/sections/ResultSet.jsx    | 22 +++++++++++++++-------
.../tools/sqleditor/static/js/show_query_tool.js   |  2 ++
.../tools/sqleditor/static/js/sqleditor_title.js   |  2 +-
14 files changed, 52 insertions(+), 28 deletions(-)



^ permalink  raw  reply  [nested|flat] 4+ messages in thread

* pgAdmin 4 commit: Fixed the following issues for the new query tool:
@ 2022-04-26 10:59 Akshay Joshi <[email protected]>
  0 siblings, 0 replies; 4+ messages in thread

From: Akshay Joshi @ 2022-04-26 10:59 UTC (permalink / raw)
  To: [email protected]

Fixed the following issues for the new query tool:
 1) In Dark mode > Replace/Find dialogue forward & reverse buttons are stuck to each other.
 2) In Dark/High contrast mode > Checkbox is not visible for false value.
 3) Wrap toolbar when size goes very small.
 4) Replace functionality does not work when tried in sequence 2 times. Codemirror search is not cyclic. So, changes are made to always search from the start.
 5) Replace all does not work when tried in sequence 2 times. Same reason as above.
 6) Fix broken macros $SELECTION$ feature.
 7) Make query history SQL readonly.
 8) The Filter dialog save button should be disabled when opened.

Branch
------
master

Details
-------
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=0795b22ae6fd63a6d5bd130497d3f8eebf27...
Author: Aditya Toshniwal <[email protected]>

Modified Files
--------------
web/pgadmin/static/js/components/CodeMirror.jsx        | 13 +++++++++----
.../static/js/components/QueryToolComponent.jsx        | 18 +++++++++++-------
.../static/js/components/QueryToolDataGrid/Editors.jsx |  2 +-
.../static/js/components/dialogs/FilterDialog.jsx      |  2 +-
.../static/js/components/sections/MainToolBar.jsx      |  3 ++-
.../sqleditor/static/js/components/sections/Query.jsx  | 17 +++++++++++++----
6 files changed, 37 insertions(+), 18 deletions(-)



^ permalink  raw  reply  [nested|flat] 4+ messages in thread


end of thread, other threads:[~2022-04-26 10:59 UTC | newest]

Thread overview: 4+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2020-10-08 06:08 pgAdmin 4 commit: Fixed the following issues for RM 3794: Akshay Joshi <[email protected]>
2020-10-27 05:45 pgAdmin 4 commit: Fixed the following issues: Akshay Joshi <[email protected]>
2022-04-25 12:42 pgAdmin 4 commit: Fixed the following issues for the new query tool: Akshay Joshi <[email protected]>
2022-04-26 10:59 pgAdmin 4 commit: Fixed the following issues for the new query tool: Akshay Joshi <[email protected]>

This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox