├── .gitattributes ├── .github └── workflows │ ├── publish_to_pypi.yml │ └── run_test.yml ├── .gitignore ├── LICENSE ├── README.md ├── examples └── collect_font_and_mux_them.py ├── font_collector ├── __init__.py ├── __main__.py ├── _version.py ├── ass │ ├── __init__.py │ ├── abc_ass_document.py │ ├── ass_document.py │ ├── ass_style.py │ └── usage_data.py ├── collect_fonts.py ├── exceptions.py ├── font │ ├── __init__.py │ ├── abc_font_face.py │ ├── chinese_variant.py │ ├── cmap.py │ ├── factory_abc_font_face.py │ ├── font_collection.py │ ├── font_file.py │ ├── font_loader.py │ ├── font_parser.py │ ├── font_result.py │ ├── font_type.py │ ├── lcid.py │ ├── name.py │ ├── normal_font_face.py │ ├── selection_strategy │ │ ├── __init__.py │ │ ├── font_selection_strategy.py │ │ ├── font_selection_strategy_libass.py │ │ └── font_selection_strategy_vsfilter.py │ ├── variable_font_face.py │ └── weight_helper.py ├── mkvfontvalidator.py ├── mkvtoolnix │ ├── __init__.py │ ├── exit_code.py │ ├── mkv_ass_file.py │ ├── mkv_font_file.py │ ├── mkv_utils.py │ ├── mkvextract.py │ ├── mkvmerge.py │ └── mkvpropedit.py ├── parse_arguments.py ├── py.typed └── system_lang │ ├── __init__.py │ ├── abc_system_lang.py │ ├── linux_lang.py │ ├── mac_lang.py │ ├── system_lang.py │ └── windows_lang.py ├── proof └── [Symbol Font] Find unique char by ansi code page.py ├── pyproject.toml ├── renovate.json └── tests ├── ass ├── test_ass_document.py ├── test_ass_style.py └── test_usage_data.py ├── file ├── ass │ ├── 2 duplicate style name with number.ass │ ├── 2 duplicate style name.ass │ ├── 3 duplicate style name.ass │ ├── Collect Draw Style test.ass │ ├── Empty line style name.ass │ ├── Empty line with invalid style.ass │ ├── Non-empty line with invalid style.ass │ ├── Style test.ass │ ├── Usage Data Test.ass │ ├── WrapStyle.ass │ └── sample.ass ├── font tests │ └── Test #1 │ │ ├── F5AJJI3A - Original.xml │ │ ├── F5AJJI3A.TTF │ │ ├── Test #1.py │ │ ├── Test #1.ttf │ │ └── Test #1.xml ├── fonts │ ├── Asap-VariableFont_wdth,wght.ttf │ ├── Cabin VF Beta Regular.ttf │ ├── PENBOX.otf │ ├── Raleway │ │ ├── Generate fonts.py │ │ ├── Raleway-Black.ttf │ │ ├── Raleway-Bold.ttf │ │ ├── Raleway-BoldItalic.ttf │ │ ├── Raleway-ExtraBold.ttf │ │ ├── Raleway-ExtraLight.ttf │ │ ├── Raleway-Italic.ttf │ │ ├── Raleway-Light.ttf │ │ ├── Raleway-Medium.ttf │ │ ├── Raleway-Regular.ttf │ │ ├── Raleway-SemiBold.ttf │ │ ├── Raleway-Thin.ttf │ │ └── generated_fonts │ │ │ ├── Raleway-Black.ttf - generated.ttf │ │ │ ├── Raleway-Bold.ttf - generated.ttf │ │ │ ├── Raleway-BoldItalic.ttf - generated.ttf │ │ │ ├── Raleway-ExtraBold.ttf - generated.ttf │ │ │ ├── Raleway-ExtraLight.ttf - generated.ttf │ │ │ ├── Raleway-Italic.ttf - generated.ttf │ │ │ ├── Raleway-Light.ttf - generated.ttf │ │ │ ├── Raleway-Medium.ttf - generated.ttf │ │ │ ├── Raleway-Regular.ttf - generated.ttf │ │ │ ├── Raleway-SemiBold.ttf - generated.ttf │ │ │ └── Raleway-Thin.ttf - generated.ttf │ ├── SFProDisplay-Bold.ttf │ ├── SFProDisplay-BoldItalic.ttf │ ├── Same Score, but exact_name VS family_name │ │ ├── Generate Jester - Generated.py │ │ ├── Jester - Generated.ttf │ │ └── Jester.ttf │ ├── Same font, but ttf vs ttc │ │ ├── ClassicalDiary-Regular Demo - Generated.ttc │ │ ├── ClassicalDiary-Regular Demo.ttf │ │ └── Generate ClassicalDiary-Regular Demo - Generated.py │ ├── empty_file.txt │ ├── font_cmap_encoding_0.ttf │ ├── font_cmap_encoding_1.ttf │ ├── font_cmap_encoding_2.TTF │ ├── font_mac.TTF │ ├── font_with_invalid_os2_table.ttf │ ├── font_without axis_value.ttf │ ├── fvar_with_0_instance.ttf │ ├── invalid_cmap.ttf │ ├── opentype_font_collection.ttc │ └── truetype_font_collection.ttc ├── test video subs + 1 font.mkv ├── test video.mkv └── variable font tests │ ├── Test #1 │ ├── AdventPro - Original.ttf │ ├── AdventPro - Original.xml │ ├── Test #1.py │ ├── Test #1.ttf │ └── Test #1.xml │ ├── Test #10 │ ├── Alegreya - Original.ttf │ ├── Alegreya - Original.xml │ ├── Test #10.py │ ├── Test #10.ttf │ └── Test #10.xml │ ├── Test #11 │ ├── AdventPro - Original.ttf │ ├── AdventPro - Original.xml │ ├── Test #11.py │ ├── Test #11.ttf │ └── Test #11.xml │ ├── Test #12 │ ├── Test #12.py │ ├── Test #12.ttf │ ├── Test #12.xml │ ├── font_without axis_value - Original.ttf │ └── font_without axis_value - Original.xml │ ├── Test #13 │ ├── Alegreya - Original.ttf │ ├── Alegreya - Original.xml │ ├── Test #13.py │ ├── Test #13.ttf │ └── Test #13.xml │ ├── Test #2 │ ├── Alegreya - Original.ttf │ ├── Alegreya - Original.xml │ ├── Test #2.py │ ├── Test #2.ttf │ └── Test #2.xml │ ├── Test #3 │ ├── AdventPro - Original.ttf │ ├── AdventPro - Original.xml │ ├── Test #3.py │ ├── Test #3.ttf │ └── Test #3.xml │ ├── Test #4 │ ├── Alegreya - Original.ttf │ ├── Alegreya - Original.xml │ ├── Test #4.py │ ├── Test #4.ttf │ └── Test #4.xml │ ├── Test #5 │ ├── Alegreya - Original.ttf │ ├── Alegreya - Original.xml │ ├── Test #5.py │ ├── Test #5.ttf │ └── Test #5.xml │ ├── Test #6 │ ├── AdventPro - Original.ttf │ ├── AdventPro - Original.xml │ ├── Test #6.py │ ├── Test #6.ttf │ └── Test #6.xml │ ├── Test #7 │ ├── Alegreya - Original.ttf │ ├── Alegreya - Original.xml │ ├── Test #7.py │ ├── Test #7.ttf │ └── Test #7.xml │ ├── Test #8 │ ├── Alegreya - Original.ttf │ ├── Alegreya - Original.xml │ ├── Test #8.py │ ├── Test #8.ttf │ └── Test #8.xml │ └── Test #9 │ ├── Alegreya - Original.ttf │ ├── Alegreya - Original.xml │ ├── Test #9.py │ ├── Test #9.ttf │ └── Test #9.xml ├── font ├── selection_strategy │ ├── test_font_selection_strategy_libass.py │ └── test_font_selection_strategy_vsfilter.py ├── test_chinese_variant.py ├── test_cmap.py ├── test_factory_abc_font.py ├── test_font_collection.py ├── test_font_file.py ├── test_font_loader.py ├── test_font_parser.py ├── test_font_result.py ├── test_font_type.py ├── test_name.py ├── test_normal_font_face.py ├── test_variable_font.py └── test_weight_helper.py ├── mkvtoolnix ├── test_mkvextract.py ├── test_mkvpropedit.py └── test_utils.py └── test_main.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/publish_to_pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/.github/workflows/publish_to_pypi.yml -------------------------------------------------------------------------------- /.github/workflows/run_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/.github/workflows/run_test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/README.md -------------------------------------------------------------------------------- /examples/collect_font_and_mux_them.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/examples/collect_font_and_mux_them.py -------------------------------------------------------------------------------- /font_collector/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/__init__.py -------------------------------------------------------------------------------- /font_collector/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/__main__.py -------------------------------------------------------------------------------- /font_collector/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = "3.1.2" 2 | -------------------------------------------------------------------------------- /font_collector/ass/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/ass/__init__.py -------------------------------------------------------------------------------- /font_collector/ass/abc_ass_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/ass/abc_ass_document.py -------------------------------------------------------------------------------- /font_collector/ass/ass_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/ass/ass_document.py -------------------------------------------------------------------------------- /font_collector/ass/ass_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/ass/ass_style.py -------------------------------------------------------------------------------- /font_collector/ass/usage_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/ass/usage_data.py -------------------------------------------------------------------------------- /font_collector/collect_fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/collect_fonts.py -------------------------------------------------------------------------------- /font_collector/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/exceptions.py -------------------------------------------------------------------------------- /font_collector/font/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/font/__init__.py -------------------------------------------------------------------------------- /font_collector/font/abc_font_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/font/abc_font_face.py -------------------------------------------------------------------------------- /font_collector/font/chinese_variant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/font/chinese_variant.py -------------------------------------------------------------------------------- /font_collector/font/cmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/font/cmap.py -------------------------------------------------------------------------------- /font_collector/font/factory_abc_font_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/font/factory_abc_font_face.py -------------------------------------------------------------------------------- /font_collector/font/font_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/font/font_collection.py -------------------------------------------------------------------------------- /font_collector/font/font_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/font/font_file.py -------------------------------------------------------------------------------- /font_collector/font/font_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/font/font_loader.py -------------------------------------------------------------------------------- /font_collector/font/font_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/font/font_parser.py -------------------------------------------------------------------------------- /font_collector/font/font_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/font/font_result.py -------------------------------------------------------------------------------- /font_collector/font/font_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/font/font_type.py -------------------------------------------------------------------------------- /font_collector/font/lcid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/font/lcid.py -------------------------------------------------------------------------------- /font_collector/font/name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/font/name.py -------------------------------------------------------------------------------- /font_collector/font/normal_font_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/font/normal_font_face.py -------------------------------------------------------------------------------- /font_collector/font/selection_strategy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/font/selection_strategy/__init__.py -------------------------------------------------------------------------------- /font_collector/font/selection_strategy/font_selection_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/font/selection_strategy/font_selection_strategy.py -------------------------------------------------------------------------------- /font_collector/font/selection_strategy/font_selection_strategy_libass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/font/selection_strategy/font_selection_strategy_libass.py -------------------------------------------------------------------------------- /font_collector/font/selection_strategy/font_selection_strategy_vsfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/font/selection_strategy/font_selection_strategy_vsfilter.py -------------------------------------------------------------------------------- /font_collector/font/variable_font_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/font/variable_font_face.py -------------------------------------------------------------------------------- /font_collector/font/weight_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/font/weight_helper.py -------------------------------------------------------------------------------- /font_collector/mkvfontvalidator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/mkvfontvalidator.py -------------------------------------------------------------------------------- /font_collector/mkvtoolnix/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/mkvtoolnix/__init__.py -------------------------------------------------------------------------------- /font_collector/mkvtoolnix/exit_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/mkvtoolnix/exit_code.py -------------------------------------------------------------------------------- /font_collector/mkvtoolnix/mkv_ass_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/mkvtoolnix/mkv_ass_file.py -------------------------------------------------------------------------------- /font_collector/mkvtoolnix/mkv_font_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/mkvtoolnix/mkv_font_file.py -------------------------------------------------------------------------------- /font_collector/mkvtoolnix/mkv_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/mkvtoolnix/mkv_utils.py -------------------------------------------------------------------------------- /font_collector/mkvtoolnix/mkvextract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/mkvtoolnix/mkvextract.py -------------------------------------------------------------------------------- /font_collector/mkvtoolnix/mkvmerge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/mkvtoolnix/mkvmerge.py -------------------------------------------------------------------------------- /font_collector/mkvtoolnix/mkvpropedit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/mkvtoolnix/mkvpropedit.py -------------------------------------------------------------------------------- /font_collector/parse_arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/parse_arguments.py -------------------------------------------------------------------------------- /font_collector/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /font_collector/system_lang/__init__.py: -------------------------------------------------------------------------------- 1 | from .system_lang import * 2 | -------------------------------------------------------------------------------- /font_collector/system_lang/abc_system_lang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/system_lang/abc_system_lang.py -------------------------------------------------------------------------------- /font_collector/system_lang/linux_lang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/system_lang/linux_lang.py -------------------------------------------------------------------------------- /font_collector/system_lang/mac_lang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/system_lang/mac_lang.py -------------------------------------------------------------------------------- /font_collector/system_lang/system_lang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/system_lang/system_lang.py -------------------------------------------------------------------------------- /font_collector/system_lang/windows_lang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/font_collector/system_lang/windows_lang.py -------------------------------------------------------------------------------- /proof/[Symbol Font] Find unique char by ansi code page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/proof/[Symbol Font] Find unique char by ansi code page.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/pyproject.toml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/renovate.json -------------------------------------------------------------------------------- /tests/ass/test_ass_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/ass/test_ass_document.py -------------------------------------------------------------------------------- /tests/ass/test_ass_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/ass/test_ass_style.py -------------------------------------------------------------------------------- /tests/ass/test_usage_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/ass/test_usage_data.py -------------------------------------------------------------------------------- /tests/file/ass/2 duplicate style name with number.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/ass/2 duplicate style name with number.ass -------------------------------------------------------------------------------- /tests/file/ass/2 duplicate style name.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/ass/2 duplicate style name.ass -------------------------------------------------------------------------------- /tests/file/ass/3 duplicate style name.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/ass/3 duplicate style name.ass -------------------------------------------------------------------------------- /tests/file/ass/Collect Draw Style test.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/ass/Collect Draw Style test.ass -------------------------------------------------------------------------------- /tests/file/ass/Empty line style name.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/ass/Empty line style name.ass -------------------------------------------------------------------------------- /tests/file/ass/Empty line with invalid style.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/ass/Empty line with invalid style.ass -------------------------------------------------------------------------------- /tests/file/ass/Non-empty line with invalid style.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/ass/Non-empty line with invalid style.ass -------------------------------------------------------------------------------- /tests/file/ass/Style test.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/ass/Style test.ass -------------------------------------------------------------------------------- /tests/file/ass/Usage Data Test.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/ass/Usage Data Test.ass -------------------------------------------------------------------------------- /tests/file/ass/WrapStyle.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/ass/WrapStyle.ass -------------------------------------------------------------------------------- /tests/file/ass/sample.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/ass/sample.ass -------------------------------------------------------------------------------- /tests/file/font tests/Test #1/F5AJJI3A - Original.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/font tests/Test #1/F5AJJI3A - Original.xml -------------------------------------------------------------------------------- /tests/file/font tests/Test #1/F5AJJI3A.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/font tests/Test #1/F5AJJI3A.TTF -------------------------------------------------------------------------------- /tests/file/font tests/Test #1/Test #1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/font tests/Test #1/Test #1.py -------------------------------------------------------------------------------- /tests/file/font tests/Test #1/Test #1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/font tests/Test #1/Test #1.ttf -------------------------------------------------------------------------------- /tests/file/font tests/Test #1/Test #1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/font tests/Test #1/Test #1.xml -------------------------------------------------------------------------------- /tests/file/fonts/Asap-VariableFont_wdth,wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/Asap-VariableFont_wdth,wght.ttf -------------------------------------------------------------------------------- /tests/file/fonts/Cabin VF Beta Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/Cabin VF Beta Regular.ttf -------------------------------------------------------------------------------- /tests/file/fonts/PENBOX.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/PENBOX.otf -------------------------------------------------------------------------------- /tests/file/fonts/Raleway/Generate fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/Raleway/Generate fonts.py -------------------------------------------------------------------------------- /tests/file/fonts/Raleway/Raleway-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/Raleway/Raleway-Black.ttf -------------------------------------------------------------------------------- /tests/file/fonts/Raleway/Raleway-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/Raleway/Raleway-Bold.ttf -------------------------------------------------------------------------------- /tests/file/fonts/Raleway/Raleway-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/Raleway/Raleway-BoldItalic.ttf -------------------------------------------------------------------------------- /tests/file/fonts/Raleway/Raleway-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/Raleway/Raleway-ExtraBold.ttf -------------------------------------------------------------------------------- /tests/file/fonts/Raleway/Raleway-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/Raleway/Raleway-ExtraLight.ttf -------------------------------------------------------------------------------- /tests/file/fonts/Raleway/Raleway-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/Raleway/Raleway-Italic.ttf -------------------------------------------------------------------------------- /tests/file/fonts/Raleway/Raleway-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/Raleway/Raleway-Light.ttf -------------------------------------------------------------------------------- /tests/file/fonts/Raleway/Raleway-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/Raleway/Raleway-Medium.ttf -------------------------------------------------------------------------------- /tests/file/fonts/Raleway/Raleway-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/Raleway/Raleway-Regular.ttf -------------------------------------------------------------------------------- /tests/file/fonts/Raleway/Raleway-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/Raleway/Raleway-SemiBold.ttf -------------------------------------------------------------------------------- /tests/file/fonts/Raleway/Raleway-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/Raleway/Raleway-Thin.ttf -------------------------------------------------------------------------------- /tests/file/fonts/Raleway/generated_fonts/Raleway-Black.ttf - generated.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/Raleway/generated_fonts/Raleway-Black.ttf - generated.ttf -------------------------------------------------------------------------------- /tests/file/fonts/Raleway/generated_fonts/Raleway-Bold.ttf - generated.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/Raleway/generated_fonts/Raleway-Bold.ttf - generated.ttf -------------------------------------------------------------------------------- /tests/file/fonts/Raleway/generated_fonts/Raleway-BoldItalic.ttf - generated.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/Raleway/generated_fonts/Raleway-BoldItalic.ttf - generated.ttf -------------------------------------------------------------------------------- /tests/file/fonts/Raleway/generated_fonts/Raleway-ExtraBold.ttf - generated.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/Raleway/generated_fonts/Raleway-ExtraBold.ttf - generated.ttf -------------------------------------------------------------------------------- /tests/file/fonts/Raleway/generated_fonts/Raleway-ExtraLight.ttf - generated.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/Raleway/generated_fonts/Raleway-ExtraLight.ttf - generated.ttf -------------------------------------------------------------------------------- /tests/file/fonts/Raleway/generated_fonts/Raleway-Italic.ttf - generated.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/Raleway/generated_fonts/Raleway-Italic.ttf - generated.ttf -------------------------------------------------------------------------------- /tests/file/fonts/Raleway/generated_fonts/Raleway-Light.ttf - generated.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/Raleway/generated_fonts/Raleway-Light.ttf - generated.ttf -------------------------------------------------------------------------------- /tests/file/fonts/Raleway/generated_fonts/Raleway-Medium.ttf - generated.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/Raleway/generated_fonts/Raleway-Medium.ttf - generated.ttf -------------------------------------------------------------------------------- /tests/file/fonts/Raleway/generated_fonts/Raleway-Regular.ttf - generated.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/Raleway/generated_fonts/Raleway-Regular.ttf - generated.ttf -------------------------------------------------------------------------------- /tests/file/fonts/Raleway/generated_fonts/Raleway-SemiBold.ttf - generated.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/Raleway/generated_fonts/Raleway-SemiBold.ttf - generated.ttf -------------------------------------------------------------------------------- /tests/file/fonts/Raleway/generated_fonts/Raleway-Thin.ttf - generated.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/Raleway/generated_fonts/Raleway-Thin.ttf - generated.ttf -------------------------------------------------------------------------------- /tests/file/fonts/SFProDisplay-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/SFProDisplay-Bold.ttf -------------------------------------------------------------------------------- /tests/file/fonts/SFProDisplay-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/SFProDisplay-BoldItalic.ttf -------------------------------------------------------------------------------- /tests/file/fonts/Same Score, but exact_name VS family_name/Generate Jester - Generated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/Same Score, but exact_name VS family_name/Generate Jester - Generated.py -------------------------------------------------------------------------------- /tests/file/fonts/Same Score, but exact_name VS family_name/Jester - Generated.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/Same Score, but exact_name VS family_name/Jester - Generated.ttf -------------------------------------------------------------------------------- /tests/file/fonts/Same Score, but exact_name VS family_name/Jester.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/Same Score, but exact_name VS family_name/Jester.ttf -------------------------------------------------------------------------------- /tests/file/fonts/Same font, but ttf vs ttc/ClassicalDiary-Regular Demo - Generated.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/Same font, but ttf vs ttc/ClassicalDiary-Regular Demo - Generated.ttc -------------------------------------------------------------------------------- /tests/file/fonts/Same font, but ttf vs ttc/ClassicalDiary-Regular Demo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/Same font, but ttf vs ttc/ClassicalDiary-Regular Demo.ttf -------------------------------------------------------------------------------- /tests/file/fonts/Same font, but ttf vs ttc/Generate ClassicalDiary-Regular Demo - Generated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/Same font, but ttf vs ttc/Generate ClassicalDiary-Regular Demo - Generated.py -------------------------------------------------------------------------------- /tests/file/fonts/empty_file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/file/fonts/font_cmap_encoding_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/font_cmap_encoding_0.ttf -------------------------------------------------------------------------------- /tests/file/fonts/font_cmap_encoding_1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/font_cmap_encoding_1.ttf -------------------------------------------------------------------------------- /tests/file/fonts/font_cmap_encoding_2.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/font_cmap_encoding_2.TTF -------------------------------------------------------------------------------- /tests/file/fonts/font_mac.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/font_mac.TTF -------------------------------------------------------------------------------- /tests/file/fonts/font_with_invalid_os2_table.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/font_with_invalid_os2_table.ttf -------------------------------------------------------------------------------- /tests/file/fonts/font_without axis_value.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/font_without axis_value.ttf -------------------------------------------------------------------------------- /tests/file/fonts/fvar_with_0_instance.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/fvar_with_0_instance.ttf -------------------------------------------------------------------------------- /tests/file/fonts/invalid_cmap.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/invalid_cmap.ttf -------------------------------------------------------------------------------- /tests/file/fonts/opentype_font_collection.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/opentype_font_collection.ttc -------------------------------------------------------------------------------- /tests/file/fonts/truetype_font_collection.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/fonts/truetype_font_collection.ttc -------------------------------------------------------------------------------- /tests/file/test video subs + 1 font.mkv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/test video subs + 1 font.mkv -------------------------------------------------------------------------------- /tests/file/test video.mkv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/test video.mkv -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #1/AdventPro - Original.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #1/AdventPro - Original.ttf -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #1/AdventPro - Original.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #1/AdventPro - Original.xml -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #1/Test #1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #1/Test #1.py -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #1/Test #1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #1/Test #1.ttf -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #1/Test #1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #1/Test #1.xml -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #10/Alegreya - Original.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #10/Alegreya - Original.ttf -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #10/Alegreya - Original.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #10/Alegreya - Original.xml -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #10/Test #10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #10/Test #10.py -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #10/Test #10.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #10/Test #10.ttf -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #10/Test #10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #10/Test #10.xml -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #11/AdventPro - Original.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #11/AdventPro - Original.ttf -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #11/AdventPro - Original.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #11/AdventPro - Original.xml -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #11/Test #11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #11/Test #11.py -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #11/Test #11.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #11/Test #11.ttf -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #11/Test #11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #11/Test #11.xml -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #12/Test #12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #12/Test #12.py -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #12/Test #12.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #12/Test #12.ttf -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #12/Test #12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #12/Test #12.xml -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #12/font_without axis_value - Original.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #12/font_without axis_value - Original.ttf -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #12/font_without axis_value - Original.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #12/font_without axis_value - Original.xml -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #13/Alegreya - Original.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #13/Alegreya - Original.ttf -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #13/Alegreya - Original.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #13/Alegreya - Original.xml -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #13/Test #13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #13/Test #13.py -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #13/Test #13.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #13/Test #13.ttf -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #13/Test #13.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #13/Test #13.xml -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #2/Alegreya - Original.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #2/Alegreya - Original.ttf -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #2/Alegreya - Original.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #2/Alegreya - Original.xml -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #2/Test #2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #2/Test #2.py -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #2/Test #2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #2/Test #2.ttf -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #2/Test #2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #2/Test #2.xml -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #3/AdventPro - Original.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #3/AdventPro - Original.ttf -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #3/AdventPro - Original.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #3/AdventPro - Original.xml -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #3/Test #3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #3/Test #3.py -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #3/Test #3.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #3/Test #3.ttf -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #3/Test #3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #3/Test #3.xml -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #4/Alegreya - Original.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #4/Alegreya - Original.ttf -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #4/Alegreya - Original.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #4/Alegreya - Original.xml -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #4/Test #4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #4/Test #4.py -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #4/Test #4.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #4/Test #4.ttf -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #4/Test #4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #4/Test #4.xml -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #5/Alegreya - Original.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #5/Alegreya - Original.ttf -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #5/Alegreya - Original.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #5/Alegreya - Original.xml -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #5/Test #5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #5/Test #5.py -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #5/Test #5.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #5/Test #5.ttf -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #5/Test #5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #5/Test #5.xml -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #6/AdventPro - Original.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #6/AdventPro - Original.ttf -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #6/AdventPro - Original.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #6/AdventPro - Original.xml -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #6/Test #6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #6/Test #6.py -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #6/Test #6.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #6/Test #6.ttf -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #6/Test #6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #6/Test #6.xml -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #7/Alegreya - Original.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #7/Alegreya - Original.ttf -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #7/Alegreya - Original.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #7/Alegreya - Original.xml -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #7/Test #7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #7/Test #7.py -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #7/Test #7.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #7/Test #7.ttf -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #7/Test #7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #7/Test #7.xml -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #8/Alegreya - Original.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #8/Alegreya - Original.ttf -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #8/Alegreya - Original.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #8/Alegreya - Original.xml -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #8/Test #8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #8/Test #8.py -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #8/Test #8.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #8/Test #8.ttf -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #8/Test #8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #8/Test #8.xml -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #9/Alegreya - Original.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #9/Alegreya - Original.ttf -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #9/Alegreya - Original.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #9/Alegreya - Original.xml -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #9/Test #9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #9/Test #9.py -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #9/Test #9.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #9/Test #9.ttf -------------------------------------------------------------------------------- /tests/file/variable font tests/Test #9/Test #9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/file/variable font tests/Test #9/Test #9.xml -------------------------------------------------------------------------------- /tests/font/selection_strategy/test_font_selection_strategy_libass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/font/selection_strategy/test_font_selection_strategy_libass.py -------------------------------------------------------------------------------- /tests/font/selection_strategy/test_font_selection_strategy_vsfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/font/selection_strategy/test_font_selection_strategy_vsfilter.py -------------------------------------------------------------------------------- /tests/font/test_chinese_variant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/font/test_chinese_variant.py -------------------------------------------------------------------------------- /tests/font/test_cmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/font/test_cmap.py -------------------------------------------------------------------------------- /tests/font/test_factory_abc_font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/font/test_factory_abc_font.py -------------------------------------------------------------------------------- /tests/font/test_font_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/font/test_font_collection.py -------------------------------------------------------------------------------- /tests/font/test_font_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/font/test_font_file.py -------------------------------------------------------------------------------- /tests/font/test_font_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/font/test_font_loader.py -------------------------------------------------------------------------------- /tests/font/test_font_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/font/test_font_parser.py -------------------------------------------------------------------------------- /tests/font/test_font_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/font/test_font_result.py -------------------------------------------------------------------------------- /tests/font/test_font_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/font/test_font_type.py -------------------------------------------------------------------------------- /tests/font/test_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/font/test_name.py -------------------------------------------------------------------------------- /tests/font/test_normal_font_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/font/test_normal_font_face.py -------------------------------------------------------------------------------- /tests/font/test_variable_font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/font/test_variable_font.py -------------------------------------------------------------------------------- /tests/font/test_weight_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/font/test_weight_helper.py -------------------------------------------------------------------------------- /tests/mkvtoolnix/test_mkvextract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/mkvtoolnix/test_mkvextract.py -------------------------------------------------------------------------------- /tests/mkvtoolnix/test_mkvpropedit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/mkvtoolnix/test_mkvpropedit.py -------------------------------------------------------------------------------- /tests/mkvtoolnix/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/mkvtoolnix/test_utils.py -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moi15moi/FontCollector/HEAD/tests/test_main.py --------------------------------------------------------------------------------