Switched from PySimpleGUY to FreeSimpleGUI

This commit is contained in:
Fredrick W. Warren 2026-01-02 08:19:35 -08:00
parent ea8930ad14
commit 2d123e1a74
2 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
import os
import PySimpleGUI as sg
import FreeSimpleGUI as sg
from datetime import date, timedelta
from pathlib import Path
from PIL import Image, ImageDraw, ImageEnhance, ImageFilter, ImageFont, ImageOps
@ -15,7 +15,7 @@ def resource_path(relative_path):
def save_filename():
"""determin file name by platform"""
folder = Path('D:/OBS Assets/Overlays')
folder = Path('C:/Users/harvest/Documents/OBS/Overlays')
if folder.exists():
return folder / 'Title.png'
return Path.home() / 'Pictures' / 'Title.png'

View File

@ -1,5 +1,5 @@
Pillow
pyinstaller
pyinstaller-hooks-contrib
PySimpleGUI==4.60.1
pywin32-ctypes
FreeSimpleGUI