Skip to content

Bump ppy.osu.Framework from 2021.728.0 to 2021.1127.0 - #67

Closed
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/nuget/ppy.osu.Framework-2021.1127.0
Closed

Bump ppy.osu.Framework from 2021.728.0 to 2021.1127.0#67
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/nuget/ppy.osu.Framework-2021.1127.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Dec 1, 2021

Copy link
Copy Markdown

Bumps ppy.osu.Framework from 2021.728.0 to 2021.1127.0.

Release notes

Sourced from ppy.osu.Framework's releases.

2021.1127.0

Thanks for following along! This is a tagged release (2021.1127.0).

2021.1124.0

Thanks for following along! This is a tagged release (2021.1124.0).

What's Changed

Full Changelog: ppy/osu-framework@2021.1119.0...2021.1124.0

2021.1119.0

Thanks for following along! This is a tagged release (2021.1119.0).

2021.1118.0

Thanks for following along! This is a tagged release (2021.1118.0).

Breaking Changes

KeyBindingContainer now sends key repeat events by default

KeyBindingContainers are commonly used in UI, where we expect to be able to receive key repeats. Historically this was controlled by the SendRepeats flag, but now that all events send KeyBindingPressEvent with a repeat argument, handling this legacy mode of operation was causing more issues that it was worth. The default expectation should be that repeats arrive.

For cases where key repeat may not be wanted (ie. gameplay, where your code is in complete control of user input and doesn't want to receive arbitrary key repeat events), you may opt out of receiving them by creating a subclass of KeyBindingContainer:

public class NoRepeatKeyBindingContainer : KeyBindingContainer<T>
{
    protected override bool HandleRepeats => false;
}

Alternatively, if you have only certain cases which you wish to opt out of, you can early return in your OnPressed implementation:

public bool OnPressed(KeyBindingPressEvent<MyAction> e)
{
    if (e.Repeat)
        return false;
if (e.Action == MyAction.Action)
{
   ...
}

}

... (truncated)

Commits
  • fe00cc2 Merge pull request #4913 from frenzibyte/bass-ios-x86
  • cfcc352 Merge branch 'master' into bass-ios-x86
  • 667bddb Merge pull request #4914 from smoogipoo/bass-free-safeguard
  • f691619 Refactor
  • 8cd51b5 Safeguard for switching back to the selected device
  • 5933adb Safeguard for ability to free a device
  • c30c2a2 Add x86-64 architectures back for BASS native libraries
  • 3247894 Merge pull request #4912 from smoogipoo/disable-effect-priority-in-tests
  • 8b1a3d6 Temporarily bypass FXSetPriority in NUnit runs
  • f1a67d0 Merge pull request #4910 from Susko3/hide-caret-on-host-inactive
  • 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)

Bumps [ppy.osu.Framework](https://github.com/ppy/osu-framework) from 2021.728.0 to 2021.1127.0.
- [Release notes](https://github.com/ppy/osu-framework/releases)
- [Commits](ppy/osu-framework@2021.728.0...2021.1127.0)

---
updated-dependencies:
- dependency-name: ppy.osu.Framework
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Dec 1, 2021
@dependabot @github

dependabot Bot commented on behalf of github Jan 1, 2022

Copy link
Copy Markdown
Author

Superseded by #76.

@dependabot dependabot Bot closed this Jan 1, 2022
@dependabot
dependabot Bot deleted the dependabot/nuget/ppy.osu.Framework-2021.1127.0 branch January 1, 2022 17:08
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