Skip to content

Releases: Cloudzik1337/Interactive-Python-Menu

1.0.5

16 Nov 18:40
43933a0
Compare
Choose a tag to compare

This update was focused to optimize code

pylint rating 7.5 -> 9.8 / 10

New way to launch menu

Now you have to add .launch() to end of class declaration

New option show_example()

render each style with example options
usage menu.Menu().show_example()

New way to acces response

Now variables are also passed so

x = menu.Menu(bla bla bla)
resp = x.launch("String") # String Or Index
print(resp)
>> Option1

1.0.4 Added Pretext and new style

15 Nov 13:43
f4afdd9
Compare
Choose a tag to compare

Pretext

Now you can use pretext to print text before menu Usage pretext=<str>

New Style

Added ↳ (arrow style) example ↳ Option1

New way to acces styles

now instead of style=1 (still works) you can use Styles.<Name>

Rewrote display function

now _print_menu use exec() to save space (still not sure about this)

1.0.3 Style Update and colors update

14 Nov 20:14
0781b37
Compare
Choose a tag to compare

Showcase

Now usage is menu.Menu(options=options, color=Colors.CYAN, style=1)
color default is cyan and style default is 1

1.0.2

14 Nov 16:12
47920a2
Compare
Choose a tag to compare

updated the menu.py file pull request
thanks @RjManhas for your time

What's Changed

New Contributors

Full Changelog: 1.0.0...1.0.2

1.0.1

13 Nov 19:33
9ffbdd4
Compare
Choose a tag to compare

Rewrote code to use classes basicly nothing changes except simple usage rename

1.0.0 Menu

13 Nov 19:32
9ffbdd4
Compare
Choose a tag to compare

Pretty simple just it
First release