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 v1.2.0#105

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 17 commits intomainfromrelease
Nov 3, 2021
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
Show all changes
17 commits
Select commitHold shift + click to select a range
8c504df
File - read_csv encoding option added
Nov 2, 2021
0bb8698
Pandas options - key is now showing on label hover
Nov 2, 2021
7a7a92c
Variable - variable box scrollable
Nov 2, 2021
2092ba3
Frame - column height issue fixed
Nov 2, 2021
a5f73e9
File - read_csv encoding options will be suggested
Nov 3, 2021
5c75d2c
fix python - open
Nov 3, 2021
354ccac
Frame Editor - popup rename, replace scrollbar fixed
Nov 3, 2021
12ec20b
FileNavigation - height control on long file path
Nov 3, 2021
578db8f
Frame - save scroll position after clicking More..
Nov 3, 2021
9328015
block style changed
Nov 3, 2021
0fbe1a8
resize bug fix
Nov 3, 2021
dddae28
Merge pull request #102 from minjk-bl/devops
minjk-blNov 3, 2021
d64ba7a
error fix
Nov 3, 2021
c2974b7
Merge pull request #103 from minjk-bl/devops
minjk-blNov 3, 2021
128f3a3
Frame - reset table
Nov 3, 2021
3a63428
Merge pull request #104 from minjk-bl/devops
minjk-blNov 3, 2021
bd9a8a9
deploy visualpython 1.2.0
blacklogicdevNov 3, 2021
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
6 changes: 3 additions & 3 deletionscss/api_block/index.css
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -320,11 +320,11 @@
flex-direction: column;
margin-left:14px;
margin-bottom:400px;
width:calc(100%-68px);
width:calc(100%-60px);
}
.vp-block {
position: relative;
min-width:205px;
width:100%;
min-height:25px;
z-index:1;
text-align: left;
Expand DownExpand Up@@ -822,7 +822,7 @@
}
.vp-apiblock-codeline-ellipsis {
width:100%;
background-color:rgba(255,255,255,0.5);
/*background-color: rgba(255, 255, 255, 0.5); */
color:var(--font-primary);
font-size:12px;
text-indent:0.5em;
Expand Down
19 changes: 18 additions & 1 deletioncss/common/frameEditor.css
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -190,6 +190,13 @@
top: 0;
background: #FFFFFF;
border-bottom: 1px solid #E4E4E4;

text-align: right;
text-overflow: ellipsis;
overflow: hidden;
height: 30px !important;
min-width: 80px;
white-space: nowrap;
}
.vp-fe-table tbody tr:nth-child(odd) {
background: #F5F5F5;
Expand DownExpand Up@@ -223,6 +230,10 @@
width: 100%;
z-index: -1;
} */
.vp-fe-table tr th:nth-child(1),
.vp-fe-add-column {
min-width: 30px !important;
}

.vp-fe-table-more {
margin-top: 10px;
Expand DownExpand Up@@ -364,7 +375,7 @@
padding: 10px;
}
.vp-popup-addpage .vp-popup-tab.replace {
height: calc(100% -50px);
height: calc(100% -60px);
}
.vp-popup-addtype {
width: 153px;
Expand All@@ -373,6 +384,12 @@
.vp-popup-delete {
padding-bottom: 20px;
}
.vp-popup-rename-page {
max-height: 400px;
}
.vp-popup-replace-table {
max-height: 350px;
}
.vp-popup-replace-add {
margin-top: 30px
}
Expand Down
3 changes: 3 additions & 0 deletionscss/component/common.css
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -84,6 +84,9 @@
.wp50 {
width: 50px;
}
.wp60 {
width: 60px;
}
.wp80 {
width: 80px;
}
Expand Down
12 changes: 7 additions & 5 deletionscss/component/fileNavigation.css
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -47,7 +47,8 @@
.fileNavigationPage-inner {
float: right;
display: grid;
grid-template-rows: 30px auto min-content;
/* grid-template-rows: 30px auto min-content; */
grid-template-rows: min-content auto min-content;
width: 80%;
height: 100%;
}
Expand DownExpand Up@@ -107,7 +108,8 @@
}
.fileNavigationPage-menu {
min-height: 30px;
height: 6%;
/* height: 6%; */
height: fit-content;
padding-left: 10px;
background-color: #EEE;
border: 1px solid #ddd;;
Expand All@@ -127,7 +129,7 @@
justify-content: center;
}
.fileNavigationPage-menu-block {
margin-left: 10px;
padding: 0 35px 0 10px;
display: flex;
flex-direction: column;
justify-content: center;
Expand DownExpand Up@@ -192,11 +194,11 @@
.fileNavigationPage-closedBtn {
position: fixed;
z-index: 3;
right:5px;
right:10px;
width: 20px;
height: 20px;
line-height: 20px;
top:5px;
top:3px;
text-align: center;
}
.fileNavigationPage-closedBtn:hover {
Expand Down
13 changes: 9 additions & 4 deletionscss/file_io/variables.css
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
:root {
--color: #525252;
}
#vp_var_variableBox tabletr:not(:first-child):hover,
#vp_var_variableBox table tr.selected {
#vp_var_variableBox tabletbody tr:hover,
#vp_var_variableBox tabletbodytr.selected {
color: var(--font-hightlight);
background-color: #F5F5F5;
}
#vp_var_variableBox table tr td:first-child:hover {
#vp_var_variableBox tabletbodytr td:hover {
cursor: pointer;
}
#vp_var_variableBox table thead {
position: sticky;
top: 0;
background: white;
}

#vp_varDetailTable table th,
#vp_varDetailTable table td {
padding: 5px;
Expand All@@ -25,7 +31,6 @@
#vp_var_variableBox {
width: 100%;
height: 150px;
overflow: hidden;
}
#vp_varDetailTable:empty::after {
content: '(Select variables to preview the data.)';
Expand Down
4 changes: 2 additions & 2 deletionssrc/api_block/block.js
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -1487,9 +1487,9 @@ define([

if (isColor == true) {
if (this.getBlockType() == BLOCK_CODELINE_TYPE.TEXT) {
$(this.getBlockMainDom()).css(STR_BORDER_LEFT, '2px solid var(--highlight-color');
$(this.getBlockMainDom()).css(STR_BORDER_LEFT, '2px solid var(--highlight-color)');
} else {
$(this.getBlockMainDom()).css(STR_BORDER, '2px solid var(--highlight-color');
$(this.getBlockMainDom()).css(STR_BORDER, '2px solid var(--highlight-color)');
}
}
}
Expand Down
2 changes: 1 addition & 1 deletionsrc/api_block/blockContainer.js
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -2649,7 +2649,7 @@ define([
this.hideOptionPreviewBox();
$(VP_ID_PREFIX + VP_APIBLOCK_BOARD_OPTION_PREVIEW_BUTTON).removeClass('enabled');

this.setNavigator(BLOCK_CODELINE_TYPE.NONE, 'Visual Python 1.1.15');
this.setNavigator(BLOCK_CODELINE_TYPE.NONE, 'Visual Python 1.2.0');
this.setFocusedPageType(FOCUSED_PAGE_TYPE.BOARD);
$('.vp-apiblock-option-tab-none').css(STR_DISPLAY, STR_BLOCK);
}
Expand Down
2 changes: 1 addition & 1 deletionsrc/api_block/index.html
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -120,7 +120,7 @@
id='vp_apiblock_option_page'>
<divclass="vp-apiblock-option-navigator">
<divclass="vp-apiblock-option-navigator-label">
<spanclass="vp-orange-text">Visual Python 1.1.15</span>
<spanclass="vp-orange-text">Visual Python 1.2.0</span>
</div>
<divclass="vp-apiblock-option-new-to-save"title="something modified...">

Expand Down
2 changes: 1 addition & 1 deletionsrc/common/constant.js
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -48,7 +48,7 @@ define ([
* toolbar btn properties
*/
constTOOLBAR_BTN_INFO={
HELP:"Visual Python 1.1.15"
HELP:"Visual Python 1.2.0"
// , ICON: "fa-angellist"
,ICON:"vp-main-icon"
,ID:"vpBtnToggle"
Expand Down
Loading

[8]ページ先頭

©2009-2025 Movatter.jp