Skip to content

2022.407.0

Compare
Choose a tag to compare
@HelloYeew HelloYeew released this 07 Apr 07:13
· 316 commits to new-website since this release
e9170d3

Dependencies

  • Update Django to 4.0 (#275)

Account

  • Fix osu! login redirect to new page that is a default page from library (#298)

Wiki

  • Change latest rulesets list in homepage to show normal listing (#301)
  • Update installation guide image (#303)
  • Replace installation image guide with latest version of osu! (#304)
  • Change rulesets listing sort behavior to case insensitive (#305) : At first the sort behavior using Django's sort that's mean the object that use capital letter will come first. This PR change the behavior of how it sort by just lower it first before let it sort.
# Before
'rulesets': make_listing_view(Ruleset.objects.filter(hidden=False, archive=False).order_by('name')),
# After
'rulesets': make_listing_view(Ruleset.objects.filter(hidden=False, archive=False).order_by(Lower('name'))),

This update is mainly update our main framework to the new version and fix the sort behavior from the recommendation.

If you found any issues or have any suggestion you can make issue in this repositories, make a new discussions or tag me on discord dev server at #rulesets-wiki. This website will not be better without your comments. I want this website to running by community, not just me!

We are finding the new cover picture for the website. If you are an artist and you want to contribute to this website please read this, thanks!

Have a good day and have fun!