Commit Briefs

75f92eb348 Hiltjo Posthuma

bump version to 0.8.2 (tags/0.8.2)


3be4cf11d7 Hiltjo Posthuma

config: add Shift+Insert as selpaste() again

This was changed before in: commit 20f713548de451b67db3306cf8cf7b2f38fee05c on Wed Jan 25 19:17:38 2017


16d98738e7 Hiltjo Posthuma

Let the user specify CPPFLAGS

This complements the work done in d4928ed, allowing the user to specify the preprocessor flags with the CPPFLAGS environment variable. This is useful for example to specify preprocessor macros with -D. CFLAGS could be used instead, but CPPFLAGS is more correct and is expected to be honored in some cases. For example, the helper scripts to build Debian packages make use of CPPFLAGS, but the variable is currently being ignored unless manually appended to CFLAGS.


e23acb9188 Hiltjo Posthuma

Set the path of pkg-config in a variable instead of hardcoding it

In this way the path of pkg-config can be overridden from the command line. This is useful for example when cross-compiling.


7e19e11676 Hiltjo Posthuma

Makefile: fix dependencies on config.h

patch by Younes Khoudli (changed slightly). Thanks


096b125db7 Hiltjo Posthuma

output child WEXITSTATUS/WTERMSIG on abnormal termination


d7bf023b2f Hiltjo Posthuma

fix memory leak in xloadcols()

reported by Avi Halachmi (:avih)" <avihpit@yahoo.com> patch slightly changed by me.


b4d68d4daa Hiltjo Posthuma

st: small typofix in comment


30ec9a3dc3 Hiltjo Posthuma

small code-style fix


67d0cb65d0 Hiltjo Posthuma

Remove the ISO 14755 feature

And move it to the patches section. Keeping it would force to add an exec pledge on OpenBSD, and some people think it's bloated, so bye!


4f4bccd162 Hiltjo Posthuma

Revert "Simplify cursor color handling"

This reverts commit 1911c9274d9b03f3d7999c6ce26e2d5169642d26.


8ed7a4b3b7 Hiltjo Posthuma

Revert "Make cursor follow text color"

This reverts commit b51bcd5553af3db394014efbd78acf7828fa48ff.


732be223ee Hiltjo Posthuma

Revert "Fix crash when cursor color is truecolor"

This reverts commit 5535c1f04c665c05faff2a65d5558246b7748d49.


5535c1f04c Hiltjo Posthuma

Fix crash when cursor color is truecolor

Reported-by: Ivan Tham <pickfire@riseup.net>


b51bcd5553 Hiltjo Posthuma

Make cursor follow text color


1911c9274d Hiltjo Posthuma

Simplify cursor color handling


29f341da7c Hiltjo Posthuma

Fix crash on resize

Prevent to realloc xw.specbuc with a negative number of col. Add proper hints for the minimal size, for one character.


dc3b5babf1 Hiltjo Posthuma

config.mk: remove extra newline before EOF


235a783e03 Hiltjo Posthuma

code-style for pledge(2)

feedback from Klemens, thanks


30ce2cc002 Hiltjo Posthuma

Pledge on OpenBSD


041912a791 Hiltjo Posthuma

error message style and use strerror in a few places


bd3f7fd842 Hiltjo Posthuma

st -v: remove years and copyright text


74cff67bd7 Hiltjo Posthuma

set sel.alt in selstart instead of selextend


6f0f2b7ec3 Hiltjo Posthuma

bump version to 0.8.1 (tags/0.8.1)


f4020b2cc4 Hiltjo Posthuma

fix regression by selecting clipboard text

"restore the old behaviour that the primary doesn't get deleted by a simple left click" Patch by Daniel Tameling <tamelingdaniel@gmail.com>, thanks!