-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b31235d
commit c6f3ed5
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Changelog | ||
|
||
0.1.0 (September 2, 2021) | ||
------------------------------ | ||
*Initial release* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Ayaya | ||
|
||
This is a simple and small tool to send some messages via the [Open Sound Control protocol](http://opensoundcontrol.org). You can use it to test out some OSC interfaces quickly. | ||
It may not include a lot of features, but it is quite handy for myself. Feel free to contribute more features if you need them. | ||
|
||
## Building | ||
|
||
On Linux systems, you need to install some dependencies for FLTK first. This is the appropriate command for an Ubuntu-based system: | ||
```bash | ||
sudo apt-get install -y libpango1.0-dev libx11-dev libxext-dev libxft-dev libxinerama-dev libxcursor-dev libxrender-dev libxfixes-dev libpng-dev | ||
``` | ||
|
||
After that, it's just a regular build with Cargo. | ||
```bash | ||
cargo build --release | ||
``` | ||
|
||
You will find the executable called `ayaya` within `target/release/`. | ||
|
||
## Contributors | ||
|
||
- [Hannes Braun](https://github.com/hannesbraun) - creator and maintainer | ||
|
||
## License | ||
|
||
Copyright (c) 2021, Hannes Braun | ||
|
||
Ayaya is licensed under the Boost Software License 1.0. For more information, see [LICENSE](LICENSE). |