| Commit message (Collapse) | Author | Files | Lines | ||
|---|---|---|---|---|---|
| 2025-07-23 | Attempt to patch CI pipeline: Dockerfile will now be selfcontained, and ↵ | 2 | -32/+43 | ||
| thus, will init .gitmodules: ln:10 removed from original Jenkinsfile | |||||
| 2025-07-23 | CRITICAL ISSUE: Deleting lib/ files has introduced the issue of actually ↵ | 1 | -38/+25 | ||
| automating the module initialization via jenkins: DEBUG VERSION: Jenkinsfile | |||||
| 2025-07-23 | CRITICAL FOR TESTING: This copies the entire Jenkins workspace (including ↵ | 2 | -9/+7 | ||
| the populated lib/ directory from the submodules) into the running container, ensuring all the required source files are available for the build process. | 1 | -2/+9 | |||
| 2024-09-25 | Update README.md | 1 | -0/+3 | ||
| 2024-09-23 | fixed lua api exit status issue | 1 | -1/+1 | ||
| 2024-09-23 | fixed splitting within quoted string | 1 | -5/+10 | ||
| 2024-09-23 | made and operator actually conditional | 2 | -17/+27 | ||
| 2024-09-23 | fixed operator chaining to handle commands terminating with an operator | 1 | -14/+5 | ||
| 2024-09-23 | implemented background process operator | 6 | -154/+238 | ||
| 2024-09-23 | implemented piping into new chaining method | 1 | -10/+30 | ||
| 2024-09-18 | fixed && chaining for builtins | 2 | -23/+31 | ||
| 2024-09-18 | added basic && chaining | 2 | -8/+73 | ||
| 2024-09-17 | changed tokenizer to handle all the chaining operators | 3 | -20/+78 | ||
| 2024-09-17 | Update README.md | 1 | -0/+1 | ||
| 2024-09-13 | added better clarification to help menu | 1 | -1/+2 | ||
| 2024-09-13 | improved installation instructions | 1 | -3/+3 | ||
| 2024-09-12 | v0.1.1 | 1 | -1/+1 | ||
| 2024-09-12 | fixed bug in input buffer handling due to misplaced print | 2 | -5/+8 | ||
| 2024-09-12 | Update build.yml checkout v4 | 1 | -1/+1 | ||
| 2024-09-12 | Update build.yml to artifact v4 | 1 | -1/+1 | ||
| 2024-09-12 | fixed exit status issue with non interative mode | 1 | -1/+1 | ||
| 2024-09-12 | added non interative mode for running lua scripts | 2 | -4/+28 | ||
| 2024-09-12 | temporary github action fix until non-interactive mode is implemented | 1 | -2/+2 | ||
| 2024-09-12 | attempt to update build script to accept input into lush shell | 2 | -4/+6 | ||
| 2024-09-12 | prevent lush workflow from getting stuck in tests | 1 | -1/+4 | ||
| 2024-09-12 | removed chsh in workflow | 1 | -4/+1 | ||
| 1 | -1/+1 | ||||
| 2015-09-28 | Replace deprecated usleep() with nanosleep() | 1 | -2/+3 | ||
| 2015-09-28 | config.mk: use -std=c99 | 1 | -1/+1 | ||
| 2015-09-27 | dmenu: style improvements | 1 | -204/+213 | ||
| - move main to bottom, usage above main. - dont use variable names with function prototypes. - space before if, for, while, etc: 'if(' -> 'if ('. this makes the code-style more consistent | |||||
| 2015-09-27 | drw style improvements | 2 | -93/+106 | ||
| this makes the code-style more consistent aswell. | |||||
| 2015-09-27 | separate program-specific c99 bool and X11 | 2 | -11/+10 | ||
| True, False are X11-specific, make sure to use c99 stdbool for program-specific things. ... also remove left-over vim mode string in config. | |||||
| 2015-09-27 | config.mk: fix _XOPEN_SOURCE=700 for getline() | 1 | -1/+1 | ||
| 2015-09-27 | config.mk: improve feature test check | 1 | -1/+1 | ||
| this fixes a crash on NetBSD because it requires -D_XOPEN_SOURCE (strdup, usleep). thanks k0ga and stateless for reporting and fixing this issue! | |||||
| 2015-08-06 | Fixed typo introduced by shared code | 1 | -1/+1 | ||
| 2015-07-19 | stest: get rid of getopt, use suckless arg.h | 3 | -53/+141 | ||
| ... also some style improvements. | |||||
| 2015-07-19 | config.mk: add FREETYPELIBS and FREETYPEINC | 1 | -3/+9 | ||
| These variables make it simpler to change the paths to this for ports. `pkg-config` is avoided because it sucks, in particular for cross-compilation. A commented path for *BSD is added, the Xft includes are located at: /usr/X11R6/include there. Also already bump the version number to 4.6, a release will come approximately in August. | |||||
| 2015-07-19 | fix prompt color style how it used to be | 1 | -1/+1 | ||
| This is the style how it was before the big Xft change. The colors were inverted, this was not the case before the change. Reported by "zvz" on #suckless IRC, thanks! | |||||
| 2015-06-27 | Use libdraw: add Xft and fallback-fonts support to graphics lib | 11 | -316/+684 | ||
| - libdraw, util: add drw.{c,h}, util.{c,h} and update code. - libdraw: fix drw_rect(): use w and h parameter. - libdraw: print errstr if last character in string was ":" (sbase). - libdraw: drw_clr_free() allow valid free(NULL). - config.def.h: set default font to monospace. - cleanup() on exit. - LICENSE: update license string for dmenu -v to 2015. - LICENSE: add myself to LICENSE | |||||
| 2014-09-17 | applied Hiltjo's patch as suggested on the ml to fix ControlMask for C-j and C-m | 2 | -2/+5 | ||
| 2014-07-30 | fix crash with ctrl-enter as input | 1 | -1/+2 | ||
| reproduce: ./dmenu; send EOF; press ctrl+enter. | |||||
| 2014-05-29 | updated copyright notices in LICENSE and dmenu.c file | 2 | -2/+2 | ||
| 2013-08-13 | applied Martin Kühl's inverse matching flag to stest | 2 | -4/+7 | ||
| 2013-08-02 | applied Martti Kühne's dmenu monitor patch | 3 | -4/+14 | ||
| https://gist.github.com/mar77i/3349298/raw/f6581ca96627f4c71c0bd1faf531daaf2a613b95/monarg.patch becomes upstream now | |||||
| 2013-06-28 | accepted vi'is exit approach ^[ (suggested by Arkaduisz) | 1 | -0/+2 | ||
