Skip to content

Commit

Permalink
v2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tth05 committed Dec 7, 2021
1 parent fc4b076 commit 2a7055d
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 7 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ jobs:
java-version: 1.8
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Setup forge
run: ./gradlew -Pnet.minecraftforge.gradle.disableUpdateChecker=true setupCiWorkspace
- name: Build with Gradle
run: ./gradlew -Pnet.minecraftforge.gradle.disableUpdateChecker=true build
- name: Create Release
Expand All @@ -35,10 +33,14 @@ jobs:
release_name: Release ${{ github.ref }}
body: |
Changes in this Release
- Performance improvements for reader and writer on large systems
- Fixed recipe transfer error message not being sent to player
- Fixed external storage only extracting a single stack if IItemHandler has extraction limit
- Fixed tasks voiding items when the calculation throws an exception
- Add JEI two-way search mode (embeddedt)
- Add ability to copy redstone mode for wrench
- Fixed dupe glitch involving two external storages connected to the same block
- Fixed item in autocrafting settings gui being extractable
- Fixed JEI recipe transfer kicking the player sometimes
- Fixed grid not showing any items in some very rare edge cases
- Disabled automatic crafter unlocking (breaks crafting tasks in unwanted situations)
- Restore compatibility with QuantumStorage and other mods
draft: false
prerelease: false
- name: Upload jars to release
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# More Refined Storage Changelog

# 2.3.1
- Add JEI two-way search mode (embeddedt)
- Add ability to copy redstone mode for wrench
- Fixed dupe glitch involving two external storages connected to the same block
- Fixed item in autocrafting settings gui being extractable
- Fixed JEI recipe transfer kicking the player sometimes
- Fixed grid not showing any items in some very rare edge cases
- Disabled automatic crafter unlocking (breaks crafting tasks in unwanted situations)
- Restore compatibility with QuantumStorage and other mods

# 2.3.0
- Performance improvements for reader and writer on large systems
- Fixed recipe transfer error message not being sent to player
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'maven-publish'
apply plugin: 'idea'

version = "2.3.0"
version = "2.3.1"
group = "refinedstorage"

def tokens = [VERSION: project.version]
Expand Down

0 comments on commit 2a7055d

Please sign in to comment.