From 4cfdcdb23c1aa05ce0283d231d223a5c455bc624 Mon Sep 17 00:00:00 2001
From: aayush262 <99584765+aayush2622@users.noreply.github.com>
Date: Wed, 1 Nov 2023 21:46:43 +0530
Subject: [PATCH 1/5] Added some screenshots
---
README.md | 16 +++++++++++++++-
1 file changed, 15 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 411408e7..14c92949 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
-
+
@@ -43,6 +43,20 @@ Dantotsu is crafted from the ashes of Saikou and is based on simplistic yet stat
- **AVAILABLE MANGA SOURCES:** None built-in! Add your own extensions in the settings menu. (Dantotsu has no affiliation with any of the extensions)
+## Screenshots 📸
+
+Here are some screenshots of Dantotsu:
+
+
+
+
+
+
+
+
+
+
+
## PLANNED STUFF 📝
- TV Support 📺
From 231c9c5b988fb6574bb06d5c76048f0944cdaa53 Mon Sep 17 00:00:00 2001
From: aayush262
Date: Thu, 2 Nov 2023 21:34:00 +0530
Subject: [PATCH 2/5] fixed typo
---
README.md | 2 +-
app/src/main/res/values/strings.xml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index 14c92949..c8fed8b0 100644
--- a/README.md
+++ b/README.md
@@ -54,7 +54,7 @@ Here are some screenshots of Dantotsu:
-
+
## PLANNED STUFF 📝
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index 4653204f..3b52f524 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -624,7 +624,7 @@
View Manga
Force Legacy Installer
Extensions
- skip loading extension icons
+ Skip loading extension icons
Use Material You
Extension-specific DNS
Theme:
From da5c480ba755da5e5dcaafa4943e2e71de8d7fdf Mon Sep 17 00:00:00 2001
From: aayush262 <99584765+aayush2622@users.noreply.github.com>
Date: Fri, 3 Nov 2023 20:07:36 +0530
Subject: [PATCH 3/5] added website link
---
README.md | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index c8fed8b0..c9881af2 100644
--- a/README.md
+++ b/README.md
@@ -83,9 +83,10 @@ You can come hang out with our awesome community, request new features, and repo
-### VISIT FOR MORE INFORMATION 🌐
+### VISIT OUR WEBSITE FOR MORE INFORMATION 🌐
+
+[](https://dantotsu.app/)
-No website yet (WIP)😔
## DISCLAIMER 🚫
From 1059a3c17e18dda9a0162f2dfffbe7acb19237db Mon Sep 17 00:00:00 2001
From: elucubro <114061880+elucubro@users.noreply.github.com>
Date: Sat, 4 Nov 2023 15:12:09 +0800
Subject: [PATCH 4/5] when video size is 0mb, display unknown size instead
---
.../java/ani/dantotsu/media/anime/SelectorDialogFragment.kt | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/app/src/main/java/ani/dantotsu/media/anime/SelectorDialogFragment.kt b/app/src/main/java/ani/dantotsu/media/anime/SelectorDialogFragment.kt
index a9761811..3690a276 100644
--- a/app/src/main/java/ani/dantotsu/media/anime/SelectorDialogFragment.kt
+++ b/app/src/main/java/ani/dantotsu/media/anime/SelectorDialogFragment.kt
@@ -244,7 +244,8 @@ class SelectorDialogFragment : BottomSheetDialogFragment() {
if (video.format == VideoType.CONTAINER) {
binding.urlSize.visibility = if (video.size != null) View.VISIBLE else View.GONE
binding.urlSize.text =
- (if (video.extraNote != null) " : " else "") + DecimalFormat("#.##").format(video.size ?: 0).toString() + " MB"
+ // if video size is null or 0, show "Unknown Size" else show the size in MB
+ (if (video.extraNote != null) " : " else "") + (if (video.size == 0) "Unknown Size" else (DecimalFormat("#.##").format(video.size ?: 0).toString()+ " MB"))
}
else {
binding.urlQuality.text = "Multi Quality"
From 3dac48ced819d2494c43e155135cc33756483da3 Mon Sep 17 00:00:00 2001
From: aayush262
Date: Sun, 5 Nov 2023 12:45:38 +0530
Subject: [PATCH 5/5] Changed "skip loading extension icons" icon
---
app/src/main/res/drawable/ic_round_no_icon.xml | 9 +++++++++
app/src/main/res/layout/activity_settings.xml | 2 +-
2 files changed, 10 insertions(+), 1 deletion(-)
create mode 100644 app/src/main/res/drawable/ic_round_no_icon.xml
diff --git a/app/src/main/res/drawable/ic_round_no_icon.xml b/app/src/main/res/drawable/ic_round_no_icon.xml
new file mode 100644
index 00000000..dd5404b1
--- /dev/null
+++ b/app/src/main/res/drawable/ic_round_no_icon.xml
@@ -0,0 +1,9 @@
+
+
+
diff --git a/app/src/main/res/layout/activity_settings.xml b/app/src/main/res/layout/activity_settings.xml
index c2a01baa..27c00fce 100644
--- a/app/src/main/res/layout/activity_settings.xml
+++ b/app/src/main/res/layout/activity_settings.xml
@@ -519,7 +519,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:checked="false"
- android:drawableStart="@drawable/ic_round_new_releases_24"
+ android:drawableStart="@drawable/ic_round_no_icon"
android:drawablePadding="16dp"
android:elegantTextHeight="true"
android:fontFamily="@font/poppins_bold"