-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added new remaining time esitmate feature for progressbar & restructu…
…red package to be more clean modular system
- Loading branch information
Showing
10 changed files
with
88 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,5 @@ | ||
from ._converter import ( | ||
from ._pydvpl import ( | ||
convert_dvpl, | ||
verify_dvpl, | ||
cli, | ||
) | ||
|
||
from ._color import ( | ||
Color | ||
) | ||
|
||
from ._dvpl import ( | ||
read_dvpl_footer, | ||
create_dvpl_footer, | ||
compress_dvpl, | ||
decompress_dvpl, | ||
DVPL_FOOTER_SIZE, | ||
DVPL_TYPE_NONE, | ||
DVPL_TYPE_LZ4 | ||
) | ||
|
||
from .__version__ import ( | ||
__description__, | ||
__title__, | ||
__version__, | ||
__date__, | ||
__repo__, | ||
__author__ | ||
) | ||
|
||
__all__ = ['compress_dvpl', 'decompress_dvpl', 'convert_dvpl', | ||
'verify_dvpl', 'read_dvpl_footer', 'create_dvpl_footer', 'cli', | ||
'__description__', '__title__', '__version__', | ||
'__author__', '__date__', '__repo__', 'DVPL_FOOTER_SIZE', 'DVPL_TYPE_NONE', 'DVPL_TYPE_LZ4', 'Color'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from ._color import ( | ||
Color | ||
) |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
from ._dvpl import ( | ||
read_dvpl_footer, | ||
create_dvpl_footer, | ||
compress_dvpl, | ||
decompress_dvpl, | ||
DVPL_FOOTER_SIZE, | ||
DVPL_TYPE_NONE, | ||
DVPL_TYPE_LZ4 | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import lz4.block | ||
import zlib | ||
from ._color import Color | ||
from ..color import Color | ||
|
||
|
||
DVPL_FOOTER_SIZE = 20 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from ._version import ( | ||
__description__, | ||
__title__, | ||
__version__, | ||
__date__, | ||
__repo__, | ||
__author__ | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
__title__ = "PyDVPL" | ||
__description__ = "A CLI Tool Coded In Python3 To Convert WoTB ( Dava ) SmartDLC DVPL File Based On LZ4 High Compression." | ||
__version__ = "0.6.0" | ||
__version__ = "0.7.0" | ||
__date__ = "2024-03-14" | ||
__author__ = "RifsxD" | ||
__repo__ = "https://github.com/rifsxd/pydvpl" |