-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
Cefsharp/79 #3053
Closed
Closed
Cefsharp/79 #3053
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Prior to version 75 the Stream.Position was set to 0 before the ResourceHandler would read the Stream. This restores that behaviour. - Minor refactor of if statement for Stream.Can seek, only override ResponseLength with Stream.Length of not already set Resolves #2903
- Some classes are now excluded - Many minor fixes should hopefully reduce the number of errors reported by Sandcastle - Some of the xml doc is generated by Atomineer, usually in cases where CEF lacks documentation
**Breaking Change** Resolves #3026
- Include details on version 79.1.350 release
…n if called on Non UI Thread. - Extract error message out into a internal const so it's not duplicated - Manually check InternalIsBrowserInitialized() method instead of using the extension method Resolves #3032
Swiftshader will be used for CPU based software rendering
It's possible to Dispose the browser before OnAfterBrowserCreated is called resulting in a NRE when attempting to set WasHidden(true). Resolves #3037
… to DataOut Previously we'd read too many bytes and attempting to write them to dataOUt would cause a see System.NotSupportedException Resolves #3038
There is no example of Cancel in the source code and the description in the doc doesn't really provide a clear explanation of it's intended use case. See code comment for further details
Adding some newer video/audio/font mappings #3041
if CefSharpSettings.LegacyJavascriptBindingEnabled then register bound and boundAsync objects
Make it clear we are setting the default to DockStyle.Fill, this may not be expected by some. It has been that way for 5+ years, so changing the default would be difficult and unexpected, instead we make it clearer this is the case. Resolves #3019
You must create your own fork, push your changes to GitHub then create a pull request. Closed as invalid as no new code has been contributed. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes [issue-number]
Summary: [summary of the change and which issue is fixed here]
Changes: [specify the structures changed]
just below the following line inside the function
OnImeComposition()
owner.GetBrowserHost().ImeCommitText(text, new Range(int.MaxValue, int.MaxValue), 0);
string text = string.Empty;
) in order to reference 'underlines' and 'compositionStart' in the newly-added code above:I also figured out there is no side effects to Japanese or Chinese IME even if I skipped the
if
test (if (languageCodeId == ImeNative.LANG_KOREAN)
) but I don't want to make any side effects not found during my own test. It is 'experimental' anyway and we need to improve the WPF IME problem over time.How Has This Been Tested?
Using CefSharp.Wpf.Example.SimpleMainWindow.xaml, (and plugging in the experimental IME keyboard handler of course) I typed several Korean, Japanese, and Chinese sentences.
Windows 10.0.18363.592 (x64) - Korean, Japanese, and Chinese IME installed
Screenshots (if appropriate):
Types of changes
Checklist: