Skip to content

Commit c2792ff

Browse files
committed
version updated
1 parent cd11c3d commit c2792ff

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

build.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ src/Pythonic/build.sh
88
python3 setup.py sdist
99

1010
# DOWNLOAD CODE SERVER EXTENSIONS
11+
src/code-server
1112

1213
# BUILD CONTAINER IMAGE
1314
podman build -t pythonic:1.1 .

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
'public_html/static/python.ico',
2222
'public_html/static/qtlogo.svg',
2323
'public_html/static/qtloader.js',
24-
'public_html/static/PythonicWeb.js',
25-
'public_html/static/PythonicWeb.wasm',
26-
'public_html/static/PythonicWeb.data',
27-
'public_html/templates/PythonicWeb.html',
24+
'public_html/static/*.js',
25+
'public_html/static/*.wasm',
26+
'public_html/static/*.data',
27+
'public_html/templates/*.html',
2828
'public_html/config/Toolbox/Basic/GenericPython.json',
2929
'public_html/config/Toolbox/Basic/GenericPython.editor',
3030
'public_html/config/Toolbox/Basic/Scheduler.json',

src/Pythonic/PythonicWeb.pro

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ QT += core gui websockets
33
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
44

55

6+
#TARGET="PythonicWeb_1.1"
67
CONFIG += c++11
7-
#CONFIG += wasm
8+
CONFIG += wasm
89

910
wasm {
1011
DEFINES += WASM

src/Pythonic/build.sh

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ source ~/Dokumente/emsdk/emsdk_env.sh # Version 1.39.8
88
#make clean
99
make
1010

11-
cp PythonicWeb.html public_html/static/
12-
cp qtloader.js public_html/static/
13-
cp PythonicWeb.wasm public_html/static/
14-
cp PythonicWeb.js public_html/static/
15-
cp PythonicWeb.data public_html/static/
11+
cp *.html public_html/static/
12+
cp *.wasm public_html/static/
13+
cp *.js public_html/static/
14+
cp *.data public_html/static/

src/Pythonic/screen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def reset_screen():
1010
'|_| \__, |\__|_| |_|\___/|_| |_|_|\___|____/ \__,_|\___|_| |_| |_|\___/|_| |_|\n'\
1111
' |___/ \n'
1212

13-
version = 'v1.0\n'
13+
version = 'v1.1\n'
1414
gitHub = 'Visit https://github.com/hANSIc99/Pythonic\n'
1515
log_info_msg = '<<<<<<<<<<<< Logging directory ~/Pythonic/log/\n'
1616

0 commit comments

Comments
 (0)