Update readme and version
This commit is contained in:
parent
c914b5b393
commit
5172b13b7c
2 changed files with 12 additions and 12 deletions
22
README.md
22
README.md
|
@ -1,12 +1,12 @@
|
||||||
# GamecraftModdingAPI
|
# TechbloxModdingAPI
|
||||||
|
|
||||||
Unofficial Gamecraft modding API for interfacing Gamecraft from mods.
|
Unofficial Techblox modding API for interfacing Techblox from mods.
|
||||||
|
|
||||||
The GamecraftModdingAPI aims to simplify the mods in two ways:
|
The TechbloxModdingAPI aims to simplify the mods in two ways:
|
||||||
- *Ease-of-Use* The API provides convenient ways to do common tasks such as moving blocks and adding commands.
|
- *Ease-of-Use* The API provides convenient ways to do common tasks such as moving blocks and adding commands.
|
||||||
All of the Harmony patching is done for you, so you can focus on writing your mod instead of reading swathes of undocumented code.
|
All of the Harmony patching is done for you, so you can focus on writing your mod instead of reading swathes of undocumented code.
|
||||||
- *Stability* The API aims to be reliable and consistent between versions.
|
- *Stability* The API aims to be reliable and consistent between versions.
|
||||||
This means your code won't break when the GamecraftModdingAPI or Gamecraft updates.
|
This means your code won't break when the TechbloxModdingAPI or Techblox updates.
|
||||||
|
|
||||||
For more info, please check out the [official documentation](https://mod.exmods.org).
|
For more info, please check out the [official documentation](https://mod.exmods.org).
|
||||||
|
|
||||||
|
@ -16,16 +16,16 @@ For more support, join the ExMods [Discord](https://discord.exmods.org).
|
||||||
[Please follow the official mod installation guide](https://www.exmods.org/guides/install.html) or use GCMM.
|
[Please follow the official mod installation guide](https://www.exmods.org/guides/install.html) or use GCMM.
|
||||||
|
|
||||||
## Development
|
## Development
|
||||||
To get started, create a symbolic link called `ref` in the root of the project, or one folder higher, linking to the Gamecraft install folder.
|
To get started, create a symbolic link called `ref` in the root of the project, or one folder higher, linking to the Techblox install folder.
|
||||||
This will allow your IDE to resolve references to Gamecraft files for building and IDE tools.
|
This will allow your IDE to resolve references to Techblox files for building and IDE tools.
|
||||||
|
|
||||||
GamecraftModdingAPI version numbers follow the [Semantic Versioning guidelines](https://semver.org/).
|
TechbloxModdingAPI version numbers follow the [Semantic Versioning guidelines](https://semver.org/).
|
||||||
|
|
||||||
## External Libraries
|
## External Libraries
|
||||||
GamecraftModdingAPI includes [Harmony](https://github.com/pardeike/Harmony) to modify the behaviour of existing Gamecraft code.
|
TechbloxModdingAPI includes [Harmony](https://github.com/pardeike/Harmony) to modify the behaviour of existing Techblox code.
|
||||||
|
|
||||||
# Disclaimer
|
# Disclaimer
|
||||||
This API is an unofficial modification of Gamecraft software, and is not endorsed or supported by FreeJam or Gamecraft.
|
This API is an unofficial modification of Techblox software, and is not endorsed or supported by FreeJam or Techblox.
|
||||||
The GamecraftModdingAPI developer(s) claim no rights on the Gamecraft code referenced within this project.
|
The TechbloxModdingAPI developer(s) claim no rights on the Techblox code referenced within this project.
|
||||||
All code contained in this project is licensed under the [GNU Public License v3](https://git.exmods.org/modtainers/GamecraftModdingAPI/src/branch/master/LICENSE).
|
All code contained in this project is licensed under the [GNU Public License v3](https://git.exmods.org/modtainers/TechbloxModdingAPI/src/branch/master/LICENSE).
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net472</TargetFramework>
|
<TargetFramework>net472</TargetFramework>
|
||||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||||
<Version>1.8.0</Version>
|
<Version>2.0.0</Version>
|
||||||
<Authors>Exmods</Authors>
|
<Authors>Exmods</Authors>
|
||||||
<PackageLicenseExpression>GNU General Public Licence 3+</PackageLicenseExpression>
|
<PackageLicenseExpression>GNU General Public Licence 3+</PackageLicenseExpression>
|
||||||
<PackageProjectUrl>https://git.exmods.org/modtainers/GamecraftModdingAPI</PackageProjectUrl>
|
<PackageProjectUrl>https://git.exmods.org/modtainers/GamecraftModdingAPI</PackageProjectUrl>
|
||||||
|
|
Loading…
Reference in a new issue