Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace the now non-open source PySimpleGUI with FreeSimpleGUI #160

Merged
merged 1 commit into from
Sep 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion domlogo/domlogo.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
import subprocess

import PySimpleGUI as sg
import FreeSimpleGUI as sg
import glob
import os
import requests
Expand Down
2 changes: 1 addition & 1 deletion provision-contest/ansible/roles/domlogo/files/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ First, create the following files:
- `images/photos/idle.png`, an image with a width of 1024 (and any height) to show when the judgedaemon is idle.

Next, add the needed Python dependencies to the `lib` folder, within a folder called `python3.10`. You can copy this
folder from a local machine and it should contain the `PySimpleGUI` and `requests` Python packages.
folder from a local machine and it should contain the `FreeSimpleGUI` and `requests` Python packages.

Optionally you can create a file `images/config.yaml` with something like:

Expand Down
Loading