diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2021-05-10 21:02:29 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2021-05-10 21:02:29 -0600 |
commit | 9c960dd90600c416f966fc2cfe17dd0abb086e11 (patch) | |
tree | 75edbe5f1c4c4f808bed17920114c405a11dbc4b | |
parent | 35acd06d06dd68c4066264419b23e19c49b9ec24 (diff) | |
download | wiimmfi-watcher-9c960dd90600c416f966fc2cfe17dd0abb086e11.tar wiimmfi-watcher-9c960dd90600c416f966fc2cfe17dd0abb086e11.tar.gz wiimmfi-watcher-9c960dd90600c416f966fc2cfe17dd0abb086e11.tar.bz2 |
recreated todo list, lowered sdk level
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | TODO.md | 23 | ||||
-rw-r--r-- | app/build.gradle | 2 |
3 files changed, 25 insertions, 2 deletions
@@ -8,4 +8,4 @@ .externalNativeBuild .cxx local.properties -TODO.md + @@ -0,0 +1,23 @@ +# TODO +These are issues in Wiimmfi Watcher I am at least aware of. Please **DO NOT** submit a bug report on the Google Form or an issue here on GitHub if it is mentioned on this list, unless you found a way that the bug can crash the app. + +## Completed For Next Release +* Lowered minimum SDK to 16 (Jelly Bean 4.1) + +## Working On +* The last player in the list has the potential to hide behind the refresh button + +## Aware Of +* Fix the repeating recent friend codes +* Recent friend codes do not scroll like they should + * Problem with ConstraintLayout probably, convert to a new Layout? + +# Features I would like to add +* The watcher activity does not refresh automatically like the official website does + * Added a refresh button, but is there a better way with Jsoup? Like a new Thread? +* Create a better looking header for the watcher activity + * Add 'sections' I guess??? +* Add the Mario Kart Wii font +* Add pictures for Nintendo and CTGP tracks + + diff --git a/app/build.gradle b/app/build.gradle index baf850d..795156a 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -9,7 +9,7 @@ android { defaultConfig { applicationId "me.brysonsteck.wiimmfiwatcher" - minSdkVersion 22 + minSdkVersion 16 targetSdkVersion 30 versionCode 1 versionName "1.0" |