summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2020-09-11[Lexer] Fix media parser.Dave Davenport
2020-09-11[Theme] update manpage with fixDave Davenport
2020-09-11Fix release note error of supported prefixDave Davenport
2020-09-11[DRun] Update manpage to reflect change from #966Dave Davenport
Issue: #1187
2020-09-09[DRun] Fix broken cache after URL type was added.Dave Davenport
2020-09-08Split MENU_QUICK_SWITCH into MENU_CUSTOM_COMMAND/QUICK_SWITCHDave Davenport
2020-09-08Fix and optimize 20200908 (#1184)nick87720z
* combi: Reuse own get_num_entries in self-init * combi_mode_parse_switchers: Remove duplicated mode pointer * combi_mode_parse_switchers: Regroup mode search lines * combi_mode_result: Simplify switcher search quit * mode_result: Check for mode switch actions before hook These are over-mode actions, which should not be handled in mode hooks at all.
2020-09-08[Window] Try to clarify help.Dave Davenport
Issue: #1183
2020-09-06Update version in configure.ac to 1.6.0-devDave Davenport
2020-09-06Bump version to 1.6.01.6.0Dave Davenport
2020-09-06Update ChangelogDave Davenport
2020-09-06[Theme] Add inherit highlight on default theme.Dave Davenport
2020-09-06[Doc] Add warning icon to release note.Dave Davenport
2020-09-06[Doc] Add small (Extra) highlight section to rofi-themeDave Davenport
2020-09-05[Widget] Fix border drawing code.Dave Davenport
Fixes: #1177
2020-09-03Try to improve bison check so it works on bsdDave Davenport
2020-09-02Fix an unsafe use of strchr in dmenu mode (#1176)lbonn
Found with valgrind
2020-09-01Update bug_report.mdDave Davenport
2020-08-30Release notes, small markup fixDave Davenport
2020-08-29Update release-1.6.0.markdownDave Davenport
2020-08-29Update release-1.6.0.markdownDave Davenport
2020-08-29Remove unneeded '# from shipped themes.Dave Davenport
2020-08-29Fix showing of error message (-e ) in arther,paper-float,sidebarDave Davenport
2020-08-29Update changelog releasenotesDave Davenport
2020-08-28Run indenter.Dave Davenport
2020-08-26Follow Type=Link standard desktop entries with drun (#1168)Mike Dalessio
* [DRun] Introduce data structure changes for Link desktop entries From the [freedesktop spec][1]: > This specification defines 3 types of desktop entries: > Application (type 1), Link (type 2) and Directory (type 3). To allow > the addition of new types in the future, implementations should > ignore desktop entries with an unknown type. This commit adds an enum to capture these types, and adds `type` to DRunModeEntry. [1]: https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html part of #1166 * [DRun] Sanity check Link entries and capture the URL Note that we're introducing some logic that will differ depending on the Desktop entry type (Application or Link). The logic is: - if entry is Application type, - then Exec is required - and the value is saved in .exec - and drun_mode_result calls exec_cmd_entry - if entry is Link type, - then URL is required (but is not saved in the DRunModeEntry) - and drun_mode_result calls new function launch_link_entry part of #1166 * [DRun] Launch desktop links via xdg-open Note that this introduces a new dependency on xdg-open, which may not be installed. In that case, rofi will display an error dialog with something like: "Failed to execute child process xdg-open (No such file or directory)" which hopefully is explanatory enough for folks. part of #1166 * Make drun options comments consistent and add a bit of whitespace * [DRun] new config option drun-url-launcher for opening links In previous commit, this was a hard-coded string. part of #1166
2020-08-25[ReleaseNotes] Update title + add examples script.Dave Davenport
2020-08-25Update release notesDave Davenport
2020-08-25[Matching] Make fuzzy matching non-greedyDave Davenport
2020-08-19Add extra timing debug.Dave Davenport
Issue: #1162
2020-08-18[Build] Try to fix make dist for meson.Dave Davenport
2020-08-18Merge remote-tracking branch 'origin/mesonfix' into nextDave Davenport
2020-08-18[ReleaseNotes] tiny update to header.Dave Davenport
2020-08-01[meson] Test possible 'workaround' for meson 0.55 issuemesonfixDave Davenport
Make xcb a non-nested subproject (via simlink). Issue: #1159
2020-07-11micro-refactoring: widget.c (#1148)nick87720z
* widget.c: microrefactoring * widget.c: join enable/disable functions
2020-07-09[Widget] Fix inconsistency in argument checking.Dave Davenport
2020-07-08Update README to include both config and known_hosts.Dave Davenport
Issue: #1154
2020-07-05[Test] Update check building.Dave Davenport
2020-07-05release note, update image.Dave Davenport
2020-07-05Update releasenotesDave Davenport
2020-07-05Update changelog a bit.Dave Davenport
2020-06-26Add language requirement to CONTRIBUTING.Dave Davenport
2020-06-17Widget bg draw (#1147)nick87720z
* Improved background draw code - Better to read (precalculated coordinates) - Unnecessary line_to in the end - Don't use radius in calculations if zero * Background draw - separate rounded rect function * Limit background & border overlap size Overlap is too good against artifacts when stiching antialiased areas to be avoided, unless intermediate image is used for additive stiching. But it doesn't look good with transparent borders, when overlaping background is visible. It seems, that 1px overlap is right enough to completely prevent artifacts. Though things may differ if one if side is 1px or even 0px, while adjacent is still enough thick. * Style: alignment, less noise, limit var scope
2020-06-17[ThemeSelector] Use rasi config file format, not xresources.Dave Davenport
2020-06-09[Doc] update rofi-theme(5) with mm size.Dave Davenport
2020-06-09When no dpi set (-1) set the default one for fonts handling.Dave Davenport
2020-06-09Millimeter support for distance (#1144)nick87720z
2020-06-09[rofi-sensible-terminal] use xfce4-terminal.wrapper instead of xfce4-terminalDave Davenport
xfce4 terminal does not follow the 'default' arguments.
2020-06-09Again final workaround for #303 (#1142)nick87720z
2020-06-06script: Fix parsing of extras (#1141)Quentin Glidic
Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>