summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2022-01-29Version 1.7.31.7.3Dave Davenport
2022-01-29Small changelog update.Dave Davenport
2022-01-29Update Changelog.Dave Davenport
2022-01-26Fix typo in release notes (thx rgerdp)Dave Davenport
2022-01-25Add initial releasenotes for 1.7.3Dave Davenport
2022-01-25[XrmOptions] Small fix in parsing cmdline option.Dave Davenport
2022-01-25Mark -combi-hide-mode-prefix as deprecated.Dave Davenport
2022-01-25Merge List and Array type into one. (#1572)Dave Davenport
* Merge list and array into one. * [Lexer] Only use string without " in list * Some cleanups * Cleanups based on feedback.
2022-01-24Add support for setting tabs stops on textboxes (#1571)Jakub Jirutka
* Document new array of values type * Move WIDGET_PADDING_INIT from widget.c to widget-internal.h * Refactor WIDGET_PADDING_INIT macro * Add support for setting tab stops on textbox This allows to emulate a multi-column layout inside the text boxes. The implementation is kinda hackish due to the limitations of the theme parser. The only property type that can contain multiple distance values is Padding, so I used that. * Use new array syntax for tab-stops
2022-01-24Theme array fix inheriting.Dave Davenport
2022-01-24[Test] add a small array syntax test.Dave Davenport
2022-01-24What is in a name.Dave Davenport
2022-01-24Fix missing enum to str for Set.Dave Davenport
2022-01-24[Theme] Fix lexer for SET.Dave Davenport
2022-01-24[Theme] Add set type for testing.Dave Davenport
Allows a set of properties, f.e.: test: { "aap", "noot", "mies"} or tabs: { 1px, 10px, 1px, 3em } Issue: #1571
2022-01-22Add -combi-display-format (#1570)Jakub Jirutka
Implement a new option -combi-display-format (analogous to -drun-display-format) that allows to change position appearance of the mode name in the combi entries.
2022-01-22[Doc] Add F.A.Q about icon lookup.Dave Davenport
2022-01-22Small cleanups.Dave Davenport
2022-01-19[Doc] Add floor,ceil,round to manpage.Dave Davenport
Fixes: #1569
2022-01-18[#1569] Make order explicitDave Davenport
2022-01-18[#1569] Add initial round,floor,ceil functionDave Davenport
a round b rounds a to the closest multiple off b a ceil b ceil a to the multiple off b a floor b floor a to the multiple off b Completely untested.
2022-01-13[1566] Extra debug for monitor resolving for m=-1.Dave Davenport
2022-01-07[XCB] Fix small memory leak.Dave Davenport
2022-01-07[Helper] Remove font sanity check as it is insufficient, and old format.Dave Davenport
2022-01-04[README] Add stargazers.Dave Davenport
2021-12-30[DOC] Fix typo in manpage (-terminal-emulator)Dave Davenport
2021-12-22Add -replace optionDave Davenport
Issue: #568
2021-12-22Small rename switcher --> mode.Dave Davenport
2021-12-18[XCB] Cache lookup of monitor.Dave Davenport
2021-12-17Update cmdline separator and add to manpage.Dave Davenport
2021-12-17[DOC] Add rofi-dmenu(5) manpage.Dave Davenport
2021-12-17[X11Helper] add some extra debug.Dave Davenport
2021-12-15[Theme] Show action buttons.Dave Davenport
Show action buttons in iggy theme.
2021-12-15[Doc] Add a manpage with all the bindings.Dave Davenport
2021-12-15[KeyBindings] Fix keybinding modified by -theme-str.Dave Davenport
2021-12-14[Doc] Update manpage with clarification.Dave Davenport
2021-12-12[Help] Print out the parsed config/theme files.Dave Davenport
2021-12-04[Config] Change separator to '#'.Dave Davenport
2021-12-02[Config] when parsing -theme- cmd option, allow throwing errors.Dave Davenport
2021-12-02[Config] Skip single element options.Dave Davenport
2021-12-02[Config] Allow all theme properties to be set from commandlineDave Davenport
Bit hack solution, but `listview { scrollbar: false; }` can be reached by: -theme-listview-scrollbar false
2021-12-01Update README.mdDave Davenport
remove link to outdated wiki, as it causes confusion.
2021-12-01Cleanups based on cppcheck.Dave Davenport
2021-11-30Bump version to 1.7.2-devDave Davenport
2021-11-30Version 1.7.21.7.2Dave Davenport
2021-11-30[Config] Allow configuration block again in theme.Dave Davenport
Avoid confusion/breakage.
2021-11-29Enable/Disable windowmode test (#1536)Dave Davenport
* Enable/Disable windowmode test * [CI] Fix typo in name. * Update Changelog
2021-11-29[Config] on -dump-config do not include -theme option.Dave Davenport
But print the right line at the bottom. fixes: #1534
2021-11-29[Build] Allow rofi to build without window modeDave Davenport
fixes: #1533
2021-11-28[Rofi] Don't try to parse commandline options using theme engine if theme ↵Dave Davenport
parsing failed. Issues: #1531