-
-
Notifications
You must be signed in to change notification settings - Fork 739
Demo fixes #912
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Demo fixes #912
Conversation
|
This where quick findings, I'll try debug them later |
It doesn't make sense to do this adjustment for set only but not for get. Neither is this done for SetBounds, so it should be either fully consistent or left up to the application to deal with it.
The options were no propagated for the overload with RemovePassword options
It's a method, was used like a property
It's not supported on all platforms
| return; | ||
| } | ||
|
|
||
| // FIXME: At launch the newState is 'Started' and this.state is 'Ready' throwing always an error |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be fixed here: 9c1b688
| { | ||
| if(HybridSupport.IsElectronActive) | ||
| { | ||
| // FIXME: System.TimeoutException: 'No response after 1000ms trying to retrieve value app.GetAppPathAsync()' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be fixed by this: #913
| Electron.AutoUpdater.OnUpdateDownloaded += async (info) => await Electron.Dialog.ShowMessageBoxAsync("Update complete!" + info.Version); | ||
|
|
||
|
|
||
| // FIXME: System.TimeoutException: 'No response after 1000ms trying to retrieve value app.GetVersionAsync()' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be fixed here: #913
I'm not very familiar with the codebase yet, especially since I still need to go through all the TS/JS parts. While looking at the develop branch (the one without the migration to System.Text.Json), I added some comments to point out what isn't working in the demo. I figured that if someone with more experience in the codebase is interested, they could help fix those issues, so we can have a solid base to work from when attempting the migration in the future.