Skip to content

Commit

Permalink
Version 1.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
croketillo committed Nov 26, 2023
1 parent b754fb1 commit c847883
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 18 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,18 +43,18 @@ def main():
start_color([pattern1, pattern2, pattern3, email, strike, italic,blink])

# Use the custom print function with colorization
print('Colorpattern v1.4.2')
print('Colorpattern v1.4.5')
print('By Croketillo - croketillo@gmail.com')
print('NEW!!! - NOW YOU CAN INCLUDE STRIKETHROUGH IN PATTERNS')
print('This is a BLINK and ITALIC TEXT test')

# End colorization and restore the original print function
end_color()
print("\nNORMAL PRINT")
# Now, printing returns to normal

# Now, printing returns to normal
print('-----------------------')
print('Colorpattern v1.4.2')
print('Colorpattern v1.4.5')
print('By Croketillo - croketillo@gmail.com')
print('NEW!!! - NOW YOU CAN INCLUDE STRIKETHROUGH IN PATTERNS')
print('This is a BLINK and ITALIC TEXT test')
Expand All @@ -65,7 +65,6 @@ def main():
# Use the custom print function with new patterns
print("\nSTART COLORIZED PRINT AGAIN")
start_color([pattern1, new_pattern])

print('-----------------------')
print('This is a new pattern. 123456')

Expand Down
11 changes: 6 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
ColorPattern
============

.. image:: https://img.shields.io/pypi/dm/colorpattern:alt: PyPI - Downloads
.. image:: https://img.shields.io/pypi/dm/colorpattern
:alt: PyPI - Downloads




Expand Down Expand Up @@ -54,18 +56,18 @@ Example
start_color([pattern1, pattern2, pattern3, email, strike, italic,blink])
# Use the custom print function with colorization
print('Colorpattern v1.4.2')
print('Colorpattern v1.4.5')
print('By Croketillo - croketillo@gmail.com')
print('NEW!!! - NOW YOU CAN INCLUDE STRIKETHROUGH IN PATTERNS')
print('This is a BLINK and ITALIC TEXT test')
# End colorization and restore the original print function
end_color()
print("\nNORMAL PRINT")
# Now, printing returns to normal
# Now, printing returns to normal
print('-----------------------')
print('Colorpattern v1.4.2')
print('Colorpattern v1.4.5')
print('By Croketillo - croketillo@gmail.com')
print('NEW!!! - NOW YOU CAN INCLUDE STRIKETHROUGH IN PATTERNS')
print('This is a BLINK and ITALIC TEXT test')
Expand All @@ -76,7 +78,6 @@ Example
# Use the custom print function with new patterns
print("\nSTART COLORIZED PRINT AGAIN")
start_color([pattern1, new_pattern])
print('-----------------------')
print('This is a new pattern. 123456')
Expand Down
2 changes: 1 addition & 1 deletion colorpattern/colorpattern.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
This file is (or part of) COLORPATTERN v1.4.1
This file is (or part of) COLORPATTERN v1.4.5
Copyright 2023- Croketillo <croketillo@gmail.com> https://github.com/croketillo
DESCIPTION:
Expand Down
Binary file added dist/colorpattern-1.4.4-py3-none-any.whl
Binary file not shown.
Binary file added dist/colorpattern-1.4.4.tar.gz
Binary file not shown.
Binary file added dist/colorpattern-1.4.5-py3-none-any.whl
Binary file not shown.
Binary file added dist/colorpattern-1.4.5.tar.gz
Binary file not shown.
7 changes: 1 addition & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def read(file_name=None, is_encoding=True, ignore_raises=False):

setup(
name='colorpattern',
version='1.4.3',
version='1.4.5',
author='croketillo',
author_email='croketillo@gmail.com',
license=read("LICENSE", is_encoding=False, ignore_raises=True),
Expand All @@ -108,9 +108,4 @@ def read(file_name=None, is_encoding=True, ignore_raises=False):
'Topic :: Terminals'
],
keywords='color pattern console colorpattern',
entry_points={
'console_scripts': [
'colorpattern = colorpattern:main',
],
},
)
4 changes: 2 additions & 2 deletions test/colorpattern_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def main():
start_color([pattern1, pattern2, pattern3, email, strike, italic,blink])

# Use the custom print function with colorization
print('Colorpattern v1.4.1')
print('Colorpattern v1.4.5')
print('By Croketillo - croketillo@gmail.com')
print('NEW!!! - NOW YOU CAN INCLUDE STRIKETHROUGH IN PATTERNS')
print('This is a BLINK and ITALIC TEXT test')
Expand All @@ -27,7 +27,7 @@ def main():
# Now, printing returns to normal

print('-----------------------')
print('Colorpattern v1.4.1')
print('Colorpattern v1.4.5')
print('By Croketillo - croketillo@gmail.com')
print('NEW!!! - NOW YOU CAN INCLUDE STRIKETHROUGH IN PATTERNS')
print('This is a BLINK and ITALIC TEXT test')
Expand Down

0 comments on commit c847883

Please sign in to comment.