Skip to content

Commit d822fbe

Browse files
committed
fix: Support pin and person windows cursors
Related to #24
1 parent b9d526d commit d822fbe

File tree

6 files changed

+107
-2
lines changed

6 files changed

+107
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2020
### What's New?
2121

2222
- Support `256px` cursors
23+
- Support `256px` cursors
24+
- feat: Added `Person` and `Pin` cursors for Windows
25+
- Official Distributing `16` and `20` XCursors #24
26+
- Multi Resolution Windows Cursors
27+
- Attach version meta-data inside cursor packages
28+
- Using [cbmp v1.1.1](https://github.com/ful1e5/cbmp/tree/v1.1.1) for rendering cursor bitmaps.
2329

2430
### Changes
2531

26-
- De-framed animated cursors
27-
- Resigned the wait cursor with round background #23
32+
- build script renamed (`release.sh` -> `build.sh`)
33+
- Use 'xz' for better compression in `build.sh` script
34+
- De-framed animated cursors to static SVG files
2835

2936
## [v2.0.0] - 14 October 2021
3037

configs/win_lg.build.toml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,3 +122,15 @@ png = 'zoom-out.png'
122122
x_hotspot = 109
123123
y_hotspot = 103
124124
win_name = 'Zoom-out'
125+
126+
[cursors.person]
127+
png = 'person.png'
128+
x_hotspot = 69
129+
y_hotspot = 30
130+
win_name = 'Person'
131+
132+
[cursors.pin]
133+
png = 'pin.png'
134+
x_hotspot = 69
135+
y_hotspot = 30
136+
win_name = 'Pin'

configs/win_rg.build.toml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,3 +122,15 @@ png = 'zoom-out.png'
122122
x_hotspot = 109
123123
y_hotspot = 103
124124
win_name = 'Zoom-out'
125+
126+
[cursors.person]
127+
png = 'person.png'
128+
x_hotspot = 69
129+
y_hotspot = 30
130+
win_name = 'Person'
131+
132+
[cursors.pin]
133+
png = 'pin.png'
134+
x_hotspot = 69
135+
y_hotspot = 30
136+
win_name = 'Pin'

configs/win_xl.build.toml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,3 +122,15 @@ png = 'zoom-out.png'
122122
x_hotspot = 109
123123
y_hotspot = 103
124124
win_name = 'Zoom-out'
125+
126+
[cursors.person]
127+
png = 'person.png'
128+
x_hotspot = 69
129+
y_hotspot = 30
130+
win_name = 'Person'
131+
132+
[cursors.pin]
133+
png = 'pin.png'
134+
x_hotspot = 69
135+
y_hotspot = 30
136+
win_name = 'Pin'

svg/person.svg

Lines changed: 31 additions & 0 deletions
Loading

svg/pin.svg

Lines changed: 31 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)