I've reviewed a lot of documentation on the subject, but I don't seem to find anything on app multicasting.
I noticed that in Windows, the user data folder (UDF) is stored in <username>/AppData/Local/<appname>/EBWebView, and I'm wondering if we can select a different user data folder at startup to enable app multi-opening.
That way, when users need to log in multiple accounts, they can avoid the hassle of having to log in repeatedly
Describe the solution you'd like
Here is what I think is a possible kind of enablement step:
Be able to create the specified new udf in the default started tauri app using the command e.g. app.createUDF('XXX)
Create a shortcut on the desktop with the specified arg
Switch the UDF used by tauri to the corresponding folder when launched from the shortcut.
In addition, there may be an api to remove non-default udf, and all udf can be removed when uninstalling.
Describe the problem
I've reviewed a lot of documentation on the subject, but I don't seem to find anything on app multicasting.
I noticed that in Windows, the user data folder (UDF) is stored in
<username>/AppData/Local/<appname>/EBWebView
, and I'm wondering if we can select a different user data folder at startup to enable app multi-opening.That way, when users need to log in multiple accounts, they can avoid the hassle of having to log in repeatedly
Describe the solution you'd like
Here is what I think is a possible kind of enablement step:
app.createUDF('XXX)
In addition, there may be an api to remove non-default udf, and all udf can be removed when uninstalling.
Alternatives considered
No response
Additional context
No response