You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: Add set_show_hidden_files option for file dialogs (#306)
Add FileDialog::set_show_hidden_files() and AsyncFileDialog::set_show_hidden_files()
methods to control whether hidden files (dotfiles) are displayed in file picker
dialogs.
Platform support:
- macOS: Uses NSOpenPanel.setShowsHiddenFiles
- Windows: Uses IFileDialog FOS_FORCESHOWHIDDEN flag
- Linux (GTK3): Uses gtk_file_chooser_set_show_hidden
- Linux (XDG Portal): Not supported (option is ignored)
- WASM: Not applicable (browser controls this)
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,8 @@
2
2
3
3
## Unreleased
4
4
5
+
- Add `FileDialog::set_show_hidden_files` and `AsyncFileDialog::set_show_hidden_files` to control hidden file visibility. Supported on macOS, Windows, and Linux (GTK3).
6
+
5
7
## 0.17.2
6
8
7
9
- Lower MSRV back to 1.88 by @PolyMeilex in https://github.com/PolyMeilex/rfd/pull/303
0 commit comments