diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 00000000..1b6525f0 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +github: visualpython diff --git a/.github/ISSUE_TEMPLATE/content-contribution.md b/.github/ISSUE_TEMPLATE/content-contribution.md new file mode 100644 index 00000000..e8f3a92e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/content-contribution.md @@ -0,0 +1,16 @@ +--- +name: Content contribution +about: Share contents to encourage using visualpython (e.g. gitbook, Youtube, blog, + ...) +title: '' +labels: documentation +assignees: '' + +--- + +**Share created contents** +Write and share your contents to encourage using visualpython. +Use external links to share your contents. + +**Need help** +If you need help for creating contents, you can request other contributors to join. diff --git a/.github/ISSUE_TEMPLATE/design-fix.md b/.github/ISSUE_TEMPLATE/design-fix.md new file mode 100644 index 00000000..a3eb3813 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/design-fix.md @@ -0,0 +1,18 @@ +--- +name: Design fix +about: Suggest an idea for design and ui +title: '' +labels: design fix +assignees: '' + +--- + +**Is your suggestion related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the design/style you'd like** +A clear and concise description of what you want to happen. +Design images needed to clearly understand + +**Additional context** +Add any other context or screenshots about the design suggestion here. diff --git a/.ipynb_checkpoints/Untitled-checkpoint.ipynb b/.ipynb_checkpoints/Untitled-checkpoint.ipynb new file mode 100644 index 00000000..363fcab7 --- /dev/null +++ b/.ipynb_checkpoints/Untitled-checkpoint.ipynb @@ -0,0 +1,6 @@ +{ + "cells": [], + "metadata": {}, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Untitled.ipynb b/Untitled.ipynb new file mode 100644 index 00000000..ac84707e --- /dev/null +++ b/Untitled.ipynb @@ -0,0 +1,32 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "id": "0da90d57", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "vp": { + "vp_config_version": "1.0.0", + "vp_menu_width": 273, + "vp_note_display": false, + "vp_note_width": 0, + "vp_position": { + "width": 278 + }, + "vp_section_display": true, + "vp_signature": "VisualPython" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/css/component/popupComponent.css b/css/component/popupComponent.css index 962f0b82..981195cd 100644 --- a/css/component/popupComponent.css +++ b/css/component/popupComponent.css @@ -129,8 +129,11 @@ height: 50px; border-top: 0.25px solid var(--border-gray-color); } + +/* 220919 */ .vp-popup-codeview-box, -.vp-popup-dataview-box { +.vp-popup-dataview-box, +.vp-popup-helpview-box { display: none; width: 100%; height: 100px; @@ -155,6 +158,13 @@ margin-top: 9px; margin-left: 10px; } + +/* 220919 */ +.vp-popup-button[data-type="help"] { + float: left; + margin-top: 9px; + margin-left: 10px; +} .vp-popup-button[data-type="cancel"] { float: right; background-color: #E4E4E4; diff --git a/data/help_data.json b/data/help_data.json new file mode 100644 index 00000000..caf27239 --- /dev/null +++ b/data/help_data.json @@ -0,0 +1,7 @@ +{ + "Import" : "this is import help", + "File" : "this is file help", + "Bind" : "this is bind help", + "try" : "this is try help", + "Subset" : "this is subset help" +} \ No newline at end of file diff --git a/data/libraries.json b/data/libraries.json index 5cd63821..17275438 100644 --- a/data/libraries.json +++ b/data/libraries.json @@ -3063,6 +3063,20 @@ "color": 4, "icon": "apps/apps_profiling.svg" } + }, + { + "id" : "apps_sample", + "type" : "function", + "level": 1, + "name" : "Sample App", + "tag" : "SAMPLE,OSSCA,APPS", + "path" : "visualpython - apps - sample", + "desc" : "Sample app for OSSCA", + "file" : "m_apps/SampleApp2.js", + "apps" : { + "color": 4, + "icon": "apps/apps_white.svg" + } } ] }, diff --git a/html/__pycache__/__init__.cpython-310.pyc b/html/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 00000000..a77c4f8f Binary files /dev/null and b/html/__pycache__/__init__.cpython-310.pyc differ diff --git a/html/__pycache__/__init__.cpython-39.pyc b/html/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 00000000..d4a34dd5 Binary files /dev/null and b/html/__pycache__/__init__.cpython-39.pyc differ diff --git a/html/component/popupComponent.html b/html/component/popupComponent.html index a29fe11e..04c73e43 100644 --- a/html/component/popupComponent.html +++ b/html/component/popupComponent.html @@ -6,7 +6,7 @@ Note : popup component License : GNU GPLv3 with Visual Python special exception Date : 2021. 12. 01 - Change Date : + Change Date : 2021. 09. 25 -->
@@ -80,10 +80,21 @@