From e3754cda909bca66d0d6bca308bd2c4859afe5b2 Mon Sep 17 00:00:00 2001 From: Lionarius Date: Sat, 24 May 2025 12:03:52 +0300 Subject: [PATCH 1/5] update bug_report.yaml --- .github/ISSUE_TEMPLATE/bug_report.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index 0bbbc3b..3a38ec4 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -58,10 +58,12 @@ body: id: steps attributes: label: Reproduction Steps + description: Provide step-by-step instructions or a video showing how to reproduce the issue. placeholder: | 1. 2. 3. + Or a video demonstrating the issue. validations: required: true From 66a9c1fbbf8a0abfcef1d4183956c1472b1d5a96 Mon Sep 17 00:00:00 2001 From: Lionarius Date: Sat, 24 May 2025 13:31:57 +0300 Subject: [PATCH 2/5] update mixins compatibilityLevel to java 17 --- common/src/main/resources/skinrestorer.mixins.json | 2 +- fabric/src/main/resources/skinrestorer.fabric.mixins.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/src/main/resources/skinrestorer.mixins.json b/common/src/main/resources/skinrestorer.mixins.json index 084b56c..bb8f645 100644 --- a/common/src/main/resources/skinrestorer.mixins.json +++ b/common/src/main/resources/skinrestorer.mixins.json @@ -2,7 +2,7 @@ "required": true, "minVersion": "0.8", "package": "net.lionarius.skinrestorer.mixin", - "compatibilityLevel": "JAVA_8", + "compatibilityLevel": "JAVA_17", "refmap": "${mod_id}.refmap.json", "mixins": [ "ChunkMapAccessor", diff --git a/fabric/src/main/resources/skinrestorer.fabric.mixins.json b/fabric/src/main/resources/skinrestorer.fabric.mixins.json index 92f2605..43901b7 100644 --- a/fabric/src/main/resources/skinrestorer.fabric.mixins.json +++ b/fabric/src/main/resources/skinrestorer.fabric.mixins.json @@ -2,7 +2,7 @@ "required": true, "minVersion": "0.8", "package": "net.lionarius.skinrestorer.fabric.mixin", - "compatibilityLevel": "JAVA_8", + "compatibilityLevel": "JAVA_17", "refmap": "${mod_id}.refmap.json", "mixins": [ "CommandsMixin", From 8457e6f4aba6bab1f4105c885dc885a596142c9c Mon Sep 17 00:00:00 2001 From: Lionarius Date: Sat, 24 May 2025 13:33:11 +0300 Subject: [PATCH 3/5] apply mixins at higher priority (fixes #52) --- common/src/main/resources/skinrestorer.mixins.json | 1 + 1 file changed, 1 insertion(+) diff --git a/common/src/main/resources/skinrestorer.mixins.json b/common/src/main/resources/skinrestorer.mixins.json index bb8f645..224662d 100644 --- a/common/src/main/resources/skinrestorer.mixins.json +++ b/common/src/main/resources/skinrestorer.mixins.json @@ -3,6 +3,7 @@ "minVersion": "0.8", "package": "net.lionarius.skinrestorer.mixin", "compatibilityLevel": "JAVA_17", + "priority": 1100, "refmap": "${mod_id}.refmap.json", "mixins": [ "ChunkMapAccessor", From 2e7a9edc201d151015c5368ee350f5d7a5ab0d7d Mon Sep 17 00:00:00 2001 From: Lionarius Date: Sat, 24 May 2025 13:50:17 +0300 Subject: [PATCH 4/5] update CHANGELOG.md --- CHANGELOG.md | 4 ++++ CHANGELOG_LATEST.md | 6 ++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b44ad7..44ee205 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.3.2] - 2025-05-24 +### Fixed +- Fixed mixin incompatibility with ModernFix (closes [#42](https://github.com/Suiranoil/SkinRestorer/issues/52)) + ## [2.3.1] - 2025-05-03 ### Added - Added support for minecraft 1.19-1.19.4 diff --git a/CHANGELOG_LATEST.md b/CHANGELOG_LATEST.md index 8d8a801..6561db2 100644 --- a/CHANGELOG_LATEST.md +++ b/CHANGELOG_LATEST.md @@ -1,4 +1,2 @@ -### Added -- Added support for minecraft 1.19-1.19.4 -### Changed -- Use services and session server urls from environment +### Fixed +- Fixed mixin incompatibility with ModernFix (closes [#42](https://github.com/Suiranoil/SkinRestorer/issues/52)) From 760ac65ab3d554ca063e64977d3fceca4b78c6e0 Mon Sep 17 00:00:00 2001 From: Lionarius Date: Sat, 24 May 2025 13:50:29 +0300 Subject: [PATCH 5/5] bump version --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index f58c852..7ccd21a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,7 +8,7 @@ minecraft_version_list=1.21.5 minecraft_version_range=[1.21.5, 1.22) mod_id=skinrestorer mod_name=SkinRestorer -mod_version=2.3.1 +mod_version=2.3.2 mod_author=Lionarius mod_homepage=https://modrinth.com/mod/skinrestorer mod_sources=https://github.com/Suiranoil/SkinRestorer