PHP-GTK Client for Gemini Protocol
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
871 B

3 months ago
# Yoda - Browser for [Gemini protocol](https://geminiprotocol.net)
3 months ago
GTK 4 / C++ implementation branch
3 months ago
> [!IMPORTANT]
> Project in development!
>
3 months ago
## Build
3 months ago
3 months ago
### Linux
3 months ago
``` bash
sudo apt install git libgtkmm-4.0-dev libglibmm-2.68-dev libsqlite3-dev
```
3 months ago
* `git clone https://github.com/YGGverse/Yoda.git`
* `cd Yoda`
* `git checkout master`
3 months ago
* `make`
3 months ago
#### Update
3 months ago
* `git pull`
* `make clean`
* `make`
## Localization
### Official
* [Crowdin](https://crowdin.com/project/yoda-browser)
### Personal
* `sudo apt install intltool`
* `cd po`
* `intltool-update --pot`
3 months ago
## Development
### Environment
``` bash
pkg-config --cflags --libs gtkmm-4.0 glibmm-2.68 sqlite3
```
3 months ago
### Contribution
* `cd Yoda`
* `git checkout master`
3 months ago
* `git pull`
3 months ago
* `git checkout -b 'contribution-name'`
### Documentation
3 months ago
#### Components
3 months ago
* [GTK](https://gtk.org)
3 months ago
* [gtkmm](https://gtkmm.org)