Skip to content

Commit b594956

Browse files
committed
1) By Default 'Open in a new tab?' should be false.
2) Updated version for release v9.1 3) Updated the release note
1 parent 58f86a3 commit b594956

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

docs/en_US/release_notes_9_1.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Version 9.1
33
***********
44

5-
Release date: 2025-03-13
5+
Release date: 2025-02-28
66

77
This release contains a number of bug fixes and new features since the release of pgAdmin 4 v9.0.
88

@@ -14,7 +14,7 @@ Supported Database Servers
1414

1515
Bundled PostgreSQL Utilities
1616
****************************
17-
**psql**, **pg_dump**, **pg_dumpall**, **pg_restore**: 17.0
17+
**psql**, **pg_dump**, **pg_dumpall**, **pg_restore**: 17.2
1818

1919

2020
New features

web/pgadmin/tools/sqleditor/utils/query_tool_preferences.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def register_query_tool_preferences(self):
136136
self.open_file_in_new_tab = self.preference.register(
137137
'Options', 'open_in_new_tab',
138138
gettext("Open the file in a new tab?"), 'boolean',
139-
True,
139+
False,
140140
category_label=PREF_LABEL_OPTIONS,
141141
help_str=gettext(
142142
'Specifies whether or not to open the file in a new tab.'

web/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
# Application version number components
2020
APP_RELEASE = 9
21-
APP_REVISION = 0
21+
APP_REVISION = 1
2222

2323
# Application version suffix, e.g. 'beta1', 'dev'. Usually an empty string
2424
# for GA releases.
@@ -27,7 +27,7 @@
2727
# Numeric application version for upgrade checks. Should be in the format:
2828
# [X]XYYZZ, where X is the release version, Y is the revision, with a leading
2929
# zero if needed, and Z represents the suffix, with a leading zero if needed
30-
APP_VERSION_INT = 90000
30+
APP_VERSION_INT = 90100
3131

3232
# DO NOT CHANGE!
3333
# The application version string, constructed from the components

0 commit comments

Comments
 (0)