-
-
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
Added a TitleChanged event handler #885
Added a TitleChanged event handler #885
Conversation
{ | ||
handlers(owner, e); | ||
} | ||
} |
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.
This is the essence of the PR.
/cc @jornh also since you are in a more correct time zone than Alex. 😄 |
@perlun This mean your finally upgrading to |
Yes! 😄 Finally... I will make a 37.0.1 hotfix to get this fix available. No expert on AppVeyor - do you just press the Deploy button or how do you do it? |
Btw - feel free to adjust as you see fit. You run the project now, so do whatever you feel like. I gave my comments above but feel free to accept or reject them, or fine-tune the patch to your liking. |
I noted that my build failed now, for whatever reason: https://ci.appveyor.com/project/cefsharp/cefsharp/build/37.0.0-CI774#L33 @amaitland or @jornh, if you could give me a short explanation on how to build & publish a NuGet package these days I would be extremely delighted! 😄 I guess I could just compile it locally & push, but I cannot even get that working:
|
You'll likely have to delete the I have to rush out, will provide more detail if require when I get home. Hope this helps! |
Should also note that packages are pushed to Do you have a |
Now I have - it's |
The build was successful now, so now I "just" need to push the package to NuGet.org. Ping @amaitland and/or @jornh. |
Done. |
Also updated the build script to increment the version number see df5d8f8 I removed the previous |
I'd prefer a democracy 😄 Will leave the code as is for now, will have a ponder about a forward direction. Maybe we need a better defined coding standard overall? More than just a |
@perlun Packages are up on Mind taking them for a spin first before pushing to When your ready, you can push the four packages to |
Great, thanks! Btw, seems to be a speling error in build.ps1 (assemly) Sent from my iPhone On 17 mar 2015, at 14:42, Alex Maitland <notifications@gh.neting.ccmailto:notifications@github.com> wrote: Also updated the build script to increment the version number see df5d8f8df5d8f8 I removed the previous 37.0.1 tag and created a new release. Hopefully the nuget packages will appear on MyGet in the next 10mins or so. Reply to this email directly or view it on GitHubhttps://github.com//pull/885#issuecomment-82324331. |
Was fixed in Can you access |
…event-handler Added a TitleChanged event handler
@amaitland - yes, thanks, I now have access. I want to push this package now (using it myself and "seems to work", kind of). How do I do it on MyGet? I feel like a n00b. 😄 Also - I noticed that 39.0.0 has been replaced. How breaking is it compared to 37.0.0? Just about to release a version of my stuff based on 37.0.1, but wanted to check if 39.0.0 is worthwhile... What are the major Chromium changes in that version btw? |
You'll have to select each package individually, just press
Breaking changes are in the release notes see https://github.com/cefsharp/CefSharp/releases/tag/v39.0.0 A few things were renamed, couple of params added, all fairly trivial stuff.
|
Anything after http://googlechromereleases.blogspot.com/2014/08/stable-channel-update_26.html up to http://googlechromereleases.blogspot.com/2014/12/stable-channel-update.html in the stable channel update posts for Windows. CefSharp's Changelog covers the CefSharp specific stuff. The breaking changes in CefSharp are mostly just new parameter or class/interface renamings. If you're happy now, you should still be happy. 😄 I also managed to sneak a major fixing of our WinForm focus problems into 39.0.0 (focus take 5) which is pretty sweet. There was also some commits to try and improve HiDPI with WPF. Fyi, |
This one adds a
TitleChanged
event handler, which is needed in my use case (so that I don't have to do dirty hacks).Sorry for the whitespace changes; they were included without without extra charge. 😉
OK to merge?