https://github.com/tanrax/walphabet
Transform your fonts from TTF or OTF to WOFF2
https://github.com/tanrax/walphabet
linux macos otf ttf windows woff2
Last synced: about 2 months ago
JSON representation
Transform your fonts from TTF or OTF to WOFF2
- Host: GitHub
- URL: https://github.com/tanrax/walphabet
- Owner: tanrax
- Created: 2022-07-06T09:29:52.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-11T10:30:59.000Z (almost 4 years ago)
- Last Synced: 2025-01-14T05:50:24.828Z (over 1 year ago)
- Topics: linux, macos, otf, ttf, windows, woff2
- Language: Python
- Homepage:
- Size: 1.75 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Walphabet

Transform your fonts from TTF or OTF to WOFF2 in Windows and Linux.
## Windows
## Linux: KDE
## Linux: Gnome
# Download
Linux -> https://github.com/tanrax/walphabet/releases/download/v1.0/Walphabet
Windows -> https://github.com/tanrax/walphabet/releases/download/v1.0/Walphabet.exe
(**Attention!** Windows Defender detects it as a virus because the executable is not signed by them, and I'm not willing to pay 60 euros per year. You have 2 options: add walphabet as an exception or clone the repository and compile your own binary.)
MacOS -> I need a volunteer with MacOS to create the binary.
# Development
## 0. Install Python dev
### Linux
```bash
sudo apt install python3-tk python3-dev
```
## 1. Install requirements
```
python3 -m venv venv
source venv/bin/activate
pip3 install -r requirements.txt
```
## 2. Build
### Linux
```bash
pyinstaller main.spec
```
### Windows
```bash
venv\Scripts\pyinstaller.exe main.spec
```
### MacOS
Install `python-tk`.
```bash
brew install python-tk
```
Next.
```bash
pyinstaller main.spec
```
## 3. Run
```bash
./dist/walphabet
```
## GUI
```bash
pip3 install pygubu-designer
```
and then run `pygubu-designer`.
# Thanks!
- [Sergio Delgado Quitero](https://twitter.com/sdelquin): For all his effort and research for MacOS.