1
0
Fork 0
mirror of https://github.com/adobe-fonts/source-sans.git synced 2024-12-26 14:16:03 +01:00
Adobe Source Sans mirror for nyanoblog
Find a file
2024-02-26 15:14:17 +11:00
docs Updates WOFF/WOFF2 files, simplifies file structure, streamlines CSS to reflect file reorganization. 2021-06-28 16:04:34 +10:00
Italic Checks in updates from current shipping version of the fonts. 2024-02-26 15:14:17 +11:00
Upright Checks in updates from current shipping version of the fonts. 2024-02-26 15:14:17 +11:00
.gitignore Rework the Makefile 2019-11-05 22:56:37 -08:00
build.cmd Checks in all files to current status. Fonts are building. 2020-04-23 18:26:52 +10:00
build.sh Checks in all files to current status. Fonts are building. 2020-04-23 18:26:52 +10:00
buildVFs.py Checks in updates from current shipping version of the fonts. 2024-02-26 15:14:17 +11:00
familyGPOS.fea Updates include notes. Removes liens from Italic nameIDs.fea file to match Upright version: 2020-06-04 16:07:24 +10:00
familyGSUB.fea Checks in WIP. 2023-01-10 15:33:54 +11:00
familynameIDs.fea Checks in WIP. Updates buggy copyright string in familynameIDs.fea. Adds mathematical glyphs to GOADB. 2021-07-01 07:06:04 +10:00
familynameIDsVF.fea Checks in updates from current shipping version of the fonts. 2024-02-26 15:14:17 +11:00
familyOS2.fea Preserves WIP on UFO masters and auxiliary files needed to compile fonts from current resources. 2021-03-24 15:04:29 +11:00
familyTables.fea Checks in WIP. 2022-08-18 12:37:11 +10:00
features.fea Preserves WIP on UFO masters. Adds several glyphs to close some GitHub requests: U+030D, U+0358, U+2326 (and alternates). This is reflected in GOADB, familyGSUB.fea, and UFO masters. Attempts to fix include statement linking in .fea files. Adds features.fea file to intermediate masters. 2019-06-04 17:45:09 +10:00
featuresVF.fea Checks in updates from current shipping version of the fonts. 2024-02-26 15:14:17 +11:00
FontMenuNameDB Change references from Source Sans 3 Variable to Source Sans 3 VF. Adds casing glyphs for colon modifier, commaabovecmb, commaturnedabovecmb to sources. 2020-08-03 17:08:01 +10:00
GlyphOrderAndAliasDB Checks in WIP. 2023-01-10 15:33:54 +11:00
LICENSE.md Checks in updates from current shipping version of the fonts. 2024-02-26 15:14:17 +11:00
Makefile Checks in all files to current status. Fonts are building. 2020-04-23 18:26:52 +10:00
README.md Updates relnotes.txt file. Preserves WIP on UFO masters. 2021-02-16 15:43:06 +11:00
relnotes.txt version 3.042 created 2021/06/08 2021-06-28 15:31:42 +10:00
Roadmap.txt Use UTF-8 2015-09-30 12:46:37 +02:00

Source Sans Pro

Source Sans Pro is a set of OpenType fonts that have been designed to work well in user interface (UI) environments.

Getting involved

Open an issue or send a suggestion to Source Sans' designer Paul D. Hunt, for consideration.

Releases

Building the fonts from source

Requirements

To build the binary font files from source, you need to have installed the Adobe Font Development Kit for OpenType (AFDKO).

Building one font

The key to building the OTF fonts is makeotf, which is part of the AFDKO toolset. Information and usage instructions can be found by executing makeotf -h. The TTFs are generated with the otf2ttf and ttfcomponentizer tools.

Commands to build the Regular style OTF font:

$ cd Roman/Instances/Regular/
$ makeotf -r -gs -omitMacNames

Commands to generate the Regular style TTF font:

$ otf2ttf SourceSansPro-Regular.otf
$ ttfcomponentizer SourceSansPro-Regular.ttf

Building all non-variable fonts

For convenience, a shell script named build.sh is provided in the root directory. It builds all OTFs and TTFs, and can be executed by typing:

$ ./build.sh

or this on Windows:

> build.cmd

Building the variable fonts

To build the variable TTFs you must install fontmake using this command:

$ pip install fontmake

A shell script named buildVFs.sh is provided in the root directory. It generates four variable fonts (two CFF2-OTFs and two TTFs), and can be executed by typing:

$ ./buildVFs.sh

Building with make

If you want to build directly from masters instead of the instances stored in the repository, or to avoid building all files repetitively, run:

$ make

and it will get everything up to date. To generate only the font.ufo instances from the masters, run:

$ make instances

Note: because font.ufo instances are stored in the repository, you may have to delete them first from your working tree before building from masters; see below.

To clean up makeotf's defaults and other log files, run:

$ make clean

or to remove all build artefacts, including target font binaries:

$ make cleanall

Because font.ufo instances are committed into the repository, they are not removed on make clean. If that is necessary, run:

$ make cleaninstances