removed dev tag from user agent and readme
This commit is contained in:
parent
ab32dadac8
commit
babaebb742
3 changed files with 1 additions and 28 deletions
|
@ -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
|
||||||
|
|
||||||
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)!
|
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)!
|
||||||
|
|
24
TODO.md
24
TODO.md
|
@ -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
|
|
||||||
|
|
||||||
|
|
|
@ -92,7 +92,7 @@ public class RoomData {
|
||||||
public void getPlayerLink() {
|
public void getPlayerLink() {
|
||||||
try {
|
try {
|
||||||
Document doc = Jsoup.connect("https://wiimmfi.de/stats/mkw")
|
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();
|
.get();
|
||||||
Element table = doc.select("table").get(0);
|
Element table = doc.select("table").get(0);
|
||||||
Elements rows = table.select("tr");
|
Elements rows = table.select("tr");
|
||||||
|
|
Reference in a new issue