Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
pedroksl committed Dec 24, 2024
1 parent 2adc607 commit 366e0dd
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
- Fixed progress bar exceeding 100% on the quantum computer menu.
- Added compatibility with the newly ported ciruit cutterter menu
- Removed EMI plugin to fix missing "Fill recipe" button for Reaction Chamber recipes
- Changed text color in JEI/EMI to make it more readable
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ dependencies {
implementation fg.deobf("curse.maven:glodium-957920:5226922")
implementation fg.deobf("curse.maven:applied-flux-965012:5772439")
implementation fg.deobf("appeng:appliedenergistics2-forge:15.3.0-beta")
implementation fg.deobf("curse.maven:ex-pattern-provider-892005:5867594")
implementation fg.deobf("curse.maven:ex-pattern-provider-892005:6019114")
implementation fg.deobf("curse.maven:applied-energistics-2-wireless-terminals-459929:5217955")
compileOnly fg.deobf("curse.maven:jei-238222:5846810")
implementation fg.deobf("curse.maven:jade-324717:4768593")
Expand All @@ -126,8 +126,8 @@ dependencies {
runtimeOnly fg.deobf("curse.maven:emi-580555:5872526")

// jei
//runtimeOnly fg.deobf("curse.maven:jei-238222:5846810")
//runtimeOnly fg.deobf("dev.architectury:architectury-forge:7.0.66")
runtimeOnly fg.deobf("curse.maven:jei-238222:5846810")
runtimeOnly fg.deobf("dev.architectury:architectury-forge:7.0.66")
}

publisher {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ mapping_version=2023.09.03-1.20.1
mod_id=advanced_ae
mod_name=Advanced AE
mod_license=LGPL-3.0
mod_version=1.0.11-1.20.1
mod_version=1.0.12-1.20.1
mod_group_id=net.pedroksl.advanced_ae
mod_authors=Pedroksl
mod_description=An AE2 addon that adds a lot of utilities and quality of life.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

import com.glodblock.github.appflux.common.AFItemAndBlock;
import com.glodblock.github.extendedae.common.EPPItemAndBlock;

import com.glodblock.github.extendedae.recipe.CircuitCutterRecipeBuilder;

import org.jetbrains.annotations.NotNull;

import net.minecraft.core.HolderLookup;
Expand Down Expand Up @@ -198,7 +198,8 @@ protected void buildRecipes(@NotNull Consumer<FinishedRecipe> c) {
var cutterRecipe = CircuitCutterRecipeBuilder.cut(AAEItems.QUANTUM_PROCESSOR_PRINT, 9)
.input(AAEBlocks.QUANTUM_ALLOY_BLOCK, 1)
.fluid(Fluids.WATER, 100);
Addons.EXPATTERNPROVIDER.conditionalRecipe(c, cutterRecipe::save, AdvancedAE.makeId("quantum_processor_print_eae"));
Addons.EXPATTERNPROVIDER.conditionalRecipe(
c, cutterRecipe::save, AdvancedAE.makeId("quantum_processor_print_eae"));
InscriberRecipeBuilder.inscribe(ConventionTags.REDSTONE, AAEItems.QUANTUM_PROCESSOR, 1)
.setTop(Ingredient.of(AAEItems.QUANTUM_PROCESSOR_PRINT))
.setBottom(Ingredient.of(AEItems.SILICON_PRINT))
Expand Down

0 comments on commit 366e0dd

Please sign in to comment.