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.
yggverse 1627902b8f update readme 2 months ago
src use parsed header as title on available 2 months ago
.gitignore initial commit 2 months ago
Cargo.toml fix keywords limit 2 months ago
LICENSE initial commit 2 months ago
README.md update readme 2 months ago
rustfmt.toml init rustfmt.toml 2 months ago

README.md

Yoda - Browser for Gemini protocol

Rust / GTK 4 implementation

[!IMPORTANT] Project in development!

Install

Stable

cargo install Yoda

Repository

git clone https://github.com/YGGverse/Yoda.git
cd Yoda
git checkout Rust-GTK4
cargo run

Development

This guide in process

Modules

browser

  • Use modern path pattern
  • One module implements one GTK widget, it may include additional helper files in same location (like template, CSS or DB API)
  • For children widget - create children module, located according to it hierarchy
  • The codebase of module must be as minimal as possible, separate to sub-modules:
    • different tasks
    • massive structures
    • structures with implementation
  • Every module must:
    • encapsulate: compose childs and stay composable for parents
    • access 1 level of child API, never parents (e.g. through super)
    • implement only one struct (same as one file for one class)
      • struct is public, where members - private
    • contain main struct implementation:
      • at least one constructor that must return:
        • unwrapped main Self structure
        • granted ownership for new object created
      • public link getter for privately constructed widget

Contribution

  • before commit, make sure:
    • new branch created for every new PR git checkout -b 'contribution-name'
    • new code follows common rustfmt style cargo fmt --check

See also

  • CPP-GTK4 - C++ / GTK 4 implementation
  • PHP-GTK3 - PHP / GTK 3 experimental branch