aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Make scdoc dependency optionaladnano2024-02-041-1/+1
|
* Version 0.1.6adnano2024-01-211-1/+1
|
* pool-buffer: Fix type conversion issuesadnano2023-12-281-4/+4
|
* Check the return value of pipeadnano2023-12-281-1/+4
| | | | | On some systems, pipe is declared with the attribute warn_unused_result, so we have to check the return value.
* pool-buffer: Reduce struct paddingadnano2023-12-281-1/+1
|
* Fix various type issuesadnano2023-12-281-5/+5
|
* Version 0.1.5adnano2023-12-251-1/+1
|
* Fix build failure when compiling in releasePiotr StefaƄski2023-10-311-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 supportadnano2023-07-281-8/+61
| | | | References: https://todo.sr.ht/~adnano/wmenu/4
* Bump version to 0.1.4adnano2023-07-151-1/+1
|
* pango: Remove unused format specifieradnano2023-07-153-44/+13
|
* Render after reading stdinMykyta Holubakha2023-07-151-0/+1
| | | | This allows seeing option list without doing any input, like in original dmenu.
* Drop render_frame on surface_enterMykyta Holubakha2023-07-151-1/+0
|
* Fix crash when some line contains %Nikita Ivanov2023-06-052-7/+7
|
* readme: Tweak wordingadnano2023-03-201-2/+2
|
* Update README.mdadnano2023-03-201-3/+4
|
* Fix potential buffer overflowadnano2023-02-261-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.
* Bump versionadnano2023-02-071-1/+1
|
* Fix buffer size not divisible by scaleadnano2023-02-011-2/+1
|
* docs: Document new bindingsadnano2022-12-031-0/+61
|
* Drop xdg-output-unstable-v1adnano2022-12-022-25/+4
| | | | Closes: https://todo.sr.ht/~adnano/wmenu/2
* Fix move to end of wordadnano2022-12-021-5/+6
|
* Support basic Emacs-style line-editing bindingsadnano2022-12-021-0/+90
| | | | Implements: https://todo.sr.ht/~adnano/wmenu/3
* Support number pad keysadnano2022-12-021-1/+10
|
* README: Mention Swayadnano2022-04-171-2/+9
|
* README: add contributing sectionlemontree2022-04-171-0/+6
|
* Adjust line heightadnano2022-04-171-1/+1
|
* Implement vertical list supportadnano2022-04-171-73/+218
| | | | Implements: https://todo.sr.ht/~adnano/wmenu/1
* Initial commitadnano2022-01-1613-0/+1825