Skip to content

Commit

Permalink
🐛 修复气动工艺版本问题
Browse files Browse the repository at this point in the history
  • Loading branch information
warmthdawn committed Sep 28, 2021
1 parent 82d34c0 commit 2d57749
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: ./gradlew build
- uses: "marvinpinto/action-automatic-releases@latest"
with:
automatic_release_tag: "latest"
automatic_release_tag: "${{ github.ref }}"
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: |
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Sets default memory used for gradle commands. Can be overridden by user or command line properties.
# This is required to provide enough memory for the Minecraft decompilation process.
org.gradle.jvmargs=-Xmx3G
mod_version=0.7.6
mod_version=0.7.7
mc_version=1.12.2
mc_short=1.12
forge_version=14.23.5.2847
Expand Down Expand Up @@ -33,6 +33,6 @@ bloodmagic_version=2.4.3-105
bloodmagic_version_curse=224791:2822288
guideapi_version=228832:2645992
thaumcraft_version=223628:2629023
pneumaticcraft_repressurized_version=1.12.2-0.9.4-335
pneumaticcraft_repressurized_version=1.12.2-0.11.9-384
computercraft_version=67504:2478952
theoneprobe_version=1.12-1.4.28-17
3 changes: 2 additions & 1 deletion src/main/java/com/warmthdawn/mod/gugu_utils/GuGuUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
@Mod(modid = GuGuUtils.MODID, name = GuGuUtils.NAME, version = GuGuUtils.VERSION, dependencies = GuGuUtils.DEPENDENCY)
public class GuGuUtils {
public static final String MODID = "gugu-utils";
public static final String DEPENDENCY = "required-after:forge@[14.23.5.2847,);required-after:codechickenlib@[3.2.2,);required-after:mcjtylib_ng@[3.5.4,);after:modularmachinery;";
public static final String DEPENDENCY = "required-after:forge@[14.23.5.2847,);required-after:codechickenlib@[3.2.2,);required-after:mcjtylib_ng@[3.5.4,);" +
"after:modularmachinery;after:pneumaticcraft;after:naturesaura;";
public static final String NAME = "GuGu Utils";
public static final String VERSION = "@VERSION@";
public static final CreativeTabs creativeTab = new CreativeTabs(GuGuUtils.MODID) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import com.google.common.collect.Lists;
import com.warmthdawn.mod.gugu_utils.handler.ClientEventHandler;
import com.warmthdawn.mod.gugu_utils.jei.ingedients.IngredientCompressedAir;
import me.desht.pneumaticcraft.client.gui.GuiUtils;
import me.desht.pneumaticcraft.client.util.GuiUtils;
import me.desht.pneumaticcraft.lib.PneumaticValues;
import mezz.jei.api.ingredients.IIngredientRenderer;
import net.minecraft.client.Minecraft;
Expand Down
4 changes: 2 additions & 2 deletions version.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#Mon Sep 27 17:38:38 CST 2021
#Tue Sep 28 11:26:01 CST 2021
SAVED_VERSION=0.7.6
BUILD_NUMBER=1
BUILD_NUMBER=5

0 comments on commit 2d57749

Please sign in to comment.