Thanks to visit codestin.com
Credit goes to Github.com

Skip to content

Tags: ppy/osu

Tags

2025.1218.0-lazer

Toggle 2025.1218.0-lazer's commit message

Verified

This commit was signed with the committer’s verified signature.
peppy Dean Herbert
Merry christmas

2025.1209.0-lazer

Toggle 2025.1209.0-lazer's commit message

Verified

This commit was signed with the committer’s verified signature.
peppy Dean Herbert
Update framework

2025.1208.0

Toggle 2025.1208.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #35923 from smoogipoo/qp-abandoned-at

Consider abandon time for user placements

2025.1205.0-lazer

Toggle 2025.1205.0-lazer's commit message

Verified

This commit was signed with the committer’s verified signature.
peppy Dean Herbert
Update framework

2025.1203.0-tachyon

Toggle 2025.1203.0-tachyon's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #35835 from Hiviexd/trim-timestamp-when-pasting

Trim editor timestamp when pasting into `TimeInfoContainer`

2025.1121.0

Toggle 2025.1121.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #35704 from minetoblend/feature/quickplay-random-p…

…anel-design-pass

2025.1121.0-tachyon

Toggle 2025.1121.0-tachyon's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #35704 from minetoblend/feature/quickplay-random-p…

…anel-design-pass

2025.1119.0-tachyon

Toggle 2025.1119.0-tachyon's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #35726 from peppy/update-framework

Update framework

2025.1107.0

Toggle 2025.1107.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix incorrect handling of user verification failure response (#35629)

`VerificationFailureResponse.RequiredSessionVerificationMethod` not
being nullable means that if it was missing in the verification
response, it would not be `null` but default to `TimedOneTimePassword`
instead, therefore showing TOTP-related error messages to users that
never enabled it rather than the user-facing message they were supposed
to.

Most easily tested on a local full-stack environment with

```diff
diff --git a/app/Libraries/SessionVerification/MailState.php b/app/Libraries/SessionVerification/MailState.php
index 305a2794ec0..3c2d15f335b 100644
--- a/app/Libraries/SessionVerification/MailState.php
+++ b/app/Libraries/SessionVerification/MailState.php
@@ -14,7 +14,7 @@ use Carbon\CarbonImmutable;

 class MailState
 {
-    private const KEY_VALID_DURATION = 600;
+    private const KEY_VALID_DURATION = 10;

     public readonly CarbonImmutable $expiresAt;
     public readonly string $key;
```

applied so that you don't have to wait 10 minutes to trigger the
failure.

2025.1105.0

Toggle 2025.1105.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #35542 from smoogipoo/mp-vote-to-skip

Implement vote-to-skip in multiplayer