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

Merge branch '1.20.5-multiloader' into 1.20.3-multiloader

This commit is contained in:
2024-12-02 03:39:12 +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 - Migrated to MineSkin's new API V2
### Fixed ### Fixed
- Fixed `providers` config validation - Fixed `providers` config validation
### Removed
- Dropped support for NeoForge on Minecraft 1.20.2-1.20.4
## [2.1.0] - 2024-09-26 ## [2.1.0] - 2024-09-26
### Added ### Added

View File

@@ -6,3 +6,5 @@
- Migrated to MineSkin's new API V2 - Migrated to MineSkin's new API V2
### Fixed ### Fixed
- Fixed `providers` config validation - 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 { exclusiveContent {
forRepository { forRepository {
maven { maven {
name = 'MineSkin' name = 'lionarius-repository'
url = 'https://repo.inventivetalent.org/repository/public' url = 'https://reposilite.lionarius.ru/releases'
} }
} }
filter { filter {

View File

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

View File

@@ -73,7 +73,6 @@ dependencies {
annotationProcessor('org.spongepowered:mixin:0.8.5-SNAPSHOT:processor') annotationProcessor('org.spongepowered:mixin:0.8.5-SNAPSHOT:processor')
implementation('net.sf.jopt-simple:jopt-simple:5.0.4') { version { strictly '5.0.4' } } 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)) { minecraftLibrary(jarJar(group: 'org.mineskin', name: 'java-client', version: mineskin_client_version)) {
jarJar.ranged(it, "[${mineskin_client_version},)") jarJar.ranged(it, "[${mineskin_client_version},)")
} }