Skip to content

Commit

Permalink
Add discord server to readme and plugin widget welcome tab
Browse files Browse the repository at this point in the history
  • Loading branch information
Acly committed Sep 8, 2024
1 parent dd8ddd7 commit 3b66d33
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<h1><img width="64px" src="ai_diffusion/icons/logo-128.png"> Generative AI <i>for Krita</i></h1>

[Features](#features) | ⭳ [Download](https://github.com/Acly/krita-ai-diffusion/releases/latest) | 🛠️[Installation](https://www.interstice.cloud/plugin) | 🎞️ [Video](https://youtu.be/Ly6USRwTHe0) | 🖼️[Screenshots](#gallery) | 📖[Wiki](https://github.com/Acly/krita-ai-diffusion/wiki) | 💬[Discussion](https://github.com/Acly/krita-ai-diffusion/discussions)
[Features](#features) | ⭳ [Download](https://github.com/Acly/krita-ai-diffusion/releases/latest) | 🛠️[Installation](https://www.interstice.cloud/plugin) | 🎞️ [Video](https://youtu.be/Ly6USRwTHe0) | 🖼️[Gallery](#gallery) | 📖[Wiki](https://github.com/Acly/krita-ai-diffusion/wiki) | 💬[Discussion](https://github.com/Acly/krita-ai-diffusion/discussions) | 🗣️[Discord](https://discord.gg/pWyzHfHHhU)

This is a plugin to use generative AI in image painting and editing workflows from within Krita. For a more visual introduction, see [**www.interstice.cloud**](https://www.interstice.cloud)

Expand Down Expand Up @@ -73,7 +73,7 @@ To run locally a powerful graphics card with at least 6 GB VRAM (NVIDIA) is reco
> [!NOTE]
> If you encounter problems please check the [FAQ / list of common issues](https://github.com/Acly/krita-ai-diffusion/wiki/Common-Issues) for solutions.
>
> Reach out via [discussions](https://github.com/Acly/krita-ai-diffusion/discussions), or report [an issue here](https://github.com/Acly/krita-ai-diffusion/issues). Please note that official Krita channels are **not** the right place to seek help with
> Reach out via [discussions](https://github.com/Acly/krita-ai-diffusion/discussions), our [Discord](https://discord.gg/pWyzHfHHhU), or report [an issue here](https://github.com/Acly/krita-ai-diffusion/issues). Please note that official Krita channels are **not** the right place to seek help with
> issues related to this extension!
### _Optional:_ Custom ComfyUI Server
Expand Down
Binary file modified ai_diffusion/icons/logo-128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions ai_diffusion/ui/diffusion.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from __future__ import annotations
from PyQt5.QtCore import Qt
from PyQt5.QtWidgets import QWidget, QVBoxLayout, QHBoxLayout, QPushButton, QLabel, QStackedWidget
from krita import Krita, DockWidget
import krita
Expand Down Expand Up @@ -52,6 +53,16 @@ def __init__(self, server: Server):
self._settings_button.clicked.connect(self.show_settings)
layout.addWidget(self._settings_button)

layout.addSpacing(24)
info = QLabel(
"<a href='https://www.interstice.cloud'>Interstice.cloud</a> | "
+ "<a href='https://https://github.com/Acly/krita-ai-diffusion'>GitHub Project</a> | "
+ "<a href='https://discord.gg/pWyzHfHHhU'>Discord</a>",
self,
)
info.setOpenExternalLinks(True)
layout.addWidget(info, 0, Qt.AlignmentFlag.AlignRight)

layout.addStretch()

root.connection.state_changed.connect(self.update_content)
Expand Down

0 comments on commit 3b66d33

Please sign in to comment.