Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 19 additions & 17 deletions INSTALLATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,23 +43,25 @@ The package will automatically install the following dependencies:

After installation, the following commands will be available:

### Core Proofing Tools
- `text-proof` - Create example paragraphs for character sets
- `alphabet-proof` - Create alphabet proofs for different writing systems
- `charset-proof` - Generate character set proofs
- `context-proof` - Create contextual proofs for specific characters
- `reference-proof` - Compare multiple fonts side by side

### Advanced Tools
- `glyph-proof` - Generate various glyph proofs
- `glyphset-proof` - Create comprehensive glyphset proofs
- `unicode-chart-proof` - Generate Unicode character charts
- `vertical-metrics-proof` - Analyze vertical metrics
- `vertical-metrics-comparison-proof` - Compare vertical metrics across fonts
- `waterfall-proof` - Create waterfall proofs
- `accent-proof` - Generate accent proofs
- `figure-spacing-proof` - Create figure spacing proofs
- `overlay-font-proof` - Create overlay comparisons between fonts
### Proofing Tools accepting fonts and UFOs:
- `glyph-proof` - compare glyphs
- `glyphset-proof` - the whole glyphset on one page
- `figure-spacing-proof` - compare figure spacing proofs
- `vertical-metrics-comparison-proof` - compare vertical metrics across fonts

### Proofing Tools accepting fonts:
- `accent-proof` - check accents and their use accent proofs
- `alphabet-proof` - various basic proofs for different writing systems
- `charset-proof` - check for a given charset on one page
- `context-proof` - see characters in context
- `text-proof` - pages with example paragraphs
- `unicode-chart-proof` - generate Unicode character charts
- `vertical-metrics-proof` - visualize vertical metrics
- `waterfall-proof` - create various waterfalls

### Other Proofing Tools:
- `overlay-font-proof` - overlay two fonts
- `reference-proof` - compare multiple fonts side by side

## Quick Start

Expand Down
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,9 @@ You’re now ready to start proofing!

### `accent-proof`

Proof of all accents with a representation of all glyphs using that accent,
and example words for each accent (both upper- and lowercase).
Additionally, words with “merged” non-abc glyphs (such as æðøß) will be shown.

This script is currently limited to AL-3, an extension to AL-4 and beyond is
thinkable.
Proof of all Latin accents supported by a given font, with example words for
each accent (both upper- and lowercase). Additionally, words with “atomic”
Latin base glyphs (such as æðøß) will be shown.

Input:
* font file(s), or folder(s) containing font files
Expand All @@ -48,7 +45,11 @@ Creates example pages for:
- some sample words

Modes (`proof`, `spacing`, `sample`) can be chosen individually, or all at once
(`all`). Writing systems supported are `lat`, `grk`, `cyr`, and `figures`.
(`all`).

Writing systems supported are `lat`, `grk`, `cyr`, and `figures`. By default,
supported writing systems are automatically chosen on a per-font basis.

Kerning can be toggled off (`-k`).

Optionally, a sample string (`-s`), or an input text file file (`-t`) can be
Expand Down
2 changes: 1 addition & 1 deletion drawbot_proofing/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
A collection of font proofing tools using DrawBot for type designers and developers.
"""

__version__ = "1.0.0"
__version__ = "1.0.3"
__author__ = "Adobe"
__email__ = "opensource@adobe.com"

Expand Down
Loading