Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.3.0
current_version = 3.3.1
commit = True
tag = True

Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cupp.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ z=2
# separated by comma

[specialchars]
chars=!,@,'#',$,%%,&,*
chars=!,@,#,$,%%,&,*


# [ Random years ] take it as much as you need!
Expand Down
7 changes: 5 additions & 2 deletions cupp.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

__author__ = "Mebus"
__license__ = "GPL"
__version__ = "3.3.0"
__version__ = "3.3.1"

CONFIG = {}

Expand Down Expand Up @@ -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:
Expand Down
1 change: 1 addition & 0 deletions test_cupp.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ def test_interactive(self):
"Y", # Special chars
"N", # Random
"N", # Leet mode
"Y", # Hyperspeed Print
]

test_ok = False
Expand Down