davbeek / gitinspectorgui

0 stars 0 forks source link

Add working dir folder to GUI #20

Closed davbeek closed 1 day ago

davbeek commented 4 days ago

The Input folder path in the GUI requires an absolute path, which leads to long input and output paths.

To reduce the length of these paths and make the GUI more similar to the CLI, I propose to change the title of Input folder path to "Working dir" and to add an additional input box below it, titled "Input pattern", which can deal with (comma separated) fnmatch patterns from issue #19.

Alberth289346 commented 2 days ago

Stick these paths in a configuration file? I assume directory structures used for checking aren't moving much. That means these paths are stable too then.

davbeek commented 2 days ago

Interesting idea, but I can imagine it could confuse users. Also I like the just implemented fnmatch for pattern matching. This means we now have pattern matching using *, ?, [] also for the input path in the GUI and it works nicely. For now, I actually think that could be sufficient, so I am inclined to keep things as they are and not implement idea raised in this issue.

davbeek commented 1 day ago

I will close the issue. It is probably not worth the effort, it adds additional complexity and the added globbing in the GUI input folder path works well.