Skip to content

Commit

Permalink
update version and help
Browse files Browse the repository at this point in the history
  • Loading branch information
aiekick committed Oct 21, 2020
1 parent bf0d419 commit 1f066f6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
3 changes: 2 additions & 1 deletion ImGuiFileDialog/ImGuiFileDialog.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ The possibilities are :
- Support files Exploring with keys : Up / Down / Enter (open dir) / Backspace (come back)
- Support files Exploring by input char (case insensitive)
- Support bookmark creation/edition/call for directory (can have custom name corresponding to a path)
- Support input path edition by right click on a path button
Use the Namespace igfd (for avoid conflict with variables, struct and class names)
Expand All @@ -76,7 +77,7 @@ you can use your own and define the path of your custom config file realtive to
*/
#pragma once

#define IMGUIFILEDIALOG_VERSION "v0.5"
#define IMGUIFILEDIALOG_VERSION "v0.5.1"

#include <imgui.h>

Expand Down
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ An example of the File Dialog integrated within the ImGui Demo App
- Support files Exploring with keys : Up / Down / Enter (open dir) / Backspace (come back)
- Support files Exploring by input char (case insensitive)
- Support bookmark creation/edition/call for directory (can have custom name corresponding to a path)
- Support input path edition by right click on a path button

Use the Namespace igfd (for avoid conflict with variables, struct and class names)

Expand Down Expand Up @@ -245,12 +246,6 @@ if you click right on one of any path button, you can input or modify the path p
then press the validate key (Enter by default with GLFW) for validate the new path
or press the escape key (Escape by default with GLFW) for quit the input path edition

you can use your own Validation and Escape keys with the defines :
* IGFD_INPUT_PATH_VALIDATION
* IGFD_INPUT_PATH_ESCAPE

in you custom config file (CustomImGuiFileDialogConfig.h in this app example)

see in this gif :
1) button edition with mouse button right and escape key for quit the edition
2) focus the input and press validation for set path
Expand Down

0 comments on commit 1f066f6

Please sign in to comment.