Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-05-08 | bump version to 0.8.5 | Hiltjo Posthuma | |
2023-05-08 | FAQ: fix a typo, patch -> path | Hiltjo Posthuma | |
2023-05-08 | Fix overtyping wide characters. | jamin | |
Overtyping the first half of a wide character with the second half of a wide character results in display garbage. This is because the trailing dummy is not cleaned up. i.e. ATTR_WIDE, ATTR_WDUMMY, ATTR_WDUMMY Here is a short script for demonstrating the behavior: #!/bin/sh alias printf=/usr/bin/printf printf こんにちは!; sleep 2 printf '\x1b[5D'; sleep 2 printf へ; sleep 2 printf ' '; sleep 2 echo | |||
2023-05-08 | Fix null pointer access in strhandle | Jochen Sprickerhof | |
According to the spec the argument is optional for 104, so p can be NULL as can be tested with printf '\x1b]104\x07'. This is a regression of 8e31030. | |||
2023-05-08 | follow-up fix for OSC color sequences, return | Hiltjo Posthuma | |
Otherwise the message "erresc: unknown str" is printed. | |||
2023-05-08 | Merge 8e310303903792c010d03c046ba75f8b18f7d3a7 | Raheman Vaiya | |
2023-05-08 | fix possible rare crash when Xutf8TextPropertyToTextList fails | Hiltjo Posthuma | |
from the XmbTextListToTextProperty(3) man page: "If insufficient memory is available for the new value string, the functions return XNoMemory. If the current locale is not supported, the functions return XLocaleNotSupported. In both of these error cases, the functions do not set text_prop_return." Reported by Steffen Nurpmeso <steffen@sdaoden.eu>, thanks! | |||
2023-05-08 | fix a problem that the standard streams are unexpectedly closed | Koichi Murase | |
In the current implementation, the slave PTY (assigned to the variable `s') is always closed after duplicating it to file descriptors of standard streams (0, 1, and 2). However, when the allocated slave PTY `s' is already one of 0, 1, or 2, this causes unexpected closing of a standard stream. The same problem occurs when the file descriptor of the master PTY (the variable `m') is one of 0, 1, or 2. In this patch, the original master PTY (m) is closed before it would be overwritten by duplicated slave PTYs. The original slave PTY (s) is closed only when it is not one of the stanrad streams. | |||
2023-05-08 | Update symbol font | Gustaf Rydholm | |
2023-05-08 | Update xresources | Gustaf Rydholm | |
2022-11-08 | Remove joy | Gustaf Rydholm | |
2022-11-07 | Update icon font | Gustaf Rydholm | |
2022-10-13 | Update curly style | Gustaf Rydholm | |
2022-10-13 | Add undercurl patch | Gustaf Rydholm | |
2022-07-20 | Update green again | Gustaf Rydholm | |
2022-07-20 | Update green color | Gustaf Rydholm | |
2022-01-20 | Update Green to Cyan color #75B5AA | Gustaf Rydholm | |
2022-01-20 | Update brighter black to #555555 | Gustaf Rydholm | |
2022-01-19 | Update white color to #E1E1E1 | Gustaf Rydholm | |
2022-01-15 | Format | Gustaf Rydholm | |
2022-01-10 | Add scroll patch | Gustaf Rydholm | |
2022-01-10 | Update fonts | Gustaf Rydholm | |
2022-01-10 | Remove config.def.h | Gustaf Rydholm | |
2021-12-26 | Update Xresources | Gustaf Rydholm | |
2021-09-20 | Add cleaner dark bg | Gustaf Rydholm | |
2021-09-17 | Update bg color to coal | Gustaf Rydholm | |
2021-09-01 | Update darkerer bg color | Gustaf Rydholm | |
2021-09-01 | Update darker bg color | Gustaf Rydholm | |
2021-09-01 | Update bg color | Gustaf Rydholm | |
2021-08-18 | Remove unnecessary files | Gustaf Rydholm | |
2021-08-18 | Fix so that the boxdraw patch is applied correctly(?), still issue with ↵ | Gustaf Rydholm | |
bottom graph display | |||
2021-08-15 | Apply anysize patch | Gustaf Rydholm | |
2021-08-15 | Fix colorscheme, but still not displaying graphs correctly | Gustaf Rydholm | |
2021-08-14 | Fix colorscheme st cursor is white | Gustaf Rydholm | |
2021-08-12 | Add colorscheme | Gustaf Rydholm | |
2021-08-12 | Add bold is not bright | Gustaf Rydholm | |
2021-08-12 | Add clipboard patch | Gustaf Rydholm | |
2021-08-12 | Revert from applying font2 | Gustaf Rydholm | |
2021-08-12 | Revert "Apply appsync patch" | Gustaf Rydholm | |
This reverts commit ae19d30bab16589623aa80ba316288d234e7fee9. | |||
2021-08-12 | Not compiling | Gustaf Rydholm | |
2021-08-12 | Apply font2 patch | Gustaf Rydholm | |
2021-08-12 | Apply appsync patch | Gustaf Rydholm | |
2021-08-12 | Apply boxdraw patch | Gustaf Rydholm | |
2021-08-12 | Apply desktopentry patch | Gustaf Rydholm | |
2021-08-12 | Add xresources patch | Gustaf Rydholm | |
2021-08-12 | Initial commit | Gustaf Rydholm | |
2021-07-18 | Add 14th bit to XK_SWITCH_MOD bitmask | Petar Kapriš | |
The bits of uint signal in an XKeyEvent which concern the key group (keyboard layout) are bits 13 and 14, as documented here: https://www.x.org/releases/X11R7.7/doc/libX11/XKB/xkblib.html#Groups_and_Shift_Levels In the older version, only bit 13 was marked as part of XK_SWITCH_MOD, this causes issues for users who have more than two keymaps. the 14th bit is not in ignoremod, key sequences are not caught by match(), if they switch to a third or fourth keyboard. | |||
2021-05-06 | Mild const-correctness improvements. | Markus F.X.J. Oberhumer | |
Only touch a few things, the main focus is to improve code readability. | |||
2021-03-19 | fix: correctly encode mouse buttons >= 8 in X10 and SGR mode | Hiltjo Posthuma | |
These are typically mapped in X11 to the side-buttons (backward/forwards) on the mouse. A comparison of the button numbers in SGR mode (first field): st old: 0 1 2 64 65 66 67 68 69 70 st new (it is the same as xterm now): 0 1 2 64 65 66 67 128 129 130 A script to test and reproduce it, first argument is "h" (on) or "l" (off): #!/bin/sh printf '\x1b[?1000%s\x1b[?1006%s' "$1" "$1" for n in 1 2 3 4 5 6 7 8 9 10; do printf 'button %d\n' "$n" xdotool click "$n" printf '\n\n' done | |||
2020-10-18 | remove unused variable from previous patch | Hiltjo Posthuma | |