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

Merge branch '1.20.3-multiloader' into 1.20.2-multiloader

This commit is contained in:
2025-06-19 06:39:47 +03:00
7 changed files with 13 additions and 11 deletions

View File

@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [2.3.4] - 2025-06-19
### Added
- Added support for minecraft 1.21.6
## [2.3.3] - 2025-06-01 ## [2.3.3] - 2025-06-01
### Fixed ### Fixed
- Fixed forge mixin crash (closes [#54](https://github.com/Suiranoil/SkinRestorer/issues/53)) - Fixed forge mixin crash (closes [#54](https://github.com/Suiranoil/SkinRestorer/issues/53))

View File

@@ -1,4 +1,2 @@
### Fixed ### Added
- Fixed forge mixin crash (closes [#54](https://github.com/Suiranoil/SkinRestorer/issues/53)) - Added support for minecraft 1.21.6
### Removed
- Removed minecraft 1.19 support

View File

@@ -14,7 +14,7 @@
}, },
"icon": "assets/${mod_id}/icon.png", "icon": "assets/${mod_id}/icon.png",
"license": "${license}", "license": "${license}",
"environment": "*", "environment": "server",
"entrypoints": { "entrypoints": {
"main": [ "main": [
"net.lionarius.skinrestorer.fabric.SkinRestorerFabric" "net.lionarius.skinrestorer.fabric.SkinRestorerFabric"

View File

@@ -26,7 +26,7 @@ tasks.named('jarJar') {
} }
minecraft { minecraft {
mappings channel: 'parchment', version: "${parchment_version}-${parchment_minecraft}" mappings channel: 'parchment', version: "${parchment_minecraft}-${parchment_version}-${minecraft_version}"
copyIdeResources = true //Calls processResources when in dev copyIdeResources = true //Calls processResources when in dev

View File

@@ -17,11 +17,11 @@ modId = "forge"
mandatory = true mandatory = true
versionRange = "[${forge_version},)" versionRange = "[${forge_version},)"
ordering = "NONE" ordering = "NONE"
side = "BOTH" side = "SERVER"
[[dependencies.${mod_id}]] [[dependencies.${mod_id}]]
modId = "minecraft" modId = "minecraft"
mandatory = true mandatory = true
versionRange = "${minecraft_version_range}" versionRange = "${minecraft_version_range}"
ordering = "NONE" ordering = "NONE"
side = "BOTH" side = "SERVER"

View File

@@ -8,7 +8,7 @@ minecraft_version_list=1.20.2
minecraft_version_range=1.20.2 minecraft_version_range=1.20.2
mod_id=skinrestorer mod_id=skinrestorer
mod_name=SkinRestorer mod_name=SkinRestorer
mod_version=2.3.3 mod_version=2.3.4
mod_author=Lionarius mod_author=Lionarius
mod_homepage=https://modrinth.com/mod/skinrestorer mod_homepage=https://modrinth.com/mod/skinrestorer
mod_sources=https://github.com/Suiranoil/SkinRestorer mod_sources=https://github.com/Suiranoil/SkinRestorer

View File

@@ -20,11 +20,11 @@ modId = "neoforge"
mandatory = true mandatory = true
versionRange = "[${neoforge_version},)" versionRange = "[${neoforge_version},)"
ordering = "NONE" ordering = "NONE"
side = "BOTH" side = "SERVER"
[[dependencies.${mod_id}]] [[dependencies.${mod_id}]]
modId = "minecraft" modId = "minecraft"
mandatory = true mandatory = true
versionRange = "${minecraft_version_range}" versionRange = "${minecraft_version_range}"
ordering = "NONE" ordering = "NONE"
side = "BOTH" side = "SERVER"