'save-at:1722229002.492846'

This commit is contained in:
codeboss 2024-07-29 12:56:42 +08:00
parent 905fe15890
commit 4279bcea32
2 changed files with 13 additions and 2 deletions

View File

@ -5,7 +5,6 @@
</component> </component>
<component name="ChangeListManager"> <component name="ChangeListManager">
<list default="true" id="f609c0f2-cd0d-4eea-87f1-8caf02d3f04f" name="Changes" comment=""> <list default="true" id="f609c0f2-cd0d-4eea-87f1-8caf02d3f04f" name="Changes" comment="">
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/manage/NovelManage.py" beforeDir="false" afterPath="$PROJECT_DIR$/manage/NovelManage.py" afterDir="false" /> <change beforePath="$PROJECT_DIR$/manage/NovelManage.py" beforeDir="false" afterPath="$PROJECT_DIR$/manage/NovelManage.py" afterDir="false" />
</list> </list>
<option name="SHOW_DIALOG" value="false" /> <option name="SHOW_DIALOG" value="false" />
@ -39,7 +38,7 @@
"Python.CompareWindow.executor": "Run", "Python.CompareWindow.executor": "Run",
"Python.MergeView.executor": "Run", "Python.MergeView.executor": "Run",
"Python.MileStone.executor": "Run", "Python.MileStone.executor": "Run",
"Python.NovelManage.executor": "Run", "Python.NovelManage.executor": "Debug",
"Python.ReferView.executor": "Run", "Python.ReferView.executor": "Run",
"Python.StoryMap.executor": "Run", "Python.StoryMap.executor": "Run",
"Python.ast_load.executor": "Debug", "Python.ast_load.executor": "Debug",
@ -196,4 +195,15 @@
</task> </task>
<servers /> <servers />
</component> </component>
<component name="XDebuggerManager">
<breakpoint-manager>
<breakpoints>
<line-breakpoint enabled="true" suspend="THREAD" type="python-line">
<url>file://$PROJECT_DIR$/manage/NovelManage.py</url>
<line>4</line>
<option name="timeStamp" value="14" />
</line-breakpoint>
</breakpoints>
</breakpoint-manager>
</component>
</project> </project>

View File

@ -2,6 +2,7 @@ import sys, os
import subprocess as xsub import subprocess as xsub
import time import time
from typing import List from typing import List
sys.path.append(os.path.dirname(os.path.dirname(os.path.realpath(__file__))))
from parse.StoryMap import XAST_ParseTool, StoryMap, FragmentSlice, storyline_list2map from parse.StoryMap import XAST_ParseTool, StoryMap, FragmentSlice, storyline_list2map
from parse.StorylineCmp import CmpTool, ModifyReason from parse.StorylineCmp import CmpTool, ModifyReason
from manage.MileStone import base_store_path, current_store_path from manage.MileStone import base_store_path, current_store_path