Skip to content

Update Android download links and add store badges#74

Merged
erikraft merged 1 commit intomasterfrom
codex/update-version-to-1.11.5-and-modify-links
Oct 6, 2025
Merged

Update Android download links and add store badges#74
erikraft merged 1 commit intomasterfrom
codex/update-version-to-1.11.5-and-modify-links

Conversation

@erikraft
Copy link
Copy Markdown
Owner

@erikraft erikraft commented Oct 6, 2025

Summary

  • bump the project version metadata to 1.11.5
  • refresh README and in-app About section with reorganized download badges including Google Play and F-Droid
  • point the APK download link to the Drop-Android latest release and update the helper script

Testing

  • not run (not requested)

https://chatgpt.com/codex/tasks/task_e_68e3d706612c832a96d17809dc0cc0dd

Summary by CodeRabbit

  • Documentation

    • Refreshed “Getting ErikrafT Drop” section with a centered, thumbnail-based layout and improved accessibility text for download/install links (Open Web App, APK, Google Play, F-Droid, VS Code Marketplace, Open VSX, Firefox Add-ons). Visual-only update.
  • Chores

    • Bumped version to 1.11.5.
    • Updated the bug report template version label.

@erikraft erikraft added the codex ChatGPT Codex helps developers code easily with AI from OpenAI. label Oct 6, 2025 — with ChatGPT Codex Connector
@erikraft erikraft temporarily deployed to codex/update-version-to-1.11.5-and-modify-links - ErikrafT Drop - Backend PR #74 October 6, 2025 15:09 — with Render Destroyed
@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Oct 6, 2025

Walkthrough

Version 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

Cohort / File(s) Summary
Release metadata
package.json
Incremented "version" from 1.11.4 to 1.11.5.
Issue template text
.github/ISSUE_TEMPLATE/bug-report.md
Updated displayed version string to “v1. 11.5” (spacing adjusted).
README download layout
README.md
Replaced inline links with a centered inline-block grid of linked thumbnails; added alt text, heights, and container markup; URLs retained/expanded; documentation-only change.

Sequence Diagram(s)

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~3 minutes

Poem

I thump the ground: 1.11.5—hooray!
README carrots lined in tidy array.
Templates groomed with a gentle sweep,
Version bumps quiet as a burrowed sleep.
I hop, I ship, with whiskers proud—
Small nibbles of change, released out loud. 🥕🐇

Pre-merge checks and finishing touches

✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title Check ✅ Passed The title succinctly captures the core changes of the pull request by indicating that Android download links are being updated and store badges are being added, which aligns directly with the modifications made in the README and related assets. It is specific, concise, and accurately reflects the primary intent without unnecessary detail.
Docstring Coverage ✅ Passed No functions found in the changes. Docstring coverage check skipped.
✨ Finishing touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch codex/update-version-to-1.11.5-and-modify-links

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.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 2

📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between a6d320a and 8b2421d.

⛔ Files ignored due to path filters (1)
  • package-lock.json is 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
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟡 Minor

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".

Comment thread README.md
## ⏬ 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>
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟡 Minor

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).

@erikraft erikraft merged commit 3d3cb25 into master Oct 6, 2025
4 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

codex ChatGPT Codex helps developers code easily with AI from OpenAI.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant