aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/build.gradle4
-rw-r--r--app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java12
-rw-r--r--app/src/main/res/layout/about_fragment.xml23
-rw-r--r--app/src/main/res/values-de/strings.xml6
-rw-r--r--app/src/main/res/values-fr/strings.xml13
-rw-r--r--app/src/main/res/values-it/strings.xml14
-rw-r--r--app/src/main/res/values-ja/strings.xml10
-rw-r--r--app/src/main/res/values/strings.xml4
8 files changed, 60 insertions, 26 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 5e43102..d0d4a21 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -11,8 +11,8 @@ android {
applicationId "me.brysonsteck.wiimmfiwatcher"
minSdkVersion 19
targetSdkVersion 30
- versionCode 3
- versionName "1.1.1"
+ versionCode 4
+ versionName "1.1.2"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
diff --git a/app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java b/app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java
index d327ca9..87f3def 100644
--- a/app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java
+++ b/app/src/main/java/me/brysonsteck/wiimmfiwatcher/AboutFragment.java
@@ -4,6 +4,8 @@ import android.annotation.SuppressLint;
import android.content.res.Configuration;
import android.graphics.Color;
import android.os.Bundle;
+import android.text.Html;
+import android.text.Spanned;
import android.text.method.LinkMovementMethod;
import android.transition.TransitionInflater;
import android.view.View;
@@ -16,8 +18,6 @@ import androidx.fragment.app.Fragment;
import com.google.android.material.appbar.MaterialToolbar;
-import java.util.Objects;
-
public class AboutFragment extends Fragment {
View aboutButton;
MaterialToolbar toolbar;
@@ -58,6 +58,7 @@ public class AboutFragment extends Fragment {
TextView contact = view.findViewById(R.id.contact_text);
TextView bugs = view.findViewById(R.id.bugs_text);
TextView license = view.findViewById(R.id.license_text);
+ TextView version = view.findViewById(R.id.version_text);
aboutWatcher.setText(R.string.about_watcher);
@@ -82,6 +83,13 @@ public class AboutFragment extends Fragment {
license.setMovementMethod(LinkMovementMethod.getInstance());
license.setText(R.string.license);
+
+ version.setClickable(true);
+ version.setMovementMethod(LinkMovementMethod.getInstance());
+
+ Spanned version_text = Html.fromHtml(getResources().getString(R.string.version, BuildConfig.VERSION_NAME));
+
+ version.setText(version_text);
}
@Override
diff --git a/app/src/main/res/layout/about_fragment.xml b/app/src/main/res/layout/about_fragment.xml
index 5484946..1799888 100644
--- a/app/src/main/res/layout/about_fragment.xml
+++ b/app/src/main/res/layout/about_fragment.xml
@@ -89,6 +89,18 @@
app:layout_constraintTop_toBottomOf="@+id/github_text" />
<TextView
+ android:id="@+id/textView2"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:text="@string/version_header"
+ android:textSize="24sp"
+ android:textStyle="bold"
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintHorizontal_bias="0.448"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toBottomOf="@+id/license_text" />
+
+ <TextView
android:id="@+id/contact_text"
android:layout_width="0dp"
android:layout_height="wrap_content"
@@ -112,13 +124,22 @@
android:id="@+id/license_text"
android:layout_width="0dp"
android:layout_height="wrap_content"
- android:paddingBottom="65dp"
+ android:paddingBottom="15dp"
android:text="TextView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/textView4" />
<TextView
+ android:id="@+id/version_text"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:paddingBottom="65dp"
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toBottomOf="@+id/textView2" />
+
+ <TextView
android:id="@+id/textView13"
android:layout_width="0dp"
android:layout_height="wrap_content"
diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml
index 9d21f1b..a19c3dc 100644
--- a/app/src/main/res/values-de/strings.xml
+++ b/app/src/main/res/values-de/strings.xml
@@ -4,8 +4,8 @@
<string name="about_fragment_title">Über Wiimmfi Watcher</string>
<string name="about_me">Hallo! Ich heiße Bryson Steck. Ich bin ein Student, der Informatik studiert. Dies ist meine erste offizielle Bewerbung, die ich pflege. Diese ganze \"Anwendung im Google Play Store\" ist für mich neu. Bitte haben Sie etwas Geduld, während ich lerne, wie man so etwas pflegt. Ich hoffe es gefällt dir!</string>
<string name="about_watcher">Wiimmfi Watcher ist eine inoffizielle Anwendung für ein Schulprojekt erstellt, dass ich beschlossen habe, in eine volle Anwendung zu aktivieren. Diese Anwendung wurde macht eine einfache Verknüpfung zu der Wiimmfi Website und Anzeigedaten in einer mobilen freundlichen Art und Weise zur Verfügung zu stellen, da die offizielle Website nicht über eine Mobilfunkversion. Kostenlos und Open Source können Sie Ihre Wiimmfi-Spiele schnell und einfach auf Ihrem Handy ansehen.</string>
- <string name="github">Der gesamte Code in diesem Projekt ist Open Source in meinem GitHub-Repository <a href="https://github.com/brysonsteck/wiimmfi-watcher/tree/master">hier.</a> Sie können diesen Code verwenden, um Code und erweitern Sie ihn unter der <a href="https://github.com/brysonsteck/wiimmfi-watcher/tree/master/LICENSE"> GNU General Public License </a> (Version 3).</string>
- <string name="bugs">Apropos Fehler, haben Sie einen Fehler gefunden? Möchten Sie Feedback zur App geben? Ich würde es gerne hören! Stellen Sie zunächst sicher, dass das gefundene Problem nicht in meiner Aufgabenliste aufgeführt ist. Es ist möglich, dass ich es bereits weiß oder daran arbeite. Wenn Ihr Problem nicht in der Aufgabenliste behandelt wird, können Sie hier ein Problem in meinem GitHub-Repository erstellen. Wenn Sie nicht wissen, wie man GitHub verwendet, können Sie stattdessen dieses Google-Formular ausfüllen.</string>
+ <string name="github">Der gesamte Code in diesem Projekt ist Open Source in meinem GitHub-Repository <a href="https://github.com/brysonsteck/wiimmfi-watcher/tree/master">hier.</a> Sie können diesen Code verwenden, um Code und erweitern Sie ihn unter der <a href="https://github.com/brysonsteck/wiimmfi-watcher/tree/master/LICENSE">GNU General Public License</a> (Version 3).</string>
+ <string name="bugs">Apropos Fehler, haben Sie einen Fehler gefunden? Möchten Sie Feedback zur App geben? Ich würde es gerne hören! Stellen Sie zunächst sicher, dass das gefundene Problem nicht in meiner <a href='https://github.com/brysonsteck/wiimmfi-watcher/blob/master/TODO.md'>Aufgabenliste</a> aufgeführt ist. Es ist möglich, dass ich es bereits weiß oder daran arbeite. Wenn Ihr Problem nicht in der Aufgabenliste behandelt wird, können Sie <a href='https://github.com/brysonsteck/wiimmfi-watcher/issues'>hier</a> ein Problem in meinem GitHub-Repository erstellen. Wenn Sie nicht wissen, wie man GitHub verwendet, können Sie stattdessen dieses <a href='https://docs.google.com/forms/d/e/1FAIpQLSd6qCONAP2tsbHPgzu_CdZcHVHL5nx7q0XFqrVfExEc84kqUQ/viewform?usp=sf_link'>Google-Formular</a> ausfüllen.</string>
<string name="contact">Wenn Sie mich aus irgendeinem Grund erreichen möchten, der nichts mit Fehlerberichten oder dieser App im Allgemeinen zu tun hat, können Sie mich per E-Mail unter <a href="mailto:steck.bryson@gmail.com">steck.bryson@gmail.com</a> oder auf Discord unter bryzinga#9971.</string>
<string name="license">&#169; Copyright 2021 Bryson Steck\n\nWiimmfi Watcher ist unter der GNU General Public License Version 3 verfügbar. Sie können die Lizenz <a href = 'https://github.com/brysonsteck/wiimmfi-watcher/tree/master/LICENSE'>hier.</a>\n\nWiimmfi Watcher is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.\n\nWiimmfi Watcher is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with Wiimmfi Watcher. If not, see &lt;<a href='https://www.gnu.org/licenses/'>https://www.gnu.org/licenses/</a>&gt;.\n\nWiimmfi Watcher ist Freie Software: Sie können es unter den Bedingungen der GNU General Public License, wie von der Free Software Foundation, Version 3 der Lizenz oder (nach Ihrer Wahl) jeder neueren veröffentlichten Version, weiter verteilen und/oder modifizieren.\n\nWiimmfi Watcher wird in der Hoffnung bereitgestellt, dass es nützlich sein wird, jedoch OHNE JEDE GEWÄHR,; sogar ohne die implizite Gewähr der MARKTFÄHIGKEIT oder EIGNUNG FÜR EINEN BESTIMMTEN ZWECK. Siehe die GNU General Public License für weitere Einzelheiten.\n\nSie sollten eine Kopie der GNU General Public License zusammen mit diesem Programm erhalten haben. Wenn nicht, siehe &lt;<a href='https://www.gnu.org/licenses/'>https://www.gnu.org/licenses/</a>&gt;.</string>
<string name="watch">Uhr</string>
@@ -27,4 +27,6 @@
<string name="contact_header">Kontakt</string>
<string name="bugs_header">Fehler und Feedback</string>
<string name="license_header">Lizenz und Copyright</string>
+ <string name="version_header">Ausführung</string>
+ <string name="version">Sie verwenden die Wiimmfi Watcher Version %1$s aus. Sie können die Versionshinweise für diese Version <![CDATA[<a href="https://github.com/brysonsteck/wiimmfi-watcher/releases/">hier</a>]]> anzeigen.</string>
</resources> \ No newline at end of file
diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml
index 4a973e1..d6c9660 100644
--- a/app/src/main/res/values-fr/strings.xml
+++ b/app/src/main/res/values-fr/strings.xml
@@ -25,17 +25,16 @@
<string name="jsoup_error">Oups! Wiimmfi Watcher n\'a pas pu se connecter aux serveurs Wiimmfi. Cela peut être dû au fait que vous n\'êtes pas connecté à Internet, mais cela peut être autre chose. Voici l\'erreur:\n\n%1$s\n\nSi l\'erreur est du type «Unable to resolve host» ou «Timeout», vous rencontrez probablement des problèmes Internet. Assurez-vous que vous êtes connecté à Internet, puis cliquez sur le bouton d\'actualisation ou appuyez sur retour pour regarder un nouveau code ami.\n\nSi l\'erreur est autre que cela ou si l\'erreur persiste, assurez-vous que le site Web de Wiimmfi est en cours d\'exécution. Sinon, veuillez capturer cet écran et soumettre un rapport de bogue en cliquant sur l\'icône À propos de la page principale.</string>
<string name="github">Tout le code de ce projet est open source sur mon référentiel GitHub <a href="https://github.com/brysonsteck/wiimmfi-watcher/tree/master">ici.</a> Vous êtes libre d\'utiliser ce code et de le développer sous la <a href='https://github.com/brysonsteck/wiimmfi-watcher/tree/master/LICENSE'>licence publique générale GNU</a> (version 3).</string>
<string name="bugs">En parlant de bugs, avez-vous trouvé un bogue? Souhaitez-vous faire part de vos commentaires sur l\'application? J\'adorerais l\'entendre! Tout d\'abord, assurez-vous que le problème que vous avez trouvé ne figure pas dans ma <a href='https://github.com/brysonsteck/wiimmfi-watcher/blob/master/TODO.md'>liste de tâches.</a> Il est possible que j\'en sois déjà conscient ou que j\'y travaille. Si votre problème n\'est pas traité dans la liste des tâches, vous pouvez créer un problème sur mon référentiel GitHub <a href='https://github.com/brysonsteck/wiimmfi-watcher/issues'>ici.</a> Si vous ne savez pas comment utiliser GitHub, vous pouvez remplir ce <a href='https://docs.google.com/forms/d/e/1FAIpQLSd6qCONAP2tsbHPgzu_CdZcHVHL5nx7q0XFqrVfExEc84kqUQ/viewform?usp=sf_link'>formulaire Google</a> à la place.</string>
- <string name="license">&#169; Copyright 2021 Bryson Steck Wiimmfi Watcher est disponible sous la licence publique générale GNU version 3. Vous pouvez consulter la licence ici.\n\nWiimmfi Watcher is free software: you can redistribute it and/or modify
+ <string name="license">&#169; Copyright 2021 Bryson Steck\n\nWiimmfi Watcher est disponible sous la licence publique générale GNU version 3. Vous pouvez consulter la licence <a href='https://github.com/brysonsteck/wiimmfi-watcher/tree/master/LICENSE'>ici.</a>\n\nWiimmfi Watcher is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.\n\n
-
- Wiimmfi Watcher is distributed in the hope that it will be useful,
+ (at your option) any later version.\n\nWiimmfi Watcher is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.\n\n
-
- You should have received a copy of the GNU General Public License
+ GNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License
along with Wiimmfi Watcher. If not, see &lt;<a href="https://www.gnu.org/licenses/">https://www.gnu.org/licenses/</a>&gt;.</string>
<string name="contact">Si vous souhaitez me contacter pour une raison non liée aux rapports de bogues ou à cette application en général, vous pouvez me contacter par e-mail à <a href="mailto:steck.bryson@gmail.com">steck.bryson@gmail.com</a> ou sur Discord à bryzinga#9971.</string>
+ <string name="version_header">Version</string>
+ <string name="version">Vous exécutez la version %1$s de Wiimmfi Watcher. Vous pouvez consulter les notes de publication de cette version <![CDATA[<a href="https://github.com/brysonsteck/wiimmfi-watcher/releases/">ici.</a>]]></string>
+
</resources> \ No newline at end of file
diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml
index b6a8197..df21294 100644
--- a/app/src/main/res/values-it/strings.xml
+++ b/app/src/main/res/values-it/strings.xml
@@ -4,10 +4,10 @@
<string name="about_fragment_title">Informazioni su Wiimmfi Watcher</string>
<string name="about_me">Ciao! Il mio nome è Bryson Steck. Sono uno studente che studia informatica. Questa è la mia prima applicazione ufficiale che sto mantenendo. L\'intera \"applicazione sul Google Play Store\" è nuova per me, quindi sii paziente mentre sto imparando a mantenere qualcosa di simile. Spero ti piaccia!</string>
<string name="about_watcher">Wiimmfi Watcher è un\'applicazione NON UFFICIALE creata per un progetto scolastico che ho deciso di trasformare in un\'applicazione completa. Questa applicazione è stata realizzata per fornire un facile collegamento al sito web Wiimmfi e visualizzare i dati in modo mobile friendly, dal momento che il sito ufficiale non ha una versione mobile friendly. Gratuito e open source, puoi guardare le tue partite Wiimmfi sul tuo telefono in modo semplice e veloce.</string>
- <string name="github">Tutto il codice di questo progetto è open source nel mio repository GitHub <a href="https://github.com/brysonsteck/wiimmfi-watcher/tree/master"> qui </a>. Puoi usarlo liberamente codice ed espanderlo sotto la <a href="https://github.com/brysonsteck/wiimmfi-watcher/tree/master/LICENSE">GNU General Public License</a> (Versione 3).</string>
- <string name="bugs">A proposito di insetti, hai trovato un bug? Vuoi fornire un feedback sull\'app? Mi piacerebbe sentirlo! Innanzitutto, assicurati che il problema che hai trovato non sia elencato nel mio <a href="https://github.com/brysonsteck/wiimmfi-watcher/blob/master/TODO.md">elenco di cose da fare</a>. possibile che ne sia già consapevole o ci stia lavorando. Se il tuo problema non viene risolto nell\'elenco delle cose da fare, puoi creare un problema nel mio repository GitHub <a href="https://github.com/brysonsteck/wiimmfi-watcher/issues">qui.</a> Se non sai come utilizzare GitHub, puoi compilare questo <a href="https://docs.google.com/forms/d/e/1FAIpQLSd6qCONAP2tsbHPgzu_CdZcHVHL5nx7q0XFqrVfExEc84kqUQ/viewform?usp=sf_link">Google Form</a>invece.</string>
- <string name="contact">Se desideri contattarmi per qualsiasi motivo non correlato alle segnalazioni di bug o all\'app in generale, puoi contattarmi tramite e-mail all\'indirizzo <a href="mailto:steck.bryson@gmail.com"> steck.bryson @ gmail.com </a> o su Discord all\'indirizzo bryzinga # 9971.</string>
- <string name="license">&#169; Copyright 2021 Bryson Steck\n\nWiimmfi Watcher è disponibile con GNU General Public License Versione 3. Puoi visualizzare la licenza <a href='https: //github.com/brysonsteck/wiimmfi-watcher/tree/master/LICENSE'>qui.</a>\n\nWiimmfi Watcher is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.\n\nWiimmfi Watcher is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with Wiimmfi Watcher. If not, see &lt;<a href='https://www.gnu.org/licenses/'>https://www.gnu.org/licenses/</a>&gt;.</string>
+ <string name="github">Tutto il codice di questo progetto è open source nel mio repository GitHub <a href="https://github.com/brysonsteck/wiimmfi-watcher/tree/master">qui</a>. Puoi usarlo liberamente codice ed espanderlo sotto la <a href="https://github.com/brysonsteck/wiimmfi-watcher/tree/master/LICENSE">GNU General Public License</a> (Versione 3).</string>
+ <string name="bugs">A proposito di insetti, hai trovato un bug? Vuoi fornire un feedback sull\'app? Mi piacerebbe sentirlo! Innanzitutto, assicurati che il problema che hai trovato non sia elencato nel mio <a href="https://github.com/brysonsteck/wiimmfi-watcher/blob/master/TODO.md">elenco di cose da fare</a>. possibile che ne sia già consapevole o ci stia lavorando. Se il tuo problema non viene risolto nell\'elenco delle cose da fare, puoi creare un problema nel mio repository GitHub <a href="https://github.com/brysonsteck/wiimmfi-watcher/issues">qui.</a> Se non sai come utilizzare GitHub, puoi compilare questo <a href="https://docs.google.com/forms/d/e/1FAIpQLSd6qCONAP2tsbHPgzu_CdZcHVHL5nx7q0XFqrVfExEc84kqUQ/viewform?usp=sf_link">Google Form</a> invece.</string>
+ <string name="contact">Se desideri contattarmi per qualsiasi motivo non correlato alle segnalazioni di bug o all\'app in generale, puoi contattarmi tramite e-mail all\'indirizzo <a href="mailto:steck.bryson@gmail.com">steck.bryson@gmail.com</a> o su Discord all\'indirizzo bryzinga # 9971.</string>
+ <string name="license">&#169; Copyright 2021 Bryson Steck\n\nWiimmfi Watcher è disponibile con GNU General Public License Versione 3. Puoi visualizzare la licenza <a href='https://github.com/brysonsteck/wiimmfi-watcher/tree/master/LICENSE'>qui.</a>\n\nWiimmfi Watcher is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.\n\nWiimmfi Watcher is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with Wiimmfi Watcher. If not, see &lt;<a href='https://www.gnu.org/licenses/'>https://www.gnu.org/licenses/</a>&gt;.</string>
<string name="watch">Orologio</string>
<string name="watching">Guardare %1$s</string>
<string name="enter_fc">Inserisci un codice amico per guardare</string>
@@ -27,6 +27,6 @@
<string name="error_fc_syntax">ERRORE: inserisci un codice amico nel formato XXXX-XXXX-XXXX</string>
<string name="header_null_error">Questo giocatore non è online, non è all\'interno di una stanza o non esiste. Fai clic sul pulsante di aggiornamento per riprovare o fai clic sul pulsante Indietro per inserire un codice amico diverso.</string>
<string name="jsoup_error">Ops! Wiimmfi Watcher non è riuscito a connettersi ai server Wiimmfi. Potrebbe essere che non sei connesso a Internet, ma potrebbe essere qualcos\'altro. Ecco l\'errore: %1$s Se l\'errore è sulla falsariga di \"Unable to resolve host\" o \"Timeout\", probabilmente si sta avendo problemi di internet. Assicurati di essere connesso a Internet, quindi fai clic sul pulsante di aggiornamento o premi Indietro per guardare un nuovo codice amico. Se l\'errore è diverso da quello o se l\'errore persiste, assicurati che il sito Web di Wiimmfi sia attualmente in esecuzione. Altrimenti, fai uno screenshot di questa schermata e invia una segnalazione di bug facendo clic sull\'icona Informazioni sulla pagina principale.</string>
- o su Discord all\'indirizzo bryzinga # 9971.
-
- </resources> \ No newline at end of file
+ <string name="version_header">Versione</string>
+ <string name="version">Stai eseguendo Wiimmfi Watcher versione %1$s. È possibile visualizzare le note di rilascio per questa versione <![CDATA[<a href="https://github.com/brysonsteck/wiimmfi-watcher/releases/">qui.</a>]]></string>
+</resources> \ No newline at end of file
diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml
index c734293..0e0c5d6 100644
--- a/app/src/main/res/values-ja/strings.xml
+++ b/app/src/main/res/values-ja/strings.xml
@@ -22,9 +22,11 @@
<string name="conn_fail">接続に失敗する</string>
<string name="error_fc_syntax">エラー:XXXX-XXXX-XXXXの形式でフレンドコードを挿入してください</string>
<string name="header_null_error">このプレーヤーはオンラインではないか、部屋の中にいないか、存在しません。 更新ボタンをクリックして再試行するか、戻るボタンをクリックして別のフレンドコードを入力してください。</string>
- <string name="jsoup_error">おっと! WiimmfiWatcherはWiimmfiサーバーに接続できませんでした。 これは、インターネットに接続していない可能性がありますが、他の何かである可能性があります。 エラーは次のとおりです。\n\n%1$s\n\nエラーが「Unable to resolve host」または「Timeout」の行に沿っている場合は、インターネットに問題がある可能性があります。 インターネットに接続していることを確認してから、更新ボタンをクリックするか、もう一度押して新しいフレンドコードを確認してください。\n\nエラーがそれ以外の場合、またはエラーが続く場合は、WiimmfiのWebサイトが現在実行されていることを確認してください。 それ以外の場合は、この画面のスクリーンショットを撮り、メインページの[バージョン情報]アイコンをクリックしてバグレポートを送信してください。</string>
- <string name="github">このプロジェクトのすべてのコードは、私のGitHubリポジトリ<a href='https://github.com/brysonsteck/wiimmfi-watcher/tree/master'>ここ</a>のオープンソースです。 このコードは自由に使用でき、<a href='https://github.com/brysonsteck/wiimmfi-watcher/tree/master/LICENSE'>(GNU一般公衆ライセンス)</a>(バージョン3)の下で拡張できます。</string>
- <string name="bugs">バグといえば、バグを見つけましたか? アプリに関するフィードバックを提供しますか? 聞いてみたいです! まず、見つけた問題が私の<a href='https://github.com/brysonsteck/wiimmfi-watcher/blob/master/TODO.md'>(やることリスト)</a>にリストされていないことを確認してください。 私はすでにそれを知っているか、それに取り組んでいる可能性があります。 To Doリストで問題が解決されていない場合は、GitHubリポジトリ<a href='https://github.com/brysonsteck/wiimmfi-watcher/issues'>(ここ)</a>で問題を作成できます。 GitHubの使用方法がわからない場合は、代わりにこれ<a href='https://docs.google.com/forms/d/e/1FAIpQLSd6qCONAP2tsbHPgzu_CdZcHVHL5nx7q0XFqrVfExEc84kqUQ/viewform?usp=sf_link'>(Googleフォーム)</a>に記入できます。</string>
- <string name="license">&#169; Copyright 2021 Bryson Steck\n\nWiimmfi Watcherは、GNU一般公衆ライセンスバージョン3で利用できます。ライセンスはここで確認できます<a href='https://github.com/brysonsteck/wiimmfi-watcher/tree/master/LICENSE'>(こちら)。</a>\n\nWiimmfi Watcher is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.\n\nWiimmfi Watcher is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with Wiimmfi Watcher. If not, see &lt;<a href="https://www.gnu.org/licenses/">https://www.gnu.org/licenses/</a>&gt;.</string>
+ <string name="jsoup_error">おっと! Wiimmfi WatcherはWiimmfiサーバーに接続できませんでした。 これは、インターネットに接続していない可能性がありますが、他の何かである可能性があります。 エラーは次のとおりです。\n\n%1$s\n\nエラーが「Unable to resolve host」または「Timeout」の行に沿っている場合は、インターネットに問題がある可能性があります。 インターネットに接続していることを確認してから、更新ボタンをクリックするか、もう一度押して新しいフレンドコードを確認してください。\n\nエラーがそれ以外の場合、またはエラーが続く場合は、WiimmfiのWebサイトが現在実行されていることを確認してください。 それ以外の場合は、この画面のスクリーンショットを撮り、メインページの[バージョン情報]アイコンをクリックしてバグレポートを送信してください。</string>
+ <string name="github">このプロジェクトのすべてのコードは、私のGitHubリポジトリ<a href='https://github.com/brysonsteck/wiimmfi-watcher/tree/master'>ここ</a>のオープンソースです。 このコードは自由に使用でき、<a href='https://github.com/brysonsteck/wiimmfi-watcher/tree/master/LICENSE'>GNU一般公衆ライセンス</a>(バージョン3)の下で拡張できます。</string>
+ <string name="bugs">バグといえば、バグを見つけましたか? アプリに関するフィードバックを提供しますか? 聞いてみたいです! まず、見つけた問題が私の<a href='https://github.com/brysonsteck/wiimmfi-watcher/blob/master/TODO.md'>やることリスト</a>にリストされていないことを確認してください。 私はすでにそれを知っているか、それに取り組んでいる可能性があります。 To Doリストで問題が解決されていない場合は、GitHubリポジトリ<a href='https://github.com/brysonsteck/wiimmfi-watcher/issues'>ここ</a>で問題を作成できます。 GitHubの使用方法がわからない場合は、代わりにこれ<a href='https://docs.google.com/forms/d/e/1FAIpQLSd6qCONAP2tsbHPgzu_CdZcHVHL5nx7q0XFqrVfExEc84kqUQ/viewform?usp=sf_link'>Googleフォーム</a>に記入できます。</string>
+ <string name="license">&#169; Copyright 2021 Bryson Steck\n\nWiimmfi Watcherは、GNU一般公衆ライセンスバージョン3で利用できます。ライセンスはここで確認できます<a href='https://github.com/brysonsteck/wiimmfi-watcher/tree/master/LICENSE'>こちら。</a>\n\nWiimmfi Watcher is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.\n\nWiimmfi Watcher is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with Wiimmfi Watcher. If not, see &lt;<a href="https://www.gnu.org/licenses/">https://www.gnu.org/licenses/</a>&gt;.</string>
<string name="contact">バグレポートやこのアプリ全般とは関係のない理由で私を捕まえたい場合は、電子メール<a href='mailto:steck.bryson@gmail.com'>(steck.bryson@gmail.com)</a>またはDiscord(bryzinga#9971)で私に連絡できます。</string>
+ <string name="version_header">バージョン</string>
+ <string name="version">Wiimmfi Watcherバージョン%1$sを実行しています。このバージョンのリリースノートは<![CDATA[<a href="https://github.com/brysonsteck/wiimmfi-watcher/releases/">こちら</a>]]>でご覧いただけます。</string>
</resources> \ No newline at end of file
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index cd7696e..e254585 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -6,13 +6,15 @@
<string name="about_watcher">Wiimmfi Watcher is an UNOFFICIAL application created for a school project that I have decided to turn into a full application. This application was made to provide an easy shortcut to the Wiimmfi website and display data in a mobile friendly way, since the official website doesn\'t have a mobile friendly version. Free and open source, you can watch your Wiimmfi matches on your phone in a quick and easy way. </string>
<string name="github">All of the code in this project is open source on my GitHub repository <a href='https://github.com/brysonsteck/wiimmfi-watcher/tree/master'>here.</a> You are free to use this code and expand upon it under the <a href='https://github.com/brysonsteck/wiimmfi-watcher/tree/master/LICENSE'>GNU General Public License</a> (Version 3).</string>
<string name="bugs">Speaking of bugs, did you find a bug? Do you want to provide feedback on the app? I\'d love to hear it! First, make sure that the issue you found is not listed on my <a href='https://github.com/brysonsteck/wiimmfi-watcher/blob/master/TODO.md'>todo list.</a> It\'s possible I\'m already aware of it or working on it. If your issue is not addressed on the todo list, then you can create an issue on my GitHub repository <a href='https://github.com/brysonsteck/wiimmfi-watcher/issues'>here.</a> If you don\'t know how to use GitHub, you can fill out this <a href='https://docs.google.com/forms/d/e/1FAIpQLSd6qCONAP2tsbHPgzu_CdZcHVHL5nx7q0XFqrVfExEc84kqUQ/viewform?usp=sf_link'>Google Form</a> instead.</string>
- <string name="license">&#169; Copyright 2021 Bryson Steck Wiimmfi Watcher is available under the GNU General Public License Version 3. You can view the license <a href="https://github.com/brysonsteck/wiimmfi-watcher/tree/master/LICENSE">here.</a> Wiimmfi Watcher is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Wiimmfi Watcher is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Wiimmfi Watcher. If not, see &lt;<a href="https://www.gnu.org/licenses/">https://www.gnu.org/licenses/</a>&gt;.</string>
+ <string name="license">&#169; Copyright 2021 Bryson Steck\n\nWiimmfi Watcher is available under the GNU General Public License Version 3. You can view the license <a href="https://github.com/brysonsteck/wiimmfi-watcher/tree/master/LICENSE">here.</a>\n\nWiimmfi Watcher is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.\n\nWiimmfi Watcher is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with Wiimmfi Watcher. If not, see &lt;<a href="https://www.gnu.org/licenses/">https://www.gnu.org/licenses/</a>&gt;.</string>
<string name="contact">If you would like to get a hold of me for any reason unrelated to bug reports or this app in general, you can contact me through email at <a href='mailto:steck.bryson@gmail.com'>steck.bryson@gmail.com</a> or on Discord at bryzinga#9971.</string>
<string name="watch">Watch</string>
<string name="watching">Watching %1$s</string>
<string name="enter_fc">Enter a friend code to watch</string>
<string name="recent_fc">Recently watched friend codes:</string>
+ <string name="version_header">Version</string>
+ <string name="version">You are running Wiimmfi Watcher version %1$s. You can view the release notes for this version <![CDATA[<a href="https://github.com/brysonsteck/wiimmfi-watcher/releases/">here.</a>]]></string>
<string name="about_watcher_header">About Wiimmfi Watcher</string>
<string name="about_me_header">About Me</string>