2021.4 #19
@ -22,10 +22,10 @@
|
||||
<select />
|
||||
</component>
|
||||
<component name="ChangeListManager">
|
||||
<list default="true" id="7e2256bc-a6b8-4880-83a6-8b0e3372d0a4" name="Default Changelist" comment="Improved workspace">
|
||||
<change afterPath="$PROJECT_DIR$/src/cpl/console/spinner_thread.py" afterDir="false" />
|
||||
<list default="true" id="7e2256bc-a6b8-4880-83a6-8b0e3372d0a4" name="Default Changelist" comment="Added spinner">
|
||||
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/src/cpl/console/console.py" beforeDir="false" afterPath="$PROJECT_DIR$/src/cpl/console/console.py" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/src/cpl/console/spinner_thread.py" beforeDir="false" afterPath="$PROJECT_DIR$/src/cpl/console/spinner_thread.py" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/src/cpl_cli/publish/publisher.py" beforeDir="false" afterPath="$PROJECT_DIR$/src/cpl_cli/publish/publisher.py" afterDir="false" />
|
||||
</list>
|
||||
<option name="SHOW_DIALOG" value="false" />
|
||||
@ -487,13 +487,6 @@
|
||||
<option name="presentableId" value="Default" />
|
||||
<updated>1605881914521</updated>
|
||||
</task>
|
||||
<task id="LOCAL-00046" summary="Bugfixes and improved setup logic">
|
||||
<created>1608070231599</created>
|
||||
<option name="number" value="00046" />
|
||||
<option name="presentableId" value="LOCAL-00046" />
|
||||
<option name="project" value="LOCAL" />
|
||||
<updated>1608070231599</updated>
|
||||
</task>
|
||||
<task id="LOCAL-00047" summary="Improved cli">
|
||||
<created>1608122289003</created>
|
||||
<option name="number" value="00047" />
|
||||
@ -830,7 +823,14 @@
|
||||
<option name="project" value="LOCAL" />
|
||||
<updated>1614896795653</updated>
|
||||
</task>
|
||||
<option name="localTasksCounter" value="95" />
|
||||
<task id="LOCAL-00095" summary="Added spinner">
|
||||
<created>1614956114719</created>
|
||||
<option name="number" value="00095" />
|
||||
<option name="presentableId" value="LOCAL-00095" />
|
||||
<option name="project" value="LOCAL" />
|
||||
<updated>1614956114719</updated>
|
||||
</task>
|
||||
<option name="localTasksCounter" value="96" />
|
||||
<servers />
|
||||
</component>
|
||||
<component name="Vcs.Log.Tabs.Properties">
|
||||
@ -846,7 +846,6 @@
|
||||
<option name="oldMeFiltersMigrated" value="true" />
|
||||
</component>
|
||||
<component name="VcsManagerConfiguration">
|
||||
<MESSAGE value="Added init file for build command package" />
|
||||
<MESSAGE value="Added pycharm files to gitignore" />
|
||||
<MESSAGE value="Added more development tests" />
|
||||
<MESSAGE value="Added new tester and CredentialManager TestCase" />
|
||||
@ -871,7 +870,8 @@
|
||||
<MESSAGE value="Improved application" />
|
||||
<MESSAGE value="Readded workspace.xml" />
|
||||
<MESSAGE value="Improved workspace" />
|
||||
<option name="LAST_COMMIT_MESSAGE" value="Improved workspace" />
|
||||
<MESSAGE value="Added spinner" />
|
||||
<option name="LAST_COMMIT_MESSAGE" value="Added spinner" />
|
||||
</component>
|
||||
<component name="XDebuggerManager">
|
||||
<breakpoint-manager>
|
||||
|
@ -75,11 +75,10 @@ class Console:
|
||||
|
||||
args = []
|
||||
colored_args = []
|
||||
|
||||
if x is not None and y is not None:
|
||||
args.append(f'\033[{x};{y}H')
|
||||
args.append(f'\033[{y};{x}H')
|
||||
elif cls._x is not None and cls._y is not None:
|
||||
args.append(f'\033[{cls._x};{cls._y}H')
|
||||
args.append(f'\033[{cls._y};{cls._x}H')
|
||||
|
||||
colored_args.append(string)
|
||||
if cls._foreground_color != ForegroundColor.default and cls._background_color == BackgroundColor.default:
|
||||
@ -96,7 +95,6 @@ class Console:
|
||||
"""
|
||||
Useful public methods
|
||||
"""
|
||||
|
||||
@classmethod
|
||||
def banner(cls, string: str):
|
||||
if cls._disabled:
|
||||
|
@ -17,11 +17,13 @@ class SpinnerThread(threading.Thread):
|
||||
yield cursor
|
||||
|
||||
def run(self) -> None:
|
||||
self._console.write('\t')
|
||||
spinner = self._spinner()
|
||||
while self._is_spinning:
|
||||
self._console.write(next(spinner))
|
||||
time.sleep(0.1)
|
||||
self._console.write('\b')
|
||||
|
||||
self._console.flush()
|
||||
|
||||
self._console.write(' ')
|
||||
|
Loading…
Reference in New Issue
Block a user