mirror of
https://github.com/netinvent/npbackup.git
synced 2025-10-29 06:46:26 +08:00
Move PySimpleGUI to inline version for #51
This commit is contained in:
parent
537fd12011
commit
24bddcb637
6 changed files with 27019 additions and 6 deletions
27013
npbackup/gui/PySimpleGUI.py
Normal file
27013
npbackup/gui/PySimpleGUI.py
Normal file
File diff suppressed because one or more lines are too long
|
|
@ -26,7 +26,7 @@ import atexit
|
|||
from ofunctions.process import kill_childs
|
||||
from ofunctions.threading import threaded
|
||||
from ofunctions.misc import BytesConverter
|
||||
import PySimpleGUI as sg
|
||||
import npbackup.gui.PySimpleGUI as sg
|
||||
import _tkinter
|
||||
import npbackup.configuration
|
||||
import npbackup.common
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ from typing import List, Tuple
|
|||
import os
|
||||
import pathlib
|
||||
from logging import getLogger
|
||||
import PySimpleGUI as sg
|
||||
import npbackup.gui.PySimpleGUI as sg
|
||||
import textwrap
|
||||
from ruamel.yaml.comments import CommentedMap
|
||||
import npbackup.configuration as configuration
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ from logging import getLogger
|
|||
from time import sleep
|
||||
import re
|
||||
import queue
|
||||
import PySimpleGUI as sg
|
||||
import npbackup.gui.PySimpleGUI as sg
|
||||
from npbackup.core.i18n_helper import _t
|
||||
from npbackup.customization import (
|
||||
LOADER_ANIMATION,
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ __build__ = "2024010301"
|
|||
|
||||
|
||||
from logging import getLogger
|
||||
import PySimpleGUI as sg
|
||||
import npbackup.gui.PySimpleGUI as sg
|
||||
import npbackup.configuration as configuration
|
||||
from npbackup.core.i18n_helper import _t
|
||||
from npbackup.gui.helpers import get_anon_repo_uri, gui_thread_runner
|
||||
|
|
|
|||
|
|
@ -8,8 +8,8 @@ ofunctions.threading>=2.2.0
|
|||
ofunctions.platform>=1.5.0
|
||||
ofunctions.random
|
||||
python-pidfile>=3.0.0
|
||||
# pysimplegui 5 has gone commercial, let's keep this version for now
|
||||
pysimplegui==4.60.5
|
||||
# pysimplegui 5 has gone commercial, let's keep an inline version for noww
|
||||
#pysimplegui==4.60.5
|
||||
requests
|
||||
ruamel.yaml
|
||||
psutil
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue