Skip to content

Commit e0430a7

Browse files
committed
v9.10
- DietPi-Software | PaperMC: Resolved an issue where the installation failed on Bullseye and Bookworm systems, as Minecraft 1.21 requires Java 21, available on Debian Trixie only. PaperMC 1.20.4 will be installed in those cases now, the latest version which supports Java 17. As a side note: In the same turn, the installation has been re-enabled on ARMv6 systems, using PaperMC 1.16.5, the latest one supporting Java 8.
1 parent 6bd87f2 commit e0430a7

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

CHANGELOG.txt

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Bug fixes:
1515
- DietPi-Software | Navidrome: Resolved an issue where the service failed to start, since the latest release archive does not ship with the needed permissions. Many thanks to @nclro for reporting this issue: https://github.com/MichaIng/DietPi/issues/7336
1616
- DietPi-Software | Home Assistant: Worked around an issue where the installation failed on ARMv6 and RISC-V systems, due to an incompatibility between two dependencies. Many thanks to @jankkhvej for reporting this issue: https://github.com/MichaIng/DietPi/issues/7329
1717
- DietPi-Software | PaperMC: Resolved an issue where the installation failed, because the API URL changed. Many thanks to @onkeld for reporting this issue: https://github.com/MichaIng/DietPi/issues/7349
18+
- DietPi-Software | PaperMC: Resolved an issue where the installation failed on Bullseye and Bookworm systems, as Minecraft 1.21 requires Java 21, available on Debian Trixie only. PaperMC 1.20.4 will be installed in those cases now, the latest version which supports Java 17. As a side note: In the same turn, the installation has been re-enabled on ARMv6 systems, using PaperMC 1.16.5, the latest one supporting Java 8.
1819

1920
As always, many smaller code performance and stability improvements, visual and spelling fixes have been done, too much to list all of them here. Check out all code changes of this release on GitHub: https://github.com/MichaIng/DietPi/pull/ADDME
2021

dietpi/dietpi-software

+6-4
Original file line numberDiff line numberDiff line change
@@ -947,8 +947,6 @@ Available commands:
947947
aSOFTWARE_DOCS[$software_id]='https://dietpi.com/docs/software/gaming/#papermc'
948948
aSOFTWARE_DEPS[$software_id]='196'
949949
[[ -f '/mnt/dietpi_userdata/papermc/eula.txt' ]] || aSOFTWARE_INTERACTIVE[$software_id]=1
950-
# - ARMv6 as of Java 16+ need
951-
aSOFTWARE_AVAIL_G_HW_ARCH[$software_id,1]=0
952950
#------------------
953951
software_id=62
954952
aSOFTWARE_NAME[$software_id]='Box86'
@@ -11503,9 +11501,13 @@ _EOF_
1150311501
# Make sure user agrees to the EULA
1150411502
if [[ -f '/mnt/dietpi_userdata/papermc/eula.txt' ]] || G_WHIP_BUTTON_OK_TEXT='Yes' G_WHIP_BUTTON_CANCEL_TEXT='Abort' G_WHIP_YESNO 'Do you agree to the Minecraft EULA found at:\n\nhttps://account.mojang.com/documents/minecraft_eula'
1150511503
then
11506-
# Collect latest version of PaperMC
11504+
# Collect latest build of latest supported version of PaperMC
1150711505
local url='https://api.papermc.io/v2/projects/paper'
11508-
local version=$(curl -sSfL "$url"); version=${version%\"*} version=${version##*\"}
11506+
# - Minecraft 1.20.5 and above requires Java 21: https://minecraft.wiki/w/Java_Edition_1.20.5
11507+
local version='1.20.4'
11508+
# - ARMv6: Minecraft 1.17 requires Java 16: https://minecraft.wiki/w/Java_Edition_1.17
11509+
(( $G_HW_ARCH == 1 )) && version='1.16.5'
11510+
(( $G_HW_ARCH > 1 && $G_DISTRO > 7 )) && { version=$(curl -sSfL "$url"); version=${version%\"*}; version=${version##*\"}; }
1150911511
local build=$(curl -sSfL "$url/versions/$version"); build=${build%]*} build=${build##*[,[]}
1151011512
#local file=$(curl -sSfL "$url/versions/$version/builds/$build"); file=${file##*\"name\":\"} file=${file%%\"*}
1151111513
# Download and install PaperMC

0 commit comments

Comments
 (0)