Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# solid ![Maven Central Version](https://img.shields.io/maven-central/v/io.github.dayyeeet.solid/solid?style=flat) ![CodeFactor Grade](https://img.shields.io/codefactor/grade/github/dayyeeet/solid?style=flat)
A library built on top of [creative](https://) to make resource pack generation simpler.
# solid ![Maven Central Version](https://img.shields.io/maven-central/v/io.github.solid-resourcepack/solid-api?style=flat) ![CodeFactor Grade](https://img.shields.io/codefactor/grade/github/solid-resourcepack/solid)
A library built on top of [creative](https://github.com/unnamed/creative) to make resource pack generation simpler.
Visit the [Wiki]() to learn more

> Documentation is still work in progress
Expand All @@ -8,28 +8,28 @@ Visit the [Wiki]() to learn more

### Gradle Kotlin
```kt
implementation("io.github.dayyeeet.solid:solid:VERSION")
implementation("io.github.solid-resourcepack:solid-api:VERSION")
```
### Gradle Groovy
```groovy
implementation 'io.github.dayyeeet.solid:solid:VERSION'
implementation 'io.github.solid-resourcepack:solid-api:VERSION'
```

### Maven
```xml
<dependency>
<groupId>io.github.dayyeeet.solid</groupId>
<artifactId>solid</artifactId>
<groupId>io.github.solid-resourcepack</groupId>
<artifactId>solid-api</artifactId>
<version>VERSION</version>
</dependency>
```

## Contributing
To contribute to this project
1. Check if your feature is not already provided in a pull request or the project,
2. if it is not, [fork](https://github.com/dayyeeet/solid/fork) the repository,
2. if it is not, [fork](https://github.com/solid-resourcepack/solid/fork) the repository,
3. commit changes into the fork,
4. open a pull request with the [development branch](https://github.com/dayyeeet/solid/tree/development) as base
4. open a pull request with the [development branch](https://github.com/solid-resourcepack/solid/tree/development) as base

## License
This project is [licensed](LICENSE) under the Apache-2.0 license.
10 changes: 5 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ plugins {
`maven-publish`
}

group = "io.github.dayyeeet.solid"
version = "1.0.2"
group = "io.github.solid-resourcepack"
version = "1.0.4"

repositories {
mavenCentral()
Expand Down Expand Up @@ -58,7 +58,7 @@ centralPortal {
pom {
name.set("Solid")
description.set("An API wrapper around unnamed/creative to make custom minecraft items/blocks with java edition resource packs easy for developers")
url.set("https://github.com/dayyeeet/solid")
url.set("https://github.com/solid-resourcepack/solid")

developers {
developer {
Expand All @@ -73,8 +73,8 @@ centralPortal {
}
}
scm {
url.set("https://github.com/dayyeeet/solid.git")
connection.set("git:git@github.com:dayyeeet/solid.git")
url.set("https://github.com/solid-resourcepack/solid")
connection.set("git:git@github.com:solid-resourcepack/solid.git")
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.7.0"
}

rootProject.name = "solid"
rootProject.name = "solid-api"
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package io.github.dayyeeet.solid.builder
package io.github.solid.resourcepack.api.builder

import io.github.dayyeeet.solid.builder.feature.*
import io.github.dayyeeet.solid.mappings.ModelMapper
import io.github.solid.resourcepack.api.mappings.ModelMapper
import io.github.solid.resourcepack.api.builder.feature.*
import net.kyori.adventure.key.Key
import team.unnamed.creative.BuiltResourcePack
import team.unnamed.creative.ResourcePack
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.dayyeeet.solid.builder
package io.github.solid.resourcepack.api.builder

import team.unnamed.creative.ResourcePack

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package io.github.dayyeeet.solid.builder.feature
package io.github.solid.resourcepack.api.builder.feature

import com.google.gson.Gson
import com.google.gson.JsonObject
import io.github.dayyeeet.solid.builder.ResourcePackFeature
import io.github.solid.resourcepack.api.builder.ResourcePackFeature
import net.kyori.adventure.key.Key
import team.unnamed.creative.ResourcePack
import team.unnamed.creative.base.Writable
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package io.github.dayyeeet.solid.builder.feature
package io.github.solid.resourcepack.api.builder.feature

import io.github.dayyeeet.solid.builder.ResourcePackFeature
import io.github.solid.resourcepack.api.builder.ResourcePackFeature
import net.kyori.adventure.key.Key
import team.unnamed.creative.ResourcePack
import team.unnamed.creative.base.Writable
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package io.github.dayyeeet.solid.builder.feature
package io.github.solid.resourcepack.api.builder.feature

import io.github.dayyeeet.solid.builder.ResourcePackFeature
import io.github.dayyeeet.solid.predicate.PredicateGenerator
import io.github.dayyeeet.solid.predicate.PredicateIncrementor
import io.github.dayyeeet.solid.predicate.PredicateIncrementorType
import io.github.solid.resourcepack.api.builder.ResourcePackFeature
import io.github.solid.resourcepack.api.predicate.PredicateGenerator
import io.github.solid.resourcepack.api.predicate.PredicateIncrementor
import io.github.solid.resourcepack.api.predicate.PredicateIncrementorType
import net.kyori.adventure.key.Key
import team.unnamed.creative.ResourcePack
import team.unnamed.creative.model.Model
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.dayyeeet.solid.mappings
package io.github.solid.resourcepack.api.mappings

import net.kyori.adventure.key.Key
import team.unnamed.creative.model.ItemPredicate
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.dayyeeet.solid.predicate
package io.github.solid.resourcepack.api.predicate

import net.kyori.adventure.key.Key
import team.unnamed.creative.model.ItemOverride
Expand Down
2 changes: 1 addition & 1 deletion src/test/kotlin/PredicateTest.kt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import io.github.dayyeeet.solid.builder.AdvancedResourcePack
import io.github.solid.resourcepack.api.builder.AdvancedResourcePack
import net.kyori.adventure.key.Key
import team.unnamed.creative.ResourcePack
import team.unnamed.creative.serialize.minecraft.MinecraftResourcePackReader
Expand Down
2 changes: 1 addition & 1 deletion src/test/kotlin/TestMapper.kt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import io.github.dayyeeet.solid.mappings.ModelMapper
import io.github.solid.resourcepack.api.mappings.ModelMapper
import net.kyori.adventure.key.Key
import team.unnamed.creative.model.ItemPredicate

Expand Down