-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #370 from linien-org/release/v1.0.1
Release v1.0.1
- Loading branch information
Showing
8 changed files
with
11 additions
and
22 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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 |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
|
||
setup( | ||
name="linien-common", | ||
version="1.0.0", | ||
version="1.0.1", | ||
author="Benjamin Wiegand", | ||
author_email="[email protected]", | ||
maintainer="Bastian Leykauf", | ||
|
This file contains 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 |
---|---|---|
|
@@ -18,11 +18,9 @@ | |
|
||
from setuptools import find_packages, setup | ||
|
||
version = "1.0.0" | ||
|
||
setup( | ||
name="linien-gui", | ||
version=version, | ||
version="1.0.1", | ||
author="Benjamin Wiegand", | ||
author_email="[email protected]", | ||
maintainer="Bastian Leykauf", | ||
|
@@ -44,7 +42,7 @@ | |
"pyqtgraph>=0.10.0", | ||
"PyQt5>=5.12.0", | ||
"superqt>=0.2.3", | ||
"linien_client==1.0.0", | ||
"linien_client==1.0.1", | ||
], | ||
package_data={ | ||
# IMPORTANT: any changes have to be made in pyinstaller.spec, too | ||
|
This file contains 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 |
---|---|---|
@@ -1,13 +1,8 @@ | ||
#!/bin/bash | ||
|
||
# quit any remaining screen session | ||
if [ -x "$(command -v linien_stop_server.sh)" ]; then | ||
linien_stop_server.sh | ||
fi | ||
screen -X -S linien-server quit | ||
# start a new one | ||
screen -S linien-server -d -m | ||
linien_stop_server.sh | ||
|
||
# stop ethernet blinking and start the server inside the screen session. Start ethernet blinking again after server stopped. | ||
# Regarding ethernet blinking, see https://github.com/RedPitaya/RedPitaya/issues/205 | ||
screen -r linien-server -X stuff $"mdio-tool w eth0 0x1b 0x0000; linien-server $1; mdio-tool w eth0 0x1b 0x0f00; \n" | ||
screen -dmS linien-server bash -c "mdio-tool w eth0 0x1b 0x0000;linien-server;mdio-tool w eth0 0x1b 0x0f00" |
This file contains 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/bash | ||
|
||
# Close screen session and start ethernet blinking again, see https://github.com/RedPitaya/RedPitaya/issues/205 | ||
screen -X -S linien-server quit | ||
screen -XS linien-server quit | ||
mdio-tool w eth0 0x1b 0x0f00 |
This file contains 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 |
---|---|---|
|
@@ -18,11 +18,9 @@ | |
|
||
from setuptools import find_packages, setup | ||
|
||
version = "1.0.0" | ||
|
||
setup( | ||
name="linien-server", | ||
version=version, | ||
version="1.0.1", | ||
author="Benjamin Wiegand", | ||
author_email="[email protected]", | ||
maintainer="Bastian Leykauf", | ||
|
@@ -47,7 +45,7 @@ | |
"pyrp3>=1.1.0,<2.0;platform_machine=='armv7l'", # only install on RedPitaya | ||
"requests==2.25.1;python_version<'3.10'", # pinned because of bug in pip 9.0.1, see #339 # noqa: E501 | ||
"requests>=2.25.1;python_version>='3.10'", | ||
"linien-common==1.0.0", | ||
"linien-common==1.0.1", | ||
], | ||
scripts=[ | ||
"linien_server/linien_start_server.sh", | ||
|
This file contains 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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"latest": "1.0.0" | ||
"latest": "1.0.1" | ||
} |