Skip to content

Commit c14c417

Browse files
authored
Merge pull request #43 from hANSIc99/dev
v1.4.1
2 parents f4ddbbc + f8f725f commit c14c417

File tree

8 files changed

+18
-7
lines changed

8 files changed

+18
-7
lines changed

CHANGES.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
1.4.1
2+
3+
Bug in Code Server configuration fixed (Docker only)
4+
Pythonic: Patreons updated
5+
16
1.4
27

38
PySide2 version detached to enable Python3.9 support

Containerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,11 @@ RUN /usr/bin/python3 -m pip install pylint==2.7.4
7575
###################################
7676

7777

78-
COPY dist/Pythonic-1.4.tar.gz /
78+
COPY dist/Pythonic-1.4.1.tar.gz /
7979

80-
RUN /usr/bin/python3 -m pip install /Pythonic-1.4.tar.gz
80+
RUN /usr/bin/python3 -m pip install /Pythonic-1.4.1.tar.gz
8181

82-
RUN rm Pythonic-1.4.tar.gz
82+
RUN rm Pythonic-1.4.1.tar.gz
8383

8484
###################################
8585
# #

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
src/code-server/download.sh
1212

1313
# BUILD CONTAINER IMAGE
14-
podman build -t pythonicautomation/pythonic:1.3 .
14+
podman build -t pythonicautomation/pythonic:1.4.1 .

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name = 'Pythonic',
8-
version = '1.04',
8+
version = '1.04.01',
99
author = 'Stephan Avenwedde',
1010
author_email = '[email protected]',
1111
license = 'GPLv3',

src/Pythonic/wall_of_fame.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ WallOfFame::WallOfFame(QWidget *parent) : QDialog(parent)
3434

3535
/* Add names */
3636

37+
m_listOfNames.addItem(QStringLiteral("Paweł Pastuszko"));
3738
m_listOfNames.addItem(QStringLiteral("Your Name"));
3839

3940
m_okBtn.setText(QStringLiteral("Ok"));

src/code-server/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
bind-addr: 127.0.0.1:8000
1+
bind-addr: 0.0.0.0:8000
22
auth: none
33
cert: false
44
user-data-dir: /root

src/commands.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ podman push pythonicautomation/pythonic:<tag>
3030
# pull image
3131
podman pull pythonicautomation/pythonic
3232

33+
# chagne tag
34+
podman tag pythonicautomation/pythonic:1.3 pythonicautomation/pythonic:1.4
35+
36+
#import image from file
37+
3338

3439
##############################################################
3540
# #

src/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/sh
22

3-
podman run -d --name Pythonic -p 7000:7000 -p 8000:8000 pythonic:1.3
3+
podman run -d --name Pythonic -p 7000:7000 -p 8000:8000 pythonic:1.4.1

0 commit comments

Comments
 (0)