Issue #3 converted the highscore retrieval to JSON.
The problem with this is that previous version of the apps will now error out when trying to download highscores. This is because the older versions expect a DateTime string before the username, which it parses (old bad design from me).
What I suggest now is that we have two dreamlo leaderboards. One for version x.x and one for the new JSON parser.
This means the new version will use the new leaderboard, and the old version will use the old leaderboard.
To look like nothing changed, we can copy all the previous scores (or at least the top ten) into the new Dreamlo leaderboard so the same scores appear.
Issue #3 converted the highscore retrieval to JSON.
The problem with this is that previous version of the apps will now error out when trying to download highscores. This is because the older versions expect a
DateTime
string before the username, which it parses (old bad design from me).What I suggest now is that we have two dreamlo leaderboards. One for version x.x and one for the new JSON parser.
This means the new version will use the new leaderboard, and the old version will use the old leaderboard.
To look like nothing changed, we can copy all the previous scores (or at least the top ten) into the new Dreamlo leaderboard so the same scores appear.