From aa2ed79a507b163ad0224acaf7d0db62b38c28a0 Mon Sep 17 00:00:00 2001 From: MBrine85 <102489724+MBrine85@users.noreply.github.com> Date: Sat, 24 May 2025 18:23:03 -0400 Subject: [PATCH 1/5] Add MCreator manifest --- mcreator.json | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 mcreator.json diff --git a/mcreator.json b/mcreator.json new file mode 100644 index 000000000000..9a4d7456b1e4 --- /dev/null +++ b/mcreator.json @@ -0,0 +1,9 @@ +{ + "version": "2025.1", + "description": "MCreator - Minecraft mod maker", + "homepage": "https://mcreator.net/", + "license": "GPL-3.0-or-later", + "url": "https://github.com/MCreator/MCreator/releases/download/2025.1.13416/MCreator.2025.1.Windows.64bit.zip", + "hash": "sha256:71924E1A76019266A1A7D1C6CA33AC38BE4EC3533F2A925ACE22154A545FC522", + "bin": "MCreator20251\\mcreator.exe" +} From 940471854dcb2f0afd2f6cee5214185dff7bac88 Mon Sep 17 00:00:00 2001 From: MBrine85 <102489724+MBrine85@users.noreply.github.com> Date: Sat, 24 May 2025 18:31:55 -0400 Subject: [PATCH 2/5] Move MCreator manifest to bucket folder --- mcreator.json => bucket/mcreator.json | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename mcreator.json => bucket/mcreator.json (100%) diff --git a/mcreator.json b/bucket/mcreator.json similarity index 100% rename from mcreator.json rename to bucket/mcreator.json From e9fa3ae7af9602374b90f531a819bdd98cbea8b5 Mon Sep 17 00:00:00 2001 From: MBrine85 <102489724+MBrine85@users.noreply.github.com> Date: Mon, 26 May 2025 00:14:20 -0400 Subject: [PATCH 3/5] Add shortcuts, checkver and autoupdate to the MCreator manifest --- bucket/mcreator.json | 31 ++++++++++++++++++++++++++----- 1 file changed, 26 insertions(+), 5 deletions(-) diff --git a/bucket/mcreator.json b/bucket/mcreator.json index 9a4d7456b1e4..10389fb64ca6 100644 --- a/bucket/mcreator.json +++ b/bucket/mcreator.json @@ -1,9 +1,30 @@ { - "version": "2025.1", + "version": "2025.1.13416", "description": "MCreator - Minecraft mod maker", "homepage": "https://mcreator.net/", "license": "GPL-3.0-or-later", - "url": "https://github.com/MCreator/MCreator/releases/download/2025.1.13416/MCreator.2025.1.Windows.64bit.zip", - "hash": "sha256:71924E1A76019266A1A7D1C6CA33AC38BE4EC3533F2A925ACE22154A545FC522", - "bin": "MCreator20251\\mcreator.exe" -} + "architecture": { + "64bit": { + "url": "https://github.com/MCreator/MCreator/releases/download/2025.1.13416/MCreator.2025.1.Windows.64bit.zip", + "hash": "sha256:71924E1A76019266A1A7D1C6CA33AC38BE4EC3533F2A925ACE22154A545FC522" + } + }, + "bin": "MCreator20251\\mcreator.exe", + "shortcuts": [ + [ + "MCreator20251\\mcreator.exe", + "MCreator" + ] + ], + "checkver": { + "url": "https://github.com/MCreator/MCreator/releases", + "regex": "tag/([\\d.]+)" + }, + "autoupdate": { + "architecture": { + "64bit": { + "url": "https://github.com/MCreator/MCreator/releases/download/$version/MCreator.$version.Windows.64bit.zip" + } + } + } +} \ No newline at end of file From dbc39ae8e42129e1fed02888b9f82901e5c342f8 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Mon, 26 May 2025 18:22:29 +0200 Subject: [PATCH 4/5] Apply suggestions from code review --- bucket/mcreator.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bucket/mcreator.json b/bucket/mcreator.json index 10389fb64ca6..2bb62b3e174b 100644 --- a/bucket/mcreator.json +++ b/bucket/mcreator.json @@ -1,6 +1,6 @@ { "version": "2025.1.13416", - "description": "MCreator - Minecraft mod maker", + "description": "Minecraft mod maker", "homepage": "https://mcreator.net/", "license": "GPL-3.0-or-later", "architecture": { From 8794102ff69755de6d3fc62c480d02e2e20447b0 Mon Sep 17 00:00:00 2001 From: Saliola Matteo <2240729@cje.qc.ca> Date: Mon, 26 May 2025 13:15:20 -0400 Subject: [PATCH 5/5] Fix Scoop manifest: use array shortcuts, forward slashes --- bucket/mcreator.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bucket/mcreator.json b/bucket/mcreator.json index 2bb62b3e174b..f89a9b2a5a30 100644 --- a/bucket/mcreator.json +++ b/bucket/mcreator.json @@ -9,16 +9,16 @@ "hash": "sha256:71924E1A76019266A1A7D1C6CA33AC38BE4EC3533F2A925ACE22154A545FC522" } }, - "bin": "MCreator20251\\mcreator.exe", + "bin": "MCreator20251/mcreator.exe", "shortcuts": [ [ - "MCreator20251\\mcreator.exe", + "MCreator20251/mcreator.exe", "MCreator" ] ], "checkver": { "url": "https://github.com/MCreator/MCreator/releases", - "regex": "tag/([\\d.]+)" + "regex": "tag/v?([\\d.]+)" }, "autoupdate": { "architecture": { @@ -27,4 +27,4 @@ } } } -} \ No newline at end of file +}