Skip to content
This repository has been archived by the owner on Oct 10, 2021. It is now read-only.

Bump ppy.osu.Framework.Android from 2021.723.0 to 2021.929.0 #24

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Oct 1, 2021

Bumps ppy.osu.Framework.Android from 2021.723.0 to 2021.929.0.

Release notes

Sourced from ppy.osu.Framework.Android's releases.

2021.929.0

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

2021.928.0

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

2021.927.0

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

2021.924.0

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

2021.916.1

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

Breaking changes

IKeyBindingHandler<T> and IScrollBindingHandler<T> now provide UIEvents

To allow for more arguments without changing the signature of the handling methods, and also for consistency with the input flow in general, both interfaces now provide UIEvents rather than placing each parameter directly on the methods.

- public bool OnPressed(T action) { }
- public bool OnScroll(T action, float amount, bool isPrecise) { }
- public void OnReleased(T action) { }
+ public bool OnPressed(KeyBindingPressEvent<T> e) { }
+ public bool OnScroll(KeyBindingScrollEvent<T> e) { }
+ public void OnReleased(KeyBindingReleaseEvent<T> e) { }

The following regex replacements can be used to simplify migration:

Find: bool OnPressed\((\w+)\s+(\w+)\)
Replace: bool OnPressed(KeyBindingPressEvent<$1> e)

Find: void OnReleased((\w+)\s+(\w+)) Replace: void OnReleased(KeyBindingReleaseEvent<$1> e)

Find: bool OnScroll((\w+) (\w+), float \w+, bool \w+) Replace: bool OnScroll(KeyBindingScrollEvent<$1> e)

2021.916.0

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

2021.907.0

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

Breaking Changes

... (truncated)

Commits
  • 1abee44 Merge pull request #4800 from bdach/android-host-exits-immediately
  • ff511f7 Remove now-dead mobile PerformExit() overrides
  • 16cde3c Guard PerformExit() calls with CanExit checks
  • 82d262e Fix misleading IWindow.Run() xmldoc
  • 4ba0b63 Merge pull request #4784 from peppy/single-game-host-run
  • f69652d Merge branch 'master' into single-game-host-run
  • 0e7024e Merge pull request #4783 from peppy/fix-ipc-is-primary-instance
  • 8113679 Merge branch 'master' into fix-ipc-is-primary-instance
  • c6bb75d Merge pull request #4798 from smoogipoo/fix-texture-test-failure
  • 12d47f9 Merge branch 'master' into fix-texture-test-failure
  • 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.Android](https://github.com/ppy/osu-framework) from 2021.723.0 to 2021.929.0.
- [Release notes](https://github.com/ppy/osu-framework/releases)
- [Commits](ppy/osu-framework@2021.723.0...2021.929.0)

---
updated-dependencies:
- dependency-name: ppy.osu.Framework.Android
  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 1, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants