Update Android download links and add store badges#74
Conversation
WalkthroughVersion bumped to 1.11.5 in package.json. Bug report template text updated to reference v1.11.5 (with a space in “v1. 11.5”). README layout for download links restructured to a centered inline-block thumbnail grid with alt text and styling. No code or runtime logic changes. Changes
Sequence Diagram(s)Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 2
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (1)
package-lock.jsonis excluded by!**/package-lock.json
📒 Files selected for processing (3)
.github/ISSUE_TEMPLATE/bug-report.md(1 hunks)README.md(1 hunks)package.json(1 hunks)
| **Bug occurs on official ErikrafT Drop instance https://drop.erikraft.com/** | ||
| No | Yes | ||
| Version: v1.11.4 | ||
| Version: v1. 11.5 |
There was a problem hiding this comment.
Fix the version string spacing.
The template now shows Version: v1. 11.5 with an extra space after v1.. This will confuse reporters and should be corrected back to v1.11.5.
🤖 Prompt for AI Agents
.github/ISSUE_TEMPLATE/bug-report.md around line 39: the version string contains
an extra space ("v1. 11.5") which should be corrected to "v1.11.5"; edit that
line to remove the stray space so the version reads "Version: v1.11.5".
| ## ⏬ Getting ErikrafT Drop | ||
|
|
||
| <a href="https://drop.erikraft.com/" target="_blank"><img src="https://i.imgur.com/9uq39iu.png" width="217"/></a><a href="https://github.com/erikraft/App-Drop-Apk/raw/main/ErikrafT%20Drop.apk" target="_blank"><img src="https://i.imgur.com/nxlokSi.png" width="217"/></a><a href="https://marketplace.visualstudio.com/items?itemName=ErikrafT.erikraft-drop" target="_blank"><img src="https://i.imgur.com/fBWr0lN.png" width="217" alt="Open VSX Registry"/><a href="https://open-vsx.org/extension/ErikrafT/erikraft-drop" target="_blank"><img src="https://i.imgur.com/1OJsWQz.png" width="217" alt="Get it on Open VSX Registry"/><a href="https://addons.mozilla.org/pt-BR/firefox/addon/erikraft-drop/" target="_blank"><img src="https://i.imgur.com/2MubKYT.png" width="217" alt="Firefox Browser ADD-ONS"/> | ||
| <div align="center" style="display: inline_block; gap: 10px;"><br> |
There was a problem hiding this comment.
Correct the CSS display value.
style="display: inline_block; …" uses an underscore, so the browser drops the declaration and you lose the intended inline-block layout. Please change it to inline-block.
🤖 Prompt for AI Agents
In README.md around line 155 the inline style uses "display: inline_block"
(underscore) which is invalid CSS; change it to "display: inline-block" to
restore the intended inline-block layout (update the README markup to use the
hyphenated value).
Summary
Testing
https://chatgpt.com/codex/tasks/task_e_68e3d706612c832a96d17809dc0cc0dd
Summary by CodeRabbit
Documentation
Chores