aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryson Steck <steck.bryson@gmail.com>2021-05-10 13:26:03 -0600
committerBryson Steck <steck.bryson@gmail.com>2021-05-10 13:26:03 -0600
commitbabaebb74236b5a6b750c98fc24fa501b76261fa (patch)
tree9b6f1b581bf4dec402504a69d39c726175c25e37
parentab32dadac8897ca991415b9e0b4851101a60413c (diff)
downloadwiimmfi-watcher-babaebb74236b5a6b750c98fc24fa501b76261fa.tar
wiimmfi-watcher-babaebb74236b5a6b750c98fc24fa501b76261fa.tar.gz
wiimmfi-watcher-babaebb74236b5a6b750c98fc24fa501b76261fa.tar.bz2
removed dev tag from user agent and readme
-rw-r--r--README.md3
-rw-r--r--TODO.md24
-rw-r--r--app/src/main/java/me/brysonsteck/wiimmfiwatcher/wiimmfi/RoomData.java2
3 files changed, 1 insertions, 28 deletions
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");