Skip to content

Commit 09c7f12

Browse files
committed
chore: bump
1 parent 4c175de commit 09c7f12

4 files changed

Lines changed: 13 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88

9-
## v1.0.7
9+
## v1.0.8
1010

1111
### Added
1212
- **Rectangle Tool** - Draw rectangles by clicking two points
@@ -16,6 +16,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1616
- Respects current color and thickness settings
1717
- Custom rectangle cursor with corner markers
1818
- Supports right-click color cycling and mouse wheel thickness adjustment
19+
- Works seamlessly with Eraser tool
20+
21+
## v1.0.7
22+
23+
### Added
1924
- **Screenshot Capture** - Capture your drawings as images
2025
- Press `Ctrl+S` to capture full screen with drawings (saved to Pictures\GhostDraw)
2126
- Key suppression prevents Windows from intercepting Ctrl+S during drawing mode
@@ -29,6 +34,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2934
- Screenshot hotkey (`Ctrl+S`) now correctly detects Control key by tracking both left (VK_LCONTROL) and right (VK_RCONTROL) control keys instead of generic VK_CONTROL
3035
- Thread safety improvements with volatile field for update nesting level
3136

37+
### Changed
38+
- Snipping tool (`S` key) now properly exits drawing mode to allow user interaction
39+
- User must manually reactivate drawing mode after using snipping tool (press hotkey)
40+
3241
## v1.0.6
3342

3443
### Added

Installer/GhostDraw.Installer.wixproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="WixToolset.Sdk/4.0.5">
22
<PropertyGroup>
3-
<Version Condition="'$(Version)' == ''">1.0.7</Version>
3+
<Version Condition="'$(Version)' == ''">1.0.8</Version>
44
<OutputName>GhostDrawSetup-$(Version)</OutputName>
55
<OutputType>Package</OutputType>
66
<Platform>x64</Platform>

Src/GhostDraw/GhostDraw.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<UseWPF>true</UseWPF>
99
<UseWindowsForms>true</UseWindowsForms>
1010
<ApplicationIcon>Assets\favicon.ico</ApplicationIcon>
11-
<Version>1.0.7</Version>
11+
<Version>1.0.8</Version>
1212
<EnableWindowsTargeting>true</EnableWindowsTargeting>
1313
</PropertyGroup>
1414

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ghost-draw",
3-
"version": "1.0.7",
3+
"version": "1.0.8",
44
"description": "Draw directly on your screen with a transparent overlay",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)