Skip to content

Commit 356b68c

Browse files
committed
deploy visualpython 2.4.1
1 parent 336286a commit 356b68c

13 files changed

+21
-21
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.3.7
15-
VP_NEW_VER=2.4.0
14+
VP_ORG_VER=2.4.0
15+
VP_NEW_VER=2.4.1
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.3.7
15-
VP_NEW_VER=2.4.0
14+
VP_ORG_VER=2.4.0
15+
VP_NEW_VER=2.4.1
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.0",
4+
"version": "2.4.1",
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.3.7
15-
VP_NEW_VER=2.4.0
14+
VP_ORG_VER=2.4.0
15+
VP_NEW_VER=2.4.1
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.0",
3+
"version": "2.4.1",
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.0"
35+
version = "2.4.1"
3636

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

9494
[tool.tbump.version]
95-
current = "2.4.0"
95+
current = "2.4.1"
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.3.7
15-
VP_NEW_VER=2.4.0
14+
VP_ORG_VER=2.4.0
15+
VP_NEW_VER=2.4.1
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.0',
13+
version = '2.4.1',
1414
packages = find_packages(),
1515
package_data = {"": ["*"], 'visualpython' : ['visualpython.yaml', 'README.md']},
1616
scripts = ['visualpython/bin/visualpy', 'visualpython/bin/visualpy.bat'],

visualpython/css/menuFrame.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
font-size: 13px;
5151
font-weight: bold;
5252
color: var(--vp-highlight-color);
53-
margin: 8px 6px 8px 3px;
53+
margin: 4px 6px 8px 3px;
5454
cursor: pointer;
5555
}
5656
.vp-menu-header-button {

visualpython/js/com/com_Config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -991,7 +991,7 @@ define([
991991
/**
992992
* Version
993993
*/
994-
Config.version = "2.4.0";
994+
Config.version = "2.4.1";
995995

996996
/**
997997
* Type of mode

visualpython/js/com/com_Const.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ define ([
1919
class Constants { }
2020

2121
Constants.TOOLBAR_BTN_INFO = {
22-
HELP: "Visual Python 2.4.0"
22+
HELP: "Visual Python 2.4.1"
2323
, ICON: "vp-main-icon"
2424
, ID: "vpBtnToggle"
2525
, NAME: "toggle-vp"

visualpython/js/m_apps/Frame.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ define([
240240
that.setPreview(that.getCurrentCode());
241241
});
242242

243-
// menu on column (Deprecated on v2.3.6 - Temporarily Show on v.2.4.0)
243+
// menu on column (Deprecated on v2.3.6 - Temporarily Show on v.2.4.1)
244244
$(document).on('contextmenu', this.wrapSelector('.' + VP_FE_TABLE + ' .' + VP_FE_TABLE_COLUMN), function(event) {
245245
event.preventDefault();
246246

@@ -270,7 +270,7 @@ define([
270270
that.showMenu(thisPos.left, thisPos.top + thisRect.height);
271271
});
272272

273-
// menu on row (Deprecated on v2.3.6 - Temporarily Show on v.2.4.0)
273+
// menu on row (Deprecated on v2.3.6 - Temporarily Show on v.2.4.1)
274274
$(document).on('contextmenu', this.wrapSelector('.' + VP_FE_TABLE + ' .' + VP_FE_TABLE_ROW), function(event) {
275275
event.preventDefault();
276276
var idx = $(that.wrapSelector('.' + VP_FE_TABLE_ROW)).index(this); // 0 ~ n
@@ -595,7 +595,7 @@ define([
595595
that.loadCode(that.getTypeCode(FRAME_EDIT_TYPE.SHOW), true);
596596
});
597597

598-
// click toolbar item (Deprecated on v2.3.6 - Temporarily Show on v.2.4.0)
598+
// click toolbar item (Deprecated on v2.3.6 - Temporarily Show on v.2.4.1)
599599
$(document).on('click', this.wrapSelector('.vp-fe-toolbar-item'), function(evt) {
600600
evt.stopPropagation();
601601
var itemType = $(this).data('type');

0 commit comments

Comments
 (0)