summaryrefslogtreecommitdiffstats
path: root/source/dialogs
AgeCommit message (Collapse)Author
2017-05-30window: Add icons support (quick and dirty)Dave Davenport
2017-05-30drun: Implement icon supportQuentin Glidic
Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
2017-05-30view: Add icon (basic) supportAaron Ash
2017-05-29Use libnkutils for keybindingsQuentin Glidic
Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
2017-05-23Revert changes to script.Dave Davenport
2017-05-22[Theme] Add small caps options (not working?)Dave Davenport
2017-05-11Fix some clang compiler warningsDave Davenport
2017-04-27Re-Indent codeDave Davenport
2017-04-21[Mode] Make the name field a pointer instead of a fixed 32char array.Dave Davenport
2017-04-20Try to improve error message a bit (damn g_warning replace)Dave Davenport
2017-04-19[RUN] Report the expanded PATH entry in debug outputDave Davenport
2017-04-19[RUN] Expand the paths found in ↵Dave Davenport
/home/mkoedam/.local/bin/:/opt/mpd/bin/:/home/mkoedam/.local/bin/:/opt/mpd/bin/:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games
2017-04-15Fix licenses headersQuentin Glidic
Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
2017-04-15Consolidate loggingQuentin Glidic
Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
2017-04-15 Switch to g_{debug,warning} instead of g_logDave Davenport
2017-04-02Add converter back for old theme format.Dave Davenport
2017-03-31Fix alternate separatorDave Davenport
2017-03-31Document '/' as separator and add to combi mode.Dave Davenport
2017-03-31Improve error message when called with `-show`Dave Davenport
2017-03-25ISSUE 576: Clutching at straws.Dave Davenport
* Don't use atexit anymore. (what happens with g_spawn and atexit? should be fine, but a test). * Even though not needed, force wait on running thread (of which there should be none) when destroy thread pool.
2017-03-21Remove entry from history once deleted. #579Dave Davenport
2017-03-20#579 Fix delete cached entry.Dave Davenport
2017-03-17[Keys] Cleanup view a bit.Dave Davenport
2017-03-17Reduce scope and unneeded check.Dave Davenport
2017-03-14[DRUN] Get categories on initial parsing from keyfile, not on matching (is ↵Dave Davenport
slow-ish)
2017-03-11[SSH] Fix missing parameter documentationDave Davenport
2017-03-10Zeltakmadness (#572)Dave Davenport
* Allow modi to set extra pango attributes on displayed rows * Fix some documentation, only highlight the mode name with color. * Small rename.
2017-03-08Issue570 (#571)Dave Davenport
* First start issue #570 * Implement (glob style) includes. * Add glob check to configure. * If expanding path, use it
2017-03-04Indent code.Dave Davenport
2017-03-04Detect plugins on startup.Dave Davenport
2017-03-01Allow modes to set message box, instead of view creation argument.Dave Davenport
2017-03-01Remove replace test. (Don't do commit -a )Dave Davenport
2017-03-01Add message box to view structure. Always add it, disable it when not ↵Dave Davenport
showing anything
2017-02-18Add openbox to the naughty listDave Davenport
2017-02-17Install some headers for use in pluginsDave Davenport
2017-02-17Rename token_match to helper_token_match.Dave Davenport
2017-02-14Start of making SardemFF7 happyDave Davenport
Allow mode's to be loaded as dynamic plugins.
2017-02-11Only switch to the desktop first if we are on AweSome WMDave Davenport
2017-02-11Add an window manager detection function to startup.Dave Davenport
current_window_manager now is an enum of known window managers.
2017-02-09Update function check configure.acDave Davenport
2017-02-09IndentDave Davenport
2017-02-06Reduce amount of paths createdDave Davenport
2017-02-06Add border radius to border around widget.Dave Davenport
2017-02-04Allow bang to match multiple modes when incomplete to select single. Fixes #552Dave Davenport
2017-02-03Don't recreate every string everytime.Dave Davenport
2017-02-02Speedup drun by 10% by reducing number of reallocs.Dave Davenport
2017-02-01Async pre-read 25 entries by default, to make it feel more snappy. Fixes #550Dave Davenport
2017-01-31Give overlay widget a parent, queue widget redraw on enable/disableDave Davenport
2017-01-30Allow user to set number of rows to pre-read async.Dave Davenport
2017-01-26Combi mode: Bang mode prefixes with len>1 (#542)Moritz Maxeiner
* Combi mode: Bang mode prefixes with len>1 This is required to match on modes that share a prefix. Let 'power' and 'pass' be such modes for the following explanation: Previously, only the first character of after the bang was compared, so '!p' would always be matched to the 'pass' mode and there was no way to limit selection in combi mode to the 'power' mode. Now we can use prefixes of arbitrary length following the bang such as '!po' (matches 'power' mode), or '!pa' (matches 'pass' mode). Prefixes of length 1 are unchanged compared to the previous behaviour, i.e. '!p' will still match 'pass'. * Combi-mode prefixes should be utf-8 aware