Skip to content

Commit

Permalink
Build 63
Browse files Browse the repository at this point in the history
- Implemented font shadows alongside font outlines. A 2-pixel drop shadow is now the default.
- Changed the hint configuration in the author's configuration to a 6×6 hint grid. When a hint is selected, the same 6×6 hint grid is displayed over the zoomed area, in full screen.
- (Breaking change) Made hint cell size, font size, and border thickness independent of zoom level to prevent rounding issues and simplify the configuration.
```properties
# Old:
#hint2-2-mode.zoom.percent=5.0
#hint2-2-mode.zoom.center=last-selected-hint
#hint2-2-mode.hint.grid-cell-width=10
#hint2-2-mode.hint.grid-cell-height=15
#hint2-2-mode.hint.font-size=3.6
#hint2-2-mode.hint.box-border-thickness=0.2
# New:
hint2-2-mode.zoom.percent=5.0
hint2-2-mode.zoom.center=last-selected-hint
hint2-2-mode.hint.grid-cell-width=50
hint2-2-mode.hint.grid-cell-height=75
```
- (Breaking change) Renamed the two properties related to how hints are laid out:
```properties
# Old:
#hint1-mode.hint.subgrid-row-count=6
#hint1-mode.hint.subgrid-column-count=5
# New:
hint1-mode.hint.layout-row-count=6
hint1-mode.hint.layout-column-count=5
```
  • Loading branch information
petoncle committed Feb 2, 2025
1 parent be3ecc4 commit eb1790f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>mousemaster</groupId>
<artifactId>mousemaster</artifactId>
<version>62</version>
<version>63</version>
<name>mousemaster</name>
<!--
See https://graalvm.github.io/native-build-tools/latest/maven-plugin-quickstart.html
Expand Down

0 comments on commit eb1790f

Please sign in to comment.