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

Commit893f5ad

Browse files
authored
Merge pull request#159 from visualpython/release
Release v2.2.10
2 parents0d5b950 +0e38770 commit893f5ad

File tree

10 files changed

+26
-20
lines changed

10 files changed

+26
-20
lines changed

‎README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Try Visual Python if you would like to: <br>
1919
* save & reuse repeatedly used codes(snippets). <br>
2020

2121
<br>
22-
<imgsrc="https://github.com/visualpython/visualpython/blob/main/img/Visual%20Python_2.2.8.gif"width="95%">
22+
<imgsrc="https://github.com/visualpython/visualpython/blob/main/img/Visual%20Python_2.2.8.gif?raw=true"width="95%">
2323

2424
##Getting Started
2525

‎css/menuFrame.css‎

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -57,18 +57,18 @@
5757
padding:05px5px5px;
5858
box-sizing: border-box;
5959
}
60-
.vp-menu-body>div:nth-child(2) {
60+
/*.vp-menu-body > div:nth-child(2) {
6161
margin-top: 50px;
62-
}
62+
} */
6363
.vp-menu-search-div {
6464
box-sizing: border-box;
6565
padding:10px010px0px;
66-
position:absolute;
67-
width:calc(100%-10px);
66+
position:relative;
67+
width:100%;
6868
background: white;
6969
}
7070
.vp-menu-search-box {
71-
width:calc(100%-50px);
71+
width:calc(100%-45px);
7272
height:30px;
7373
background:#FFFFFF;
7474
border:0.25px solid#e4e4e4;
@@ -83,14 +83,14 @@
8383
width:20px;
8484
height:20px;
8585
position: relative;
86-
right:32px;
86+
right:30px;
8787
}
8888
.vp-board-toggle-icon {
8989
width:26px;
9090
height:26px;
9191
position: absolute;
9292
top:11px;
93-
right:8px;
93+
right:4px;
9494
cursor: pointer;
9595
background-image: url(../img/toggleNote.svg);
9696
background-position: center;
@@ -105,6 +105,9 @@
105105
.vp-board-toggle-icon:hover {
106106
background-image: url(../img/toggleNote.svg);
107107
}
108+
.vp-menugroup-list {
109+
height:calc(100%-45px);
110+
}
108111

109112
.vp-menu-footer {
110113
width:100%;

‎html/menuFrame.html‎

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,15 @@
4848
</div>
4949
</div>
5050
<!-- Menu Body -->
51-
<divid="vp_menuBody"class="vp-menu-body vp-scrollbar">
51+
<divid="vp_menuBody"class="vp-menu-body">
5252
<divclass="vp-menu-search-div">
5353
<inputid="vp_menuSearchBox"class="vp-input vp-menu-search-box"type="text"placeholder="Search">
5454
<imgclass="vp-menu-search-icon"src="/nbextensions/visualpython/img/search.svg"/>
5555
<divid="vp_toggleBoard"class="vp-board-toggle-icon"title="Show VP Note"></div>
5656
</div>
57+
<divclass="vp-menugroup-list vp-scrollbar">
58+
59+
</div>
5760
</div>
5861
<!-- Menu Footer -->
5962
<divid="vp_menuFooter"class="vp-menu-footer">

‎js/com/com_Config.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ define([
587587
/**
588588
* Version
589589
*/
590-
Config.version="2.2.8";
590+
Config.version="2.2.10";
591591

592592
/**
593593
* Type of mode

‎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
classConstants{}
2020

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

‎js/com/component/FileNavigation.js‎

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -402,9 +402,7 @@ define([
402402
$(this.wrapSelector('#vp_fileNavigationInput')).on('change',function(){
403403
letfileName=$(this).val();
404404
letfilePath=that.getRelativePath(that.pathState.baseDir,that.pathState.currentPath);
405-
if(filePath==''){
406-
filePath='./'+fileName;
407-
}
405+
408406
that.handleSelectFile(filePath,fileName);
409407
});
410408
// bind save cancel event

‎js/m_apps/Frame.js‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -660,10 +660,10 @@ define([
660660
// render variable list
661661
// get prevvalue
662662
varprevValue=that.state.originObj;
663-
if(varList&&varList.length>0&&prevValue==''){
664-
prevValue=varList[0].varName;
665-
that.state.originObj=prevValue;
666-
}
663+
//if (varList && varList.length > 0 && prevValue == '') {
664+
// prevValue = varList[0].varName;
665+
// that.state.originObj = prevValue;
666+
//}
667667
// replace
668668
that.renderVariableList(varList,prevValue);
669669
$(that.wrapSelector('#vp_feVariable')).trigger('change');

‎js/m_visualize/Seaborn.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -712,7 +712,7 @@ define([
712712
suggestInput.setComponentID('styleSheet');
713713
suggestInput.setSuggestList(function(){returnvarList;});
714714
suggestInput.setPlaceholder('style name');
715-
suggestInput.setValue('seaborn-darkgrid');// set default (seaborn-darkgrid)
715+
//suggestInput.setValue('seaborn-darkgrid'); // set default (seaborn-darkgrid)
716716
// suggestInput.setNormalFilter(false);
717717
$(stylesheetTag).replaceWith(function(){
718718
returnsuggestInput.toTagString();

‎js/menu/MenuFrame.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ define([
252252
menuLibraries&&menuLibraries.forEach(item=>{
253253
if(item.type=='package'){
254254
// packages : MenuGroup
255-
varmenuGroup=newMenuGroup($('#vp_menuBody'),item);
255+
varmenuGroup=newMenuGroup($('.vp-menugroup-list'),item);
256256
if(item.item){
257257
that.renderMenuItem(menuGroup);
258258
}

‎js/menu/MenuGroup.js‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ define([
3939
bodyTag.hide();
4040
}else{
4141
bodyTag.show();
42+
// scroll to view
43+
$(target)[0].scrollIntoView({behavior:"smooth",block:"start"});
4244
}
4345
evt.stopPropagation();
4446
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp