Compare commits

...

3 Commits
v0.3.0 ... main

Author SHA1 Message Date
7437296aaf Add README.md 2024-11-27 14:13:11 +02:00
d88653f41c Fix import for test example 2024-11-27 14:02:54 +02:00
87f5b7eeba Change name of module to start with lower q 2024-11-15 19:39:53 +02:00
3 changed files with 19 additions and 2 deletions

17
README.md Normal file
View File

@ -0,0 +1,17 @@
# TUIMenu
**TUIMenu** is a lightweight library designed to create terminal user interface menus.
## Features
- **Customizable Title**
- **Customizable Commands**
- **Grouping/Functional/Stepping Commands**
- **No third-party dependency**
### Planned Features
The following features will be introduced in future updates:
- **Cursor manipulations**: Moving cursor and clearing data displayed on the screen like [NCurses](https://invisible-island.net/ncurses/ncurses-intro.html)
- **Widgets Display Buffer**: Pre-created widgets using ASCII symbols will be seen as structs with methods like `Widget.Erase()`

View File

@ -5,7 +5,7 @@ import (
"log"
"time"
"git.qowevisa.me/Qowevisa/tuimenu/simple"
"git.qowevisa.me/qowevisa/tuimenu/simple"
)
func main() {

2
go.mod
View File

@ -1,3 +1,3 @@
module git.qowevisa.me/Qowevisa/tuimenu
module git.qowevisa.me/qowevisa/tuimenu
go 1.23.0