An open API service indexing awesome lists of open source software.

https://github.com/intellectualsites/plotsquared-diff

This repository tracks changes between major PlotSquared releases.
https://github.com/intellectualsites/plotsquared-diff

Last synced: 5 months ago
JSON representation

This repository tracks changes between major PlotSquared releases.

Awesome Lists containing this project

README

          

# plotsquared-diff

This repository tracks API and source code changes between major PlotSquared releases.

- The `api-diff/` folder contains API differences generated using [japicmp](https://github.com/siom79/japicmp):
```sh
java -jar japicmp-0.17.2-jar-with-dependencies.jar -n plotsquared-bukkit-7.0.0.jar -o bukkitV6.jar --ignore-missing-classes --html-file plotsquared-bukkit-v6-to-v7.html -m -a public
```
- The `source-diff/` folder contains full source code differences generated using [diff2html](https://github.com/rtfpessoa/diff2html-cli):
```sh
git diff 6.11.1..7.0.0 > full.diff &&
diff2html -F v6-to-v7-source-diff.html --title "PlotSquared source diff between v6 and v7" -i file -- full.diff
```

You can view the output [on GitHub pages](https://intellectualsites.github.io/plotsquared-diff/).