Skip to content

Commit 81376ae

Browse files
committed
[skip ci] update discord
1 parent dec4410 commit 81376ae

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
lines changed

CODE_OF_CONDUCT.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ representative at an online or offline event.
6060

6161
Instances of abusive, harassing, or otherwise unacceptable behavior may be
6262
reported to the community moderators responsible for enforcement at
63-
the [Mihon Discord server](https://discord.gg/mihon).
63+
the [Discord server](https://discord.gg/85jB7V5AJR).
6464
All complaints will be reviewed and investigated promptly and fairly.
6565

6666
All community moderators are obligated to respect the privacy and security of the

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ To auto-fix some linting errors, run the `ktlintFormat` Gradle task.
3030

3131
## Getting help
3232

33-
- Join [the Discord server](https://discord.gg/komikku) for online help and to ask questions while developing.
33+
- Join [the Discord server](https://discord.gg/85jB7V5AJR) for online help and to ask questions while developing.
3434

3535
# Translations
3636

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
| Releases | Preview | PR builds |
2-
|----------|---------|-----------|
3-
| [![GitHub downloads](https://img.shields.io/github/downloads/komikku-app/komikku/total?label=Downloads&labelColor=27303D&color=0D1117&logo=github&logoColor=FFFFFF&style=flat)](https://github.com/komikku-app/komikku/releases) [![Stable](https://img.shields.io/github/release/komikku-app/komikku.svg?maxAge=3600&label=Stable&labelColor=06599d&color=043b69)](https://github.com/komikku-app/komikku/releases/latest) [![Build](https://img.shields.io/github/actions/workflow/status/komikku-app/komikku/build_push.yml?labelColor=27303D)](https://github.com/komikku-app/komikku/actions/workflows/build_push.yml) | [![GitHub downloads](https://img.shields.io/github/downloads/komikku-app/komikku-preview/total?label=Downloads&labelColor=27303D&color=0D1117&logo=github&logoColor=FFFFFF&style=flat)](https://github.com/komikku-app/komikku-preview/releases) [![Beta](https://img.shields.io/github/v/release/komikku-app/komikku-preview.svg?maxAge=3600&label=Beta&labelColor=2c2c47&color=1c1c39)](https://github.com/komikku-app/komikku-preview/releases/latest) [![Beta build](https://img.shields.io/github/actions/workflow/status/komikku-app/komikku-preview/build_app.yml?labelColor=27303D)](https://github.com/komikku-app/komikku-preview/actions/workflows/build_app.yml) | [![CI](https://img.shields.io/github/actions/workflow/status/komikku-app/komikku/build_check.yml?labelColor=27303D)](https://github.com/komikku-app/komikku/actions/workflows/build_check.yml) |
1+
| Releases | Preview | PR builds | Discussions |
2+
|----------|---------|-----------|-------------|
3+
| [![GitHub downloads](https://img.shields.io/github/downloads/komikku-app/komikku/total?label=Downloads&labelColor=27303D&color=0D1117&logo=github&logoColor=FFFFFF&style=flat)](https://github.com/komikku-app/komikku/releases) [![Stable](https://img.shields.io/github/release/komikku-app/komikku.svg?maxAge=3600&label=Stable&labelColor=06599d&color=043b69)](https://github.com/komikku-app/komikku/releases/latest) [![Build](https://img.shields.io/github/actions/workflow/status/komikku-app/komikku/build_push.yml?labelColor=27303D)](https://github.com/komikku-app/komikku/actions/workflows/build_push.yml) | [![GitHub downloads](https://img.shields.io/github/downloads/komikku-app/komikku-preview/total?label=Downloads&labelColor=27303D&color=0D1117&logo=github&logoColor=FFFFFF&style=flat)](https://github.com/komikku-app/komikku-preview/releases) [![Beta](https://img.shields.io/github/v/release/komikku-app/komikku-preview.svg?maxAge=3600&label=Beta&labelColor=2c2c47&color=1c1c39)](https://github.com/komikku-app/komikku-preview/releases/latest) [![Beta build](https://img.shields.io/github/actions/workflow/status/komikku-app/komikku-preview/build_app.yml?labelColor=27303D)](https://github.com/komikku-app/komikku-preview/actions/workflows/build_app.yml) | [![CI](https://img.shields.io/github/actions/workflow/status/komikku-app/komikku/build_check.yml?labelColor=27303D)](https://github.com/komikku-app/komikku/actions/workflows/build_check.yml) | [![Discord](https://img.shields.io/discord/1242381704459452488?label=discord&labelColor=7289da&color=2c2f33&style=flat)](https://discord.gg/85jB7V5AJR) |
44

55

66
# ![app icon](./.github/readme-images/app-icon.png) Komikku

app/src/main/java/eu/kanade/presentation/more/settings/screen/about/AboutScreen.kt

+6-5
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ import tachiyomi.presentation.core.components.ScrollbarLazyColumn
4949
import tachiyomi.presentation.core.components.material.Scaffold
5050
import tachiyomi.presentation.core.i18n.stringResource
5151
import tachiyomi.presentation.core.icons.CustomIcons
52+
import tachiyomi.presentation.core.icons.Discord
5253
import tachiyomi.presentation.core.icons.Github
5354
import uy.kohesive.injekt.Injekt
5455
import uy.kohesive.injekt.api.get
@@ -255,11 +256,11 @@ object AboutScreen : Screen() {
255256
// icon = Icons.Outlined.Public,
256257
// url = "https://mihon.app",
257258
// )
258-
// LinkIcon(
259-
// label = "Discord",
260-
// icon = CustomIcons.Discord,
261-
// url = "https://discord.gg/mihon",
262-
// )
259+
LinkIcon(
260+
label = "Discord",
261+
icon = CustomIcons.Discord,
262+
url = "https://discord.gg/85jB7V5AJR",
263+
)
263264
// LinkIcon(
264265
// label = "X",
265266
// icon = CustomIcons.X,

0 commit comments

Comments
 (0)