* Summaries rewritten
* Added new parameters / Removed not supported parameters
* Added some new methods like appFocus(options), appHasSingleLock, etc.
This commit is contained in:
Konstantin Gross
2020-05-31 03:09:54 +02:00
parent 1ab48350e1
commit eee84d214e
22 changed files with 655 additions and 507 deletions

View File

@@ -12,7 +12,7 @@ namespace ElectronNET.WebApp.Controllers
{
Electron.IpcMain.On("open-file-manager", async (args) =>
{
string path = await Electron.App.GetPathAsync(PathName.home);
string path = await Electron.App.GetPathAsync(PathName.Home);
await Electron.Shell.ShowItemInFolderAsync(path);
});