Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

making notes bold #341

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions Changelog.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
[
{
"version": "1.24.3",
"date": "October 10th, 2024",
"summary": "Making cell notes bold for easier visibility.",
"bug fixes": ["Notes are now as dark as values and are easier to see."],
"targets": ["web", "mobile", "desktop"],
"contributors": ["Thomas-Gallant"]
},
{
"version": "1.24.2",
"date": "September 12th, 2024",
"summary": "Fixing issue with loading profile data on mobile devices and adding preview feature to change hint strategy order",
"summary": "Fixing issue with loading profile data on mobile devices and adding preview feature to change hint strategy order.",
"bug fixes": [
"Fixed a crash scenario on mobile when a user had partial profile data stored and loads profile page."
],
Expand Down Expand Up @@ -243,7 +251,7 @@
},
{
"version": "1.13.0",
"date": "Octobre 22nd, 2023",
"date": "October 22nd, 2023",
"summary": "Implemented desktop app support",
"features": ["Sudokuru can now be downloaded and played on desktop."],
"targets": ["desktop"],
Expand Down
1 change: 1 addition & 0 deletions app/Components/SudokuBoard/Components/Cell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ const Cell = (props: RenderCellProps) => {
const styleVal = {
fontSize: cellSize ? cellSize / 4.5 : fallbackHeight / 4,
fontFamily: "Inter_200ExtraLight",
fontWeight: "bold",
};
return <Text style={styleVal}>{noteIndex}</Text>;
}
Expand Down
Loading