Add ProgressBar to GUI for Event Insertion/Deletion

- Added logging to GUI Undo functionality
- Added support for hyphens in data input
- Indent encoded JSONPickle output
This commit is contained in:
Xevion
2021-08-27 00:26:12 -05:00
parent 4571a47910
commit 27da721d79
5 changed files with 44 additions and 24 deletions

View File

@@ -14,7 +14,7 @@ logger = logging.getLogger(__file__)
logger.setLevel(logging.DEBUG)
REGEX = re.compile(
r'\s*([\w\d\s,.;\'!\[\]()]{1,})\s+\|\s+(\d{4}-\d{2}-\d{2})\s+(\d{1,2}:\d{2}(?:AM|PM))?\s*(\d{4}-\d{2}-\d{2})(\d{1,2}:\d{2}(?:AM|PM))?')
r'\s*([\w\d\s,-.;\'!\[\]()]{1,})\s+\|\s+(\d{4}-\d{2}-\d{2})\s+(\d{1,2}:\d{2}(?:AM|PM))?\s*(\d{4}-\d{2}-\d{2})(\d{1,2}:\d{2}(?:AM|PM))?')
class LoadDialog(QDialog, Ui_Dialog):