pgAdmin 4 commit: Implemented runtime using NWjs to open pgAdmin4 in a

From: Akshay Joshi <akshay(dot)joshi(at)enterprisedb(dot)com>
To: pgadmin-hackers(at)lists(dot)postgresql(dot)org
Subject: pgAdmin 4 commit: Implemented runtime using NWjs to open pgAdmin4 in a
Date: 2021-01-29 08:10:35
Message-ID: E1l5OrT-0000Pw-Fw@gothos.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Implemented runtime using NWjs to open pgAdmin4 in a standalone window
instead of the system tray and web browser. Used NWjs to get rid of QT
and C++. Fixes #5967

Use cheroot as the default production server for pgAdmin4. Fixes #5017

Branch
------
master

Details
-------
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=102ffd141c92d8c1ada72c42e86fb9be6260dfe1

Modified Files
--------------
.gitignore | 3 +-
DEPENDENCIES | 927 +--------
Make.bat | 204 +-
Makefile | 2 +-
README | 84 +-
docs/en_US/code_overview.rst | 10 +-
docs/en_US/coding_standards.rst | 48 -
docs/en_US/desktop_deployment.rst | 46 +-
docs/en_US/release_notes_5_0.rst | 7 +-
pkg/debian/build.sh | 4 +-
pkg/debian/setup.sh | 2 +-
pkg/linux/build-functions.sh | 72 +-
pkg/linux/pgadmin4-128x128.png | Bin 0 -> 17062 bytes
pkg/linux/pgadmin4-16x16.png | Bin 0 -> 1673 bytes
pkg/linux/pgadmin4-32x32.png | Bin 0 -> 3302 bytes
pkg/linux/pgadmin4-48x48.png | Bin 0 -> 5559 bytes
pkg/linux/pgadmin4-64x64.png | Bin 0 -> 7603 bytes
pkg/linux/pgadmin4.desktop | 2 +-
pkg/mac/.gitignore | 2 -
pkg/mac/Info.plist-template_Python | 22 -
pkg/mac/Info.plist-template_Qt5 | 22 -
pkg/mac/Info.plist.in | 73 +
pkg/mac/PkgInfo | 1 -
pkg/mac/README | 39 +-
pkg/mac/build-functions.sh | 475 ++---
pkg/mac/build.sh | 49 +-
pkg/mac/dmg-background.png | Bin 0 -> 718154 bytes
pkg/mac/dmg-icon.icns | Bin 0 -> 176578 bytes
pkg/mac/dmg-license.py | 166 --
pkg/mac/dmg.DS_Store | Bin 0 -> 10244 bytes
pkg/mac/entitlements.plist.in | 12 +
pkg/mac/framework.conf.in | 10 -
pkg/mac/pgAdmin4.icns | Bin 0 -> 431816 bytes
pkg/mac/pgadmin.Info.plist.in | 28 -
pkg/redhat/build.sh | 29 +-
pkg/redhat/setup.sh | 4 +-
pkg/win32/README.txt | 31 +-
pkg/win32/installer.iss.in | 5 +-
pkg/win32/sidebar.bmp | Bin 0 -> 792502 bytes
requirements.txt | 5 +-
runtime/.eslintignore | 6 +
runtime/.eslintrc.js | 53 +
runtime/.gitignore | 13 +-
runtime/ConfigWindow.cpp | 136 --
runtime/ConfigWindow.h | 46 -
runtime/ConfigWindow.ui | 652 ------
runtime/FloatingWindow.cpp | 147 --
runtime/FloatingWindow.h | 58 -
runtime/FloatingWindow.ui | 155 --
runtime/Info.plist | 35 -
runtime/LogWindow.cpp | 103 -
runtime/LogWindow.h | 40 -
runtime/LogWindow.ui | 138 --
runtime/Logger.cpp | 63 -
runtime/Logger.h | 33 -
runtime/MenuActions.cpp | 118 --
runtime/MenuActions.h | 46 -
runtime/Runtime.cpp | 660 ------
runtime/Runtime.h | 69 -
runtime/Server.cpp | 363 ----
runtime/Server.h | 56 -
runtime/TrayIcon.cpp | 143 --
runtime/TrayIcon.h | 51 -
runtime/{ => assets}/pgAdmin4.png | Bin
runtime/assets/welcome_logo.svg | 1 +
runtime/breeze.qrc | 0
runtime/dark/branch_closed-on.svg | 0
runtime/dark/branch_closed.svg | 0
runtime/dark/branch_open-on.svg | 0
runtime/dark/branch_open.svg | 0
runtime/dark/checkbox_checked.svg | 0
runtime/dark/checkbox_checked_disabled.svg | 0
runtime/dark/checkbox_indeterminate.svg | 0
runtime/dark/checkbox_indeterminate_disabled.svg | 0
runtime/dark/checkbox_unchecked.svg | 0
runtime/dark/checkbox_unchecked_disabled.svg | 0
runtime/dark/close-hover.svg | 0
runtime/dark/close-pressed.svg | 0
runtime/dark/close.svg | 0
runtime/dark/down_arrow-hover.svg | 0
runtime/dark/down_arrow.svg | 0
runtime/dark/down_arrow_disabled.svg | 0
runtime/dark/hmovetoolbar.svg | 0
runtime/dark/hsepartoolbar.svg | 0
runtime/dark/left_arrow.svg | 0
runtime/dark/left_arrow_disabled.svg | 0
runtime/dark/radio_checked.svg | 0
runtime/dark/radio_checked_disabled.svg | 0
runtime/dark/radio_unchecked.svg | 0
runtime/dark/radio_unchecked_disabled.svg | 0
runtime/dark/right_arrow.svg | 0
runtime/dark/right_arrow_disabled.svg | 0
runtime/dark/sizegrip.svg | 0
runtime/dark/spinup_disabled.svg | 0
runtime/dark/stylesheet-branch-end-closed.svg | 0
runtime/dark/stylesheet-branch-end-open.svg | 0
runtime/dark/stylesheet-branch-end.svg | 0
runtime/dark/stylesheet-branch-more.svg | 0
runtime/dark/stylesheet-vline.svg | 0
runtime/dark/transparent.svg | 0
runtime/dark/undock-hover.svg | 0
runtime/dark/undock.svg | 0
runtime/dark/up_arrow-hover.svg | 0
runtime/dark/up_arrow.svg | 0
runtime/dark/up_arrow_disabled.svg | 0
runtime/dark/vmovetoolbar.svg | 0
runtime/dark/vsepartoolbars.svg | 0
runtime/dev_config.json.in | 4 +
runtime/light/branch_closed-on.svg | 0
runtime/light/branch_closed.svg | 0
runtime/light/branch_open-on.svg | 0
runtime/light/branch_open.svg | 0
runtime/light/checkbox_checked-hover.svg | 0
runtime/light/checkbox_checked.svg | 0
runtime/light/checkbox_checked_disabled.svg | 0
runtime/light/checkbox_indeterminate-hover.svg | 0
runtime/light/checkbox_indeterminate.svg | 0
runtime/light/checkbox_indeterminate_disabled.svg | 0
runtime/light/checkbox_unchecked-hover.svg | 0
runtime/light/checkbox_unchecked_disabled.svg | 0
runtime/light/close-hover.svg | 0
runtime/light/close-pressed.svg | 0
runtime/light/close.svg | 0
runtime/light/down_arrow-hover.svg | 0
runtime/light/down_arrow.svg | 0
runtime/light/down_arrow_disabled.svg | 0
runtime/light/hmovetoolbar.svg | 0
runtime/light/hsepartoolbar.svg | 0
runtime/light/left_arrow.svg | 0
runtime/light/left_arrow_disabled.svg | 0
runtime/light/radio_checked-hover.svg | 0
runtime/light/radio_checked.svg | 0
runtime/light/radio_checked_disabled.svg | 0
runtime/light/radio_unchecked-hover.svg | 0
runtime/light/radio_unchecked_disabled.svg | 0
runtime/light/right_arrow.svg | 0
runtime/light/right_arrow_disabled.svg | 0
runtime/light/sizegrip.svg | 0
runtime/light/spinup_disabled.svg | 0
runtime/light/stylesheet-branch-end-closed.svg | 0
runtime/light/stylesheet-branch-end-open.svg | 0
runtime/light/stylesheet-branch-end.svg | 0
runtime/light/stylesheet-branch-more.svg | 0
runtime/light/stylesheet-vline.svg | 0
runtime/light/transparent.svg | 0
runtime/light/undock-hover.svg | 0
runtime/light/undock.svg | 0
runtime/light/up_arrow-hover.svg | 0
runtime/light/up_arrow.svg | 0
runtime/light/up_arrow_disabled.svg | 0
runtime/light/vmovetoolbar.svg | 0
runtime/light/vsepartoolbars.svg | 0
runtime/macos.h | 17 -
runtime/macos.mm | 27 -
runtime/package.json | 31 +
runtime/pgAdmin4-mac.png | Bin 81551 -> 0 bytes
runtime/pgAdmin4.cpp | 50 -
runtime/pgAdmin4.h | 29 -
runtime/pgAdmin4.icns | Bin 326224 -> 0 bytes
runtime/pgAdmin4.ico | Bin 35147 -> 0 bytes
runtime/pgAdmin4.pro | 131 --
runtime/pgAdmin4.qrc | 8 -
runtime/pgAdmin4.rc | 1 -
runtime/qdarkstyle/rc/arrow_down.png | Bin 525 -> 0 bytes
runtime/qdarkstyle/rc/arrow_down(at)2x(dot)png | Bin 977 -> 0 bytes
runtime/qdarkstyle/rc/arrow_down_disabled.png | Bin 547 -> 0 bytes
runtime/qdarkstyle/rc/arrow_down_disabled(at)2x(dot)png | Bin 1040 -> 0 bytes
runtime/qdarkstyle/rc/arrow_down_focus.png | Bin 530 -> 0 bytes
runtime/qdarkstyle/rc/arrow_down_focus(at)2x(dot)png | Bin 1025 -> 0 bytes
runtime/qdarkstyle/rc/arrow_down_pressed.png | Bin 518 -> 0 bytes
runtime/qdarkstyle/rc/arrow_down_pressed(at)2x(dot)png | Bin 1007 -> 0 bytes
runtime/qdarkstyle/rc/arrow_left.png | Bin 546 -> 0 bytes
runtime/qdarkstyle/rc/arrow_left(at)2x(dot)png | Bin 1072 -> 0 bytes
runtime/qdarkstyle/rc/arrow_left_disabled.png | Bin 569 -> 0 bytes
runtime/qdarkstyle/rc/arrow_left_disabled(at)2x(dot)png | Bin 1126 -> 0 bytes
runtime/qdarkstyle/rc/arrow_left_focus.png | Bin 565 -> 0 bytes
runtime/qdarkstyle/rc/arrow_left_focus(at)2x(dot)png | Bin 1143 -> 0 bytes
runtime/qdarkstyle/rc/arrow_left_pressed.png | Bin 541 -> 0 bytes
runtime/qdarkstyle/rc/arrow_left_pressed(at)2x(dot)png | Bin 1120 -> 0 bytes
runtime/qdarkstyle/rc/arrow_right.png | Bin 518 -> 0 bytes
runtime/qdarkstyle/rc/arrow_right(at)2x(dot)png | Bin 1062 -> 0 bytes
runtime/qdarkstyle/rc/arrow_right_disabled.png | Bin 553 -> 0 bytes
runtime/qdarkstyle/rc/arrow_right_disabled(at)2x(dot)png | Bin 1143 -> 0 bytes
runtime/qdarkstyle/rc/arrow_right_focus.png | Bin 543 -> 0 bytes
runtime/qdarkstyle/rc/arrow_right_focus(at)2x(dot)png | Bin 1139 -> 0 bytes
runtime/qdarkstyle/rc/arrow_right_pressed.png | Bin 544 -> 0 bytes
runtime/qdarkstyle/rc/arrow_right_pressed(at)2x(dot)png | Bin 1121 -> 0 bytes
runtime/qdarkstyle/rc/arrow_up.png | Bin 512 -> 0 bytes
runtime/qdarkstyle/rc/arrow_up(at)2x(dot)png | Bin 969 -> 0 bytes
runtime/qdarkstyle/rc/arrow_up_disabled.png | Bin 538 -> 0 bytes
runtime/qdarkstyle/rc/arrow_up_disabled(at)2x(dot)png | Bin 1046 -> 0 bytes
runtime/qdarkstyle/rc/arrow_up_focus.png | Bin 530 -> 0 bytes
runtime/qdarkstyle/rc/arrow_up_focus(at)2x(dot)png | Bin 1017 -> 0 bytes
runtime/qdarkstyle/rc/arrow_up_pressed.png | Bin 518 -> 0 bytes
runtime/qdarkstyle/rc/arrow_up_pressed(at)2x(dot)png | Bin 998 -> 0 bytes
runtime/qdarkstyle/rc/base_icon.png | Bin 1256 -> 0 bytes
runtime/qdarkstyle/rc/base_icon(at)2x(dot)png | Bin 3286 -> 0 bytes
runtime/qdarkstyle/rc/base_icon_disabled.png | Bin 1256 -> 0 bytes
runtime/qdarkstyle/rc/base_icon_disabled(at)2x(dot)png | Bin 3286 -> 0 bytes
runtime/qdarkstyle/rc/base_icon_focus.png | Bin 1256 -> 0 bytes
runtime/qdarkstyle/rc/base_icon_focus(at)2x(dot)png | Bin 3286 -> 0 bytes
runtime/qdarkstyle/rc/base_icon_pressed.png | Bin 1256 -> 0 bytes
runtime/qdarkstyle/rc/base_icon_pressed(at)2x(dot)png | Bin 3286 -> 0 bytes
runtime/qdarkstyle/rc/branch_closed.png | Bin 350 -> 0 bytes
runtime/qdarkstyle/rc/branch_closed(at)2x(dot)png | Bin 704 -> 0 bytes
runtime/qdarkstyle/rc/branch_closed_disabled.png | Bin 373 -> 0 bytes
.../qdarkstyle/rc/branch_closed_disabled(at)2x(dot)png | Bin 729 -> 0 bytes
runtime/qdarkstyle/rc/branch_closed_focus.png | Bin 380 -> 0 bytes
runtime/qdarkstyle/rc/branch_closed_focus(at)2x(dot)png | Bin 717 -> 0 bytes
runtime/qdarkstyle/rc/branch_closed_pressed.png | Bin 372 -> 0 bytes
runtime/qdarkstyle/rc/branch_closed_pressed(at)2x(dot)png | Bin 725 -> 0 bytes
runtime/qdarkstyle/rc/branch_end.png | Bin 142 -> 0 bytes
runtime/qdarkstyle/rc/branch_end(at)2x(dot)png | Bin 220 -> 0 bytes
runtime/qdarkstyle/rc/branch_end_disabled.png | Bin 146 -> 0 bytes
runtime/qdarkstyle/rc/branch_end_disabled(at)2x(dot)png | Bin 225 -> 0 bytes
runtime/qdarkstyle/rc/branch_end_focus.png | Bin 146 -> 0 bytes
runtime/qdarkstyle/rc/branch_end_focus(at)2x(dot)png | Bin 226 -> 0 bytes
runtime/qdarkstyle/rc/branch_end_pressed.png | Bin 146 -> 0 bytes
runtime/qdarkstyle/rc/branch_end_pressed(at)2x(dot)png | Bin 225 -> 0 bytes
runtime/qdarkstyle/rc/branch_line.png | Bin 130 -> 0 bytes
runtime/qdarkstyle/rc/branch_line(at)2x(dot)png | Bin 242 -> 0 bytes
runtime/qdarkstyle/rc/branch_line_disabled.png | Bin 134 -> 0 bytes
runtime/qdarkstyle/rc/branch_line_disabled(at)2x(dot)png | Bin 248 -> 0 bytes
runtime/qdarkstyle/rc/branch_line_focus.png | Bin 134 -> 0 bytes
runtime/qdarkstyle/rc/branch_line_focus(at)2x(dot)png | Bin 249 -> 0 bytes
runtime/qdarkstyle/rc/branch_line_pressed.png | Bin 134 -> 0 bytes
runtime/qdarkstyle/rc/branch_line_pressed(at)2x(dot)png | Bin 248 -> 0 bytes
runtime/qdarkstyle/rc/branch_more.png | Bin 155 -> 0 bytes
runtime/qdarkstyle/rc/branch_more(at)2x(dot)png | Bin 257 -> 0 bytes
runtime/qdarkstyle/rc/branch_more_disabled.png | Bin 162 -> 0 bytes
runtime/qdarkstyle/rc/branch_more_disabled(at)2x(dot)png | Bin 265 -> 0 bytes
runtime/qdarkstyle/rc/branch_more_focus.png | Bin 162 -> 0 bytes
runtime/qdarkstyle/rc/branch_more_focus(at)2x(dot)png | Bin 266 -> 0 bytes
runtime/qdarkstyle/rc/branch_more_pressed.png | Bin 162 -> 0 bytes
runtime/qdarkstyle/rc/branch_more_pressed(at)2x(dot)png | Bin 265 -> 0 bytes
runtime/qdarkstyle/rc/branch_open.png | Bin 354 -> 0 bytes
runtime/qdarkstyle/rc/branch_open(at)2x(dot)png | Bin 657 -> 0 bytes
runtime/qdarkstyle/rc/branch_open_disabled.png | Bin 375 -> 0 bytes
runtime/qdarkstyle/rc/branch_open_disabled(at)2x(dot)png | Bin 682 -> 0 bytes
runtime/qdarkstyle/rc/branch_open_focus.png | Bin 367 -> 0 bytes
runtime/qdarkstyle/rc/branch_open_focus(at)2x(dot)png | Bin 665 -> 0 bytes
runtime/qdarkstyle/rc/branch_open_pressed.png | Bin 369 -> 0 bytes
runtime/qdarkstyle/rc/branch_open_pressed(at)2x(dot)png | Bin 661 -> 0 bytes
runtime/qdarkstyle/rc/checkbox_checked.png | Bin 452 -> 0 bytes
runtime/qdarkstyle/rc/checkbox_checked(at)2x(dot)png | Bin 825 -> 0 bytes
.../qdarkstyle/rc/checkbox_checked_disabled.png | Bin 467 -> 0 bytes
.../qdarkstyle/rc/checkbox_checked_disabled(at)2x(dot)png | Bin 845 -> 0 bytes
runtime/qdarkstyle/rc/checkbox_checked_focus.png | Bin 441 -> 0 bytes
.../qdarkstyle/rc/checkbox_checked_focus(at)2x(dot)png | Bin 823 -> 0 bytes
runtime/qdarkstyle/rc/checkbox_checked_pressed.png | Bin 418 -> 0 bytes
.../qdarkstyle/rc/checkbox_checked_pressed(at)2x(dot)png | Bin 829 -> 0 bytes
runtime/qdarkstyle/rc/checkbox_indeterminate.png | Bin 581 -> 0 bytes
.../qdarkstyle/rc/checkbox_indeterminate(at)2x(dot)png | Bin 1081 -> 0 bytes
.../rc/checkbox_indeterminate_disabled.png | Bin 614 -> 0 bytes
.../rc/checkbox_indeterminate_disabled(at)2x(dot)png | Bin 1105 -> 0 bytes
.../qdarkstyle/rc/checkbox_indeterminate_focus.png | Bin 576 -> 0 bytes
.../rc/checkbox_indeterminate_focus(at)2x(dot)png | Bin 1066 -> 0 bytes
.../rc/checkbox_indeterminate_pressed.png | Bin 563 -> 0 bytes
.../rc/checkbox_indeterminate_pressed(at)2x(dot)png | Bin 1087 -> 0 bytes
runtime/qdarkstyle/rc/checkbox_unchecked.png | Bin 397 -> 0 bytes
runtime/qdarkstyle/rc/checkbox_unchecked(at)2x(dot)png | Bin 828 -> 0 bytes
.../qdarkstyle/rc/checkbox_unchecked_disabled.png | Bin 386 -> 0 bytes
.../rc/checkbox_unchecked_disabled(at)2x(dot)png | Bin 875 -> 0 bytes
runtime/qdarkstyle/rc/checkbox_unchecked_focus.png | Bin 394 -> 0 bytes
.../qdarkstyle/rc/checkbox_unchecked_focus(at)2x(dot)png | Bin 866 -> 0 bytes
.../qdarkstyle/rc/checkbox_unchecked_pressed.png | Bin 403 -> 0 bytes
.../rc/checkbox_unchecked_pressed(at)2x(dot)png | Bin 861 -> 0 bytes
runtime/qdarkstyle/rc/line_horizontal.png | Bin 117 -> 0 bytes
runtime/qdarkstyle/rc/line_horizontal(at)2x(dot)png | Bin 135 -> 0 bytes
runtime/qdarkstyle/rc/line_horizontal_disabled.png | Bin 121 -> 0 bytes
.../qdarkstyle/rc/line_horizontal_disabled(at)2x(dot)png | Bin 139 -> 0 bytes
runtime/qdarkstyle/rc/line_horizontal_focus.png | Bin 120 -> 0 bytes
runtime/qdarkstyle/rc/line_horizontal_focus(at)2x(dot)png | Bin 138 -> 0 bytes
runtime/qdarkstyle/rc/line_horizontal_pressed.png | Bin 120 -> 0 bytes
.../qdarkstyle/rc/line_horizontal_pressed(at)2x(dot)png | Bin 138 -> 0 bytes
runtime/qdarkstyle/rc/line_vertical.png | Bin 130 -> 0 bytes
runtime/qdarkstyle/rc/line_vertical(at)2x(dot)png | Bin 242 -> 0 bytes
runtime/qdarkstyle/rc/line_vertical_disabled.png | Bin 134 -> 0 bytes
.../qdarkstyle/rc/line_vertical_disabled(at)2x(dot)png | Bin 248 -> 0 bytes
runtime/qdarkstyle/rc/line_vertical_focus.png | Bin 134 -> 0 bytes
runtime/qdarkstyle/rc/line_vertical_focus(at)2x(dot)png | Bin 249 -> 0 bytes
runtime/qdarkstyle/rc/line_vertical_pressed.png | Bin 134 -> 0 bytes
runtime/qdarkstyle/rc/line_vertical_pressed(at)2x(dot)png | Bin 248 -> 0 bytes
runtime/qdarkstyle/rc/radio_checked.png | Bin 1224 -> 0 bytes
runtime/qdarkstyle/rc/radio_checked(at)2x(dot)png | Bin 2714 -> 0 bytes
runtime/qdarkstyle/rc/radio_checked_disabled.png | Bin 1325 -> 0 bytes
.../qdarkstyle/rc/radio_checked_disabled(at)2x(dot)png | Bin 2893 -> 0 bytes
runtime/qdarkstyle/rc/radio_checked_focus.png | Bin 1293 -> 0 bytes
runtime/qdarkstyle/rc/radio_checked_focus(at)2x(dot)png | Bin 2736 -> 0 bytes
runtime/qdarkstyle/rc/radio_checked_pressed.png | Bin 1276 -> 0 bytes
runtime/qdarkstyle/rc/radio_checked_pressed(at)2x(dot)png | Bin 2765 -> 0 bytes
runtime/qdarkstyle/rc/radio_unchecked.png | Bin 963 -> 0 bytes
runtime/qdarkstyle/rc/radio_unchecked(at)2x(dot)png | Bin 2195 -> 0 bytes
runtime/qdarkstyle/rc/radio_unchecked_disabled.png | Bin 1040 -> 0 bytes
.../qdarkstyle/rc/radio_unchecked_disabled(at)2x(dot)png | Bin 2294 -> 0 bytes
runtime/qdarkstyle/rc/radio_unchecked_focus.png | Bin 1032 -> 0 bytes
runtime/qdarkstyle/rc/radio_unchecked_focus(at)2x(dot)png | Bin 2186 -> 0 bytes
runtime/qdarkstyle/rc/radio_unchecked_pressed.png | Bin 1022 -> 0 bytes
.../qdarkstyle/rc/radio_unchecked_pressed(at)2x(dot)png | Bin 2197 -> 0 bytes
runtime/qdarkstyle/rc/toolbar_move_horizontal.png | Bin 150 -> 0 bytes
.../qdarkstyle/rc/toolbar_move_horizontal(at)2x(dot)png | Bin 304 -> 0 bytes
.../rc/toolbar_move_horizontal_disabled.png | Bin 155 -> 0 bytes
.../rc/toolbar_move_horizontal_disabled(at)2x(dot)png | Bin 308 -> 0 bytes
.../rc/toolbar_move_horizontal_focus.png | Bin 154 -> 0 bytes
.../rc/toolbar_move_horizontal_focus(at)2x(dot)png | Bin 311 -> 0 bytes
.../rc/toolbar_move_horizontal_pressed.png | Bin 154 -> 0 bytes
.../rc/toolbar_move_horizontal_pressed(at)2x(dot)png | Bin 307 -> 0 bytes
runtime/qdarkstyle/rc/toolbar_move_vertical.png | Bin 137 -> 0 bytes
runtime/qdarkstyle/rc/toolbar_move_vertical(at)2x(dot)png | Bin 201 -> 0 bytes
.../rc/toolbar_move_vertical_disabled.png | Bin 140 -> 0 bytes
.../rc/toolbar_move_vertical_disabled(at)2x(dot)png | Bin 212 -> 0 bytes
.../qdarkstyle/rc/toolbar_move_vertical_focus.png | Bin 144 -> 0 bytes
.../rc/toolbar_move_vertical_focus(at)2x(dot)png | Bin 211 -> 0 bytes
.../rc/toolbar_move_vertical_pressed.png | Bin 143 -> 0 bytes
.../rc/toolbar_move_vertical_pressed(at)2x(dot)png | Bin 204 -> 0 bytes
.../qdarkstyle/rc/toolbar_separator_horizontal.png | Bin 145 -> 0 bytes
.../rc/toolbar_separator_horizontal(at)2x(dot)png | Bin 286 -> 0 bytes
.../rc/toolbar_separator_horizontal_disabled.png | Bin 151 -> 0 bytes
.../toolbar_separator_horizontal_disabled(at)2x(dot)png | Bin 292 -> 0 bytes
.../rc/toolbar_separator_horizontal_focus.png | Bin 149 -> 0 bytes
.../rc/toolbar_separator_horizontal_focus(at)2x(dot)png | Bin 294 -> 0 bytes
.../rc/toolbar_separator_horizontal_pressed.png | Bin 149 -> 0 bytes
.../rc/toolbar_separator_horizontal_pressed(at)2x(dot)png | Bin 289 -> 0 bytes
.../qdarkstyle/rc/toolbar_separator_vertical.png | Bin 133 -> 0 bytes
.../rc/toolbar_separator_vertical(at)2x(dot)png | Bin 191 -> 0 bytes
.../rc/toolbar_separator_vertical_disabled.png | Bin 135 -> 0 bytes
.../rc/toolbar_separator_vertical_disabled(at)2x(dot)png | Bin 199 -> 0 bytes
.../rc/toolbar_separator_vertical_focus.png | Bin 139 -> 0 bytes
.../rc/toolbar_separator_vertical_focus(at)2x(dot)png | Bin 196 -> 0 bytes
.../rc/toolbar_separator_vertical_pressed.png | Bin 138 -> 0 bytes
.../rc/toolbar_separator_vertical_pressed(at)2x(dot)png | Bin 193 -> 0 bytes
runtime/qdarkstyle/rc/transparent.png | Bin 104 -> 0 bytes
runtime/qdarkstyle/rc/transparent(at)2x(dot)png | Bin 117 -> 0 bytes
runtime/qdarkstyle/rc/transparent_disabled.png | Bin 104 -> 0 bytes
runtime/qdarkstyle/rc/transparent_disabled(at)2x(dot)png | Bin 117 -> 0 bytes
runtime/qdarkstyle/rc/transparent_focus.png | Bin 104 -> 0 bytes
runtime/qdarkstyle/rc/transparent_focus(at)2x(dot)png | Bin 117 -> 0 bytes
runtime/qdarkstyle/rc/transparent_pressed.png | Bin 104 -> 0 bytes
runtime/qdarkstyle/rc/transparent_pressed(at)2x(dot)png | Bin 117 -> 0 bytes
runtime/qdarkstyle/rc/window_close.png | Bin 766 -> 0 bytes
runtime/qdarkstyle/rc/window_close(at)2x(dot)png | Bin 1690 -> 0 bytes
runtime/qdarkstyle/rc/window_close_disabled.png | Bin 838 -> 0 bytes
runtime/qdarkstyle/rc/window_close_disabled(at)2x(dot)png | Bin 1724 -> 0 bytes
runtime/qdarkstyle/rc/window_close_focus.png | Bin 756 -> 0 bytes
runtime/qdarkstyle/rc/window_close_focus(at)2x(dot)png | Bin 1704 -> 0 bytes
runtime/qdarkstyle/rc/window_close_pressed.png | Bin 745 -> 0 bytes
runtime/qdarkstyle/rc/window_close_pressed(at)2x(dot)png | Bin 1679 -> 0 bytes
runtime/qdarkstyle/rc/window_grip.png | Bin 426 -> 0 bytes
runtime/qdarkstyle/rc/window_grip(at)2x(dot)png | Bin 735 -> 0 bytes
runtime/qdarkstyle/rc/window_grip_disabled.png | Bin 447 -> 0 bytes
runtime/qdarkstyle/rc/window_grip_disabled(at)2x(dot)png | Bin 768 -> 0 bytes
runtime/qdarkstyle/rc/window_grip_focus.png | Bin 435 -> 0 bytes
runtime/qdarkstyle/rc/window_grip_focus(at)2x(dot)png | Bin 738 -> 0 bytes
runtime/qdarkstyle/rc/window_grip_pressed.png | Bin 444 -> 0 bytes
runtime/qdarkstyle/rc/window_grip_pressed(at)2x(dot)png | Bin 729 -> 0 bytes
runtime/qdarkstyle/rc/window_minimize.png | Bin 193 -> 0 bytes
runtime/qdarkstyle/rc/window_minimize(at)2x(dot)png | Bin 316 -> 0 bytes
runtime/qdarkstyle/rc/window_minimize_disabled.png | Bin 206 -> 0 bytes
.../qdarkstyle/rc/window_minimize_disabled(at)2x(dot)png | Bin 332 -> 0 bytes
runtime/qdarkstyle/rc/window_minimize_focus.png | Bin 208 -> 0 bytes
runtime/qdarkstyle/rc/window_minimize_focus(at)2x(dot)png | Bin 339 -> 0 bytes
runtime/qdarkstyle/rc/window_minimize_pressed.png | Bin 202 -> 0 bytes
.../qdarkstyle/rc/window_minimize_pressed(at)2x(dot)png | Bin 336 -> 0 bytes
runtime/qdarkstyle/rc/window_undock.png | Bin 510 -> 0 bytes
runtime/qdarkstyle/rc/window_undock(at)2x(dot)png | Bin 875 -> 0 bytes
runtime/qdarkstyle/rc/window_undock_disabled.png | Bin 541 -> 0 bytes
.../qdarkstyle/rc/window_undock_disabled(at)2x(dot)png | Bin 910 -> 0 bytes
runtime/qdarkstyle/rc/window_undock_focus.png | Bin 519 -> 0 bytes
runtime/qdarkstyle/rc/window_undock_focus(at)2x(dot)png | Bin 877 -> 0 bytes
runtime/qdarkstyle/rc/window_undock_pressed.png | Bin 523 -> 0 bytes
runtime/qdarkstyle/rc/window_undock_pressed(at)2x(dot)png | Bin 880 -> 0 bytes
runtime/qdarkstyle/style.qrc | 216 --
runtime/qdarkstyle/style.qss | 2175 --------------------
runtime/splash.png | Bin 19406 -> 0 bytes
runtime/src/css/pgadmin-desktop.css | 44 +
runtime/src/html/configure.html | 60 +
runtime/src/html/pgadmin.html | 42 +
runtime/src/html/server_error.html | 31 +
runtime/src/html/view_log.html | 31 +
runtime/src/js/configure.js | 91 +
runtime/src/js/misc.js | 316 +++
runtime/src/js/pgadmin.js | 300 +++
runtime/src/js/server_error.js | 34 +
runtime/src/js/view_log.js | 27 +
runtime/yarn.lock | 1550 ++++++++++++++
tools/dependency_inventory.py | 41 +-
web/config.py | 10 +-
web/pgAdmin4.py | 63 +-
web/pgadmin/browser/__init__.py | 54 +-
web/pgadmin/browser/static/js/browser.js | 2 +-
web/pgadmin/browser/static/js/runtime.js | 44 +
web/webpack.shim.js | 1 +
392 files changed, 3394 insertions(+), 7605 deletions(-)

Browse pgadmin-hackers by date

  From Date Subject
Next Message Akshay Joshi 2021-01-29 09:26:25 pgAdmin 4 commit: Fixed Definition list ends without a blank line; unex
Previous Message Akshay Joshi 2021-01-29 06:50:18 Re: [pgAdmin][RM6177] ERD download image related fixes