Skip to content

Commit

Permalink
Upgrade resourceful lib 2.1.16
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatGravyBoat committed Nov 11, 2023
1 parent 6103b81 commit 6831491
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 111 deletions.
35 changes: 3 additions & 32 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,3 @@
- Increase size of edit menu to 10k x 10k (ThatGravyBoat)
- Change normal menu size to be dependent on the min and max positions of quests padding with 100px (ThatGravyBoat)
- Add quest setting for hiding dependency arrows (ThatGravyBoat)
- Change entity displays to scale depending on size of the entity (ThatGravyBoat)
- Fix REI not loading on Forge (ThatGravyBoat)
- Add collection type to XP Tasks (bluebear94)
- Reformat task and reward titles/descriptions (sisby-folk)
- Add tooltips to item icons (bluebear94)
- Add completion summary (sisby-folk)
- Add reward list header similar to task list header (sisby-folk)
- Make task and reward list entries a static size and scale icons (sisby-folk)
- Make gather tasks more reliable (sisby-folk)
- Add ability to override task and reward titles and icons (sisby-folk)
- Center grid on group open (sisby-folk)
- Make toasts wrap their text if it's too long (sisby-folk)
- Make checkbox button locked if quest is locked (sisby-folk)
- Add ability to invidually claim a reward (sisby-folk)
- Fix recipe tasks awarding on learning the recipe instead of crafting (ThatGravyBoat)
- Fix gather tasks NBT not working no certain numbers (ThatGravyBoat)
- Have screen update when the client affects the quests state (sisby-folk)
- Use item modals for tasks and rewards and icon allowing for full itemstack and tag support (ThatGravyBoat and sisby-folk)
- Allow quests to be hidden until a quest reaches a certain status (sisby-folk)
- Apply overscroll to quest widgets (sisby-folk)
- Fix position of dependency arrows (SubordinalBlue)
- Change quest background to use a tiled texture (SubordinalBlue and sisby-folk)
- Add `/heracles reset {quest}` command (sisby-folk)
- Allow for quest icons to have arbitrary sizes and offsets (ThatGravyBoat)
- Show when a quest rewards are unclaimed (sisby-folk)
- Fix error in text editor when deleting text while rendering (ThatGravyBoat)
- Add more logging to packets (ThatGravyBoat)
- Update quest backgrounds to new design (ThatGravyBoat)
- Add option to allow a quest to be repeated (sisby-folk)
- Fix bug where delete button was on clickable on tasks when scrolled (ThatGravyBoat)
- Upgraded to Resourceful Lib 2.1.16 (ThatGravyBoat)
- Added missing info for mods.toml (ThatGravyBoat)

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import com.mojang.serialization.Codec;
import com.mojang.serialization.codecs.RecordCodecBuilder;
import com.teamresourceful.resourcefullib.client.utils.CodecMetadataSectionSerializer;
import com.teamresourceful.resourcefullib.common.caches.CacheableFunction;
import net.minecraft.client.Minecraft;
import net.minecraft.resources.ResourceLocation;
Expand Down

This file was deleted.

2 changes: 1 addition & 1 deletion fabric/src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"fabric": ">=0.14.19",
"fabric-api": "*",
"minecraft": ">=1.20-",
"resourcefullib": ">=2.1.13",
"resourcefullib": ">=2.1.16",
"java": ">=17"
}
}
7 changes: 3 additions & 4 deletions forge/src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@ license="MIT"
modId="heracles"
version = "${version}"
displayName="Heracles"

description='''
'''
authors="ThatGravyBoat"
description="Heracles is a comprehensive questing mod that allows pack makers to create tree style quests that can be distributed via the config folder for users to play and complete."

[[dependencies.heracles]]
modId="forge"
Expand All @@ -27,6 +26,6 @@ side="BOTH"
[[dependencies.heracles]]
modId = "resourcefullib"
mandatory = true
versionRange = "[2.1.13,)"
versionRange = "[2.1.16,)"
ordering = "NONE"
side = "BOTH"
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ org.gradle.jvmargs=-Xmx2G

enabledPlatforms=fabric,forge

version=1.1.0
version=1.1.1
group=earth.terrarium.heracles

minecraftVersion=1.20.1
parchmentVersion=2023.07.02

resourcefulLibVersion=2.1.13
resourcefulLibVersion=2.1.16
hermesLibVersion=1.2.1
reiVersion=12.0.630

0 comments on commit 6831491

Please sign in to comment.