memoryframes 0.6.1__tar.gz → 0.6.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {memoryframes-0.6.1 → memoryframes-0.6.4}/PKG-INFO +1 -1
- {memoryframes-0.6.1 → memoryframes-0.6.4}/pyproject.toml +1 -1
- {memoryframes-0.6.1 → memoryframes-0.6.4}/src/MemoryFrames/TextualUserExperience.py +2 -2
- {memoryframes-0.6.1 → memoryframes-0.6.4}/src/MemoryFrames/__main__.py +2 -2
- {memoryframes-0.6.1 → memoryframes-0.6.4}/README.md +0 -0
- {memoryframes-0.6.1 → memoryframes-0.6.4}/src/MemoryFrames/AppState.py +0 -0
- {memoryframes-0.6.1 → memoryframes-0.6.4}/src/MemoryFrames/PluginInfra/Note.py +0 -0
- {memoryframes-0.6.1 → memoryframes-0.6.4}/src/MemoryFrames/PluginInfra/NoteSource.py +0 -0
- {memoryframes-0.6.1 → memoryframes-0.6.4}/src/MemoryFrames/PluginInfra/Plugin.py +0 -0
- {memoryframes-0.6.1 → memoryframes-0.6.4}/src/MemoryFrames/PluginInfra/README.md +0 -0
- {memoryframes-0.6.1 → memoryframes-0.6.4}/src/MemoryFrames/PluginInfra/Settings.py +0 -0
- {memoryframes-0.6.1 → memoryframes-0.6.4}/src/MemoryFrames/PluginInfra/TextualUserExperienceInfo.py +0 -0
- {memoryframes-0.6.1 → memoryframes-0.6.4}/src/MemoryFrames/PluginInfra/UserExperienceInfo.py +0 -0
- {memoryframes-0.6.1 → memoryframes-0.6.4}/src/MemoryFrames/PluginInfra/__init__.py +0 -0
- {memoryframes-0.6.1 → memoryframes-0.6.4}/src/MemoryFrames/TextualUserExperience.tcss +0 -0
- {memoryframes-0.6.1 → memoryframes-0.6.4}/src/MemoryFrames/__init__.py +0 -0
- {memoryframes-0.6.1 → memoryframes-0.6.4}/src/MemoryFrames/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "MemoryFrames"
|
|
3
|
-
version = "0.6.
|
|
3
|
+
version = "0.6.4"
|
|
4
4
|
# ^^^^^
|
|
5
5
|
# Wheel names will be generated according to this value. Do not manually modify this value; instead
|
|
6
6
|
# update it according to committed changes by running this command from the root of the repository:
|
|
@@ -121,12 +121,12 @@ class _LoadingModal(ModalScreen[AppState]):
|
|
|
121
121
|
else:
|
|
122
122
|
assert False, event_type # noqa: B011, PT015
|
|
123
123
|
|
|
124
|
-
loading_module._status_label.content = msg
|
|
124
|
+
loading_module._status_label.content = msg
|
|
125
125
|
|
|
126
126
|
# ----------------------------------------------------------------------
|
|
127
127
|
@override
|
|
128
128
|
def OnException(self, exception: Exception) -> None:
|
|
129
|
-
if loading_module._settings.debug:
|
|
129
|
+
if loading_module._settings.debug:
|
|
130
130
|
msg = "".join(traceback.format_exception(exception))
|
|
131
131
|
else:
|
|
132
132
|
msg = str(exception)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import os
|
|
2
2
|
|
|
3
|
-
from enum import
|
|
3
|
+
from enum import StrEnum
|
|
4
4
|
from pathlib import Path
|
|
5
5
|
from typing import Annotated
|
|
6
6
|
|
|
@@ -46,7 +46,7 @@ def _GetWorkingDir() -> Path:
|
|
|
46
46
|
|
|
47
47
|
|
|
48
48
|
# ----------------------------------------------------------------------
|
|
49
|
-
class _ExperienceType(
|
|
49
|
+
class _ExperienceType(StrEnum):
|
|
50
50
|
Textual = "Textual"
|
|
51
51
|
|
|
52
52
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{memoryframes-0.6.1 → memoryframes-0.6.4}/src/MemoryFrames/PluginInfra/TextualUserExperienceInfo.py
RENAMED
|
File without changes
|
{memoryframes-0.6.1 → memoryframes-0.6.4}/src/MemoryFrames/PluginInfra/UserExperienceInfo.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|