mirror of
https://github.com/ppy/osu-tools.git
synced 2025-06-09 09:35:15 +09:00
Update README
This commit is contained in:
parent
4dfc137201
commit
fc120869ca
1 changed files with 34 additions and 7 deletions
41
README.md
41
README.md
|
@ -1,4 +1,8 @@
|
|||
# osu!tools [](https://ci.appveyor.com/project/peppy/osu-tools) [](https://www.codefactor.io/repository/github/ppy/osu-tools) [](https://discord.gg/ppy)
|
||||
# osu!tools
|
||||
|
||||
[](https://github.com/ppy/osu-tools/actions/workflows/ci.yml)
|
||||
[](https://www.codefactor.io/repository/github/ppy/osu-tools)
|
||||
[](https://discord.gg/ppy)
|
||||
|
||||
Tools for [osu!](https://osu.ppy.sh).
|
||||
|
||||
|
@ -13,25 +17,48 @@ Tools for [osu!](https://osu.ppy.sh).
|
|||
|
||||
## I just want to run it
|
||||
- Clone the repository (`git clone https://github.com/ppy/osu-tools`)
|
||||
- Navigate to each tool's directory and follow the instructions listed in the tool's README.
|
||||
- Navigate to each tool's directory (i.e. `cd PerformanceCalculator`) and follow the instructions listed in the tool's README.
|
||||
- [PerformanceCalculator](https://github.com/ppy/osu-tools/blob/master/PerformanceCalculator/README.md) - A tool for calculating the difficulty of beatmaps and the performance of replays.
|
||||
- [PerformanceCalculatorGUI](https://github.com/ppy/osu-tools/blob/master/PerformanceCalculatorGUI/README.md) - A GUI tool for calculating the difficulty of beatmaps, changes in profile scores and leaderboards.
|
||||
|
||||
## I want to make changes
|
||||
Most relevant code is in the main [ppy/osu](htts://github.com/ppy/osu) repository. To make any meaningful changes you will likely need to edit that as well.
|
||||
Most relevant code is in the main [ppy/osu](https://github.com/ppy/osu) repository. To make any meaningful changes you will likely need to edit that as well.
|
||||
|
||||
- Clone all relevant repos into the same directory (`git clone https://github.com/ppy/osu-tools`; `git clone https://github.com/ppy/osu`)
|
||||
- Clone all relevant repos into the same directory
|
||||
```shell
|
||||
git clone https://github.com/ppy/osu-tools
|
||||
git clone https://github.com/ppy/osu
|
||||
```
|
||||
- Run the `./UseLocalOsu.ps1` powershell script (or `./UseLocalOsu.sh`) to use your local copy of ppy/osu
|
||||
|
||||
## I want to run someone else's changes
|
||||
|
||||
- Clone all relevant repos into the same directory
|
||||
```shell
|
||||
git clone https://github.com/ppy/osu-tools
|
||||
git clone https://github.com/ppy/osu
|
||||
```
|
||||
- Navigate to `osu` repository and [checkout](https://stackoverflow.com/a/14383288) version you want to run
|
||||
```shell
|
||||
cd osu
|
||||
git remote add smoogi https://github.com/smoogipoo/osu.git
|
||||
git fetch smoogi branch_name
|
||||
git checkout -b branch_name smoogi/branch_name
|
||||
```
|
||||
- Run the `./UseLocalOsu.ps1` powershell script (or `./UseLocalOsu.sh`) to use your local copy of ppy/osu
|
||||
|
||||
|
||||
# Contributing
|
||||
|
||||
Contributions can be made via pull requests to this repository. We hope to credit and reward larger contributions via a [bounty system](https://www.bountysource.com/teams/ppy). If you're unsure of what you can help with, check out the [list of open issues](https://github.com/ppy/osu-tools/issues).
|
||||
When it comes to contributing to the project, the two main things you can do to help out are reporting issues and submitting pull requests.
|
||||
|
||||
Note that while we already have certain standards in place, nothing is set in stone. If you have an issue with the way code is structured; with any libraries we are using; with any processes involved with contributing, *please* bring it up. I welcome all feedback so we can make contributing to this project as pain-free as possible.
|
||||
Note that while we already have certain standards in place, nothing is set in stone. If you have an issue with the way code is structured, with any libraries we are using, or with any processes involved with contributing, *please* bring it up. We welcome all feedback so we can make contributing to this project as painless as possible.
|
||||
|
||||
For those interested, we love to reward quality contributions via [bounties](https://docs.google.com/spreadsheets/d/1jNXfj_S3Pb5PErA-czDdC9DUu4IgUbe1Lt8E7CYUJuE/view?&rm=minimal#gid=523803337), paid out via PayPal or osu!supporter tags. Don't hesitate to [request a bounty](https://docs.google.com/forms/d/e/1FAIpQLSet_8iFAgPMG526pBZ2Kic6HSh7XPM3fE8xPcnWNkMzINDdYg/viewform) for your work on this project.
|
||||
|
||||
# Licence
|
||||
|
||||
The osu! client code, framework, and tools are licensed under the [MIT licence](https://opensource.org/licenses/MIT). Please see [the licence file](LICENCE) for more information. [tl;dr](https://tldrlegal.com/license/mit-license) you can do whatever you want as long as you include the original copyright and license notice in any copy of the software/source.
|
||||
*osu!*'s code, framework, and tools are licensed under the [MIT licence](https://opensource.org/licenses/MIT). Please see [the licence file](LICENCE) for more information. [tl;dr](https://tldrlegal.com/license/mit-license) you can do whatever you want as long as you include the original copyright and license notice in any copy of the software/source.
|
||||
|
||||
Please note that this *does not cover* the usage of the "osu!" or "ppy" branding in any software, resources, advertising or promotion, as this is protected by trademark law.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue