Skip to content

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Oct 2, 2023

Bumps OpenTK from 4.7.7 to 4.8.1.

Release notes

Sourced from OpenTK's releases.

4.8.1

API: Added NativeWindow.HasTransparentFramebuffer to be able to check if a transparent framebuffer was created successfully. (@​NogginBops) API: Added missing enum entries in OpenCL.ContextProperties. (@​NogginBops) FIX: NativeWindowSettings.StartVisible = false has been fixed and should now work as expected. (@​NogginBops) FIX: Fixed issue where JoystickState.GetAxis returned buttons instead of axes. (@​NogginBops) FIX: Fixed issue where self-contained dotnet publish would break due to duplicate libglfw.so files. (@​Th3Dilli) FIX: Setting NativeWindow.WindowState will now be reflected in OnResize event caused by it. (@​NogginBops) FIX: GameWindow.UpdateTime is now correctly updated, fixing an issue that first appeared in 4.7.1. (@​NogginBops) FIX: Fixed typo in deprecation message for GameWindow.RenderFrequency. (@​postmeback)

4.8.0

BREAKING: Renamed the OpenTK.OpenAL assembly to OpenTK.Audio.OpenAL to match the namespace. (@​NogginBops) BREAKING: Make OpenAL extensions nested classes of AL and ALC instead of being namespaces to more closely match the OpenGL bindings. (@​NogginBops) BREAKING: Removed AL.BindBufferToSource, AL.GetSourceState, AL.GetSourceType, and ALC.GetAvailableSamples that doesn't exist in the OpenAL API (use AL.Get* and ALC.Get* instead). (@​Khhs167, @​NogginBops) BREAKING: NativeWindow.Location, NativeWindow.Size, and NativeWindow.Bounds now correctly refer to the external size and location of the window. (@​NogginBops) BREAKING: Removed a few functions marked [Obsolete] since at least 4.7.2 but some even older. (@​NogginBops) BREAKING: Removed OpenTK.Core.Utils.Swap<T>, use MathHelper.Swap<T> instead. (@​NogginBops) API: Rename Box.Inflate to Box.Extend, and mark Box.Inflate as obsolete so we can change the behavior of Box.Inflate in future versions. (@​NogginBops) API: Added GameWindow.TimeSinceLastUpdate() and GameWindow.ResetTimeSinceLastUpdate() which are useful when dealing with the modal move/resize loop on windows. (@​NogginBops) API: Added NativeWindow.RawMouseInput and NativeWindow.SupportsRawMouseInput for activating raw mouse input. (@​NogginBops) API: Added opt-in preliminary GLFW Wayland support through the environment variable OPENTK_4_USE_WAYLAND (it's broken when used with GameWindow or NativeWindow in this version). (@​NogginBops) API: Updated the GameWindow run loop to be much more accurate. Exposed GameWindow.ExpectedSchedulerPeriod to tell OpenTK how accurate Thread.Sleep can be expected to be (this defaults to good defaults for Windows, Linux, and macos). (@​NogginBops) FIX: Cleaned up some internal OpenGL definitions (doesn't change any bindings). (@​BoyBayKiller) API: Expose MouseCursor.StandardShape as public. (@​NogginBops) API: Add VectorNi.EuclideanLengthSquared. (@​NogginBops) FIX: Added helpful exception message to NativeWindow when running with trimmed assemblies with a workaround for the issue. (@​NogginBops) FIX: Fixed an issue where starting NativeWindow as a fullscreen window and then going to a normal window would throw an exception. (@​NogginBops)

Changelog

Sourced from OpenTK's changelog.

4.8.1

  • API: Added NativeWindow.HasTransparentFramebuffer to be able to check if a transparent framebuffer was created successfully. (@​NogginBops)

  • API: Added missing enum entries in OpenCL.ContextProperties. (@​NogginBops)

  • FIX: NativeWindowSettings.StartVisible = false has been fixed and should now work as expected. (@​NogginBops)

  • FIX: Fixed issue where JoystickState.GetAxis returned buttons instead of axes. (@​NogginBops)

  • FIX: Fixed issue where self-contained dotnet publish would break due to duplicate libglfw.so files. (@​Th3Dilli)

  • FIX: Setting NativeWindow.WindowState will now be reflected in OnResize event caused by it. (@​NogginBops)

  • FIX: GameWindow.UpdateTime is now correctly updated, fixing an issue that first appeared in 4.7.1. (@​NogginBops)

  • FIX: Fixed typo in deprecation message for GameWindow.RenderFrequency. (@​postmeback)

4.8.0

  • BREAKING: Renamed the OpenTK.OpenAL assembly to OpenTK.Audio.OpenAL to match the namespace. (@​NogginBops)

  • BREAKING: Make OpenAL extensions nested classes of AL and ALC instead of being namespaces to more closely match the OpenGL bindings. (@​NogginBops)

  • BREAKING: Removed AL.BindBufferToSource, AL.GetSourceState, AL.GetSourceType, and ALC.GetAvailableSamples that doesn't exist in the OpenAL API (use AL.Get* and ALC.Get* instead). (@​Khhs167, @​NogginBops)

  • BREAKING: NativeWindow.Location, NativeWindow.Size, and NativeWindow.Bounds now correctly refer to the external size and location of the window. (@​NogginBops)

  • BREAKING: Removed a few functions marked [Obsolete] since at least 4.7.2 but some even older. (@​NogginBops)

  • BREAKING: Removed OpenTK.Core.Utils.Swap<T>, use MathHelper.Swap<T> instead. (@​NogginBops)

  • API: Rename Box.Inflate to Box.Extend, and mark Box.Inflate as obsolete so we can change the behavior of Box.Inflate in future versions. (@​NogginBops)

  • API: Added GameWindow.TimeSinceLastUpdate() and GameWindow.ResetTimeSinceLastUpdate() which are useful when dealing with the modal move/resize loop on windows. (@​NogginBops)

  • API: Added NativeWindow.RawMouseInput and NativeWindow.SupportsRawMouseInput for activating raw mouse input. (@​NogginBops)

  • API: Added opt-in preliminary GLFW Wayland support through the environment variable OPENTK_4_USE_WAYLAND (it's broken when used with GameWindow or NativeWindow in this version). (@​NogginBops)

  • API: Updated the GameWindow run loop to be much more accurate. Exposed GameWindow.ExpectedSchedulerPeriod to tell OpenTK how accurate Thread.Sleep can be expected to be (this defaults to good defaults for Windows, Linux, and macos). (@​NogginBops)

  • FIX: Cleaned up some internal OpenGL definitions (doesn't change any bindings). (@​BoyBayKiller)

  • API: Expose MouseCursor.StandardShape as public. (@​NogginBops)

  • API: Add VectorNi.EuclideanLengthSquared. (@​NogginBops)

  • FIX: Added helpful exception message to NativeWindow when running with trimmed assemblies with a workaround for the issue. (@​NogginBops)

... (truncated)

Commits
  • bc9c634 Release 4.8.1
  • 0ab5506 Merge branch 'master' of github.com:opentk/opentk
  • 6b1ba9d Changed OpenAL to search for libopenal.so (without .1). Changed OpenCL to sea...
  • b2d09ea Merge pull request #1625 from Th3Dilli/master
  • 30df857 Updated paket file
  • 0d1a3a4 Updated OpenTK.redist.glfw to contain wayland fix.
  • b536615 Merge pull request #1646 from NogginBops/hotfixes
  • 07aa99d Added missing enums entries for OpenCL ContextProperties.
  • ff429bd Fixed WindowState not being updated in OnResize.
  • 53954f7 Added a way to set the GLFW error callback.
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [OpenTK](https://github.com/opentk/opentk) from 4.7.7 to 4.8.1.
- [Release notes](https://github.com/opentk/opentk/releases)
- [Changelog](https://github.com/opentk/opentk/blob/master/RELEASE_NOTES.md)
- [Commits](opentk/opentk@4.7.7...4.8.1)

---
updated-dependencies:
- dependency-name: OpenTK
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Oct 2, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants