Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Try Visual Python if you would like to: <br>
* save & reuse repeatedly used codes(snippets). <br>

<br>
<img src="https://github.com/visualpython/visualpython/blob/main/img/Visual%20Python_2.2.8.gif?raw=true" width="95%">
<img src="https://raw.githubusercontent.com/visualpython/visualpython/main/visualpython/img/Visual%20Python_2.2.8.gif" width="95%">

## Getting Started with Jupyter Lab

Expand Down
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
#=============================================================================
# Set version and replace it
#=============================================================================
VP_ORG_VER=2.3.1
VP_NEW_VER=2.3.2
VP_ORG_VER=2.3.2
VP_NEW_VER=2.3.3

# update version info
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"
Expand Down
7 changes: 3 additions & 4 deletions colab/build.colab.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,12 @@
#=============================================================================
# Replace Version
#=============================================================================
VP_ORG_VER=2.3.1
VP_NEW_VER=2.3.2
VP_COLAB_VER=1 # colab specified versioning
VP_ORG_VER=2.3.2
VP_NEW_VER=2.3.3

# update version info
# update manifest version with new numbering for new version
grep -REil ${VP_ORG_VER//\./\\.}\.[0-9] manifest.json | xargs sed -i "s/${VP_ORG_VER//\./\\.}\.[0-9]/${VP_NEW_VER}.${VP_COLAB_VER}/g"
grep -REil ${VP_ORG_VER//\./\\.} manifest.json | xargs sed -i "s/${VP_ORG_VER//\./\\.}\.[0-9]/${VP_NEW_VER}/g"
# update version inside visualpython package
grep -REil ${VP_ORG_VER//\./\\.} visualpython/* | xargs sed -i --follow-symlinks "s/${VP_ORG_VER//\./\\.}/${VP_NEW_VER}/g"

Expand Down
2 changes: 1 addition & 1 deletion colab/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Visual Python for Colab",
"description": "GUI-based Python code generator for Google Colab as an extension",
"version": "2.3.2.1",
"version": "2.3.3",
"manifest_version": 3,
"icons": {
"48": "icon.png",
Expand Down
2 changes: 1 addition & 1 deletion jupyterlab/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Try Visual Python if you would like to: <br>
* save & reuse repeatedly used codes(snippets). <br>

<br>
<img src="https://github.com/visualpython/visualpython/blob/main/img/Visual%20Python_2.2.8.gif?raw=true" width="95%">
<img src="https://raw.githubusercontent.com/visualpython/visualpython/main/visualpython/img/Visual%20Python_2.2.8.gif" width="95%">

## Getting Started with Jupyter Lab

Expand Down
4 changes: 2 additions & 2 deletions jupyterlab/build.jupyterlab.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
#=============================================================================
# Replace Version and Basic Files
#=============================================================================
VP_ORG_VER=2.3.1
VP_NEW_VER=2.3.2
VP_ORG_VER=2.3.2
VP_NEW_VER=2.3.3

# update version info
grep -REil "\"version\": \"${VP_ORG_VER}\"" package.json | xargs sed -i "s/\"version\": \"${VP_ORG_VER//\./\\.}\"/\"version\": \"${VP_NEW_VER}\"/g"
Expand Down
2 changes: 1 addition & 1 deletion jupyterlab/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jupyterlab-visualpython",
"version": "2.3.2",
"version": "2.3.3",
"description": "GUI-based Python code generator for Jupyter Lab as an extension",
"keywords": [
"jupyter",
Expand Down
4 changes: 2 additions & 2 deletions jupyterlab/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
version = "2.3.2"
version = "2.3.3"

[project.license]
file = "LICENSE"
Expand Down Expand Up @@ -92,7 +92,7 @@ file = [
]

[tool.tbump.version]
current = "2.3.2"
current = "2.3.3"
regex = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)((?P<channel>a|b|rc|.dev)(?P<release>\\d+))?"

[tool.tbump.git]
Expand Down
2 changes: 1 addition & 1 deletion jupyternotebook/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Try Visual Python if you would like to: <br>
* save & reuse repeatedly used codes(snippets). <br>

<br>
<img src="https://github.com/visualpython/visualpython/blob/main/img/Visual%20Python_2.2.8.gif?raw=true" width="95%">
<img src="https://raw.githubusercontent.com/visualpython/visualpython/main/visualpython/img/Visual%20Python_2.2.8.gif" width="95%">

## Getting Started with Jupyter Lab

Expand Down
4 changes: 2 additions & 2 deletions jupyternotebook/build.jupyternotebook.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
#=============================================================================
# Replace Version and Basic Files
#=============================================================================
VP_ORG_VER=2.3.1
VP_NEW_VER=2.3.2
VP_ORG_VER=2.3.2
VP_NEW_VER=2.3.3

# update version info
grep -REil ${VP_ORG_VER//\./\\.} setup.py visualpython/* | xargs sed -i --follow-symlinks "s/${VP_ORG_VER//\./\\.}/${VP_NEW_VER}/g"
Expand Down
2 changes: 1 addition & 1 deletion jupyternotebook/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name = name,
version = '2.3.2',
version = '2.3.3',
packages = find_packages(),
package_data = {"": ["*"], 'visualpython' : ['visualpython.yaml', 'README.md']},
scripts = ['visualpython/bin/visualpy', 'visualpython/bin/visualpy.bat'],
Expand Down
2 changes: 2 additions & 0 deletions visualpython/data/m_library/pandasLibrary.js
Original file line number Diff line number Diff line change
Expand Up @@ -6315,6 +6315,7 @@ define([
"option_select"
],
"options": [
"",
"viridis",
"plasma",
"inferno",
Expand All @@ -6334,6 +6335,7 @@ define([
"tab20c"
],
"options_label": [
"Select option...",
"viridis",
"plasma",
"inferno",
Expand Down
2 changes: 1 addition & 1 deletion visualpython/js/com/com_Config.js
Original file line number Diff line number Diff line change
Expand Up @@ -958,7 +958,7 @@ define([
/**
* Version
*/
Config.version = "2.3.2";
Config.version = "2.3.3";

/**
* Type of mode
Expand Down
2 changes: 1 addition & 1 deletion visualpython/js/com/com_Const.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ define ([
class Constants { }

Constants.TOOLBAR_BTN_INFO = {
HELP: "Visual Python 2.3.2"
HELP: "Visual Python 2.3.3"
, ICON: "vp-main-icon"
, ID: "vpBtnToggle"
, NAME: "toggle-vp"
Expand Down
6 changes: 3 additions & 3 deletions visualpython/js/com/component/MultiSelector.js
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ define([
// select - right
tag.appendFormatLine('<div class="{0}">', APP_SELECT_RIGHT);
var selectedList = this.dataList.filter(data => that.selectedList.includes(data.code));
tag.appendLine(this.renderSelectedBox(this.selectedList));
tag.appendLine(this.renderSelectedBox(selectedList));
if (this.allowAdd) {
// add item
tag.appendLine('<input type="text" class="vp-cs-add-item-name vp-input wp100" placeholder="New item to add" value="">');
Expand Down Expand Up @@ -343,8 +343,8 @@ define([
dataList && dataList.forEach((data, idx) => {
// for column : data.array parsing
var info = com_util.safeString(data.array);
if (info) {
info = data.value + ':\n';
if (info && info != 'undefined') {
info = data.value + ':\n' + info;
} else {
info = '';
}
Expand Down