Skip to content

Commit

Permalink
release: version 1.7.0 πŸš€
Browse files Browse the repository at this point in the history
  • Loading branch information
hiddify-com committed Jan 27, 2024
1 parent 54fe4b8 commit 67691fb
Show file tree
Hide file tree
Showing 3 changed files with 88 additions and 1 deletion.
84 changes: 84 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
Changelog
=========


1.6.0 (2024-01-21)
------------------

Fix
~~~
- Bug in key. [Hiddify]
Other
~~~~~
- Release: version 1.6.0 πŸš€ [Hiddify]


1.5.0 (2024-01-21)
------------------

Fix
~~~
- Bug in ansi long text. [Hiddify]
Other
~~~~~
- Release: version 1.5.0 πŸš€ [Hiddify]


1.4.0 (2024-01-21)
------------------

Fix
~~~
- Long text. [Hiddify]
Other
~~~~~
- Release: version 1.4.0 πŸš€ [Hiddify]


1.3.0 (2024-01-21)
------------------

Fix
~~~
- Bug. [Hiddify]
Other
~~~~~
- Release: version 1.3.0 πŸš€ [Hiddify]


1.2.0 (2024-01-21)
------------------

New
~~~
- Add exit code. [Hiddify]
Other
~~~~~
- Release: version 1.2.0 πŸš€ [Hiddify]


1.1.0 (2024-01-21)
------------------

Fix
~~~
- Typo. [Hiddify]
Other
~~~~~
- Release: version 1.1.0 πŸš€ [Hiddify]
- Format the files. [Hiddify]


1.0.0 (2024-01-21)
------------------
- Release: version 1.0.0 πŸš€ [Hiddify]
- βœ… Ready to clone and code. [hiddify-com]
- Initial commit. [Hiddify]


2 changes: 1 addition & 1 deletion cli_progress/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.6.0
1.7.0
3 changes: 3 additions & 0 deletions cli_progress/progress_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
import signal
import subprocess
import sys
import os
from pathlib import Path

import urwid
from twisted.internet import threads
Expand Down Expand Up @@ -136,6 +138,7 @@ def handle_progress(self, progress: int, title: str, subtitle: str):
)

def start(self):
os.makedirs(Path(self.logpath).parent.absolute(),exist_ok=True)
with open(self.logpath, "w") as self.logfile:
self.proc = subprocess.Popen(
self.cmds,
Expand Down

0 comments on commit 67691fb

Please sign in to comment.