[PR #86] Added a feature to scan for a QR Code in the screenshot. #90

Open
opened 2026-03-03 15:57:43 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mrgoonie/winshot/pull/86
Author: @Naviamold1
Created: 1/26/2026
Status: 🔄 Open

Base: devHead: feature/qrscanner


📝 Commits (5)

  • 3d36a07 feat: qr code scanner implementation
  • 1bdaefa Merge pull request #84 from mrgoonie/dev
  • a36760e chore(release): 1.6.0 [skip ci]
  • 58bcef6 Merge branch 'main' of https://github.com/mrgoonie/winshot into feature/qrscanner
  • 9245be4 chore: moved qr scanner button component to the annotation toolbar and updated documentation and added a backend qr scanner function test

📊 Changes

16 files changed (+297 additions, -16 deletions)

View changed files

📝 CHANGELOG.md (+24 -0)
📝 README.md (+2 -0)
📝 app.go (+32 -6)
📝 app_test.go (+38 -6)
📝 docs/project-overview-pdr.md (+1 -0)
📝 frontend/dist/index.html (+2 -2)
📝 frontend/src/App.tsx (+51 -0)
📝 frontend/src/components/annotation-toolbar.tsx (+19 -0)
📝 frontend/src/components/capture-toolbar.tsx (+1 -1)
frontend/src/components/qr-result-modal.tsx (+79 -0)
📝 frontend/wailsjs/go/main/App.d.ts (+2 -0)
📝 frontend/wailsjs/go/main/App.js (+4 -0)
📝 go.mod (+1 -0)
📝 go.sum (+7 -0)
internal/qrcode/qrcode.go (+33 -0)
📝 package.json (+1 -1)

📄 Description

Added a feature to scan for a QR Code in the screenshot.

Made following changes to the codebase:

Created a new internal function for QR scanning with go library GOQR.
Created a new Scan QR button component and a dialog popup for it.
Updated documentation and tests for the new feature.

Full disclosure: The following code has been generated by Google's Antigravity.

Screenshots:

image image image

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/mrgoonie/winshot/pull/86 **Author:** [@Naviamold1](https://github.com/Naviamold1) **Created:** 1/26/2026 **Status:** 🔄 Open **Base:** `dev` ← **Head:** `feature/qrscanner` --- ### 📝 Commits (5) - [`3d36a07`](https://github.com/mrgoonie/winshot/commit/3d36a07285d08c431ecf1678597689a4794f31b6) feat: qr code scanner implementation - [`1bdaefa`](https://github.com/mrgoonie/winshot/commit/1bdaefad99b79ba0f04c134e756721a7798bf5b7) Merge pull request #84 from mrgoonie/dev - [`a36760e`](https://github.com/mrgoonie/winshot/commit/a36760ed1a2bda2074fa1b73b3ca24b837061512) chore(release): 1.6.0 [skip ci] - [`58bcef6`](https://github.com/mrgoonie/winshot/commit/58bcef617f3f54b8c0cc926f8b1b7cab2da253d2) Merge branch 'main' of https://github.com/mrgoonie/winshot into feature/qrscanner - [`9245be4`](https://github.com/mrgoonie/winshot/commit/9245be4639d9e84dda7b0f66f1088e58776f1cec) chore: moved qr scanner button component to the annotation toolbar and updated documentation and added a backend qr scanner function test ### 📊 Changes **16 files changed** (+297 additions, -16 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+24 -0) 📝 `README.md` (+2 -0) 📝 `app.go` (+32 -6) 📝 `app_test.go` (+38 -6) 📝 `docs/project-overview-pdr.md` (+1 -0) 📝 `frontend/dist/index.html` (+2 -2) 📝 `frontend/src/App.tsx` (+51 -0) 📝 `frontend/src/components/annotation-toolbar.tsx` (+19 -0) 📝 `frontend/src/components/capture-toolbar.tsx` (+1 -1) ➕ `frontend/src/components/qr-result-modal.tsx` (+79 -0) 📝 `frontend/wailsjs/go/main/App.d.ts` (+2 -0) 📝 `frontend/wailsjs/go/main/App.js` (+4 -0) 📝 `go.mod` (+1 -0) 📝 `go.sum` (+7 -0) ➕ `internal/qrcode/qrcode.go` (+33 -0) 📝 `package.json` (+1 -1) </details> ### 📄 Description # Added a feature to scan for a QR Code in the screenshot. ## Made following changes to the codebase: Created a new internal function for QR scanning with go library [GOQR](https://github.com/liyue201/goqr/). Created a new `Scan QR` button component and a dialog popup for it. Updated documentation and tests for the new feature. > Full disclosure: The following code has been generated by Google's Antigravity. ## Screenshots: <img width="1193" height="791" alt="image" src="https://github.com/user-attachments/assets/02292b57-9b16-4f3a-af15-ce75ab4ea7dd" /> <img width="969" height="566" alt="image" src="https://github.com/user-attachments/assets/ebed0525-7f5e-4a40-833b-6c2d5258bcb6" /> <img width="1104" height="774" alt="image" src="https://github.com/user-attachments/assets/c00a36f7-caf2-4782-b3d9-86dac70baea0" /> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/winshot#90
No description provided.