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:
@@ -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))
|
||||||
|
|||||||
@@ -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
|
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|||||||
@@ -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
|
||||||
|
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|||||||
Reference in New Issue
Block a user