1
0
mirror of https://github.com/Suiranoil/SkinRestorer.git synced 2026-01-16 04:42:12 +00:00

Merge branch '1.21-multiloader' into 1.20.5-multiloader

This commit is contained in:
2024-12-02 03:35:57 +03:00
5 changed files with 7 additions and 3 deletions

View File

@@ -13,6 +13,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Migrated to MineSkin's new API V2
### Fixed
- Fixed `providers` config validation
### Removed
- Dropped support for NeoForge on Minecraft 1.20.2-1.20.4
## [2.1.0] - 2024-09-26
### Added

View File

@@ -6,3 +6,5 @@
- Migrated to MineSkin's new API V2
### Fixed
- Fixed `providers` config validation
### Removed
- Dropped support for NeoForge on Minecraft 1.20.2-1.20.4

View File

@@ -17,8 +17,8 @@ allprojects {
exclusiveContent {
forRepository {
maven {
name = 'MineSkin'
url = 'https://repo.inventivetalent.org/repository/public'
name = 'lionarius-repository'
url = 'https://reposilite.lionarius.ru/releases'
}
}
filter {

View File

@@ -16,6 +16,7 @@ public class MineskinProviderConfig implements BuiltInProviderConfig, GsonPostPr
this.enabled = true;
this.name = MineskinSkinProvider.PROVIDER_NAME;
this.cache = DEFAULT_CACHE_VALUE;
this.apiKey = "";
}
public boolean enabled() {

View File

@@ -69,7 +69,6 @@ dependencies {
annotationProcessor('org.spongepowered:mixin:0.8.5-SNAPSHOT:processor')
implementation('net.sf.jopt-simple:jopt-simple:5.0.4') { version { strictly '5.0.4' } }
// TODO: somehow fix forge gradle including dependencies of java-client
minecraftLibrary(jarJar(group: 'org.mineskin', name: 'java-client', version: mineskin_client_version)) {
jarJar.ranged(it, "[${mineskin_client_version},)")
}