From ea428ebfcedd358605c8206563d9f3ef8febd356 Mon Sep 17 00:00:00 2001 From: Thomas Bouve Date: Tue, 18 Aug 2020 13:11:55 +0200 Subject: [PATCH] New release --- MANIFEST.in | 2 ++ README.md | 8 ++++++++ 2 files changed, 10 insertions(+) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..399a207 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +# Include the license file +include LICENSE diff --git a/README.md b/README.md index f77cf7e..dcbadba 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,9 @@ fc.show_hidden = True # Show or hide folder icons fc.use_dir_icons = True +# Switch to folder-only mode +fc.show_only_dirs = True + # Change the title (use '' to hide) fc.title = 'FileChooser title' @@ -55,6 +58,7 @@ fc.refresh() fc.register_callback(function_name) fc.show_hidden fc.use_dir_icons +fc.show_only_dirs fc.rows fc.title fc.default @@ -90,6 +94,10 @@ fc.selected_filename ## Release notes +### 0.3.5 + +- Option added to only display folders (@andriykorchak) + ### 0.3.4 - Option added to display folder icons (@ptooley)