Skip to content

Commit

Permalink
fix: Support pin and person windows cursors
Browse files Browse the repository at this point in the history
Related to #24
  • Loading branch information
ful1e5 committed Jul 1, 2024
1 parent b9d526d commit d822fbe
Show file tree
Hide file tree
Showing 6 changed files with 107 additions and 2 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### What's New?

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

### Changes

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

## [v2.0.0] - 14 October 2021

Expand Down
12 changes: 12 additions & 0 deletions configs/win_lg.build.toml
Original file line number Diff line number Diff line change
Expand Up @@ -122,3 +122,15 @@ png = 'zoom-out.png'
x_hotspot = 109
y_hotspot = 103
win_name = 'Zoom-out'

[cursors.person]
png = 'person.png'
x_hotspot = 69
y_hotspot = 30
win_name = 'Person'

[cursors.pin]
png = 'pin.png'
x_hotspot = 69
y_hotspot = 30
win_name = 'Pin'
12 changes: 12 additions & 0 deletions configs/win_rg.build.toml
Original file line number Diff line number Diff line change
Expand Up @@ -122,3 +122,15 @@ png = 'zoom-out.png'
x_hotspot = 109
y_hotspot = 103
win_name = 'Zoom-out'

[cursors.person]
png = 'person.png'
x_hotspot = 69
y_hotspot = 30
win_name = 'Person'

[cursors.pin]
png = 'pin.png'
x_hotspot = 69
y_hotspot = 30
win_name = 'Pin'
12 changes: 12 additions & 0 deletions configs/win_xl.build.toml
Original file line number Diff line number Diff line change
Expand Up @@ -122,3 +122,15 @@ png = 'zoom-out.png'
x_hotspot = 109
y_hotspot = 103
win_name = 'Zoom-out'

[cursors.person]
png = 'person.png'
x_hotspot = 69
y_hotspot = 30
win_name = 'Person'

[cursors.pin]
png = 'pin.png'
x_hotspot = 69
y_hotspot = 30
win_name = 'Pin'
31 changes: 31 additions & 0 deletions svg/person.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 31 additions & 0 deletions svg/pin.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit d822fbe

Please sign in to comment.