From cca14765cecd97eff888e2b284724700fe322310 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Wed, 20 Sep 2023 09:05:25 +0530 Subject: [PATCH] chore(README): refresh module graph graphic --- README.md | 4 ++-- build.gradle.kts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f5809b59..9975cdf5 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Unofficial Android app for read-only access to [lobste.rs](https://lobste.rs), b alt="A grid of screenshots from the app, in clockwise order: the main screen, the comments page, the search page and the saved posts page" width="550" /> -## Dependency Diagram +## Module dependency graph ```mermaid %%{ @@ -25,6 +25,7 @@ Unofficial Android app for read-only access to [lobste.rs](https://lobste.rs), b graph TB + model --> database benchmark --> android android --> api android --> common @@ -36,7 +37,6 @@ graph TB common --> core common --> database common --> model - ``` ## License diff --git a/build.gradle.kts b/build.gradle.kts index 148f5561..3a82a2bf 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -15,7 +15,7 @@ plugins { } moduleGraphConfig { - heading.set("## Dependency Diagram") + heading.set("## Module dependency graph") orientation.set(Orientation.TOP_TO_BOTTOM) readmePath.set(project.layout.projectDirectory.file("README.md").asFile.absolutePath) theme.set(Theme.DARK)