├── .DS_Store ├── .gitignore ├── AUTHORS.txt ├── CONTRIBUTORS.txt ├── OFL.txt ├── README.md ├── documentation └── DESCRIPTION.en_us.html ├── fonts ├── ProtestGuerrilla │ ├── otf │ │ └── ProtestGuerrilla-Regular.otf │ ├── ttf │ │ └── ProtestGuerrilla-Regular.ttf │ └── webfonts │ │ └── ProtestGuerrilla-Regular.woff2 ├── ProtestRevolution │ ├── ttf │ │ └── ProtestRevolution-Regular.ttf │ └── webfonts │ │ └── ProtestRevolution-Regular.woff2 ├── ProtestRiot │ ├── otf │ │ └── ProtestRiot-Regular.otf │ ├── ttf │ │ └── ProtestRiot-Regular.ttf │ └── webfonts │ │ └── ProtestRiot-Regular.woff2 └── ProtestStrike │ ├── otf │ └── ProtestStrike-Regular.otf │ ├── ttf │ └── ProtestStrike-Regular.ttf │ └── webfonts │ └── ProtestStrike-Regular.woff2 ├── requirements.txt └── sources ├── ProtestGuerrilla.glyphs ├── ProtestRevolution.glyphs ├── ProtestRiot.glyphs ├── ProtestStrike.glyphs ├── build.sh ├── config-Guerrilla.yaml ├── config-Revolution.yaml ├── config-Riot.yaml └── config-Strike.yaml /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviopardo/Protest/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | venv -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviopardo/Protest/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviopardo/Protest/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviopardo/Protest/HEAD/OFL.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviopardo/Protest/HEAD/README.md -------------------------------------------------------------------------------- /documentation/DESCRIPTION.en_us.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviopardo/Protest/HEAD/documentation/DESCRIPTION.en_us.html -------------------------------------------------------------------------------- /fonts/ProtestGuerrilla/otf/ProtestGuerrilla-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviopardo/Protest/HEAD/fonts/ProtestGuerrilla/otf/ProtestGuerrilla-Regular.otf -------------------------------------------------------------------------------- /fonts/ProtestGuerrilla/ttf/ProtestGuerrilla-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviopardo/Protest/HEAD/fonts/ProtestGuerrilla/ttf/ProtestGuerrilla-Regular.ttf -------------------------------------------------------------------------------- /fonts/ProtestGuerrilla/webfonts/ProtestGuerrilla-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviopardo/Protest/HEAD/fonts/ProtestGuerrilla/webfonts/ProtestGuerrilla-Regular.woff2 -------------------------------------------------------------------------------- /fonts/ProtestRevolution/ttf/ProtestRevolution-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviopardo/Protest/HEAD/fonts/ProtestRevolution/ttf/ProtestRevolution-Regular.ttf -------------------------------------------------------------------------------- /fonts/ProtestRevolution/webfonts/ProtestRevolution-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviopardo/Protest/HEAD/fonts/ProtestRevolution/webfonts/ProtestRevolution-Regular.woff2 -------------------------------------------------------------------------------- /fonts/ProtestRiot/otf/ProtestRiot-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviopardo/Protest/HEAD/fonts/ProtestRiot/otf/ProtestRiot-Regular.otf -------------------------------------------------------------------------------- /fonts/ProtestRiot/ttf/ProtestRiot-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviopardo/Protest/HEAD/fonts/ProtestRiot/ttf/ProtestRiot-Regular.ttf -------------------------------------------------------------------------------- /fonts/ProtestRiot/webfonts/ProtestRiot-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviopardo/Protest/HEAD/fonts/ProtestRiot/webfonts/ProtestRiot-Regular.woff2 -------------------------------------------------------------------------------- /fonts/ProtestStrike/otf/ProtestStrike-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviopardo/Protest/HEAD/fonts/ProtestStrike/otf/ProtestStrike-Regular.otf -------------------------------------------------------------------------------- /fonts/ProtestStrike/ttf/ProtestStrike-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviopardo/Protest/HEAD/fonts/ProtestStrike/ttf/ProtestStrike-Regular.ttf -------------------------------------------------------------------------------- /fonts/ProtestStrike/webfonts/ProtestStrike-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviopardo/Protest/HEAD/fonts/ProtestStrike/webfonts/ProtestStrike-Regular.woff2 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | gftools 2 | fontbakery 3 | drawbot-skia 4 | freetype-py 5 | sh -------------------------------------------------------------------------------- /sources/ProtestGuerrilla.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviopardo/Protest/HEAD/sources/ProtestGuerrilla.glyphs -------------------------------------------------------------------------------- /sources/ProtestRevolution.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviopardo/Protest/HEAD/sources/ProtestRevolution.glyphs -------------------------------------------------------------------------------- /sources/ProtestRiot.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviopardo/Protest/HEAD/sources/ProtestRiot.glyphs -------------------------------------------------------------------------------- /sources/ProtestStrike.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviopardo/Protest/HEAD/sources/ProtestStrike.glyphs -------------------------------------------------------------------------------- /sources/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviopardo/Protest/HEAD/sources/build.sh -------------------------------------------------------------------------------- /sources/config-Guerrilla.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviopardo/Protest/HEAD/sources/config-Guerrilla.yaml -------------------------------------------------------------------------------- /sources/config-Revolution.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviopardo/Protest/HEAD/sources/config-Revolution.yaml -------------------------------------------------------------------------------- /sources/config-Riot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviopardo/Protest/HEAD/sources/config-Riot.yaml -------------------------------------------------------------------------------- /sources/config-Strike.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octaviopardo/Protest/HEAD/sources/config-Strike.yaml --------------------------------------------------------------------------------