[PR #42] [MERGED] Release v1.2.0 #61

Closed
opened 2026-03-03 15:57:35 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mrgoonie/winshot/pull/42
Author: @mrgoonie
Created: 12/14/2025
Status: Merged
Merged: 12/14/2025
Merged by: @mrgoonie

Base: mainHead: dev


📝 Commits (10+)

  • e3c1bd1 chore(release): 1.0.0-beta.1 [skip ci]
  • e56697f Merge pull request #5 from mrgoonie/goon
  • b38b532 chore(release): 1.1.0-beta.1 [skip ci]
  • 77baa17 Merge pull request #17 from mrgoonie/goon
  • 75f7777 chore(release): 1.1.0-beta.2 [skip ci]
  • 3f5f4d1 fix(startup): minimize app window on startup when configured
  • 9652b5b fix: resolve 3 bugs from issue #21
  • dbe91dd feat(editor): copy rendered canvas with applied settings to clipboard
  • a459568 fix(tray): resolve quit button not working in tray context menu
  • 3c4379d chore(release): 1.1.0 [skip ci]

📊 Changes

32 files changed (+3350 additions, -730 deletions)

View changed files

📝 .claude/active-plan (+1 -1)
📝 .gitignore (+2 -0)
📝 CHANGELOG.md (+64 -0)
📝 app.go (+218 -113)
docs-manager-251211-clipboard-capture.md (+129 -0)
📝 docs/codebase-summary.md (+138 -15)
📝 docs/system-architecture.md (+169 -18)
📝 frontend/dist/index.html (+2 -2)
📝 frontend/src/App.tsx (+283 -247)
📝 frontend/src/components/annotation-toolbar.tsx (+39 -0)
📝 frontend/src/components/capture-toolbar.tsx (+20 -2)
📝 frontend/src/components/editor-canvas.tsx (+7 -1)
frontend/src/components/region-selector.tsx (+0 -247)
📝 frontend/src/components/settings-modal.tsx (+39 -1)
📝 frontend/src/components/settings-panel.tsx (+129 -27)
frontend/src/components/update-modal.tsx (+128 -0)
frontend/src/hooks/use-undo-redo.ts (+107 -0)
📝 frontend/wailsjs/go/main/App.d.ts (+13 -0)
📝 frontend/wailsjs/go/main/App.js (+24 -0)
📝 frontend/wailsjs/go/models.ts (+64 -0)

...and 12 more files

📄 Description

No description provided


🔄 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/42 **Author:** [@mrgoonie](https://github.com/mrgoonie) **Created:** 12/14/2025 **Status:** ✅ Merged **Merged:** 12/14/2025 **Merged by:** [@mrgoonie](https://github.com/mrgoonie) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`e3c1bd1`](https://github.com/mrgoonie/winshot/commit/e3c1bd12a997a3f65ae136c981b83b151c44b851) chore(release): 1.0.0-beta.1 [skip ci] - [`e56697f`](https://github.com/mrgoonie/winshot/commit/e56697f93d023ce67e58ec663b761eeffb65401a) Merge pull request #5 from mrgoonie/goon - [`b38b532`](https://github.com/mrgoonie/winshot/commit/b38b532923c417fba8751bdc6ec4fbaf0355b097) chore(release): 1.1.0-beta.1 [skip ci] - [`77baa17`](https://github.com/mrgoonie/winshot/commit/77baa17892032cd397657b710d2138f4c8cab709) Merge pull request #17 from mrgoonie/goon - [`75f7777`](https://github.com/mrgoonie/winshot/commit/75f77773aa6e9dc78419c7b6e393cc9f3ebfb4b2) chore(release): 1.1.0-beta.2 [skip ci] - [`3f5f4d1`](https://github.com/mrgoonie/winshot/commit/3f5f4d1a7b87e12209e18ba5a0f125bfa0511290) fix(startup): minimize app window on startup when configured - [`9652b5b`](https://github.com/mrgoonie/winshot/commit/9652b5b12697b7d2cee74622d68acdcf5eafb62d) fix: resolve 3 bugs from issue #21 - [`dbe91dd`](https://github.com/mrgoonie/winshot/commit/dbe91dd824be72d14812bde88b06d7c90d305f1e) feat(editor): copy rendered canvas with applied settings to clipboard - [`a459568`](https://github.com/mrgoonie/winshot/commit/a45956844472465b18c8893d6c9ac3f6b8e4da03) fix(tray): resolve quit button not working in tray context menu - [`3c4379d`](https://github.com/mrgoonie/winshot/commit/3c4379dc11086bbc3b6656d5373b66a192393508) chore(release): 1.1.0 [skip ci] ### 📊 Changes **32 files changed** (+3350 additions, -730 deletions) <details> <summary>View changed files</summary> 📝 `.claude/active-plan` (+1 -1) 📝 `.gitignore` (+2 -0) 📝 `CHANGELOG.md` (+64 -0) 📝 `app.go` (+218 -113) ➕ `docs-manager-251211-clipboard-capture.md` (+129 -0) 📝 `docs/codebase-summary.md` (+138 -15) 📝 `docs/system-architecture.md` (+169 -18) 📝 `frontend/dist/index.html` (+2 -2) 📝 `frontend/src/App.tsx` (+283 -247) 📝 `frontend/src/components/annotation-toolbar.tsx` (+39 -0) 📝 `frontend/src/components/capture-toolbar.tsx` (+20 -2) 📝 `frontend/src/components/editor-canvas.tsx` (+7 -1) ➖ `frontend/src/components/region-selector.tsx` (+0 -247) 📝 `frontend/src/components/settings-modal.tsx` (+39 -1) 📝 `frontend/src/components/settings-panel.tsx` (+129 -27) ➕ `frontend/src/components/update-modal.tsx` (+128 -0) ➕ `frontend/src/hooks/use-undo-redo.ts` (+107 -0) 📝 `frontend/wailsjs/go/main/App.d.ts` (+13 -0) 📝 `frontend/wailsjs/go/main/App.js` (+24 -0) 📝 `frontend/wailsjs/go/models.ts` (+64 -0) _...and 12 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 15:57:35 +03:00
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#61
No description provided.