Skip to content

Releases: shmup/miniboa

1.0.9

19 Sep 03:24
b1145e3

Choose a tag to compare

This release fixes provides a method to specify the encoding for your TelnetServer. By default it will still use cp1252.

To use utf-8, you must provide it in the constructor as so: TelnetServer(encoding='utf-8')

1.0.8

30 Apr 20:18

Choose a tag to compare

Python 3.7 support and ANSI escape sequence fix
Added Python 3.7 to trove classifiers
Removed invalid escape sequence \L

Thanks @hroncok @cjmayo @Tizen

Use utf-8 instead of cp1252

18 Feb 19:12

Choose a tag to compare

This gets rid of the old cp1252 handling, and we just use utf-8.

This might have some people yelling (at some point) for romantic historical masturbatory reasons. Let's find out

1.0.5

03 Feb 20:03

Choose a tag to compare

Fixed spacing to get pyflake passing

Fixed an overlooked bug when sending 3 byte command

05 Sep 16:19

Choose a tag to compare

There was a renaming of many methods in one fork of miniboa, and through error I never originally published a fully working miniboa because of this inconsistency.

It would always hard error if the client sent a 3 byte command (such as ^c). Fixed now!

Also there was the issue with flake8 dropping Python 2.6 support. To remedy, we just use pyflakes and pycodestyle (pep8) now.

v1.0.0

21 Jan 04:55

Choose a tag to compare

In Version 1.0.0 there is a passing test, pep8, linter, and complexity testing. Also backwards compatibility with Python 2.

v0.0.1

21 Jan 04:44

Choose a tag to compare

changing version

v0.1: Checks if python 2 or 3 for send/receive

20 Jan 01:59

Choose a tag to compare

I'm using a simple if else block on sys.versioninfo

Not sure if this is the best way.