summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2020-10-12Fix some of the documentationDave Davenport
2020-10-12Try fixing build on meson of readdir dirent args.Dave Davenport
2020-10-12[FileBrowser] Add file browser modi.Dave Davenport
2020-10-11[Workflow] Run from local fork.Dave Davenport
2020-10-11Add Action to auto-close incomplete reports (#1212)Danny Colin
- update feature request to work with the action - add workflows action config file
2020-10-02[Lexer] Fix parsing string in dict not to match " in middle of string.Dave Davenport
Fixes: 1205
2020-09-30[Helper] Add -normalize-match option.Dave Davenport
Decomposes string and remove accent characters before matching. This makes o match ö, é match e and more. It is not a perfect implementation but works. Currently disables the match highlighting. Fixes: #1119
2020-09-26Fix spelling (#1202)a1346054
2020-09-25[Manpage] Addd dash remark to manpage.Dave Davenport
2020-09-21Add list with packaged version (thx @zero77)Dave Davenport
Fixes: #1197
2020-09-19[Man] update-rofi-sensible-terminal.1 manpageDave Davenport
* Source from markdown * Update list. Fixes: #897 #850
2020-09-18Remove extra colons (#1199)Florian Bruhin
Rofi already adds a colon after the prompt given with -p, so the "monkey:" example would actually lead to a "monkey::" prompt.
2020-09-17[HELP] Fix typo in help msgs (#1198)Hpl4r
2020-09-14[Calc] Add min/max operator support to calc()Dave Davenport
Fixes: #1172
2020-09-14[Theme] Change default theme icon height to 1 em, to match old behaviour better.Dave Davenport
2020-09-14[Default Theme] Change ch to em.Dave Davenport
2020-09-13issue 1187: If error on launching application, show error message and ↵Dave Davenport
return to list` (#1193) * Show error message, then possibly pop back to main window. Fix drun/run dialog to use this for command execution. Issue #1187 * [Combi] When no line selected, handle using the first entry. * [Window] Add execute on invalid input to window dialog. * Update view.h doxygen docu * Update manpage with running application changes.
2020-09-13Remove xenial warning from INSTALL.mdDave Davenport
2020-09-13[Test] fix theme parser test for latest change in grammar parserDave Davenport
2020-09-13[Theme] First attempt at more cleanups and nested media support.Dave Davenport
First throw at nested media support. Issue: #1189
2020-09-13[Parser] Small restructure in parser.Dave Davenport
Preparing for nested @media.
2020-09-13[Theme] Fix @media printing in `-dump-theme`.Dave Davenport
2020-09-13[Textbox] Try to fix estimated font height.Dave Davenport
This was on newer pango 1 pixel off with actual font height. This casues drawing issues. Fixes: #1190
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