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
It would be cool if we can have a gui setting panel.
Steps:
Implement ISettingProvider interface
Return a custom usercontrol in that method.
We have provided support for loading and saving json style setting. It is implemented based on calling assembly and class name. to use it, use Context.API.LoadSettingJsonStorage<T>(). Saving will be automatically called by flow.
For the user control
You can create a xaml and follow how program plugin or websearch plugin implement that.
The text was updated successfully, but these errors were encountered:
Thanks for the feedback, jjw24 suggested it too, but I probably won't build it because at least for me, it's totally fine without GUI.
Here is how I use it:
In Flow Launcher I type fav and hit enter, my text editor (Sublime Text) shows the conf file. I put a new entry at the top of the file or search what I want to edit, then save the file. v1.4 reloads the file automatically (it checks the modified file date when query runs). For nerds, programmers etc. this whole process can be highly efficient and also enjoyable.
I'm not short of project ideas (mostly mpv.net), otherwise I would say why not.
It would be cool if we can have a gui setting panel.
Steps:
We have provided support for loading and saving json style setting. It is implemented based on calling assembly and class name. to use it, use
Context.API.LoadSettingJsonStorage<T>()
. Saving will be automatically called by flow.For the user control
You can create a xaml and follow how program plugin or websearch plugin implement that.
The text was updated successfully, but these errors were encountered: