Skip to content

Commit

Permalink
Merge pull request #594 from refinedmods/fix/GH-572/refined-architect…
Browse files Browse the repository at this point in the history
…-update

Refined architect update
  • Loading branch information
raoulvdberge authored Jul 5, 2024
2 parents 9354e3f + e0e02cf commit 9440c39
Show file tree
Hide file tree
Showing 13 changed files with 16 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
types: [ opened, synchronize, reopened ]
jobs:
build:
uses: refinedmods/refinedarchitect/.github/workflows/build.yml@v0.14.3
uses: refinedmods/refinedarchitect/.github/workflows/build.yml@v0.15.1
with:
gametests: true
secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/draft-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
type: string
jobs:
draft:
uses: refinedmods/refinedarchitect/.github/workflows/draft-release.yml@v0.14.3
uses: refinedmods/refinedarchitect/.github/workflows/draft-release.yml@v0.15.1
with:
release-type: ${{ inputs.release-type }}
version-number-override: ${{ inputs.version-number-override }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/issue-for-unsupported-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ on:
types: [ labeled, unlabeled, reopened ]
jobs:
unsupported-labeler:
uses: refinedmods/refinedarchitect/.github/workflows/issue-for-unsupported-version.yml@v0.14.3
uses: refinedmods/refinedarchitect/.github/workflows/issue-for-unsupported-version.yml@v0.15.1
2 changes: 1 addition & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- closed
jobs:
publish-release:
uses: refinedmods/refinedarchitect/.github/workflows/publish-release.yml@v0.14.3
uses: refinedmods/refinedarchitect/.github/workflows/publish-release.yml@v0.15.1
secrets: inherit
with:
project-name: 'Refined Storage'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/resolved-issue-locking.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ on:
- cron: '0 0 * * *'
jobs:
lock:
uses: refinedmods/refinedarchitect/.github/workflows/resolved-issue-locking.yml@v0.14.3
uses: refinedmods/refinedarchitect/.github/workflows/resolved-issue-locking.yml@v0.15.1
2 changes: 1 addition & 1 deletion .github/workflows/validate-branch-name.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ name: Validate branch name
on: [ pull_request ]
jobs:
validate-branch-name:
uses: refinedmods/refinedarchitect/.github/workflows/validate-branch-name.yml@v0.14.3
uses: refinedmods/refinedarchitect/.github/workflows/validate-branch-name.yml@v0.15.1
2 changes: 1 addition & 1 deletion .github/workflows/validate-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ on:
types: [ opened, synchronize, reopened, ready_for_review, labeled, unlabeled ]
jobs:
validate-changelog:
uses: refinedmods/refinedarchitect/.github/workflows/validate-changelog.yml@v0.14.3
uses: refinedmods/refinedarchitect/.github/workflows/validate-changelog.yml@v0.15.1
2 changes: 1 addition & 1 deletion .github/workflows/validate-commit-messages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ name: Validate commit messages
on: [ pull_request ]
jobs:
validate-commit-messages:
uses: refinedmods/refinedarchitect/.github/workflows/validate-commit-messages.yml@v0.14.3
uses: refinedmods/refinedarchitect/.github/workflows/validate-commit-messages.yml@v0.15.1
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Fixed

- Fixed creative mode tab icon on NeoForge showing a durability bar.

## [2.0.0-milestone.4.0] - 2024-07-04

### Added
Expand Down
2 changes: 1 addition & 1 deletion refinedstorage-platform-neoforge/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
runs/
run/
2 changes: 1 addition & 1 deletion refinedstorage-platform-neoforge/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
forgeProject("refinedstorage", project(":refinedstorage-platform-common"), apis, compileApis)
neoForgeProject("refinedstorage", project(":refinedstorage-platform-common"), apis, compileApis)

archivesBaseName = 'refinedstorage-platform-neoforge'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ public void onRegister(final RegisterEvent e) {
createIdentifier("general"),
CreativeModeTab.builder()
.title(ContentNames.MOD)
.icon(() -> new ItemStack(Blocks.INSTANCE.getController().getDefault()))
.icon(() -> new ItemStack(Blocks.INSTANCE.getCreativeController().getDefault()))
.displayItems((params, output) -> CreativeModeTabItems.append(output::accept))
.build()
));
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
gradle.ext.refinedArchitectVersion = "0.14.3"
gradle.ext.refinedArchitectVersion = "0.15.1"

dependencyResolutionManagement {
repositories {
Expand Down

0 comments on commit 9440c39

Please sign in to comment.