Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
reobf committed Jul 27, 2024
1 parent 4528eab commit 3028d95
Show file tree
Hide file tree
Showing 6 changed files with 337 additions and 46 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ catch (Exception ignored) {

// Pulls version first from the VERSION env and then git tag
String identifiedVersion = null
String versionOverride = '0.0.17p14'
String versionOverride = '0.0.17p15'
try {
// Produce a version based on the tag, or for branches something like 0.2.2-configurable-maven-and-extras.38+43090270b6-dirty
if (versionOverride == null) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -637,9 +637,19 @@ private ModularWindow createSharedItemWindow(UIBuildContext buildContext) {
for(int i=0;i<shared.itemMEUpgrades;i++){
final int fi=i;
builder.widget(SlotWidget.phantom(new ItemStackHandler(shared.markedItems), i)
.addTooltips(ImmutableList.of(
.addTooltips(
(this instanceof BufferedDualInputHatch)?
ImmutableList.of(
StatCollector.translateToLocal("programmable_hatches.gt.item.pull.me.0"),
StatCollector.translateToLocal("programmable_hatches.gt.item.pull.me.1"))
StatCollector.translateToLocal("programmable_hatches.gt.item.pull.me.1"),
StatCollector.translateToLocal("programmable_hatches.gt.item.pull.me.2")
):
ImmutableList.of(
StatCollector.translateToLocal("programmable_hatches.gt.item.pull.me.0"),
StatCollector.translateToLocal("programmable_hatches.gt.item.pull.me.1")
)


)
.setPos(8-1+18+4, 8-1+18*posoffset));
builder.widget(new DrawableWidget().setDrawable(ModularUITextures.ARROW_RIGHT)
Expand Down Expand Up @@ -1698,7 +1708,7 @@ protected Widget createButtonSharedItem() {
})


.addTooltips(ImmutableList.of(LangManager.translateToLocal("programmable_hatches.gt.insertion")))
.addTooltips(ImmutableList.of(LangManager.translateToLocal("programmable_hatches.gt.shared")))
.setPos(/*extraCircuit?
new Pos2d(
getCircuitSlotX()-18,getCircuitSlotY()
Expand Down
Loading

0 comments on commit 3028d95

Please sign in to comment.