The API had this for a while, but now you can use pagination and sorting in the frontend too.
Examples:
- 25 theme=medieval packages (secretly ordered by release date in descending order): https://www.quaddicted.com/db/v2/?include=theme=medieval&rows=25
- 25 theme=medieval ordered by release date ascending: https://www.quaddicted.com/db/v2/?include=theme=medieval&rows=25&sort=release_date_dt+ASC
- The next 25 theme=medieval packages: https://www.quaddicted.com/db/v2/?include=theme=medieval&rows=25&start=25&sort=release_date_dt+ASC
- Random sorting is weird, you have to pass a seed value for now, e.g. https://www.quaddicted.com/db/v2/?rows=1&sort=random_666+DESC. To get a different random result, pass a different number e g.
random_123. - 3 random speedmaps by necros: https://www.quaddicted.com/db/v2/?query=+authors:"necros"&include=type=speedmap&rows=3&sort=random_42+DESC
- 3 different random speedmaps by necros: https://www.quaddicted.com/db/v2/?query=+authors:"necros"&include=type=speedmap&rows=3&sort=random_666+DESC
There are no user-friendly elements on the webpages yet though ![]()
I will try to add at least pagination buttons soon. Interactive sorting is harder.