aboutsummaryrefslogtreecommitdiff
path: root/v2
Commit message (Collapse)AuthorAgeFilesLines
* Put v2 code in root folderRaymaekers Luca2024-10-269-4467/+0
|
* Moved main() to topRaymaekers Luca2024-10-261-202/+200
|
* Redraw screen after reconnectRaymaekers Luca2024-10-261-20/+29
| | | | | | | | Includes: - Using u32/u8 instead of int/char - Add function prototypes - Use magenta for other users - remove input_len parameter to screen_home
* fixed bug when sending message after disconnectRaymaekers Luca2024-10-262-4/+4
| | | | | This is because for sending, receiving & closing serverfd variable was used instead of `fds[FDS_SERVER].fd`.
* do not allow sending message to disconnected serverRaymaekers Luca2024-10-261-0/+5
|
* Slicker UIRaymaekers Luca2024-10-261-58/+69
| | | | | | - added fg_pfx and bg_pfx for the prefix string in tb_printf_wrap() - removed text_len from tb_printf_wrap() in favor of simple loop - added disconnect popup when the server is not connected
* Reconnnect to server with threadRaymaekers Luca2024-10-262-33/+50
|
* Documentation & choreRaymaekers Luca2024-10-254-22/+31
| | | | | | | Includes: - increase the limit - update with sources - remove arena include in send.c
* Let user quit when reconnectingRaymaekers Luca2024-10-251-23/+32
| | | | | | | Includes: - renamed exit to quit - do not use else if for polling - only display the error message once
* Wrap messages when exceeding available widthRaymaekers Luca2024-10-251-38/+198
| | | | | | | Includes: - Changed fillstr to use wide characters - made the prompt box opaque - More documentation on the code
* fixed bug not allow sending empty messageRaymaekers Luca2024-10-252-0/+3
|
* Bind Ctrl+W to erase word behind cursorRaymaekers Luca2024-10-252-0/+24
| | | | Added keybinds descriptions in the readme.
* Initial draft for v2Raymaekers Luca2024-10-249-0/+4222
This is a rewrite of v1 using arena's as memory allocators. The other great difference is using wide strings by default (wchar_t) because that will be needed in the future to print pretty UIs.