mirror of
https://github.com/netinvent/npbackup.git
synced 2025-11-09 21:51:41 +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.process import kill_childs
|
||||||
from ofunctions.threading import threaded
|
from ofunctions.threading import threaded
|
||||||
from ofunctions.misc import BytesConverter
|
from ofunctions.misc import BytesConverter
|
||||||
import PySimpleGUI as sg
|
import npbackup.gui.PySimpleGUI as sg
|
||||||
import _tkinter
|
import _tkinter
|
||||||
import npbackup.configuration
|
import npbackup.configuration
|
||||||
import npbackup.common
|
import npbackup.common
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ from typing import List, Tuple
|
||||||
import os
|
import os
|
||||||
import pathlib
|
import pathlib
|
||||||
from logging import getLogger
|
from logging import getLogger
|
||||||
import PySimpleGUI as sg
|
import npbackup.gui.PySimpleGUI as sg
|
||||||
import textwrap
|
import textwrap
|
||||||
from ruamel.yaml.comments import CommentedMap
|
from ruamel.yaml.comments import CommentedMap
|
||||||
import npbackup.configuration as configuration
|
import npbackup.configuration as configuration
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ from logging import getLogger
|
||||||
from time import sleep
|
from time import sleep
|
||||||
import re
|
import re
|
||||||
import queue
|
import queue
|
||||||
import PySimpleGUI as sg
|
import npbackup.gui.PySimpleGUI as sg
|
||||||
from npbackup.core.i18n_helper import _t
|
from npbackup.core.i18n_helper import _t
|
||||||
from npbackup.customization import (
|
from npbackup.customization import (
|
||||||
LOADER_ANIMATION,
|
LOADER_ANIMATION,
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ __build__ = "2024010301"
|
||||||
|
|
||||||
|
|
||||||
from logging import getLogger
|
from logging import getLogger
|
||||||
import PySimpleGUI as sg
|
import npbackup.gui.PySimpleGUI as sg
|
||||||
import npbackup.configuration as configuration
|
import npbackup.configuration as configuration
|
||||||
from npbackup.core.i18n_helper import _t
|
from npbackup.core.i18n_helper import _t
|
||||||
from npbackup.gui.helpers import get_anon_repo_uri, gui_thread_runner
|
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.platform>=1.5.0
|
||||||
ofunctions.random
|
ofunctions.random
|
||||||
python-pidfile>=3.0.0
|
python-pidfile>=3.0.0
|
||||||
# pysimplegui 5 has gone commercial, let's keep this version for now
|
# pysimplegui 5 has gone commercial, let's keep an inline version for noww
|
||||||
pysimplegui==4.60.5
|
#pysimplegui==4.60.5
|
||||||
requests
|
requests
|
||||||
ruamel.yaml
|
ruamel.yaml
|
||||||
psutil
|
psutil
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue