Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Release v2.4.4#225

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
minjk-bl merged 19 commits intomainfromrelease
Jul 7, 2023
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
Show all changes
19 commits
Select commitHold shift + click to select a range
8d771ab
Add default allocate variables
Jul 5, 2023
0f41de2
Fix regression multi enter code
Jul 5, 2023
549c69d
Add log to file navigation on error
Jul 5, 2023
cc30130
Add loading spinner to Package Manager
Jul 5, 2023
af80d5a
Remove dataselector on allocation input
Jul 5, 2023
dbef569
Edit SuggestInput to add scrollbar on long item list
Jul 7, 2023
e7f7572
Add jupyterlite build and serve command info
Jul 7, 2023
d0f2925
Add protector for lab and lite on launcher state
Jul 7, 2023
eb533a3
Add protector hide button for user
Jul 7, 2023
a4bb32f
Fix console interaction problem on lite
Jul 7, 2023
cb5bcb7
Add seaborn to be checked as a default
Jul 7, 2023
5c5200a
Add scrollbar to DataSelector
Jul 7, 2023
c185b0f
Fix scrollbar vertical style
Jul 7, 2023
3bd0c99
Add loadingSpinner on loading default data
Jul 7, 2023
bb15d08
Add package manager config file
Jul 7, 2023
eaee967
Fix gitignore
Jul 7, 2023
0e1815b
Merge pull request #224 from minjk-bl/devops
minjk-blJul 7, 2023
4736010
deploy visualpython 2.4.4
visualpythonJul 7, 2023
97760be
Merge branch 'main' into release
minjk-blJul 7, 2023
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
3 changes: 1 addition & 2 deletions.gitignore
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
dist/
jupyterlab/_output
jupyterlab/.jupyterlite.doit.db
jupyterlab/.jupyterlite.doit*
jupyterlab/lib/visualpython
jupyternotebook/visualpython
colab/visualpython
test/
.gitignore
visualpython/js/com/com_Config.js
4 changes: 2 additions & 2 deletionsbuild.sh
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -11,8 +11,8 @@
#=============================================================================
# Set version and replace it
#=============================================================================
VP_ORG_VER=2.4.2
VP_NEW_VER=2.4.3
VP_ORG_VER=2.4.3
VP_NEW_VER=2.4.4

# 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
4 changes: 2 additions & 2 deletionscolab/build.colab.sh
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -11,8 +11,8 @@
#=============================================================================
# Replace Version
#=============================================================================
VP_ORG_VER=2.4.2
VP_NEW_VER=2.4.3
VP_ORG_VER=2.4.3
VP_NEW_VER=2.4.4

# update version info
# update manifest version with new numbering for new version
Expand Down
2 changes: 1 addition & 1 deletioncolab/manifest.json
View file
Open in desktop
Original file line numberDiff line numberDiff 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.4.3",
"version":"2.4.4",
"manifest_version":3,
"icons": {
"48":"icon.png",
Expand Down
4 changes: 2 additions & 2 deletionsjupyterlab/build.jupyterlab.sh
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -11,8 +11,8 @@
#=============================================================================
# Replace Version and Basic Files
#=============================================================================
VP_ORG_VER=2.4.2
VP_NEW_VER=2.4.3
VP_ORG_VER=2.4.3
VP_NEW_VER=2.4.4

# 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
5 changes: 4 additions & 1 deletionjupyterlab/dev-build.jupyterlab.sh
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -50,4 +50,7 @@ jlpm run build
# jupyter lite build

# Run jupyterlite server
# jupyter lite serve
# jupyter lite serve # init + build + serve

# If something went wrong, remove _output/extensions folder and run command below
# jupyter lite init
4 changes: 2 additions & 2 deletionsjupyterlab/package-lock.json
View file
Open in desktop

Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.

2 changes: 1 addition & 1 deletionjupyterlab/package.json
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
{
"name":"jupyterlab-visualpython",
"version":"2.4.3",
"version":"2.4.4",
"description":"GUI-based Python code generator for Jupyter Lab as an extension",
"keywords": [
"jupyter",
Expand Down
4 changes: 2 additions & 2 deletionsjupyterlab/pyproject.toml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,7 +32,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
version = "2.4.3"
version = "2.4.4"

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

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

[tool.tbump.git]
Expand Down
4 changes: 2 additions & 2 deletionsjupyternotebook/build.jupyternotebook.sh
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -11,8 +11,8 @@
#=============================================================================
# Replace Version and Basic Files
#=============================================================================
VP_ORG_VER=2.4.2
VP_NEW_VER=2.4.3
VP_ORG_VER=2.4.3
VP_NEW_VER=2.4.4

# update version info
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"
Expand Down
2 changes: 1 addition & 1 deletionjupyternotebook/setup.py
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -10,7 +10,7 @@

setup(
name=name,
version='2.4.3',
version='2.4.4',
packages=find_packages(),
package_data= {"": ["*"],'visualpython' : ['visualpython.yaml','README.md']},
scripts= ['visualpython/bin/visualpy','visualpython/bin/visualpy.bat'],
Expand Down
37 changes: 37 additions & 0 deletionsvisualpython/css/mainFrame.css
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -59,6 +59,43 @@ div#vp_wrapper.colab * {
#vp_wrapper.lab *, #vp_wrapper.lite * {
box-sizing: border-box !important;
}
/* LITE: show protector */
#vp_wrapper.lab .vp-protector,
#vp_wrapper.lite .vp-protector {
background-color: rgb(33 33 33 / 77%);
position: absolute;
width: 100%;
height: 100%;
z-index: 100;
}
#vp_wrapper.lab .vp-protector-info,
#vp_wrapper.lite .vp-protector-info {
background-color: var(--vp-background-color);
width: 250px;
height: 170px;
padding: 10px;
margin: auto;
top: calc(50% - 80px);
position: relative;
display: grid;
grid-template-rows: 20px 100px 30px;
}
#vp_wrapper.lab .vp-protector-title,
#vp_wrapper.lite .vp-protector-title {
font-weight: bold;
color: var(--vp-font-highlight);
}
#vp_wrapper.lab .vp-protector-content,
#vp_wrapper.lite .vp-protector-content {
border: 0.25px solid var(--vp-border-gray-color);
border-radius: 10px;
padding: 10px;
margin: 5px 0;
}
#vp_wrapper.lab .vp-protector-footer,
#vp_wrapper.lite .vp-protector-footer {
text-align: right;
}

/* resizing handle */
#vp_wrapper > .ui-resizable-handle {
Expand Down
16 changes: 16 additions & 0 deletionsvisualpython/css/root.css
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -378,6 +378,22 @@ button.vp-button {
background:#C4C4C4;
}

/* Scrollbar vertical only */
.vp-scrollbar-vertical {
overflow-x: hidden;
overflow-y: auto;
white-space: nowrap;
--webkit-mask-position: left top;
}
.vp-scrollbar-vertical::-webkit-scrollbar {
width:5px;
height:5px;
}
.vp-scrollbar-vertical::-webkit-scrollbar-thumb {
border:0.3px solid#C4C4C4;
background:#C4C4C4;
}

/* Scrollbar horizontal */
.vp-scrollbar-horizontal {
overflow-x: auto;
Expand Down
Loading

[8]ページ先頭

©2009-2025 Movatter.jp