Skip to content

Commit 6d2fa1d

Browse files
authored
Merge pull request #37 from lukflug/dev
Updated dependencies and added 1.19
2 parents 9915641 + 12296c8 commit 6d2fa1d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+2734
-43
lines changed

.github/workflows/gradle.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,6 @@ jobs:
4444
cd example-mod16-forge
4545
chmod +x gradlew
4646
./gradlew build
47-
- name: Build ExampleMod8-Fabric
48-
run: |
49-
cd example-mod8-fabric
50-
chmod +x gradlew
51-
./gradlew build
5247
- name: Build ExampleMod8-Forge
5348
run: |
5449
cd example-mod8-forge

.github/workflows/mc17.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,21 @@ jobs:
2727
${{ runner.os }}-gradle-
2828
- name: Grant execute permission for gradlew
2929
run: chmod +x gradlew
30-
- name: Build with Gradle
30+
- name: Build PanelStudio-MC17
3131
run: |
3232
cd panelstudio-mc17
3333
chmod +x gradlew
3434
./gradlew build
35+
- name: Build PanelStudio-MC19
36+
run: |
37+
cd panelstudio-mc19
38+
chmod +x gradlew
39+
./gradlew build
40+
- name: Build ExampleMod8-Fabric
41+
run: |
42+
cd example-mod8-fabric
43+
chmod +x gradlew
44+
./gradlew build
3545
- name: Build ExampleMod17
3646
run: |
3747
cd example-mod17
@@ -42,6 +52,11 @@ jobs:
4252
cd example-mod18
4353
chmod +x gradlew
4454
./gradlew build
55+
- name: Build ExampleMod19
56+
run: |
57+
cd example-mod19
58+
chmod +x gradlew
59+
./gradlew build
4560
- name: Upload package
4661
uses: actions/upload-artifact@v2
4762
with:

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020,2021 lukflug
3+
Copyright (c) 2020,2021,2022 lukflug and contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,15 @@ In addition to the core PanelStudio library, there are the PanelStudio-MC suppor
1212
| panelstudio-mc8-fabric | example-mod8-fabric | Legacy Fabric 1.8.9 |
1313
| panelstudio-mc8-forge | example-mod8-forge | Minecraft Forge 1.8.9 |
1414
| panelstudio-mc17 | example-mod17 & example-mod18 | FabricMC 1.17.1 & 1.18.2 |
15+
| panelstudio-mc19 | example-mod19 | FabricMC 1.19.2 |
1516

1617
Minecraft versions or APIs not in this table can also be used with PanelStudio, but the small PanelStudio-MC library has to be ported, which shouldn't be hard in most cases.
1718

1819
## Credits
1920
* Thanks to NirvanaNevermind for making the original port of PanelStudio-MC to Fabric 1.8.9!
2021
* Thanks to Go_Hoosiers (aka. GooberTown or IUDevman) for designing the original PanelStudio logo!
2122
* Thanks to Chomp for making a pull request to change the readme, I guess.
23+
* Thanks to Diliard for porting PanelStudio-MC to Fabric 1.19.2!
2224

2325
## Features
2426
* Everything is flexible and can be extended.

example-mod16-fabric/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ org.gradle.jvmargs = -Xmx2500m
22
version = 0.2.1
33
versionmc = 0.2.0
44

5-
loomVersion = 0.7.34
5+
loomVersion = 0.7.35
66
minecraft16fabric = 1.16.5
77
mappings16fabric = 1.16.5+build.10
88
loader16fabric = 0.13.3

example-mod16-forge/gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ org.gradle.jvmargs = -Xmx2500m
22
version = 0.2.1
33
versionmc = 0.2.0
44

5-
forgeGradle5 = 5.1.31
5+
forgeGradle5 = 5.1.56
66
mappings16forge = 20210309-1.16.5
7-
minecraft16forge = 1.16.5-36.2.20
7+
minecraft16forge = 1.16.5-36.2.34

example-mod17/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ processResources {
5151
shadowJar {
5252
classifier = "dev"
5353
configurations = [project.configurations.shadow]
54-
relocate "com.lukflug.panelstudio","com.lukflug.panelstudio_0_2_2"
54+
relocate "com.lukflug.panelstudio","com.lukflug.panelstudio_0_2_3"
5555
}
5656

5757
remapJar {

example-mod17/gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
org.gradle.jvmargs = -Xmx2500m
22
version = 0.2.1
3-
versionmc = 0.2.2
3+
versionmc = 0.2.3
44

5-
loomVersion = 0.12.1
5+
loomVersion = 1.0.11
66
minecraft17 = 1.17.1
77
mappings17 = 1.17.1+build.65
8-
loader17 = 0.13.3
8+
loader17 = 0.14.10
99
api17 = 0.46.1+1.17

example-mod18/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ processResources {
5151
shadowJar {
5252
classifier = "dev"
5353
configurations = [project.configurations.shadow]
54-
relocate "com.lukflug.panelstudio","com.lukflug.panelstudio_0_2_2"
54+
relocate "com.lukflug.panelstudio","com.lukflug.panelstudio_0_2_3"
5555
}
5656

5757
remapJar {

example-mod18/gradle.properties

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
org.gradle.jvmargs = -Xmx2500m
22
version = 0.2.1
3-
versionmc = 0.2.2
3+
versionmc = 0.2.3
44

5-
loomVersion = 0.12.1
5+
loomVersion = 1.0.11
66
minecraft18 = 1.18.2
7-
mappings18 = 1.18.2+build.2
8-
loader18 = 0.13.3
9-
api18 = 0.47.10+1.18.2
7+
mappings18 = 1.18.2+build.4
8+
loader18 = 0.14.10
9+
api18 = 0.48.0+1.18.2

0 commit comments

Comments
 (0)