-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support files without an extension in XDG portal filters (#215)
Due to the glob being used ("*.{file_extension}"), there was no possibility to include files without a dot in their name when using filters. The glob "*" is now used when an empty filter ("") or a match-all filter ("*") is specified, which replaces globs "*." and "*.*" respectively. The glob "*." did not make sense, as it matched files ending with a dot, and "*.*" did not match files without an extension (which are quite popular on Linux).
- Loading branch information
Showing
2 changed files
with
14 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters