Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix various type issues | adnano | 2023-12-28 | 1 | -5/+5 |
| | |||||
* | Fix build failure when compiling in release | Piotr StefaĆski | 2023-10-31 | 1 | -1/+1 |
| | | | | | | | | | | | Compiling with --buildtype=release fails with message: ../main.c:935:17: error: argument 2 null where non-null expected [-Werror=nonnull] 935 | memcpy(state->text + state->cursor, s, n); GCC only produces this error with optimizations enabled. Looking at the build output I assume this happens because it tries to inline the function. | ||||
* | Implement clipboard paste support | adnano | 2023-07-28 | 1 | -8/+61 |
| | | | | References: https://todo.sr.ht/~adnano/wmenu/4 | ||||
* | pango: Remove unused format specifier | adnano | 2023-07-15 | 1 | -6/+6 |
| | |||||
* | Render after reading stdin | Mykyta Holubakha | 2023-07-15 | 1 | -0/+1 |
| | | | | This allows seeing option list without doing any input, like in original dmenu. | ||||
* | Drop render_frame on surface_enter | Mykyta Holubakha | 2023-07-15 | 1 | -1/+0 |
| | |||||
* | Fix crash when some line contains % | Nikita Ivanov | 2023-06-05 | 1 | -6/+6 |
| | |||||
* | Fix potential buffer overflow | adnano | 2023-02-26 | 1 | -2/+3 |
| | | | | | | | Calling strncpy where the size of the string to copy is equal to the size of the destination can potentially lead to a buffer overflow. To fix this, copy only what is needed with memcpy, and explicitly terminate the string with a null character. | ||||
* | Fix buffer size not divisible by scale | adnano | 2023-02-01 | 1 | -2/+1 |
| | |||||
* | Drop xdg-output-unstable-v1 | adnano | 2022-12-02 | 1 | -24/+4 |
| | | | | Closes: https://todo.sr.ht/~adnano/wmenu/2 | ||||
* | Fix move to end of word | adnano | 2022-12-02 | 1 | -5/+6 |
| | |||||
* | Support basic Emacs-style line-editing bindings | adnano | 2022-12-02 | 1 | -0/+90 |
| | | | | Implements: https://todo.sr.ht/~adnano/wmenu/3 | ||||
* | Support number pad keys | adnano | 2022-12-02 | 1 | -1/+10 |
| | |||||
* | Adjust line height | adnano | 2022-04-17 | 1 | -1/+1 |
| | |||||
* | Implement vertical list support | adnano | 2022-04-17 | 1 | -73/+218 |
| | | | | Implements: https://todo.sr.ht/~adnano/wmenu/1 | ||||
* | Initial commit | adnano | 2022-01-16 | 1 | -0/+983 |