Skip to content

Commit

Permalink
修复 name_strings
Browse files Browse the repository at this point in the history
  • Loading branch information
TakWolf committed Feb 20, 2023
1 parent a553bdd commit 62d3d8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configs/font_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,10 @@ def get_name_strings(self):
),
'familyName': self.full_display_name,
'styleName': self.style_name,
'uniqueFontIdentifier': f'{self.full_unique_name};{version}',
'uniqueFontIdentifier': f'{self.full_unique_name}-{self.style_name};{version}',
'fullName': self.full_display_name,
'version': version,
'psName': self.full_unique_name,
'psName': f'{self.full_unique_name}-{self.style_name}',
'designer': self.designer,
'description': self.description,
'vendorURL': vendor_url,
Expand Down

0 comments on commit 62d3d8c

Please sign in to comment.