Hugo Jourdan

Results 17 comments of Hugo Jourdan

Something also strange if I run : `print(open('/System/Library/CoreServices/SystemVersion.plist').read()) ` I got this : ``` ProductBuildVersion 22C65 ProductCopyright 1983-2022 Apple Inc. ProductName Mac OS X ProductUserVisibleVersion 10.16 ProductVersion 10.16 iOSSupportVersion 16.2...

In drawBot, `print(sys.version)`, return : ``` 3.9.13 (v3.9.13:6de2ca5339, May 17 2022, 11:23:25) [Clang 6.0 (clang-600.0.57)] ``` Where terminal or VSCode return : ``` 3.9.13 (v3.9.13:6de2ca5339, May 17 2022, 11:37:23) [Clang...

I friend under MacOS Monterey (12.5.1) got the same problem. ``` import sys import platform print(sys.version) print(platform.mac_ver()) FONT = pathtoOpenSans print(listNamedInstances(FONT)) ``` RETURN ``` 3.9.13 (v3.9.13:6de2ca5339, May 17 2022, 11:23:25)...

Using ttLib, I can have access to all instances : ```python from fontTools import ttLib FONT = pathToVariableFont ft = ttLib.TTFont(FONT, lazy=True, fontNumber=0) if "fvar" in ft: fvar = ft["fvar"]...

I tested it with another Mac Intel, and I got the same issue. ![Capture d’écran 2023-01-10 à 18 21 12](https://user-images.githubusercontent.com/76793951/211620055-a578f916-6840-45c0-9f2f-aca088a1820a.png)

I see named instances in other apps... It's very weird bug :/ For now, I will manually get the names with fontTools

Yes, I'm using French. Switching to "English" work for me too.