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)