diff --git a/buildSrc/src/main/resources/report.html b/buildSrc/src/main/resources/report.html index 0a6c8dbf1..7e7280ba5 100644 --- a/buildSrc/src/main/resources/report.html +++ b/buildSrc/src/main/resources/report.html @@ -2,13 +2,15 @@ - + {{ testSuite.name }} - - + + + + @@ -25,67 +27,72 @@ {{ testSuite.errors }} ({{ error_percent }}%) -
- - - - - {% for test in tests %} - - {% endfor %} - - - {% for name, cases in results %} - - - {% for test in tests %} - {% set case = cases[test] %} - {% if case.failure == null %} - - {% else %} - {% if case.failure.type == 'java.lang.AssertionError' %} - - {% else %} - - {% endif %} - -
Source{{ test }}
{{ name }} - - - - - -
+ + + + {% for test in tests %} + + {% endfor %} + + + {% for name, cases in results %} + + + {% for test in tests %} + {% set case = cases[test] %} + {% if case.failure == null %} + + {% else %} + {% if case.failure.type == 'java.lang.AssertionError' %} + + {% else %} + + {% endif %} + + + + {% endif %} {% endfor %} -
Source{{ test }}
{{ name }} + + + + + +
-
+ + {% endfor %} + \ No newline at end of file diff --git a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/madara/MadaraParser.kt b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/madara/MadaraParser.kt index d988e5dfc..c26340afb 100644 --- a/src/main/kotlin/org/koitharu/kotatsu/parsers/site/madara/MadaraParser.kt +++ b/src/main/kotlin/org/koitharu/kotatsu/parsers/site/madara/MadaraParser.kt @@ -322,10 +322,12 @@ internal abstract class MadaraParser( } } - @Deprecated("Not working, unknown reason, maybe shutdown or domain expired") @MangaSourceParser("MANGAHATACHI", "MangahaTachi", "ja") class MangahaTachi(context: MangaLoaderContext) : - MadaraParser(context, MangaSource.MANGAHATACHI, "mangahatachi.com") + MadaraParser(context, MangaSource.MANGAHATACHI, "mangahatachi.com") { + + override val sourceLocale: Locale = Locale.ENGLISH + } @MangaSourceParser("PIANMANGA", "PianManga", "en") class PianManga(context: MangaLoaderContext) : MadaraParser(context, MangaSource.PIANMANGA, "pianmanga.com") @@ -407,6 +409,7 @@ internal abstract class MadaraParser( @MangaSourceParser("MANHWAKOOL", "Manhwa Kool", "en") class ManhwaKool(context: MangaLoaderContext) : MadaraParser(context, MangaSource.MANHWAKOOL, "manhwakool.com") { + override val datePattern: String = "MM/dd" override fun getFaviconUrl(): String { return "https://${getDomain()}/wp-content/uploads/2021/10/cropped-logo-kool-32x32.jpeg" }