forked from maruohon/itemscroller
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Some Recipe View flicking (scaling issue?), but otherwise works. * Some Recipe View flicking (scaling issue?), but otherwise works. * Recipe View issues remains, but bump for yarn * Nearly fixed Recipe View, but there remains some offset issue. Spent hours on this shit. * bump malilib and yarn build 27 * bump malilib and yarn build 27 * update to 24w34a * update to 24w34a * yarn update * update to yarn build 8 * fixed recipe View scaling / positioning, finally. * Update Yarn & test Iris * 24w35a * yarn build 4 * Update Configs with new `Apply` method * Adding customizability for sorting in form of a priority list (#18) * Added topSortingPriorityList and bottomSortingPriorityList Added priority lists for sorting and changed compareStacks so if the item is in the top list, it goes on top, and if it is on the bottom list, it goes to the bottom * Made the sorting priority lists in-game configurable * Delete .vscode directory * Deleted temporary code * Minor cleanups * Missing Import from merge --------- Co-authored-by: Sakura Ryoko <[email protected]> Co-authored-by: Sakura Ryoko <[email protected]> * Add SortMethod option for Item Name / Rarity / Raw ID * Add SortMethod option for Item Name / Rarity / Raw ID * Proper Category Sorting now exists. * Use new 'ConfigLockedStringList' for SortingCategory * Builds but fails to run due to FAPI errors. * yarn build 4 * bump FAPI * yarn build 5 * yarn build 6 * update malilib * Fix Mass Craft with Recipe Book when Inv is full. * Migrate Sorting Category to new Config Type * Update / Polish Sorting Categories, etc * bump malilib * port to 24w37a * bump Gradle 8.10.1 and FAPI * yarn build 4 * yarn build 5 * fix Freeze when sorting * Update from 1.21 branch * port to 24w38a (Broken FAPI) * bump FAPI * malilib bump * malilib bump * port to 24w39a * yarn build 5 * yarn build 6 * port to 24w40a Mass Crafting is currently broken. * yarn build 9 * bootstrap servux data channel * recipe manager sync works now * recipe manager sync works now * port to 1.21.2-pre.1 --> working on fixing mass Crafting * malilib bump * fix massCrafting, and switched "Recipe Book Protocol" to be the default. * Remove unused network Code * cleanup Mixins * port to pre2 * port to pre3 * fix recipe storage by clearing crafting grid when we save a recipe. * port to rc1, bump gradle to 8.10.2, loom 1.8 * rc2 * Update gradle.properties * REL port --------- Co-authored-by: Helmut Joaquín Pfeffer García <[email protected]>
- Loading branch information
1 parent
da1d799
commit 3da1728
Showing
38 changed files
with
810 additions
and
376 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,15 @@ | ||
package fi.dy.masa.itemscroller; | ||
|
||
import net.minecraft.MinecraftVersion; | ||
|
||
import fi.dy.masa.malilib.util.StringUtils; | ||
|
||
public class Reference | ||
{ | ||
public static final String MOD_ID = "itemscroller"; | ||
public static final String MOD_NAME = "Item Scroller"; | ||
public static final String MOD_VERSION = StringUtils.getModVersionString(MOD_ID); | ||
public static final String MC_VERSION = MinecraftVersion.CURRENT.getName(); | ||
public static final String MOD_TYPE = "fabric"; | ||
public static final String MOD_STRING = MOD_ID + "-" + MOD_TYPE + "-" + MC_VERSION + "-" + MOD_VERSION; | ||
} |
92 changes: 48 additions & 44 deletions
92
src/main/java/fi/dy/masa/itemscroller/config/Configs.java
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.