Skip to content

Commit

Permalink
Merge pull request #43 from hANSIc99/dev
Browse files Browse the repository at this point in the history
v1.4.1
  • Loading branch information
hANSIc99 authored May 14, 2021
2 parents f4ddbbc + f8f725f commit c14c417
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
1.4.1

Bug in Code Server configuration fixed (Docker only)
Pythonic: Patreons updated

1.4

PySide2 version detached to enable Python3.9 support
Expand Down
6 changes: 3 additions & 3 deletions Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@ RUN /usr/bin/python3 -m pip install pylint==2.7.4
###################################


COPY dist/Pythonic-1.4.tar.gz /
COPY dist/Pythonic-1.4.1.tar.gz /

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

RUN rm Pythonic-1.4.tar.gz
RUN rm Pythonic-1.4.1.tar.gz

###################################
# #
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
src/code-server/download.sh

# BUILD CONTAINER IMAGE
podman build -t pythonicautomation/pythonic:1.3 .
podman build -t pythonicautomation/pythonic:1.4.1 .
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name = 'Pythonic',
version = '1.04',
version = '1.04.01',
author = 'Stephan Avenwedde',
author_email = '[email protected]',
license = 'GPLv3',
Expand Down
1 change: 1 addition & 0 deletions src/Pythonic/wall_of_fame.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ WallOfFame::WallOfFame(QWidget *parent) : QDialog(parent)

/* Add names */

m_listOfNames.addItem(QStringLiteral("Paweł Pastuszko"));
m_listOfNames.addItem(QStringLiteral("Your Name"));

m_okBtn.setText(QStringLiteral("Ok"));
Expand Down
2 changes: 1 addition & 1 deletion src/code-server/config.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
bind-addr: 127.0.0.1:8000
bind-addr: 0.0.0.0:8000
auth: none
cert: false
user-data-dir: /root
Expand Down
5 changes: 5 additions & 0 deletions src/commands.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ podman push pythonicautomation/pythonic:<tag>
# pull image
podman pull pythonicautomation/pythonic

# chagne tag
podman tag pythonicautomation/pythonic:1.3 pythonicautomation/pythonic:1.4

#import image from file


##############################################################
# #
Expand Down
2 changes: 1 addition & 1 deletion src/run.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh

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

0 comments on commit c14c417

Please sign in to comment.