├── .github ├── FUNDING.yml └── workflows │ └── CI.yml ├── .gitignore ├── .transifex.yml ├── COPYING ├── README.md ├── brand ├── icon.svg └── screenshots │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ └── 5.png ├── data ├── com.rafaelmardojai.WebfontKitGenerator-symbolic.svg ├── com.rafaelmardojai.WebfontKitGenerator.Source.svg ├── com.rafaelmardojai.WebfontKitGenerator.desktop.in ├── com.rafaelmardojai.WebfontKitGenerator.gschema.xml ├── com.rafaelmardojai.WebfontKitGenerator.metainfo.xml.in ├── com.rafaelmardojai.WebfontKitGenerator.service.in ├── com.rafaelmardojai.WebfontKitGenerator.svg └── meson.build ├── debian ├── changelog ├── control ├── copyright ├── rules ├── source │ └── format └── watch ├── meson.build ├── po ├── LINGUAS ├── POTFILES ├── ar.po ├── cs.po ├── de.po ├── es.po ├── et.po ├── fa.po ├── fi.po ├── fr.po ├── gl.po ├── hi.po ├── hr.po ├── meson.build ├── nl.po ├── oc.po ├── pt.po ├── pt_BR.po ├── ru.po ├── sk.po ├── sv.po ├── tr.po ├── webfontkitgenerator.pot └── zh.po ├── pyproject.toml ├── requirements.txt ├── webfont-kit-generator.doap └── webfontkitgenerator ├── __init__.py ├── font.py ├── generator.py ├── google.blp ├── google.py ├── gtk └── help-overlay.blp ├── icons └── scalable │ ├── actions │ └── webfontkitgenerator-remove-symbolic.svg │ └── emblems │ ├── completed-symbolic.svg │ ├── splash-a-symbolic.svg │ └── splash-b-symbolic.svg ├── loader.py ├── log.py ├── main.py ├── meson.build ├── options.blp ├── options.py ├── sourceview.py ├── style.css ├── webfontkitgenerator.gresource.xml ├── webfontkitgenerator.in ├── window.blp └── window.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /.transifex.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/.transifex.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/README.md -------------------------------------------------------------------------------- /brand/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/brand/icon.svg -------------------------------------------------------------------------------- /brand/screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/brand/screenshots/1.png -------------------------------------------------------------------------------- /brand/screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/brand/screenshots/2.png -------------------------------------------------------------------------------- /brand/screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/brand/screenshots/3.png -------------------------------------------------------------------------------- /brand/screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/brand/screenshots/4.png -------------------------------------------------------------------------------- /brand/screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/brand/screenshots/5.png -------------------------------------------------------------------------------- /data/com.rafaelmardojai.WebfontKitGenerator-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/data/com.rafaelmardojai.WebfontKitGenerator-symbolic.svg -------------------------------------------------------------------------------- /data/com.rafaelmardojai.WebfontKitGenerator.Source.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/data/com.rafaelmardojai.WebfontKitGenerator.Source.svg -------------------------------------------------------------------------------- /data/com.rafaelmardojai.WebfontKitGenerator.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/data/com.rafaelmardojai.WebfontKitGenerator.desktop.in -------------------------------------------------------------------------------- /data/com.rafaelmardojai.WebfontKitGenerator.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/data/com.rafaelmardojai.WebfontKitGenerator.gschema.xml -------------------------------------------------------------------------------- /data/com.rafaelmardojai.WebfontKitGenerator.metainfo.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/data/com.rafaelmardojai.WebfontKitGenerator.metainfo.xml.in -------------------------------------------------------------------------------- /data/com.rafaelmardojai.WebfontKitGenerator.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/data/com.rafaelmardojai.WebfontKitGenerator.service.in -------------------------------------------------------------------------------- /data/com.rafaelmardojai.WebfontKitGenerator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/data/com.rafaelmardojai.WebfontKitGenerator.svg -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/data/meson.build -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/debian/watch -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/meson.build -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/po/POTFILES -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/po/de.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/po/es.po -------------------------------------------------------------------------------- /po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/po/et.po -------------------------------------------------------------------------------- /po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/po/fa.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/po/gl.po -------------------------------------------------------------------------------- /po/hi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/po/hi.po -------------------------------------------------------------------------------- /po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/po/hr.po -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext('webfontkitgenerator', preset: 'glib') 2 | -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/oc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/po/oc.po -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/webfontkitgenerator.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/po/webfontkitgenerator.pot -------------------------------------------------------------------------------- /po/zh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/po/zh.po -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/requirements.txt -------------------------------------------------------------------------------- /webfont-kit-generator.doap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/webfont-kit-generator.doap -------------------------------------------------------------------------------- /webfontkitgenerator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webfontkitgenerator/font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/webfontkitgenerator/font.py -------------------------------------------------------------------------------- /webfontkitgenerator/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/webfontkitgenerator/generator.py -------------------------------------------------------------------------------- /webfontkitgenerator/google.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/webfontkitgenerator/google.blp -------------------------------------------------------------------------------- /webfontkitgenerator/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/webfontkitgenerator/google.py -------------------------------------------------------------------------------- /webfontkitgenerator/gtk/help-overlay.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/webfontkitgenerator/gtk/help-overlay.blp -------------------------------------------------------------------------------- /webfontkitgenerator/icons/scalable/actions/webfontkitgenerator-remove-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/webfontkitgenerator/icons/scalable/actions/webfontkitgenerator-remove-symbolic.svg -------------------------------------------------------------------------------- /webfontkitgenerator/icons/scalable/emblems/completed-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/webfontkitgenerator/icons/scalable/emblems/completed-symbolic.svg -------------------------------------------------------------------------------- /webfontkitgenerator/icons/scalable/emblems/splash-a-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/webfontkitgenerator/icons/scalable/emblems/splash-a-symbolic.svg -------------------------------------------------------------------------------- /webfontkitgenerator/icons/scalable/emblems/splash-b-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/webfontkitgenerator/icons/scalable/emblems/splash-b-symbolic.svg -------------------------------------------------------------------------------- /webfontkitgenerator/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/webfontkitgenerator/loader.py -------------------------------------------------------------------------------- /webfontkitgenerator/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/webfontkitgenerator/log.py -------------------------------------------------------------------------------- /webfontkitgenerator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/webfontkitgenerator/main.py -------------------------------------------------------------------------------- /webfontkitgenerator/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/webfontkitgenerator/meson.build -------------------------------------------------------------------------------- /webfontkitgenerator/options.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/webfontkitgenerator/options.blp -------------------------------------------------------------------------------- /webfontkitgenerator/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/webfontkitgenerator/options.py -------------------------------------------------------------------------------- /webfontkitgenerator/sourceview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/webfontkitgenerator/sourceview.py -------------------------------------------------------------------------------- /webfontkitgenerator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/webfontkitgenerator/style.css -------------------------------------------------------------------------------- /webfontkitgenerator/webfontkitgenerator.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/webfontkitgenerator/webfontkitgenerator.gresource.xml -------------------------------------------------------------------------------- /webfontkitgenerator/webfontkitgenerator.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/webfontkitgenerator/webfontkitgenerator.in -------------------------------------------------------------------------------- /webfontkitgenerator/window.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/webfontkitgenerator/window.blp -------------------------------------------------------------------------------- /webfontkitgenerator/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafaelmardojai/webfont-kit-generator/HEAD/webfontkitgenerator/window.py --------------------------------------------------------------------------------