Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 13 additions & 7 deletions .github/workflows/generate-sponsor-image.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Generate Sponsor Image
name: Generate Sponsor and Contributor Images

on:
workflow_dispatch:
Expand All @@ -7,7 +7,7 @@ on:

jobs:
update-sponsors:
name: Update Sponsors
name: Update Sponsors and Contributors
runs-on: ubuntu-latest
if: github.repository == 'wailsapp/wails'
permissions:
Expand All @@ -30,14 +30,20 @@ jobs:
SPONSORKIT_GITHUB_TOKEN: ${{ secrets.SPONSORS_TOKEN }}
GOWORK: "off"

- name: Commit updated sponsor image
- name: Update Contributors
run: cd tools/sponsorkit && go run . -mode contributors -metric prs -repo wailsapp/wails -changelogs ../../docs/src/content/docs/changelog.mdx,../../website/src/pages/changelog.mdx -out ../../website/static/img/contributors.svg
env:
SPONSORKIT_GITHUB_TOKEN: ${{ secrets.SPONSORS_TOKEN }}
GOWORK: "off"

- name: Commit updated images
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
if git diff --quiet -- website/static/img/sponsors.svg; then
echo "No sponsor changes to commit."
if git diff --quiet -- website/static/img/sponsors.svg website/static/img/contributors.svg; then
echo "No sponsor or contributor changes to commit."
exit 0
fi
git add website/static/img/sponsors.svg
git commit -m "chore: update sponsors.svg [skip ci]"
git add website/static/img/sponsors.svg website/static/img/contributors.svg
git commit -m "chore: update sponsors.svg and contributors.svg [skip ci]"
git push
246 changes: 0 additions & 246 deletions docs/src/assets/contributors.html

This file was deleted.

14 changes: 9 additions & 5 deletions docs/src/content/docs/credits.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ title: Credits
description: Acknowledge the contributors and projects behind Wails
---

{/* Import the auto-generated contributors file */}

import Contributors from "../../assets/contributors.html";

- [Lea Anthony](https://github.com/leaanthony) - Project owner, lead developer
- [Stffabi](https://github.com/stffabi) - Technical lead, developer and
maintainer
Expand Down Expand Up @@ -44,7 +40,15 @@ Special thanks:

## Contributors

<Contributors />
{/* object (not img) so the per-contributor links and hover effects inside the SVG work */}
<object
type="image/svg+xml"
data="https://wails.io/img/contributors.svg"
aria-label="Wails contributors"
style={{ margin: "auto", width: "100%", maxWidth: "800px" }}
>
<img src="https://wails.io/img/contributors.svg" alt="Wails contributors" style={{ width: "100%" }} />
</object>

## Special Mentions

Expand Down
14 changes: 9 additions & 5 deletions docs/src/content/docs/de/credits.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ title: Credits
description: Anerkennung der Mitwirkenden und Projekte hinter Wails
---

{/* Import the auto-generated contributors file */}

import Contributors from "../../../assets/contributors.html";

- [Lea Anthony](https://github.com/leaanthony) - Projektinhaber, Lead-Entwickler
- [Stffabi](https://github.com/stffabi) - Technischer Leiter, Entwickler und
Maintainer
Expand Down Expand Up @@ -43,7 +39,15 @@ Besonderer Dank:

## Mitwirkende

<Contributors />
{/* object (not img) so the per-contributor links and hover effects inside the SVG work */}
<object
type="image/svg+xml"
data="https://wails.io/img/contributors.svg"
aria-label="Wails contributors"
style={{ margin: "auto", width: "100%", maxWidth: "800px" }}
>
<img src="https://wails.io/img/contributors.svg" alt="Wails contributors" style={{ width: "100%" }} />
</object>

## Besondere Erwähnungen

Expand Down
14 changes: 9 additions & 5 deletions docs/src/content/docs/fr/credits.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ title: Crédits
description: Remercier les contributeurs et les projets à l'origine de Wails
---

{/* Import the auto-generated contributors file */}

import Contributors from "../../../assets/contributors.html";

- [Lea Anthony](https://github.com/leaanthony) - Propriétaire du projet, développeur principal
- [Stffabi](https://github.com/stffabi) - Responsable technique, développeur et
mainteneur
Expand Down Expand Up @@ -43,7 +39,15 @@ Remerciements spéciaux :

## Contributeurs

<Contributors />
{/* object (not img) so the per-contributor links and hover effects inside the SVG work */}
<object
type="image/svg+xml"
data="https://wails.io/img/contributors.svg"
aria-label="Wails contributors"
style={{ margin: "auto", width: "100%", maxWidth: "800px" }}
>
<img src="https://wails.io/img/contributors.svg" alt="Wails contributors" style={{ width: "100%" }} />
</object>

## Mentions spéciales

Expand Down
14 changes: 9 additions & 5 deletions docs/src/content/docs/id/credits.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ title: Kredit
description: Mengakui kontributor dan proyek di balik Wails
---

{/* Import file kontributor yang dihasilkan otomatis */}

import Contributors from "../../../assets/contributors.html";

- [Lea Anthony](https://github.com/leaanthony) - Pemilik proyek, lead developer
- [Stffabi](https://github.com/stffabi) - Technical lead, developer dan
maintainer
Expand Down Expand Up @@ -43,7 +39,15 @@ Ucapan terima kasih khusus:

## Kontributor

<Contributors />
{/* object (not img) so the per-contributor links and hover effects inside the SVG work */}
<object
type="image/svg+xml"
data="https://wails.io/img/contributors.svg"
aria-label="Wails contributors"
style={{ margin: "auto", width: "100%", maxWidth: "800px" }}
>
<img src="https://wails.io/img/contributors.svg" alt="Wails contributors" style={{ width: "100%" }} />
</object>

## Penghargaan Khusus

Expand Down
14 changes: 9 additions & 5 deletions docs/src/content/docs/ja/credits.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ title: クレジット
description: Wailsを支える貢献者およびプロジェクトへの謝辞
---

{/* 自動生成された貢献者ファイルのインポート */}

import Contributors from "../../../assets/contributors.html";

- [Lea Anthony](https://github.com/leaanthony) - プロジェクトオーナー、リード開発者
- [Stffabi](https://github.com/stffabi) - テクニカルリード、開発者およびメンテナー
- [Travis McLane](https://github.com/tmclane) - クロスコンパイル作業、MacOS テスト
Expand Down Expand Up @@ -42,7 +38,15 @@ import Contributors from "../../../assets/contributors.html";

## 貢献者

<Contributors />
{/* object (not img) so the per-contributor links and hover effects inside the SVG work */}
<object
type="image/svg+xml"
data="https://wails.io/img/contributors.svg"
aria-label="Wails contributors"
style={{ margin: "auto", width: "100%", maxWidth: "800px" }}
>
<img src="https://wails.io/img/contributors.svg" alt="Wails contributors" style={{ width: "100%" }} />
</object>

## 特別言及

Expand Down
14 changes: 9 additions & 5 deletions docs/src/content/docs/ko/credits.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ title: 크레딧
description: Wails를 가능하게 한 기여자들과 프로젝트에 감사의 말을 전합니다
---

{/* 자동 생성된 기여자 파일 가져오기 */}

import Contributors from "../../../assets/contributors.html";

- [Lea Anthony](https://github.com/leaanthony) - 프로젝트 오너, 리드 개발자
- [Stffabi](https://github.com/stffabi) - 기술 리드, 개발자 및 유지보수자
- [Travis McLane](https://github.com/tmclane) - 교차 컴파일 작업, MacOS 테스트
Expand Down Expand Up @@ -42,7 +38,15 @@ import Contributors from "../../../assets/contributors.html";

## 기여자

<Contributors />
{/* object (not img) so the per-contributor links and hover effects inside the SVG work */}
<object
type="image/svg+xml"
data="https://wails.io/img/contributors.svg"
aria-label="Wails contributors"
style={{ margin: "auto", width: "100%", maxWidth: "800px" }}
>
<img src="https://wails.io/img/contributors.svg" alt="Wails contributors" style={{ width: "100%" }} />
</object>

## 특별 언급

Expand Down
14 changes: 9 additions & 5 deletions docs/src/content/docs/pt/credits.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ title: Créditos
description: Reconheça os contribuidores e projetos por trás do Wails
---

{/* Import the auto-generated contributors file */}

import Contributors from "../../../assets/contributors.html";

- [Lea Anthony](https://github.com/leaanthony) - Proprietário do projeto, desenvolvedor principal
- [Stffabi](https://github.com/stffabi) - Líder técnico, desenvolvedor e mantenedor
- [Travis McLane](https://github.com/tmclane) - Trabalho de compilação cruzada, testes no MacOS
Expand Down Expand Up @@ -42,7 +38,15 @@ Agradecimentos especiais:

## Contribuidores

<Contributors />
{/* object (not img) so the per-contributor links and hover effects inside the SVG work */}
<object
type="image/svg+xml"
data="https://wails.io/img/contributors.svg"
aria-label="Wails contributors"
style={{ margin: "auto", width: "100%", maxWidth: "800px" }}
>
<img src="https://wails.io/img/contributors.svg" alt="Wails contributors" style={{ width: "100%" }} />
</object>

## Menções Especiais

Expand Down
14 changes: 9 additions & 5 deletions docs/src/content/docs/ru/credits.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ title: Благодарности
description: Благодарности участникам и проектам, стоящим за Wails
---

{/* Import the auto-generated contributors file */}

import Contributors from "../../../assets/contributors.html";

- [Lea Anthony](https://github.com/leaanthony) - Владелец проекта, ведущий разработчик
- [Stffabi](https://github.com/stffabi) - Технический руководитель, разработчик и сопровождающий
- [Travis McLane](https://github.com/tmclane) - Работа по кросс-компиляции, тестирование на MacOS
Expand Down Expand Up @@ -42,7 +38,15 @@ import Contributors from "../../../assets/contributors.html";

## Участники

<Contributors />
{/* object (not img) so the per-contributor links and hover effects inside the SVG work */}
<object
type="image/svg+xml"
data="https://wails.io/img/contributors.svg"
aria-label="Wails contributors"
style={{ margin: "auto", width: "100%", maxWidth: "800px" }}
>
<img src="https://wails.io/img/contributors.svg" alt="Wails contributors" style={{ width: "100%" }} />
</object>

## Особые упоминания

Expand Down
14 changes: 9 additions & 5 deletions docs/src/content/docs/zh-cn/credits.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ title: 鸣谢
description: 感谢 Wails 背后的贡献者和项目
---

{/* 导入自动生成的贡献者文件 */}

import Contributors from "../../../assets/contributors.html";

- [Lea Anthony](https://github.com/leaanthony) - 项目所有者,首席开发者
- [Stffabi](https://github.com/stffabi) - 技术负责人,开发者与维护者
- [Travis McLane](https://github.com/tmclane) - 跨编译工作,MacOS 测试
Expand Down Expand Up @@ -42,7 +38,15 @@ import Contributors from "../../../assets/contributors.html";

## 贡献者

<Contributors />
{/* object (not img) so the per-contributor links and hover effects inside the SVG work */}
<object
type="image/svg+xml"
data="https://wails.io/img/contributors.svg"
aria-label="Wails contributors"
style={{ margin: "auto", width: "100%", maxWidth: "800px" }}
>
<img src="https://wails.io/img/contributors.svg" alt="Wails contributors" style={{ width: "100%" }} />
</object>

## 特别提及

Expand Down
14 changes: 9 additions & 5 deletions docs/src/content/docs/zh-tw/credits.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ title: 致謝
description: 感謝 Wails 背後的貢獻者與專案
---

{/* Import the auto-generated contributors file */}

import Contributors from "../../../assets/contributors.html";

- [Lea Anthony](https://github.com/leaanthony) - 專案負責人、主要開發者
- [Stffabi](https://github.com/stffabi) - 技術負責人、開發者與維護者
- [Travis McLane](https://github.com/tmclane) - 跨編譯工作、MacOS 測試
Expand Down Expand Up @@ -42,7 +38,15 @@ import Contributors from "../../../assets/contributors.html";

## 貢獻者

<Contributors />
{/* object (not img) so the per-contributor links and hover effects inside the SVG work */}
<object
type="image/svg+xml"
data="https://wails.io/img/contributors.svg"
aria-label="Wails contributors"
style={{ margin: "auto", width: "100%", maxWidth: "800px" }}
>
<img src="https://wails.io/img/contributors.svg" alt="Wails contributors" style={{ width: "100%" }} />
</object>

## 特別提及

Expand Down
Loading
Loading