Skip to content

Commit

Permalink
1h intervall and libary updates
Browse files Browse the repository at this point in the history
updated to new pyinstaller version and set scheduler interval to 1h
  • Loading branch information
lennart-rth committed Mar 13, 2024
1 parent 5061574 commit 9dc86a7
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Read the [Wiki](https://github.com/lennart-rth/Live-Earth-Wallpapers/wiki) for a
3. Feel free to add your own ideas, features or open a discussion in the [Discussions tab](https://github.com/lennart-rth/Live-Earth-Wallpapers/discussions).

## Known Bugs
1. As of June 27, 2023, there are no images available of Goes-17. Stopt sending images???
1. As of June 27, 2023, there are no images available of Goes-17 meteosat-11.
### Pypi
1. If `liewa-cli` or `liewa-gui` is not known, add python pip itepackages to system `PATH`.
### Windows
Expand Down
12 changes: 6 additions & 6 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ find package/opt/liewa -type f -exec chmod 644 -- {} +
find package/opt/liewa -type d -exec chmod 755 -- {} +
find package/usr/share -type f -exec chmod 644 -- {} +

chmod -R 777 package/opt/liewa/liewa/liewa_cli/recources/
chmod 777 package/opt/liewa/liewa/liewa.service
chmod 777 package/opt/liewa/liewa/liewa.timer
chmod 777 package/opt/liewa/liewa
chmod 777 package/opt/liewa/app.py
chmod 777 package/opt/liewa/cli.py
chmod -R 777 package/opt/liewa/_internal/liewa/liewa_cli/recources/
chmod 777 package/opt/liewa/_internal/liewa/liewa.service
chmod 777 package/opt/liewa/_internal/liewa/liewa.timer
chmod 777 package/opt/liewa/_internal/liewa
chmod 777 package/opt/liewa/_internal/app.py
chmod 777 package/opt/liewa/_internal/cli.py

chmod +x package/opt/liewa/app

Expand Down
2 changes: 1 addition & 1 deletion liewa/liewa_gui/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ def update_status(self):

if self.status:
icon = self.style().standardIcon(QStyle.SP_DialogYesButton).pixmap(20,20)
self.i.setText("Running")
self.status_label_text.setText("Running")
else:
icon = self.style().standardIcon(QStyle.SP_DialogNoButton).pixmap(20,20)
self.status_label_text.setText("Not running")
Expand Down
4 changes: 1 addition & 3 deletions liewa/liewa_gui/scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,6 @@ def create_scheduler(self):
Description=Liewa Timer
[Timer]
OnCalendar=*-*-* *:00:00
OnCalendar=*-*-* *:30:00
OnCalendar=*-*-* *:*:00
[Install]
WantedBy=timers.target""")

Expand Down Expand Up @@ -103,7 +101,7 @@ def __init__(self):
<true/>
<key>StartInterval</key>
<integer>1800</integer>
<integer>3600</integer>
<key>StandardErrorPath</key>
<string>{error_log_path}</string>
Expand Down
18 changes: 17 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
altgraph==0.17.4
beautifulsoup4==4.11.1
build==1.1.1
certifi==2024.2.2
charset-normalizer==2.1.1
idna==3.6
numpy==1.26.4
opencv-python==4.9.0.80
packaging==24.0
Pillow==9.3.0
pyinstaller==6.5.0
pyinstaller-hooks-contrib==2024.3
pyproject_hooks==1.0.0
PyQt5==5.15.10
PyQt5-Qt5==5.15.2
PyQt5-sip==12.13.0
PyYAML==6.0
requests==2.28.1
setuptools==65.5.0
soupsieve==2.5
tomli==2.0.1
urllib3==1.26.18

0 comments on commit 9dc86a7

Please sign in to comment.