-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
osu!mania 4k/7k ranking / pp values are not present on profile overlay #30827
Comments
I've started looking into this issue and noticed that the UserRankPanel (lines 187-200) contains a TODO for the tooltip, which seems relevant. Adding a breakpoint to the encompassing method confirms it triggers when navigating to the relevant screen. However, I couldn’t find any existing user strings in the UserStrings file for the 4k/7k-specific statistics. I’ll investigate further to determine how to implement this, but I wanted to confirm: should new strings be added to UserStrings for these statistics, or is there a preferred way to structure this data in the tooltip? |
The lines you mentioned are weakly relevant, they are only relevant in the sense that the |
Hello! New dev here. Decided to tackle this issue for a school assignment, however, hit a similar roadblock to what was written above. (I couldn't get the user strings for the 4k/7k statistics) I unfortunately didn't get the code to work, however, I have uploaded my work to my personal repo in case you would like to reference some of the ideas I had. (I also didn't want to create an incomplete PR in this project to waste anyone's time) https://github.com/chadmoyashii/osu4k7kdisplayissue Feel free to take a look at it, maybe you'll find some inspiration for when you resolve this issue! Cheers |
Hello! First time contributor here. Decided to tackle this issue after noticing similar behavior between the client and web implementation. interface Variant {
country_rank: number | null;
global_rank: number | null;
mode: Ruleset;
pp: number;
variant: '4k' | '7k';
} Source: user-statistics-json.ts |
I guess also on the user card somewhere for the local user?
Discussed in #30787
Originally posted by theredpro-sj November 20, 2024
I'm not very confident in how I worded the title but the basic idea of it is that on the website when hovering global rank in the mania gamemode you also see the users 4k and 7k rank along with their peak rank like in other gamemodes (see first image). This behavior is not replicated on the lazer client as when hovering over global rank it only shows peak rank and doesn't show the 4k and 7k ranks (see second image). Basically I feel that the 4k and 7k breakdown should be shown when hovering over a users global rank like it is on the website.
The text was updated successfully, but these errors were encountered: