Skip to content

Commit e19f490

Browse files
authored
Merge pull request #230 from visualpython/release
Release v2.4.5
2 parents 0f09eca + 7cdcffe commit e19f490

38 files changed

+685
-108
lines changed

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
#=============================================================================
1212
# Set version and replace it
1313
#=============================================================================
14-
VP_ORG_VER=2.4.3
15-
VP_NEW_VER=2.4.4
14+
VP_ORG_VER=2.4.4
15+
VP_NEW_VER=2.4.5
1616

1717
# update version info
1818
grep -REil "VP_ORG_VER=.+$" colab/build.colab.sh jupyterlab/build.jupyterlab.sh jupyternotebook/build.jupyternotebook.sh | xargs sed -i "s/VP_ORG_VER=.\+$/VP_ORG_VER=${VP_ORG_VER}/g"

colab/build.colab.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
#=============================================================================
1212
# Replace Version
1313
#=============================================================================
14-
VP_ORG_VER=2.4.3
15-
VP_NEW_VER=2.4.4
14+
VP_ORG_VER=2.4.4
15+
VP_NEW_VER=2.4.5
1616

1717
# update version info
1818
# update manifest version with new numbering for new version

colab/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Visual Python for Colab",
33
"description": "GUI-based Python code generator for Google Colab as an extension",
4-
"version": "2.4.4",
4+
"version": "2.4.5",
55
"manifest_version": 3,
66
"icons": {
77
"48": "icon.png",

jupyterlab/build.jupyterlab.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
#=============================================================================
1212
# Replace Version and Basic Files
1313
#=============================================================================
14-
VP_ORG_VER=2.4.3
15-
VP_NEW_VER=2.4.4
14+
VP_ORG_VER=2.4.4
15+
VP_NEW_VER=2.4.5
1616

1717
# update version info
1818
grep -REil "\"version\": \"${VP_ORG_VER}\"" package.json | xargs sed -i "s/\"version\": \"${VP_ORG_VER//\./\\.}\"/\"version\": \"${VP_NEW_VER}\"/g"

jupyterlab/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

jupyterlab/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jupyterlab-visualpython",
3-
"version": "2.4.4",
3+
"version": "2.4.5",
44
"description": "GUI-based Python code generator for Jupyter Lab as an extension",
55
"keywords": [
66
"jupyter",

jupyterlab/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ classifiers = [
3232
"Programming Language :: Python :: 3.9",
3333
"Programming Language :: Python :: 3.10",
3434
]
35-
version = "2.4.4"
35+
version = "2.4.5"
3636

3737
[project.license]
3838
file = "LICENSE"
@@ -92,7 +92,7 @@ file = [
9292
]
9393

9494
[tool.tbump.version]
95-
current = "2.4.4"
95+
current = "2.4.5"
9696
regex = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)((?P<channel>a|b|rc|.dev)(?P<release>\\d+))?"
9797

9898
[tool.tbump.git]

jupyternotebook/build.jupyternotebook.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
#=============================================================================
1212
# Replace Version and Basic Files
1313
#=============================================================================
14-
VP_ORG_VER=2.4.3
15-
VP_NEW_VER=2.4.4
14+
VP_ORG_VER=2.4.4
15+
VP_NEW_VER=2.4.5
1616

1717
# update version info
1818
grep -REil ${VP_ORG_VER//\./\\.} setup.py visualpython/js/com/com_Config.js visualpython/js/com/com_Const.js | xargs sed -i --follow-symlinks "s/${VP_ORG_VER//\./\\.}/${VP_NEW_VER}/g"

jupyternotebook/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name = name,
13-
version = '2.4.4',
13+
version = '2.4.5',
1414
packages = find_packages(),
1515
package_data = {"": ["*"], 'visualpython' : ['visualpython.yaml', 'README.md']},
1616
scripts = ['visualpython/bin/visualpy', 'visualpython/bin/visualpy.bat'],

visualpython/css/component/popupComponent.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,11 +191,21 @@
191191
float: left;
192192
margin-top: 9px;
193193
margin-left: 10px;
194+
line-height: 20px;
194195
}
195196
.vp-popup-button[data-type="data"] {
196197
float: left;
197198
margin-top: 9px;
198199
margin-left: 10px;
200+
line-height: 20px;
201+
}
202+
.vp-popup-button[data-type="help"] {
203+
float: left;
204+
margin-top: 9px;
205+
margin-left: 10px;
206+
background-color: #F9B52A;
207+
color: var(--vp-background-color);
208+
line-height: 20px;
199209
}
200210
.vp-popup-button[data-type="cancel"] {
201211
float: right;

visualpython/css/m_apps/frame.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,9 @@
279279
.vp-inner-popup-apply-column {
280280
width: 153px;
281281
}
282+
.vp-inner-popup-apply-target-name {
283+
width: 115px;
284+
}
282285
.vp-inner-popup-sortby {
283286
border: 0.25px solid var(--vp-border-gray-color);
284287
width: 160px;

visualpython/css/root.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -586,6 +586,11 @@ hr.vp-extra-menu-line {
586586
.vp-inner-popup-body .w70 {
587587
width: 70px !important;
588588
}
589+
#vp_wrapper .w60,
590+
.vp-popup-frame .w60,
591+
.vp-inner-popup-body .w60 {
592+
width: 60px !important;
593+
}
589594
#vp_wrapper .w50,
590595
.vp-popup-frame .w50,
591596
.vp-inner-popup-body .w50 {

0 commit comments

Comments
 (0)