-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ Add support for Roughly Enough Items (#42)
- Loading branch information
Showing
25 changed files
with
124 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,23 @@ | ||
MIT License | ||
|
||
Copyright (c) 2018, 2019, 2020, 2021, 2022 shedaniel | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
|
||
Auto Config is bundled with Roughly Enough items, and is licensed under Apache License 2.0. |
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,101 @@ | ||
# Roughly Enough Items | ||
https://minecraft.curseforge.com/projects/roughly-enough-items <br> | ||
Roughly Enough Items is a mod to view Items and Recipes for Minecraft 1.13 - 1.18, supporting mod loaders from Forge, Rift to Fabric. | ||
----- | ||
|
||
[Help translate REI on Crowdin!](https://crowdin.com/project/roughly-enough-items) | ||
|
||
![](https://i.imgur.com/eQsWDrM.png) | ||
|
||
![](https://i.imgur.com/OcOQLip.png) | ||
|
||
This mod is both client sided and server sided. | ||
|
||
# Maven | ||
Firstly, add my Maven repository (If you already have the architectury maven, you don't need to do this, they are the same repo) | ||
```gradle | ||
repositories { | ||
maven { url "https://maven.shedaniel.me" } | ||
} | ||
``` | ||
|
||
## Choosing the correct artifact to depend on | ||
### Fabric | ||
REI recommends you to declare a compile dependency on REI's API, and a runtime dependency on REI's full package. | ||
```gradle | ||
dependencies { | ||
modCompileOnly "me.shedaniel:RoughlyEnoughItems-api-fabric:VERSION" | ||
modRuntimeOnly "me.shedaniel:RoughlyEnoughItems-fabric:VERSION" | ||
} | ||
``` | ||
|
||
Additionally, if you want to interact with the builtin plugins, you may declare a compile dependency on it as well. | ||
```gradle | ||
dependencies { | ||
modCompileOnly "me.shedaniel:RoughlyEnoughItems-default-plugin-fabric:VERSION" | ||
} | ||
``` | ||
|
||
### Forge (ForgeGradle) | ||
REI recommends you to just depend on REI's full package. | ||
```gradle | ||
dependencies { | ||
implementation fg.deobf("me.shedaniel:RoughlyEnoughItems-forge:VERSION") | ||
} | ||
``` | ||
|
||
### Forge (Architectury Loom) | ||
REI recommends you to declare a compile dependency on REI's API, and a runtime dependency on REI's full package. | ||
```gradle | ||
dependencies { | ||
modCompileOnly "me.shedaniel:RoughlyEnoughItems-api-forge:VERSION" | ||
modRuntimeOnly "me.shedaniel:RoughlyEnoughItems-forge:VERSION" | ||
} | ||
``` | ||
|
||
Additionally, if you want to interact with the builtin plugins, you may declare a compile dependency on it as well. | ||
```gradle | ||
dependencies { | ||
modCompileOnly "me.shedaniel:RoughlyEnoughItems-default-plugin-forge:VERSION" | ||
} | ||
``` | ||
|
||
### Architectury | ||
REI recommends you to declare a compile dependency on REI's common API, and declare the full package on the individual platform's subprojects. | ||
```gradle | ||
// Common | ||
dependencies { | ||
modCompileOnly "me.shedaniel:RoughlyEnoughItems-api:VERSION" | ||
} | ||
// Fabric | ||
dependencies { | ||
modRuntimeOnly "me.shedaniel:RoughlyEnoughItems-fabric:VERSION" | ||
} | ||
// Forge | ||
dependencies { | ||
modRuntimeOnly "me.shedaniel:RoughlyEnoughItems-forge:VERSION" | ||
} | ||
``` | ||
|
||
Additionally, if you want to interact with the builtin plugins, you may declare a compile dependency on it as well. | ||
```gradle | ||
// Common | ||
dependencies { | ||
modCompileOnly "me.shedaniel:RoughlyEnoughItems-default-plugin:VERSION" | ||
} | ||
``` | ||
|
||
### List of artifacts | ||
- **me.shedaniel:RoughlyEnoughItems-api**: REI API for Architectury Common | ||
- **me.shedaniel:RoughlyEnoughItems-default-plugin**: REI Default Plugin for Architectury Common | ||
- **me.shedaniel:RoughlyEnoughItems-runtime**: REI Runtime for Architectury Common | ||
- **me.shedaniel:RoughlyEnoughItems-api-fabric**: REI API for Fabric | ||
- **me.shedaniel:RoughlyEnoughItems-default-plugin-fabric**: REI Default Plugin for Fabric | ||
- **me.shedaniel:RoughlyEnoughItems-runtime-fabric**: REI Runtime for Fabric | ||
- **me.shedaniel:RoughlyEnoughItems-api-forge**: REI API for Forge | ||
- **me.shedaniel:RoughlyEnoughItems-default-plugin-forge**: REI Default Plugin for Forge | ||
- **me.shedaniel:RoughlyEnoughItems-runtime-forge**: REI Runtime for Forge | ||
- **me.shedaniel:RoughlyEnoughItems-fabric**: Full REI for Fabric | ||
- **me.shedaniel:RoughlyEnoughItems-forge**: Full REI for Forge |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.