StoryMaker-karjakak 1.0.4__tar.gz → 1.0.5__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.
- {storymaker_karjakak-1.0.4 → storymaker_karjakak-1.0.5}/PKG-INFO +1 -1
- {storymaker_karjakak-1.0.4 → storymaker_karjakak-1.0.5}/StoryMaker_karjakak.egg-info/PKG-INFO +1 -1
- {storymaker_karjakak-1.0.4 → storymaker_karjakak-1.0.5}/StoryMaker_karjakak.egg-info/top_level.txt +1 -0
- {storymaker_karjakak-1.0.4 → storymaker_karjakak-1.0.5}/pyproject.toml +1 -1
- {storymaker_karjakak-1.0.4 → storymaker_karjakak-1.0.5}/story_maker/blessing_pro.py +8 -6
- {storymaker_karjakak-1.0.4 → storymaker_karjakak-1.0.5}/LICENSE +0 -0
- {storymaker_karjakak-1.0.4 → storymaker_karjakak-1.0.5}/README.md +0 -0
- {storymaker_karjakak-1.0.4 → storymaker_karjakak-1.0.5}/StoryMaker_karjakak.egg-info/SOURCES.txt +0 -0
- {storymaker_karjakak-1.0.4 → storymaker_karjakak-1.0.5}/StoryMaker_karjakak.egg-info/dependency_links.txt +0 -0
- {storymaker_karjakak-1.0.4 → storymaker_karjakak-1.0.5}/StoryMaker_karjakak.egg-info/entry_points.txt +0 -0
- {storymaker_karjakak-1.0.4 → storymaker_karjakak-1.0.5}/setup.cfg +0 -0
- {storymaker_karjakak-1.0.4 → storymaker_karjakak-1.0.5}/story_maker/__init__.py +0 -0
- {storymaker_karjakak-1.0.4 → storymaker_karjakak-1.0.5}/story_maker/main_frame.py +0 -0
- {storymaker_karjakak-1.0.4 → storymaker_karjakak-1.0.5}/story_maker/story_archive/__init__.py +0 -0
- {storymaker_karjakak-1.0.4 → storymaker_karjakak-1.0.5}/story_maker/story_archive/choices.py +0 -0
- {storymaker_karjakak-1.0.4 → storymaker_karjakak-1.0.5}/story_maker/story_archive/story_archive.py +0 -0
- {storymaker_karjakak-1.0.4 → storymaker_karjakak-1.0.5}/story_maker/story_archive/story_data.py +0 -0
- {storymaker_karjakak-1.0.4 → storymaker_karjakak-1.0.5}/story_maker/story_archive/story_load.py +0 -0
- {storymaker_karjakak-1.0.4 → storymaker_karjakak-1.0.5}/story_maker/story_structure/__init__.py +0 -0
- {storymaker_karjakak-1.0.4 → storymaker_karjakak-1.0.5}/story_maker/story_structure/story_beginning.py +0 -0
- {storymaker_karjakak-1.0.4 → storymaker_karjakak-1.0.5}/story_maker/story_structure/story_multiple_choices.py +0 -0
- {storymaker_karjakak-1.0.4 → storymaker_karjakak-1.0.5}/story_maker/story_structure/story_multiple_stories.py +0 -0
- {storymaker_karjakak-1.0.4 → storymaker_karjakak-1.0.5}/story_maker/story_structure/story_save_delete_button.py +0 -0
- {storymaker_karjakak-1.0.4 → storymaker_karjakak-1.0.5}/story_maker/story_structure/story_selection.py +0 -0
@@ -180,25 +180,27 @@ class Bless:
|
|
180
180
|
with chdir(self.combo.path):
|
181
181
|
self.docr.extend(StoryFilesLoads(self.combo.path).data_extract(story))
|
182
182
|
|
183
|
+
def _choices(self, begin: bool = True):
|
184
|
+
return [
|
185
|
+
f"{k}. {v}" for k, v in self.docr[1]["choices"]["first" if begin else "second"].items()
|
186
|
+
]
|
187
|
+
|
183
188
|
# Starting first part of a story
|
184
189
|
def s_story1(self):
|
185
190
|
self.stbox.insert("1.0", f"{self.docr[0]["stories"]["begin"]}\n\n")
|
186
|
-
for i in
|
187
|
-
f"{k}. {v}" for k, v in self.docr[1]["choices"]["first"].items()
|
188
|
-
]:
|
191
|
+
for i in self._choices():
|
189
192
|
self.stbox.insert(END, i+'\n')
|
190
193
|
|
191
194
|
# 2nd part of a story
|
192
195
|
def s_story2(self):
|
193
196
|
self.stbox.insert(END, '\n')
|
194
|
-
for i in
|
195
|
-
f"{k}. {v}" for k, v in self.docr[1]["choices"]["second"].items()
|
196
|
-
]:
|
197
|
+
for i in self._choices(False):
|
197
198
|
self.stbox.insert(END, '\n' + i )
|
198
199
|
self.st1.set(1)
|
199
200
|
|
200
201
|
# 3rd of a story
|
201
202
|
def s_story3(self):
|
203
|
+
|
202
204
|
stc = self.docr[2]["scriptures"].get(self.asw)
|
203
205
|
if stc:
|
204
206
|
self.stbox.insert(END, f"\n\n{stc.upper()}")
|
File without changes
|
File without changes
|
{storymaker_karjakak-1.0.4 → storymaker_karjakak-1.0.5}/StoryMaker_karjakak.egg-info/SOURCES.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{storymaker_karjakak-1.0.4 → storymaker_karjakak-1.0.5}/story_maker/story_archive/__init__.py
RENAMED
File without changes
|
{storymaker_karjakak-1.0.4 → storymaker_karjakak-1.0.5}/story_maker/story_archive/choices.py
RENAMED
File without changes
|
{storymaker_karjakak-1.0.4 → storymaker_karjakak-1.0.5}/story_maker/story_archive/story_archive.py
RENAMED
File without changes
|
{storymaker_karjakak-1.0.4 → storymaker_karjakak-1.0.5}/story_maker/story_archive/story_data.py
RENAMED
File without changes
|
{storymaker_karjakak-1.0.4 → storymaker_karjakak-1.0.5}/story_maker/story_archive/story_load.py
RENAMED
File without changes
|
{storymaker_karjakak-1.0.4 → storymaker_karjakak-1.0.5}/story_maker/story_structure/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|