Skip to content

Commit

Permalink
bump version (#7337)
Browse files Browse the repository at this point in the history
add ss02 to fonts

this isn't working on web and i don't know why

add ss02 to templates/fallback styles
  • Loading branch information
haileyok authored and benharri committed Jan 3, 2025
1 parent 59709ad commit 720b782
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions bskyweb/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
margin: 0px;
padding: 0px;
font-family: InterVariable, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Liberation Sans', Helvetica, Arial, sans-serif;
font-feature-settings: 'cv05' on, 'calt' off;
text-rendering: optimizeLegibility;
/* Platform-specific reset */
-webkit-overflow-scrolling: touch;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bsky.app",
"version": "1.96.3",
"version": "1.96.4",
"private": true,
"engines": {
"node": ">=20"
Expand Down
4 changes: 3 additions & 1 deletion src/alf/fonts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,9 @@ export function applyFonts(style: TextStyle, fontFamily: 'system' | 'theme') {
* Disable contextual alternates in Inter
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/font-variant}
*/
style.fontVariant = (style.fontVariant || []).concat('no-contextual')
style.fontVariant = (style.fontVariant || [])
.concat('no-contextual')
.concat('character-variant-5')
} else {
// fallback families only supported on web
if (isWeb) {
Expand Down
1 change: 1 addition & 0 deletions web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
margin: 0px;
padding: 0px;
font-family: InterVariable, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Liberation Sans', Helvetica, Arial, sans-serif;
font-feature-settings: 'cv05' on, 'calt' off;
text-rendering: optimizeLegibility;
/* Platform-specific reset */
-webkit-overflow-scrolling: touch;
Expand Down

0 comments on commit 720b782

Please sign in to comment.