This repository only serves as an example plugin, it's pretty useless otherwise since it only displays a basic "Hello from Rtop!".
It is therefore completely useless to open a PR whatever the nature of the change, in case you open a PR it will be closed immediately.
If you want to start the development of a plugin you can clone this repository to be able to modify it as you like.
Start by cloning:
git clone https://github.com/RtopRS/PluginTemplate.git
Then you can change the git commit URL to use your own git repo:
git remote set-url origin new-git-url
For the next step you need to have Rust and Cargo installed on your PC, for that follow the official documentation.
Now switch to project folder and compile:
cd PluginTemplate && cargo build
For the development phase you can build in debug mode:
cargo build
You just have to modify the Cargo.toml
file, once this is done you can start developing your plugin!