diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 74aa854..74a7b84 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.3.0 +current_version = 3.3.1 commit = True tag = True diff --git a/CHANGELOG.md b/CHANGELOG.md index 1614676..43866fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## 3.2.1 +- fixed hashtag symbol outputting quote symbol +- fixed hyperspeed printing failure in test_cupp.py +- added support for windows clearing terminal on hyperspeed print + ## 3.2.0-alpha - ran 2to3 on cupp.py to make it Python3 compatible diff --git a/cupp.cfg b/cupp.cfg index 9ad5b98..8311819 100644 --- a/cupp.cfg +++ b/cupp.cfg @@ -30,7 +30,7 @@ z=2 # separated by comma [specialchars] -chars=!,@,'#',$,%%,&,* +chars=!,@,#,$,%%,&,* # [ Random years ] take it as much as you need! diff --git a/cupp.py b/cupp.py index 32d24ee..cdfdfb9 100755 --- a/cupp.py +++ b/cupp.py @@ -44,7 +44,7 @@ __author__ = "Mebus" __license__ = "GPL" -__version__ = "3.3.0" +__version__ = "3.3.1" CONFIG = {} @@ -142,7 +142,10 @@ def print_to_file(filename, unique_list_finished): for line in data: print("\033[1;32m[" + filename + "] \033[1;33m" + line) time.sleep(0000.1) - os.system("clear") + if os.name == "nt": + os.system("cls") + else: + os.system("clear") except Exception as e: print("[ERROR]: " + str(e)) else: diff --git a/test_cupp.py b/test_cupp.py index ea06ad1..0cb273c 100755 --- a/test_cupp.py +++ b/test_cupp.py @@ -132,6 +132,7 @@ def test_interactive(self): "Y", # Special chars "N", # Random "N", # Leet mode + "Y", # Hyperspeed Print ] test_ok = False