Skip to content

Commit

Permalink
Merge pull request #60 from hyprland-community/chore/crate-update-0.3.6
Browse files Browse the repository at this point in the history
chore: release 0.3.6
  • Loading branch information
yavko authored Jul 7, 2023
2 parents b7318a1 + ba0e848 commit 861f506
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ lto = true
members = ["hyprland-macros"]

[workspace.package]
version = "0.3.4"
version = "0.3.6"
license = "GPL-3.0-or-later"
repository = "https://github.com/hyprland-community/hyprland-rs"
keywords = ["hyprland", "ipc", "hypr", "wayland", "linux"]
Expand Down
18 changes: 11 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
An unofficial rust wrapper for Hyprland's IPC

## Disclaimer

If something doesn't work, doesn't matter what,
make sure you are on the latest version (or commit) of Hyprland before making an issue!

Expand All @@ -22,14 +23,16 @@ Let's get started with Hyprland-rs!
Add the code below to the dependencies section of your Cargo.toml file!

```toml
hyprland = "0.3.4"
hyprland = "0.3.6"
```

### Reading the docs

Hyprland-rs has a ton of types (and some really long ones)! Its important you know how the ones you will be using work!
The docs can be found at [docs.rs/hyprland](https://docs.rs/hyprland)

#### Master version

If Hyprland-rs is broken (or other reason) and is taking too long for a release to come out,
you can use the master branch in Cargo (will not allow the crate to be published to `crates.io`):

Expand All @@ -40,12 +43,13 @@ hyprland = { git = "https://github.com/hyprland-community/hyprland-rs", branch =
### What this crate provides

This crate provides 6 modules (+1 for shared things)
- `data` for getting information on the compositor
- `event_listener` which provides the `EventListener` struct for listening for events
- `dispatch` for calling dispatchers
- `keyword` for dealing with config option (aka keywords)
- `config::binds` for changing binds (in future `config` might have config generation)
- `ctl` for calling hyprctl commands

- `data` for getting information on the compositor
- `event_listener` which provides the `EventListener` struct for listening for events
- `dispatch` for calling dispatchers
- `keyword` for dealing with config option (aka keywords)
- `config::binds` for changing binds (in future `config` might have config generation)
- `ctl` for calling hyprctl commands

## Example Usage

Expand Down

0 comments on commit 861f506

Please sign in to comment.