From babaebb74236b5a6b750c98fc24fa501b76261fa Mon Sep 17 00:00:00 2001 From: Bryson Steck Date: Mon, 10 May 2021 13:26:03 -0600 Subject: removed dev tag from user agent and readme --- README.md | 3 --- TODO.md | 24 ---------------------- .../wiimmfiwatcher/wiimmfi/RoomData.java | 2 +- 3 files changed, 1 insertion(+), 28 deletions(-) delete mode 100644 TODO.md diff --git a/README.md b/README.md index 08f73e2..564170f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,3 @@ -## This is the `dev` branch!! -**You are on the `dev` branch for Wiimmfi Watcher.** This is seperate from the `master` branch, which contains the currently most stable version (which is the version currently avaliable on the Google Play Store), while this branch is made for me to work on the app without changing currently stable code. If you are looking for the `master` branch, [click here.](https://github.com/brysonsteck/wiimmfi-watcher/tree/master) - # Wiimmfi Watcher Wiimmfi Watcher is an Android application that allows you to watch Mario Kart Wii gameplay by simply entering your friend code. This application can be found on the Google Play Store here (link goes here when created)! diff --git a/TODO.md b/TODO.md deleted file mode 100644 index 00baa37..0000000 --- a/TODO.md +++ /dev/null @@ -1,24 +0,0 @@ -# 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 - -## Working On -* The last player in the list has the potential to hide behind the refresh button -* Create the app on the Play Store -* Create a meaningful README - -## 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/src/main/java/me/brysonsteck/wiimmfiwatcher/wiimmfi/RoomData.java b/app/src/main/java/me/brysonsteck/wiimmfiwatcher/wiimmfi/RoomData.java index 284b735..64afedc 100644 --- a/app/src/main/java/me/brysonsteck/wiimmfiwatcher/wiimmfi/RoomData.java +++ b/app/src/main/java/me/brysonsteck/wiimmfiwatcher/wiimmfi/RoomData.java @@ -92,7 +92,7 @@ public class RoomData { public void getPlayerLink() { try { Document doc = Jsoup.connect("https://wiimmfi.de/stats/mkw") - .userAgent("Wiimmfi Watcher for Android (https://github.com/brysonsteck/wiimmfi-watcher) (Developer testing)") + .userAgent("Wiimmfi Watcher for Android (https://github.com/brysonsteck/wiimmfi-watcher)") .get(); Element table = doc.select("table").get(0); Elements rows = table.select("tr"); -- cgit v1.2.3