Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork118
Release v2.0.2#114
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
Uh oh!
There was an error while loading.Please reload this page.
Merged
Release v2.0.2#114
Changes fromall commits
Commits
Show all changes
40 commits Select commitHold shift + click to select a range
812bc2c Default status of vp from open to close
9dc4842 Add restart vp menu
3e7e067 Focus block on focusing its popup
c6e4021 Add default except block to try block, focus block after else/finally…
fc6d70b Apps > Chart - fix x, y limit option
e0fec5a Apps > Chart - add method to x,y,z data value selection
21a207f Except block changed
043bb77 Fix child block's multi-line code indent
d0d91f0 Add else on/off to while block
b5d1399 small changes for style
400e328 Remove Edit mode from blocks without contents
0863eb3 Fixed inner popup draggable
9a1ad6a Fixed Apps > Frame - inner popup component styles
05687c6 Apps > Frame - fix label
b711225 style changes
6708322 Add numpy library list to libraries.json
e20cfe2 style changes(table style added)
96039cc fix files - replace kor
d9c8ea4 Fix varSelector, add column to value_counts
5a5ff34 Fix libraries.json file name
a9967db Add codeview, codeexport menu to board
656feb2 Add codeview menu to block, Handle block menu hidden problem
9108f63 Add check version
5d47ae6 Add auto version checker
db1eb78 More error handling
3300c4b Numpy 1darr component
e272152 Numpy 2darr component
45cbd11 Numpy ndarr component
eb28667 small changes
b86fe44 Numpy libraries update
a33b8d3 bug fix
3e004d5 Python libraries added
3660a0e Fix version checker
c61c110 Fix bug - Apps > File
c7dc357 Remove some note menu (depth number show, close note)
dfecdd2 Fix version checker
e950555 Fix FileNavigation
d4d9e26 Fix FileNavigation
71eb72d Merge pull request #113 from minjk-bl/devops
minjk-bl7893805 deploy visualpython 2.0.2
blacklogicdevFile filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
1 change: 1 addition & 0 deletionscss/boardFrame.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
53 changes: 53 additions & 0 deletionscss/component/infoModal.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,53 @@ | ||
| #vp_infoModal { | ||
| position: fixed; | ||
| top: 0; | ||
| left: 0; | ||
| width: 100%; | ||
| height: 100%; | ||
| z-index: 400; | ||
| background-color: rgba(0,0,0,.4); | ||
| } | ||
| .vp-infoModal-container { | ||
| position: relative; | ||
| left: 50%; | ||
| top: 50%; | ||
| transform:translate(-50%, -50%); | ||
| width: 400px; | ||
| height: 150px; | ||
| padding: 2rem; | ||
| background-color: white; | ||
| box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2); | ||
| font-family: AppleSDGothicNeo; | ||
| } | ||
| .vp-infoModal-inner { | ||
| width: 100%; | ||
| height: 100%; | ||
| border-radius: 30px; | ||
| } | ||
| .vp-infoModal-input-button:hover { | ||
| cursor: pointer; | ||
| transition: 0.7s; | ||
| outline: 0; | ||
| } | ||
| .vp-infoModal-icon { | ||
| font-size: 26px; | ||
| color: var(--font-primary); | ||
| } | ||
| .vp-infoModal-titleStr { | ||
| color: var(--font-primary); | ||
| font-size: 13px; | ||
| font-weight: 700; | ||
| } | ||
| .vp-infoModal-style-flex-column-evenly { | ||
| display: flex; | ||
| flex-direction: column; | ||
| justify-content: space-evenly; | ||
| } | ||
| .vp-infoModal-style-flex-row-center { | ||
| display: flex; | ||
| flex-direction: row; | ||
| justify-content: center; | ||
| } | ||
| .vp-infoModal-style-text-center { | ||
| text-align: center; | ||
| } |
21 changes: 1 addition & 20 deletionscss/component/modal.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
13 changes: 3 additions & 10 deletionscss/m_apps/chart.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
6 changes: 1 addition & 5 deletionscss/m_apps/frame.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
6 changes: 0 additions & 6 deletionscss/m_library/libraryComponent.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
139 changes: 139 additions & 0 deletionscss/m_library/numpyComponent.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,139 @@ | ||
| .vp-popup-frame .vp-option-page table.vp-option-table { | ||
| width: 100%; | ||
| } | ||
| .vp-popup-frame .vp-option-page .vp-option-table select.var-multi, select.option-multi { | ||
| height: 60px; | ||
| } | ||
| /* Function Button */ | ||
| .vp-popup-frame #vp_functionList .vp_funcButton { | ||
| background-color: white; | ||
| padding: 3px 7px 3px 7px; | ||
| margin-right: 5px; | ||
| margin-bottom: 5px; | ||
| border: 1px solid #535353; | ||
| } | ||
| .vp-popup-frame #vp_functionList .vp_funcButton:hover { | ||
| background-color: lightgray; | ||
| } | ||
| .vp-popup-frame #vp_functionList .vp_funcButton.active { | ||
| color: white; | ||
| background-color: #535353; | ||
| cursor: default; | ||
| } | ||
| /* Input & Select Design */ | ||
| .vp-popup-frame .vp-input { | ||
| height: 30px; | ||
| background-color: #FFFFFF; | ||
| box-sizing: border-box; | ||
| padding: 0px 5px 0px 5px; | ||
| } | ||
| .vp-popup-frame .vp-select { | ||
| height: 30px; | ||
| background-color: #F5F5F5; | ||
| box-sizing: border-box; | ||
| /* select tag arrow */ | ||
| -webkit-appearance: none; | ||
| -moz-appearance: none; | ||
| appearance: none; | ||
| padding: 0px 5px 0px 5px; | ||
| cursor: pointer; | ||
| } | ||
| /* Select Option Design */ | ||
| .vp-popup-frame .vp-select * { | ||
| background-color: white; | ||
| color: #696969; | ||
| } | ||
| /* Input & Select Design - width m&s */ | ||
| .vp-popup-frame .vp-input.m, | ||
| .vp-popup-frame .vp-select.m { | ||
| width: 116px; | ||
| } | ||
| .vp-popup-frame .vp-input.s, | ||
| .vp-popup-frame .vp-select.s { | ||
| width: 55px; | ||
| } | ||
| /* Range */ | ||
| .vp-popup-frame .vp-range { | ||
| display: inline; | ||
| width: 116px; | ||
| } | ||
| .vp-popup-frame .vp-textarea { | ||
| border: 0.25px solid var(--border-gray-color); | ||
| width: 100%; | ||
| height: 100px; | ||
| margin: 0px; | ||
| } | ||
| /* Arrow Accordions */ | ||
| .vp-popup-frame .vp-option-page .vp-accordian-header { | ||
| font-weight: bold; | ||
| } | ||
| .vp-popup-frame .vp-option-page .vp-arrow-right, | ||
| .vp-popup-frame .vp-option-page .vp-arrow-down { | ||
| background-repeat: no-repeat; | ||
| } | ||
| .vp-popup-frame .vp-option-page .vp-spread { | ||
| min-height: 100px; | ||
| } | ||
| .vp-popup-frame .vp-option-page .vp-minimize { | ||
| height: 25px; | ||
| overflow: hidden; | ||
| } | ||
| .vp-popup-frame .vp-pandas-block { | ||
| border-bottom: 1px solid darkgray; | ||
| } | ||
| /* Prefix & Postfix Text Area */ | ||
| .vp-popup-frame #vp_prefixBox textarea, | ||
| .vp-popup-frame #vp_postfixBox textarea { | ||
| outline: none; | ||
| resize: none; | ||
| overflow: auto; | ||
| } | ||
| .no-selection { | ||
| -webkit-touch-callout: none; /* iOS Safari */ | ||
| -webkit-user-select: none; /* Safari */ | ||
| -khtml-user-select: none; /* Konqueror HTML */ | ||
| -moz-user-select: none; /* Old versions of Firefox */ | ||
| -ms-user-select: none; /* Internet Explorer/Edge */ | ||
| user-select: none; /* Non-prefixed version, currently | ||
| supported by Chrome, Edge, Opera and Firefox */ | ||
| } | ||
| /* | ||
| * numpy style | ||
| */ | ||
| .vp-numpy-style-flex-row-center { | ||
| display: flex; | ||
| flex-direction: row; | ||
| justify-content: center; | ||
| } | ||
| .vp-numpy-style-flex-row-wrap { | ||
| display: flex; | ||
| flex-direction: row; | ||
| flex-flow: wrap; | ||
| } | ||
| .vp-numpy-style-flex-row { | ||
| display: flex; | ||
| flex-direction: row; | ||
| } | ||
| .vp-numpy-style-flex-column { | ||
| display: flex; | ||
| flex-direction: column; | ||
| } | ||
| .vp-numpy-style-flex-column-center { | ||
| display: flex; | ||
| flex-direction: column; | ||
| justify-content: center; | ||
| } | ||
| .vp-numpy-box-border { | ||
| border: 1px solid #E4E4E4; | ||
| border-radius: 5px; | ||
| box-sizing: border-box; | ||
| padding: 10px; | ||
| } |
14 changes: 12 additions & 2 deletionscss/menuFrame.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
10 changes: 4 additions & 6 deletionscss/popupComponent.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Oops, something went wrong.
Uh oh!
There was an error while loading.Please reload this page.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.