summaryrefslogtreecommitdiff
path: root/databases/pgadmin3/patches
diff options
context:
space:
mode:
authorrichard <richard@pkgsrc.org>2016-03-16 04:46:24 +0000
committerrichard <richard@pkgsrc.org>2016-03-16 04:46:24 +0000
commit1e91e8d21735537f621b9cc286d509ce1e3dec51 (patch)
treec81696d8a223c3a955a943c3ec639e051ca70978 /databases/pgadmin3/patches
parentf035b9aa7af0954265c043c3993d3902a354b595 (diff)
downloadpkgsrc-1e91e8d21735537f621b9cc286d509ce1e3dec51.tar.gz
update to pgadmin3-1.22.0
reset maintainer (ok by joerg@) Recent changes: Date Dev Ver Change details ---------- --- ------ -------------- 2016-01-04 AV 1.22.0 Resolved an issue related to check options selection in the view properties dialog with the check option. [Reported by: Sebastian Albert, Patched by: Neel Patel] 2015-12-08 AV 1.22.0 Merged the libssh2 to the latest version. [Akshay Joshi] 2015-11-19 DP 1.22.0 Properly detect serial columns as such when identifiers have been truncated. 2015-10-23 AV 1.22.0 Fixes an issue related to the column inheritance information properly, when one (or, more) common columns are inherited from multiple tables. [Reported by: Liu Yuanyuan, Patched by: Akshay Joshi] 2015-10-12 AV 1.22.0 Ensure the correct syntax used for moving the objects from one tablespace to another. [Sanket Mehta] 2015-10-07 DP 1.22.0 Ensure the correct line endings are used when copying from the SQL Pane [Nikolai Zhubr] 2015-09-25 AV 1.22.0 Toolbar icons, and menu items for Commit and Rollback actions. [John Obaterspok] 2015-09-24 DP 1.22.0 Display the connection details for the current browser object in the status bar [Adam Scott] 2015-09-21 AV 1.22.0 Fixed an issue related to different menus enabling in the Query Tool on Ubunutu unity. [Reported by: Vahdet Mert] 2015-09-21 AV 1.22.0 Reset the position (x, y) for dialog(s), and frame(s) to 0 (if found negative), while saving its position and size. [Reported By: Mark, Patch: Sanket Mehta, Reworked, and Reviewed: Ashesh] 2015-09-21 AV 1.22.0 Fixes an issue identifying the return type to TABLE in some cases, using pg_get_function_result(..) for the same instead of format_type(..) [Reported By: Guillermo E. Villanueva, PATCH:Sanket Mehta] 2015-09-21 AV 1.22.0 Honour PGPASSFILE environment variable for saving, retrieving the password instead of always works with pgpass.conf (on windows)/.pgpass (on non-windows) [PATCH: Prasad Somwanshi, Reworked by: Sanket Mehta, Reviewed by: Ashesh Vashi, Sanket Mehta] 2015-09-14 AV 1.22.0 Fix a segfault occurs while detecting transaction section requirement, when autocommit has been disabled. [Reported by John Obaterspok, Patch by Sanket Mehta] 2015-09-14 AV 1.22.0 Format execution time in a more readable manner [John Obaterspok] 2015-07-27 AV 1.22.0 Improve sorting in Data editor [J. F. Oster, Reviewed by Sanket Mehta] 2015-07-27 AV 1.22.0 Allow to format the selecte SQL using external tools in Query Editor [J. F. Oster] 2015-05-22 AV 1.22.0 Allow to set auto-commit mode to on/off in the query editor [Sanket Mehta]
Diffstat (limited to 'databases/pgadmin3/patches')
-rw-r--r--databases/pgadmin3/patches/patch-pgadmin_ctl_ctlMenuToolbar.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/databases/pgadmin3/patches/patch-pgadmin_ctl_ctlMenuToolbar.cpp b/databases/pgadmin3/patches/patch-pgadmin_ctl_ctlMenuToolbar.cpp
deleted file mode 100644
index b7ec48ce8c7..00000000000
--- a/databases/pgadmin3/patches/patch-pgadmin_ctl_ctlMenuToolbar.cpp
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-pgadmin_ctl_ctlMenuToolbar.cpp,v 1.1 2015/08/05 15:29:00 richard Exp $
-Resolved an assertion error opening the plugin popup menu
-for wxWidgets 3.0 (upstream commit b75c57f69e4799507622b8d2f9820cda2bf154a3)
---- pgadmin/ctl/ctlMenuToolbar.cpp.orig 2014-01-27 12:11:43.000000000 +0000
-+++ pgadmin/ctl/ctlMenuToolbar.cpp
-@@ -109,7 +109,7 @@ void ctlMenuButton::DoProcessLeftClick(w
- menu_pos.y = button_size.GetHeight();
- }
-
-- PopupMenu(m_menu, menu_pos);
-+ DoPopupMenu(m_menu, menu_pos.x, menu_pos.y);
- }
-
-