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
14 changes: 6 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ Built with Kotlin Multiplatform and Compose Multiplatform for Android and Deskto
> Free and Open-Source Android is under threat. Google will turn Android into a locked-down platform, restricting your essential freedom to install apps of your choice. Make your voice heard – [keepandroidopen.org](https://keepandroidopen.org/).

<p align="middle">
<img src="./screenshots/banner.jpeg" width="99%" />
<img src="./screenshots/01.jpg" width="18%" />
<img src="./screenshots/02.jpg" width="18%" />
<img src="./screenshots/03.jpg" width="18%" />
<img src="./screenshots/04.jpg" width="18%" />
<img src="./screenshots/05.jpg" width="18%" />
<img src="media-resources/banner.jpeg" width="99%" />
<img src="media-resources/01.jpg" width="18%" />
<img src="media-resources/02.jpg" width="18%" />
<img src="media-resources/03.jpg" width="18%" />
<img src="media-resources/04.jpg" width="18%" />
<img src="media-resources/05.jpg" width="18%" />
Comment on lines +70 to +75
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Add alt attributes to the new media-resources image tags.

Lines [70]-[75] are missing alt on <img> elements, which causes MD045 warnings and hurts accessibility.

🧰 Tools
🪛 markdownlint-cli2 (0.21.0)

[warning] 74-74: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 75-75: Images should have alternate text (alt text)

(MD045, no-alt-text)

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@README.md` around lines 70 - 75, The README image tags lack alt attributes
causing accessibility and MD045 warnings; update each <img> element (the ones
rendering banner.jpeg and 01.jpg–05.jpg) to include meaningful alt text strings
that describe the image (e.g., "Project banner" for banner.jpeg and concise
descriptions for 01.jpg through 05.jpg) so all <img> tags have an alt attribute.

</p>

<div align="center">
Expand Down Expand Up @@ -148,8 +148,6 @@ GitHub® is a registered trademark of GitHub, Inc.

---

<img src="./screenshots/preview.gif" align="right" width="320" />

## 🚀 Features

- **Smart discovery**
Expand Down
6 changes: 3 additions & 3 deletions composeApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -121,13 +121,13 @@ compose.desktop {
}
)
windows {
iconFile.set(project.file("logo/app_icon.ico"))
iconFile.set(project.file("src/jvmMain/resources/logo/app_icon.ico"))
menuGroup = "Github Store"
shortcut = true
perUserInstall = true
}
macOS {
iconFile.set(project.file("logo/app_icon.icns"))
iconFile.set(project.file("src/jvmMain/resources/logo/app_icon.icns"))
bundleID = "zed.rainxch.githubstore"

infoPlist {
Expand All @@ -147,7 +147,7 @@ compose.desktop {
}
}
linux {
iconFile.set(project.file("logo/app_icon.png"))
iconFile.set(project.file("src/jvmMain/resources/logo/app_icon.png"))
appRelease = libs.versions.projectVersionName.get().toString()
debPackageVersion = libs.versions.projectVersionName.get().toString()
menuGroup = "Development"
Expand Down
Binary file removed composeApp/logo/app_icon.icns
Binary file not shown.
Binary file removed composeApp/logo/app_icon.ico
Binary file not shown.
Binary file removed composeApp/logo/app_icon.png
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 6 additions & 8 deletions docs/README-BN.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ Kotlin Multiplatform এবং Compose Multiplatform ব্যবহার ক
> ফ্রি এবং ওপেন-সোর্স অ্যান্ড্রয়েড হুমকির মুখে। Google অ্যান্ড্রয়েডকে একটি বদ্ধ প্ল্যাটফর্মে পরিণত করবে, আপনার পছন্দের অ্যাপ ইনস্টল করার মৌলিক স্বাধীনতা সীমিত করবে। আপনার কণ্ঠস্বর শোনান – [keepandroidopen.org](https://keepandroidopen.org/).

<p align="middle">
<img src="../screenshots/banner.jpeg" width="99%" />
<img src="../screenshots/01.jpg" width="18%" />
<img src="../screenshots/02.jpg" width="18%" />
<img src="../screenshots/03.jpg" width="18%" />
<img src="../screenshots/04.jpg" width="18%" />
<img src="../screenshots/05.jpg" width="18%" />
<img src="../media-resources/banner.jpeg" width="99%" />
<img src="../media-resources/01.jpg" width="18%" />
<img src="../media-resources/02.jpg" width="18%" />
<img src="../media-resources/03.jpg" width="18%" />
<img src="../media-resources/04.jpg" width="18%" />
<img src="../media-resources/05.jpg" width="18%" />
Comment on lines +74 to +79
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Resolve MD045: image tags are missing alt text.

Lines 74-79 match the markdownlint warning (no-alt-text). Add alt on each <img> for accessibility and lint compliance.

💡 Suggested patch
-    <img src="../media-resources/banner.jpeg" width="99%" />
-    <img src="../media-resources/01.jpg" width="18%" />
-    <img src="../media-resources/02.jpg" width="18%" />
-    <img src="../media-resources/03.jpg" width="18%" />
-    <img src="../media-resources/04.jpg" width="18%" />
-    <img src="../media-resources/05.jpg" width="18%" />
+    <img src="../media-resources/banner.jpeg" alt="GitHub Store banner" width="99%" />
+    <img src="../media-resources/01.jpg" alt="GitHub Store screenshot 1" width="18%" />
+    <img src="../media-resources/02.jpg" alt="GitHub Store screenshot 2" width="18%" />
+    <img src="../media-resources/03.jpg" alt="GitHub Store screenshot 3" width="18%" />
+    <img src="../media-resources/04.jpg" alt="GitHub Store screenshot 4" width="18%" />
+    <img src="../media-resources/05.jpg" alt="GitHub Store screenshot 5" width="18%" />
🧰 Tools
🪛 markdownlint-cli2 (0.21.0)

[warning] 74-74: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 75-75: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 76-76: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 77-77: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 78-78: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 79-79: Images should have alternate text (alt text)

(MD045, no-alt-text)

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@docs/README-BN.md` around lines 74 - 79, The markup contains multiple HTML
<img> elements without alt attributes (MD045); update each <img> tag (e.g., the
ones referencing "../media-resources/banner.jpeg", "01.jpg", "02.jpg", "03.jpg",
"04.jpg", "05.jpg") to include a concise, descriptive alt="..." value
appropriate for the image (for example alt="project banner" for banner.jpeg and
alt="screenshot 1", "screenshot 2", etc., or better descriptive text) so the
README-BN.md complies with accessibility/lint rules.

</p>

<div align="center">
Expand Down Expand Up @@ -152,8 +152,6 @@ GitHub® হলো GitHub, Inc.-এর একটি নিবন্ধিত ট

---

<img src="../screenshots/preview.gif" align="right" width="320" />

## 🚀 বৈশিষ্ট্যসমূহ

- **স্মার্ট অনুসন্ধান**
Expand Down
14 changes: 6 additions & 8 deletions docs/README-ES.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ Construida con Kotlin Multiplatform y Compose Multiplatform para plataformas And
> Android libre y de codigo abierto esta bajo amenaza. Google convertira Android en una plataforma cerrada, restringiendo tu libertad esencial de instalar las aplicaciones que elijas. Haz que tu voz se escuche – [keepandroidopen.org](https://keepandroidopen.org/).

<p align="middle">
<img src="../screenshots/banner.jpeg" width="99%" />
<img src="../screenshots/01.jpg" width="18%" />
<img src="../screenshots/02.jpg" width="18%" />
<img src="../screenshots/03.jpg" width="18%" />
<img src="../screenshots/04.jpg" width="18%" />
<img src="../screenshots/05.jpg" width="18%" />
<img src="../media-resources/banner.jpeg" width="99%" />
<img src="../media-resources/01.jpg" width="18%" />
<img src="../media-resources/02.jpg" width="18%" />
<img src="../media-resources/03.jpg" width="18%" />
<img src="../media-resources/04.jpg" width="18%" />
<img src="../media-resources/05.jpg" width="18%" />
Comment on lines +74 to +79
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Please include alt text in this image set update.

Lines [74]-[79] currently omit alt in <img> tags, triggering MD045 and reducing accessibility quality.

🧰 Tools
🪛 markdownlint-cli2 (0.21.0)

[warning] 74-74: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 75-75: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 76-76: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 77-77: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 78-78: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 79-79: Images should have alternate text (alt text)

(MD045, no-alt-text)

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@docs/README-ES.md` around lines 74 - 79, The <img> tags for banner.jpeg,
01.jpg, 02.jpg, 03.jpg, 04.jpg and 05.jpg lack alt attributes which triggers
MD045; update each <img> element (the ones showing the banner and the five
thumbnails) to include a concise, descriptive alt="..." attribute (e.g.,
alt="Project banner" for banner.jpeg and descriptive text like alt="Feature
screenshot 1" / "Feature screenshot 2", etc.) so each image has meaningful
alternative text for accessibility.

</p>

<div align="center">
Expand Down Expand Up @@ -152,8 +152,6 @@ GitHub® es una marca registrada de GitHub, Inc.

---

<img src="../screenshots/preview.gif" align="right" width="320" />

## 🚀 Funcionalidades

- **Descubrimiento inteligente**
Expand Down
14 changes: 6 additions & 8 deletions docs/README-FR.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ Construite avec Kotlin Multiplatform et Compose Multiplatform pour les plateform
> Android libre et open source est menacé. Google va transformer Android en une plateforme verrouillée, restreignant votre liberté essentielle d'installer les applications de votre choix. Faites entendre votre voix – [keepandroidopen.org](https://keepandroidopen.org/).

<p align="middle">
<img src="../screenshots/banner.jpeg" width="99%" />
<img src="../screenshots/01.jpg" width="18%" />
<img src="../screenshots/02.jpg" width="18%" />
<img src="../screenshots/03.jpg" width="18%" />
<img src="../screenshots/04.jpg" width="18%" />
<img src="../screenshots/05.jpg" width="18%" />
<img src="../media-resources/banner.jpeg" width="99%" />
<img src="../media-resources/01.jpg" width="18%" />
<img src="../media-resources/02.jpg" width="18%" />
<img src="../media-resources/03.jpg" width="18%" />
<img src="../media-resources/04.jpg" width="18%" />
<img src="../media-resources/05.jpg" width="18%" />
Comment on lines +74 to +79
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Add alt text to the updated gallery images.

Lines [74]-[79] currently use <img> tags without alt, which triggers MD045 and weakens accessibility.

Suggested patch
-    <img src="../media-resources/banner.jpeg" width="99%" />
-    <img src="../media-resources/01.jpg" width="18%" />
-    <img src="../media-resources/02.jpg" width="18%" />
-    <img src="../media-resources/03.jpg" width="18%" />
-    <img src="../media-resources/04.jpg" width="18%" />
-    <img src="../media-resources/05.jpg" width="18%" />
+    <img src="../media-resources/banner.jpeg" alt="GitHub Store banner" width="99%" />
+    <img src="../media-resources/01.jpg" alt="GitHub Store screenshot 1" width="18%" />
+    <img src="../media-resources/02.jpg" alt="GitHub Store screenshot 2" width="18%" />
+    <img src="../media-resources/03.jpg" alt="GitHub Store screenshot 3" width="18%" />
+    <img src="../media-resources/04.jpg" alt="GitHub Store screenshot 4" width="18%" />
+    <img src="../media-resources/05.jpg" alt="GitHub Store screenshot 5" width="18%" />
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
<img src="../media-resources/banner.jpeg" width="99%" />
<img src="../media-resources/01.jpg" width="18%" />
<img src="../media-resources/02.jpg" width="18%" />
<img src="../media-resources/03.jpg" width="18%" />
<img src="../media-resources/04.jpg" width="18%" />
<img src="../media-resources/05.jpg" width="18%" />
<img src="../media-resources/banner.jpeg" alt="GitHub Store banner" width="99%" />
<img src="../media-resources/01.jpg" alt="GitHub Store screenshot 1" width="18%" />
<img src="../media-resources/02.jpg" alt="GitHub Store screenshot 2" width="18%" />
<img src="../media-resources/03.jpg" alt="GitHub Store screenshot 3" width="18%" />
<img src="../media-resources/04.jpg" alt="GitHub Store screenshot 4" width="18%" />
<img src="../media-resources/05.jpg" alt="GitHub Store screenshot 5" width="18%" />
🧰 Tools
🪛 markdownlint-cli2 (0.21.0)

[warning] 74-74: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 75-75: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 76-76: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 77-77: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 78-78: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 79-79: Images should have alternate text (alt text)

(MD045, no-alt-text)

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@docs/README-FR.md` around lines 74 - 79, The <img> tags in README-FR.md
(src="../media-resources/banner.jpeg", "../media-resources/01.jpg",
"../media-resources/02.jpg", "../media-resources/03.jpg",
"../media-resources/04.jpg", "../media-resources/05.jpg") are missing alt
attributes which triggers MD045 and hurts accessibility; update each <img> tag
to include a concise, descriptive alt attribute (e.g., alt="Site banner",
alt="Gallery image 1: [brief description]", etc.) so every image element has
meaningful alt text.

</p>

<div align="center">
Expand Down Expand Up @@ -152,8 +152,6 @@ GitHub® est une marque déposée de GitHub, Inc.

---

<img src="../screenshots/preview.gif" align="right" width="320" />

## 🚀 Fonctionnalités

- **Découverte intelligente**
Expand Down
14 changes: 6 additions & 8 deletions docs/README-HI.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ Kotlin Multiplatform और Compose Multiplatform के साथ Android औ
> मुक्त और ओपन-सोर्स Android खतरे में है। Google Android को एक बंद प्लेटफ़ॉर्म में बदल देगा, जिससे आपकी पसंद के ऐप्स इंस्टॉल करने की आवश्यक स्वतंत्रता सीमित हो जाएगी। अपनी आवाज़ उठाएँ – [keepandroidopen.org](https://keepandroidopen.org/).

<p align="middle">
<img src="../screenshots/banner.jpeg" width="99%" />
<img src="../screenshots/01.jpg" width="18%" />
<img src="../screenshots/02.jpg" width="18%" />
<img src="../screenshots/03.jpg" width="18%" />
<img src="../screenshots/04.jpg" width="18%" />
<img src="../screenshots/05.jpg" width="18%" />
<img src="../media-resources/banner.jpeg" width="99%" />
<img src="../media-resources/01.jpg" width="18%" />
<img src="../media-resources/02.jpg" width="18%" />
<img src="../media-resources/03.jpg" width="18%" />
<img src="../media-resources/04.jpg" width="18%" />
<img src="../media-resources/05.jpg" width="18%" />
Comment on lines +74 to +79
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Add missing alt text for the updated screenshots block.

Lines [74]-[79] use <img> tags without alt; please add alt values to resolve MD045 and improve accessibility.

🧰 Tools
🪛 markdownlint-cli2 (0.21.0)

[warning] 74-74: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 75-75: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 76-76: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 77-77: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 78-78: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 79-79: Images should have alternate text (alt text)

(MD045, no-alt-text)

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@docs/README-HI.md` around lines 74 - 79, The <img> tags in the updated
screenshots block (e.g., the tags that reference banner.jpeg, 01.jpg, 02.jpg,
03.jpg, 04.jpg, 05.jpg) lack alt attributes which triggers MD045; add meaningful
alt="..." text to each <img> element (for example: alt="Project banner" for
banner.jpeg and descriptive alt text like alt="Screenshot: step 1" /
alt="Screenshot: step 2", etc.) so every <img> has an alt attribute to satisfy
accessibility and linting.

</p>

<div align="center">
Expand Down Expand Up @@ -152,8 +152,6 @@ GitHub® GitHub, Inc. का एक पंजीकृत ट्रेडमा

---

<img src="../screenshots/preview.gif" align="right" width="320" />

## 🚀 विशेषताएँ

- **स्मार्ट खोज**
Expand Down
14 changes: 6 additions & 8 deletions docs/README-IT.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ Realizzato con Kotlin Multiplatform e Compose Multiplatform per piattaforme Andr
> Android libero e open source e sotto minaccia. Google trasformera Android in una piattaforma chiusa, limitando la vostra liberta essenziale di installare le app che preferite. Fate sentire la vostra voce – [keepandroidopen.org](https://keepandroidopen.org/).

<p align="middle">
<img src="../screenshots/banner.jpeg" width="99%" />
<img src="../screenshots/01.jpg" width="18%" />
<img src="../screenshots/02.jpg" width="18%" />
<img src="../screenshots/03.jpg" width="18%" />
<img src="../screenshots/04.jpg" width="18%" />
<img src="../screenshots/05.jpg" width="18%" />
<img src="../media-resources/banner.jpeg" width="99%" />
<img src="../media-resources/01.jpg" width="18%" />
<img src="../media-resources/02.jpg" width="18%" />
<img src="../media-resources/03.jpg" width="18%" />
<img src="../media-resources/04.jpg" width="18%" />
<img src="../media-resources/05.jpg" width="18%" />
Comment on lines +74 to +79
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Add missing alt text for gallery images.

Lines 74-79 use HTML images without alt, which hurts accessibility and triggers markdown lint warnings. Please add concise alt text for each image.

💡 Suggested patch
-    <img src="../media-resources/banner.jpeg" width="99%" />
-    <img src="../media-resources/01.jpg" width="18%" />
-    <img src="../media-resources/02.jpg" width="18%" />
-    <img src="../media-resources/03.jpg" width="18%" />
-    <img src="../media-resources/04.jpg" width="18%" />
-    <img src="../media-resources/05.jpg" width="18%" />
+    <img src="../media-resources/banner.jpeg" alt="GitHub Store banner" width="99%" />
+    <img src="../media-resources/01.jpg" alt="GitHub Store screenshot 1" width="18%" />
+    <img src="../media-resources/02.jpg" alt="GitHub Store screenshot 2" width="18%" />
+    <img src="../media-resources/03.jpg" alt="GitHub Store screenshot 3" width="18%" />
+    <img src="../media-resources/04.jpg" alt="GitHub Store screenshot 4" width="18%" />
+    <img src="../media-resources/05.jpg" alt="GitHub Store screenshot 5" width="18%" />
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
<img src="../media-resources/banner.jpeg" width="99%" />
<img src="../media-resources/01.jpg" width="18%" />
<img src="../media-resources/02.jpg" width="18%" />
<img src="../media-resources/03.jpg" width="18%" />
<img src="../media-resources/04.jpg" width="18%" />
<img src="../media-resources/05.jpg" width="18%" />
<img src="../media-resources/banner.jpeg" alt="GitHub Store banner" width="99%" />
<img src="../media-resources/01.jpg" alt="GitHub Store screenshot 1" width="18%" />
<img src="../media-resources/02.jpg" alt="GitHub Store screenshot 2" width="18%" />
<img src="../media-resources/03.jpg" alt="GitHub Store screenshot 3" width="18%" />
<img src="../media-resources/04.jpg" alt="GitHub Store screenshot 4" width="18%" />
<img src="../media-resources/05.jpg" alt="GitHub Store screenshot 5" width="18%" />
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@docs/README-IT.md` around lines 74 - 79, The gallery images (banner.jpeg,
01.jpg, 02.jpg, 03.jpg, 04.jpg, 05.jpg) are missing alt attributes; update each
<img> tag to include concise, meaningful alt text (e.g., alt="Project banner"
for banner.jpeg and short descriptive text for 01.jpg–05.jpg) to satisfy
accessibility and markdown lint rules—edit the img elements in the README-IT
markup (the lines showing those image tags) to add appropriate alt="" values.

</p>

<div align="center">
Expand Down Expand Up @@ -152,8 +152,6 @@ GitHub® e un marchio registrato di GitHub, Inc.

---

<img src="../screenshots/preview.gif" align="right" width="320" />

## 🚀 Funzionalita

- **Scoperta intelligente**
Expand Down
14 changes: 6 additions & 8 deletions docs/README-JA.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ Kotlin MultiplatformとCompose Multiplatformで構築されており、Android
> 無料でオープンソースのAndroidが脅威にさらされています。GoogleはAndroidを閉鎖的なプラットフォームに変え、好きなアプリをインストールする基本的な自由を制限しようとしています。あなたの声を届けましょう – [keepandroidopen.org](https://keepandroidopen.org/)

<p align="middle">
<img src="../screenshots/banner.jpeg" width="99%" />
<img src="../screenshots/01.jpg" width="18%" />
<img src="../screenshots/02.jpg" width="18%" />
<img src="../screenshots/03.jpg" width="18%" />
<img src="../screenshots/04.jpg" width="18%" />
<img src="../screenshots/05.jpg" width="18%" />
<img src="../media-resources/banner.jpeg" width="99%" />
<img src="../media-resources/01.jpg" width="18%" />
<img src="../media-resources/02.jpg" width="18%" />
<img src="../media-resources/03.jpg" width="18%" />
<img src="../media-resources/04.jpg" width="18%" />
<img src="../media-resources/05.jpg" width="18%" />
Comment on lines +74 to +79
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Add alt text for accessibility in the gallery block.

Lines [74]-[79] use <img> without alt; please add descriptive alt text (or empty alt="" if decorative).

🧰 Tools
🪛 markdownlint-cli2 (0.21.0)

[warning] 74-74: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 75-75: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 76-76: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 77-77: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 78-78: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 79-79: Images should have alternate text (alt text)

(MD045, no-alt-text)

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@docs/README-JA.md` around lines 74 - 79, The gallery block uses multiple
<img> tags without alt attributes; add an appropriate alt attribute to each
<img> element (use descriptive text for meaningful images or alt="" for purely
decorative images) so accessibility tools can convey their purpose; update the
five small images and the banner <img> in the gallery block (search for the
sequence of <img src="../media-resources/banner.jpeg"> and the subsequent <img
src="../media-resources/01.jpg">...05.jpg) to include alt values.

</p>

<div align="center">
Expand Down Expand Up @@ -152,8 +152,6 @@ GitHub®はGitHub, Inc.の登録商標です。

---

<img src="../screenshots/preview.gif" align="right" width="320" />

## 🚀 機能

- **スマートな発見**
Expand Down
14 changes: 6 additions & 8 deletions docs/README-KR.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ Kotlin Multiplatform과 Compose Multiplatform으로 구축되어 Android 및 Des
> 무료 오픈소스 Android가 위협받고 있습니다. Google은 Android를 폐쇄적인 플랫폼으로 전환하여, 원하는 앱을 설치할 수 있는 필수적인 자유를 제한하려 합니다. 여러분의 목소리를 내주세요 – [keepandroidopen.org](https://keepandroidopen.org/).

<p align="middle">
<img src="../screenshots/banner.jpeg" width="99%" />
<img src="../screenshots/01.jpg" width="18%" />
<img src="../screenshots/02.jpg" width="18%" />
<img src="../screenshots/03.jpg" width="18%" />
<img src="../screenshots/04.jpg" width="18%" />
<img src="../screenshots/05.jpg" width="18%" />
<img src="../media-resources/banner.jpeg" width="99%" />
<img src="../media-resources/01.jpg" width="18%" />
<img src="../media-resources/02.jpg" width="18%" />
<img src="../media-resources/03.jpg" width="18%" />
<img src="../media-resources/04.jpg" width="18%" />
<img src="../media-resources/05.jpg" width="18%" />
Comment on lines +74 to +79
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Fix gallery image accessibility metadata.

Lines 74-79 need alt values on each <img> element; otherwise the markdownlint MD045 warnings remain unresolved.

💡 Suggested patch
-    <img src="../media-resources/banner.jpeg" width="99%" />
-    <img src="../media-resources/01.jpg" width="18%" />
-    <img src="../media-resources/02.jpg" width="18%" />
-    <img src="../media-resources/03.jpg" width="18%" />
-    <img src="../media-resources/04.jpg" width="18%" />
-    <img src="../media-resources/05.jpg" width="18%" />
+    <img src="../media-resources/banner.jpeg" alt="GitHub Store banner" width="99%" />
+    <img src="../media-resources/01.jpg" alt="GitHub Store screenshot 1" width="18%" />
+    <img src="../media-resources/02.jpg" alt="GitHub Store screenshot 2" width="18%" />
+    <img src="../media-resources/03.jpg" alt="GitHub Store screenshot 3" width="18%" />
+    <img src="../media-resources/04.jpg" alt="GitHub Store screenshot 4" width="18%" />
+    <img src="../media-resources/05.jpg" alt="GitHub Store screenshot 5" width="18%" />
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
<img src="../media-resources/banner.jpeg" width="99%" />
<img src="../media-resources/01.jpg" width="18%" />
<img src="../media-resources/02.jpg" width="18%" />
<img src="../media-resources/03.jpg" width="18%" />
<img src="../media-resources/04.jpg" width="18%" />
<img src="../media-resources/05.jpg" width="18%" />
<img src="../media-resources/banner.jpeg" alt="GitHub Store banner" width="99%" />
<img src="../media-resources/01.jpg" alt="GitHub Store screenshot 1" width="18%" />
<img src="../media-resources/02.jpg" alt="GitHub Store screenshot 2" width="18%" />
<img src="../media-resources/03.jpg" alt="GitHub Store screenshot 3" width="18%" />
<img src="../media-resources/04.jpg" alt="GitHub Store screenshot 4" width="18%" />
<img src="../media-resources/05.jpg" alt="GitHub Store screenshot 5" width="18%" />
🧰 Tools
🪛 markdownlint-cli2 (0.21.0)

[warning] 74-74: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 75-75: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 76-76: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 77-77: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 78-78: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 79-79: Images should have alternate text (alt text)

(MD045, no-alt-text)

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@docs/README-KR.md` around lines 74 - 79, Each <img> tag in the gallery lacks
alt text which triggers markdownlint MD045; update the five image elements
(src="../media-resources/01.jpg", "../media-resources/02.jpg",
"../media-resources/03.jpg", "../media-resources/04.jpg",
"../media-resources/05.jpg" and the banner "../media-resources/banner.jpeg") to
include appropriate alt attributes (e.g., descriptive short text or empty alt=""
for decorative images) so every <img> element has an alt value and the MD045
warnings are resolved.

</p>

<div align="center">
Expand Down Expand Up @@ -152,8 +152,6 @@ GitHub®는 GitHub, Inc.의 등록 상표입니다.

---

<img src="../screenshots/preview.gif" align="right" width="320" />

## 🚀 기능

- **스마트 발견**
Expand Down
14 changes: 6 additions & 8 deletions docs/README-PL.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ Zbudowany z użyciem Kotlin Multiplatform i Compose Multiplatform na platformy A
> Wolny i otwartoźródłowy Android jest zagrożony. Google zamieni Androida w zamkniętą platformę, ograniczając Twoją podstawową wolność instalowania wybranych aplikacji. Wyraź swoje zdanie – [keepandroidopen.org](https://keepandroidopen.org/).

<p align="middle">
<img src="../screenshots/banner.jpeg" width="99%" />
<img src="../screenshots/01.jpg" width="18%" />
<img src="../screenshots/02.jpg" width="18%" />
<img src="../screenshots/03.jpg" width="18%" />
<img src="../screenshots/04.jpg" width="18%" />
<img src="../screenshots/05.jpg" width="18%" />
<img src="../media-resources/banner.jpeg" width="99%" />
<img src="../media-resources/01.jpg" width="18%" />
<img src="../media-resources/02.jpg" width="18%" />
<img src="../media-resources/03.jpg" width="18%" />
<img src="../media-resources/04.jpg" width="18%" />
<img src="../media-resources/05.jpg" width="18%" />
Comment on lines +74 to +79
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Please add alt attributes for the new image references.

Lines [74]-[79] have <img> tags without alt, which is an accessibility and markdownlint (MD045) issue.

🧰 Tools
🪛 markdownlint-cli2 (0.21.0)

[warning] 74-74: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 75-75: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 76-76: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 77-77: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 78-78: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 79-79: Images should have alternate text (alt text)

(MD045, no-alt-text)

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@docs/README-PL.md` around lines 74 - 79, Add descriptive alt attributes to
each new <img> tag (banner.jpeg, 01.jpg, 02.jpg, 03.jpg, 04.jpg, 05.jpg) to
satisfy accessibility and markdownlint MD045; update the six tags so they
include alt="Banner image" for banner.jpeg and meaningful short descriptions
(e.g., alt="Team photo 01", alt="Project screenshot 02", etc.) for 01.jpg–05.jpg
respectively.

</p>

<div align="center">
Expand Down Expand Up @@ -152,8 +152,6 @@ GitHub® jest zarejestrowanym znakiem towarowym GitHub, Inc.

---

<img src="../screenshots/preview.gif" align="right" width="320" />

## 🚀 Funkcje

- **Inteligentne odkrywanie**
Expand Down
14 changes: 6 additions & 8 deletions docs/README-RU.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ GitHub Store — это кросс-платформенный магазин п
> Свободный и открытый Android под угрозой. Google превратит Android в закрытую платформу, ограничивая вашу основную свободу устанавливать приложения по своему выбору. Заявите о своей позиции – [keepandroidopen.org](https://keepandroidopen.org/).

<p align="middle">
<img src="../screenshots/banner.jpeg" width="99%" />
<img src="../screenshots/01.jpg" width="18%" />
<img src="../screenshots/02.jpg" width="18%" />
<img src="../screenshots/03.jpg" width="18%" />
<img src="../screenshots/04.jpg" width="18%" />
<img src="../screenshots/05.jpg" width="18%" />
<img src="../media-resources/banner.jpeg" width="99%" />
<img src="../media-resources/01.jpg" width="18%" />
<img src="../media-resources/02.jpg" width="18%" />
<img src="../media-resources/03.jpg" width="18%" />
<img src="../media-resources/04.jpg" width="18%" />
<img src="../media-resources/05.jpg" width="18%" />
Comment on lines +74 to +79
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Missing alt attributes on newly updated images.

Lines [74]-[79] should include alt attributes to satisfy MD045 and improve screen-reader support.

🧰 Tools
🪛 markdownlint-cli2 (0.21.0)

[warning] 74-74: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 75-75: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 76-76: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 77-77: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 78-78: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 79-79: Images should have alternate text (alt text)

(MD045, no-alt-text)

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@docs/README-RU.md` around lines 74 - 79, The new <img> tags in the
README-RU.md lack alt attributes (triggering MD045 and reducing accessibility);
update each <img src="../media-resources/..."> element shown (the banner and
01.jpg–05.jpg) to include a concise, descriptive alt attribute (e.g.,
alt="Project banner" for banner and alt="Description of image 01" etc.) so every
image element has an alt value.

</p>

<div align="center">
Expand Down Expand Up @@ -152,8 +152,6 @@ GitHub® является зарегистрированным товарным

---

<img src="../screenshots/preview.gif" align="right" width="320" />

## 🚀 Возможности

- **Умное обнаружение**
Expand Down
14 changes: 6 additions & 8 deletions docs/README-TR.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ Kotlin Multiplatform ve Compose Multiplatform ile Android ve Masaustu platformla
> Ozgur ve Acik Kaynak Android tehdit altinda. Google, Android'i kapali bir platforma donusturerek istediginiz uygulamalari yukleme ozgurlugunuzu kisitlayacak. Sesinizi duyurun – [keepandroidopen.org](https://keepandroidopen.org/).

<p align="middle">
<img src="../screenshots/banner.jpeg" width="99%" />
<img src="../screenshots/01.jpg" width="18%" />
<img src="../screenshots/02.jpg" width="18%" />
<img src="../screenshots/03.jpg" width="18%" />
<img src="../screenshots/04.jpg" width="18%" />
<img src="../screenshots/05.jpg" width="18%" />
<img src="../media-resources/banner.jpeg" width="99%" />
<img src="../media-resources/01.jpg" width="18%" />
<img src="../media-resources/02.jpg" width="18%" />
<img src="../media-resources/03.jpg" width="18%" />
<img src="../media-resources/04.jpg" width="18%" />
<img src="../media-resources/05.jpg" width="18%" />
Comment on lines +74 to +79
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Add alt text to image tags in the new media-resources block.

At Lines 74-79, all six images are missing alt attributes (matches the MD045 warnings). Please add short descriptive alt text.

💡 Suggested patch
-    <img src="../media-resources/banner.jpeg" width="99%" />
-    <img src="../media-resources/01.jpg" width="18%" />
-    <img src="../media-resources/02.jpg" width="18%" />
-    <img src="../media-resources/03.jpg" width="18%" />
-    <img src="../media-resources/04.jpg" width="18%" />
-    <img src="../media-resources/05.jpg" width="18%" />
+    <img src="../media-resources/banner.jpeg" alt="GitHub Store banner" width="99%" />
+    <img src="../media-resources/01.jpg" alt="GitHub Store screenshot 1" width="18%" />
+    <img src="../media-resources/02.jpg" alt="GitHub Store screenshot 2" width="18%" />
+    <img src="../media-resources/03.jpg" alt="GitHub Store screenshot 3" width="18%" />
+    <img src="../media-resources/04.jpg" alt="GitHub Store screenshot 4" width="18%" />
+    <img src="../media-resources/05.jpg" alt="GitHub Store screenshot 5" width="18%" />
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
<img src="../media-resources/banner.jpeg" width="99%" />
<img src="../media-resources/01.jpg" width="18%" />
<img src="../media-resources/02.jpg" width="18%" />
<img src="../media-resources/03.jpg" width="18%" />
<img src="../media-resources/04.jpg" width="18%" />
<img src="../media-resources/05.jpg" width="18%" />
<img src="../media-resources/banner.jpeg" alt="GitHub Store banner" width="99%" />
<img src="../media-resources/01.jpg" alt="GitHub Store screenshot 1" width="18%" />
<img src="../media-resources/02.jpg" alt="GitHub Store screenshot 2" width="18%" />
<img src="../media-resources/03.jpg" alt="GitHub Store screenshot 3" width="18%" />
<img src="../media-resources/04.jpg" alt="GitHub Store screenshot 4" width="18%" />
<img src="../media-resources/05.jpg" alt="GitHub Store screenshot 5" width="18%" />
🧰 Tools
🪛 markdownlint-cli2 (0.21.0)

[warning] 74-74: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 75-75: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 76-76: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 77-77: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 78-78: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 79-79: Images should have alternate text (alt text)

(MD045, no-alt-text)

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@docs/README-TR.md` around lines 74 - 79, The image elements in the
media-resources block (e.g., the <img> tags referencing banner.jpeg, 01.jpg,
02.jpg, 03.jpg, 04.jpg, 05.jpg) are missing alt attributes; update each <img>
tag to include a short descriptive alt text (for example: alt="Project banner",
alt="Screenshot 1", etc.) so all six images have meaningful alt="" values to
satisfy MD045 and improve accessibility.

</p>

<div align="center">
Expand Down Expand Up @@ -152,8 +152,6 @@ GitHub®, GitHub, Inc. sirketinin tescilli ticari markasıdir.

---

<img src="../screenshots/preview.gif" align="right" width="320" />

## 🚀 Ozellikler

- **Akilli kesif**
Expand Down
14 changes: 6 additions & 8 deletions docs/README-ZH.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ GitHub Store 是一个面向 GitHub Releases 的跨平台应用商店,旨在
> 自由开源的 Android 正面临威胁。Google 将把 Android 变成一个封闭平台,限制您自由安装应用程序的基本权利。请发出您的声音 – [keepandroidopen.org](https://keepandroidopen.org/)。

<p align="middle">
<img src="../screenshots/banner.jpeg" width="99%" />
<img src="../screenshots/01.jpg" width="18%" />
<img src="../screenshots/02.jpg" width="18%" />
<img src="../screenshots/03.jpg" width="18%" />
<img src="../screenshots/04.jpg" width="18%" />
<img src="../screenshots/05.jpg" width="18%" />
<img src="../media-resources/banner.jpeg" width="99%" />
<img src="../media-resources/01.jpg" width="18%" />
<img src="../media-resources/02.jpg" width="18%" />
<img src="../media-resources/03.jpg" width="18%" />
<img src="../media-resources/04.jpg" width="18%" />
<img src="../media-resources/05.jpg" width="18%" />
Comment on lines +74 to +79
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Add alt attributes to updated image references.

At Lines 74-79, the migrated image tags still lack alt text, so this will keep failing MD045 and reduces accessibility.

💡 Suggested patch
-    <img src="../media-resources/banner.jpeg" width="99%" />
-    <img src="../media-resources/01.jpg" width="18%" />
-    <img src="../media-resources/02.jpg" width="18%" />
-    <img src="../media-resources/03.jpg" width="18%" />
-    <img src="../media-resources/04.jpg" width="18%" />
-    <img src="../media-resources/05.jpg" width="18%" />
+    <img src="../media-resources/banner.jpeg" alt="GitHub Store banner" width="99%" />
+    <img src="../media-resources/01.jpg" alt="GitHub Store screenshot 1" width="18%" />
+    <img src="../media-resources/02.jpg" alt="GitHub Store screenshot 2" width="18%" />
+    <img src="../media-resources/03.jpg" alt="GitHub Store screenshot 3" width="18%" />
+    <img src="../media-resources/04.jpg" alt="GitHub Store screenshot 4" width="18%" />
+    <img src="../media-resources/05.jpg" alt="GitHub Store screenshot 5" width="18%" />
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
<img src="../media-resources/banner.jpeg" width="99%" />
<img src="../media-resources/01.jpg" width="18%" />
<img src="../media-resources/02.jpg" width="18%" />
<img src="../media-resources/03.jpg" width="18%" />
<img src="../media-resources/04.jpg" width="18%" />
<img src="../media-resources/05.jpg" width="18%" />
<img src="../media-resources/banner.jpeg" alt="GitHub Store banner" width="99%" />
<img src="../media-resources/01.jpg" alt="GitHub Store screenshot 1" width="18%" />
<img src="../media-resources/02.jpg" alt="GitHub Store screenshot 2" width="18%" />
<img src="../media-resources/03.jpg" alt="GitHub Store screenshot 3" width="18%" />
<img src="../media-resources/04.jpg" alt="GitHub Store screenshot 4" width="18%" />
<img src="../media-resources/05.jpg" alt="GitHub Store screenshot 5" width="18%" />
🧰 Tools
🪛 markdownlint-cli2 (0.21.0)

[warning] 74-74: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 75-75: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 76-76: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 77-77: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 78-78: Images should have alternate text (alt text)

(MD045, no-alt-text)


[warning] 79-79: Images should have alternate text (alt text)

(MD045, no-alt-text)

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@docs/README-ZH.md` around lines 74 - 79, The image tags in README-ZH.md
(e.g., the <img> elements referencing ../media-resources/banner.jpeg, 01.jpg,
02.jpg, 03.jpg, 04.jpg, 05.jpg) are missing alt attributes which breaks MD045
and harms accessibility; update each <img> tag to include a concise, descriptive
alt="..." value appropriate for the image (e.g., banner description for
banner.jpeg and short captions for 01.jpg–05.jpg), ensuring every image element
has an alt attribute and leaving decorative images as alt="" if they convey no
informational content.

</p>

<div align="center">
Expand Down Expand Up @@ -152,8 +152,6 @@ GitHub® 是 GitHub, Inc. 的注册商标。

---

<img src="../screenshots/preview.gif" align="right" width="320" />

## 🚀 功能特性

- **智能发现**
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Binary file removed screenshots/preview.gif
Binary file not shown.