VolcanicArts / VRCOSC

Modular OSC program creator, toolkit, and router made for VRChat. Show your heartrate, time, hardware stats, speech to text, control Spotify, and more! Includes drag-and-drop prefabs for your avatar.
GNU General Public License v3.0
333 stars 30 forks source link

Bump ppy.osu.Framework from 2023.625.0 to 2023.716.0 #135

Closed dependabot[bot] closed 1 year ago

dependabot[bot] commented 1 year ago

Bumps ppy.osu.Framework from 2023.625.0 to 2023.716.0.

Release notes

Sourced from ppy.osu.Framework's releases.

2023.716.0

What's Changed

Full Changelog: https://github.com/ppy/osu-framework/compare/2023.715.0...2023.716.0

2023.715.0

What's Changed

Full Changelog: https://github.com/ppy/osu-framework/compare/2023.714.0...2023.715.0

2023.714.0

What's Changed

Breaking changes

GameHost.GetClipboard() is obsolete

The new way to retrieve a Clipboard instance is to resolve it via dependency injection directly. This does not require resolving the GameHost anymore:

 [BackgroundDependencyLoader]
-private void load(GameHost host)
+private void load(Clipboard clipboard)
 {
-    host?.Clipboard.SetText("example");
+    clipboard.SetText("example");
 }

Full Changelog: https://github.com/ppy/osu-framework/compare/2023.710.0...2023.714.0

2023.710.0

... (truncated)

Commits
  • 46a1944 Merge pull request #5932 from frenzibyte/revert-ios-fix
  • 922859b Revert iOS framerate display fix to resolve issues with running multi-threade...
  • 08d091c Merge pull request #5930 from peppy/increase-buffer-count-again
  • f1728b2 Add inline comment explaining staging texture pool usage
  • ba2c9cd Remove unnused StagingBufferPool
  • 3aaa6df Remove metal specific pathways in a few classes
  • 8957690 Revert vertex batch buffer change
  • 2bda3a1 Merge pull request #5929 from peppy/unbump-veldrid
  • d821aa8 Disable linear fence signal ordering rule on Metal
  • 14419a7 Revert "Bump veldrid"
  • 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 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)
dependabot[bot] commented 1 year ago

Superseded by #136.