-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #47 from sweetrpg/1.18
Release
- Loading branch information
Showing
54 changed files
with
484 additions
and
862 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,12 +37,20 @@ jobs: | |
name: Get last version | ||
run: | | ||
echo "latest_version=$(cat .release-info/${{ github.ref_name }}/VERSION)" >> $GITHUB_ENV | ||
- id: get_bump_level | ||
name: Get bump level | ||
run: | | ||
echo "bump_level=$(cat .release-info/${{ github.ref_name }}/BUMP_LEVEL)" >> $GITHUB_ENV | ||
- id: bump_version | ||
name: Bump version | ||
uses: cbrgm/semver-bump-action@main | ||
with: | ||
current-version: ${{ env.latest_version }} | ||
bump-level: patch | ||
bump-level: ${{ env.bump_level || 'patch' }} | ||
- id: reset_bump_level | ||
name: Reset bump level | ||
run: | | ||
echo "patch" > .release-info/${{ github.ref_name }}/BUMP_LEVEL | ||
- name: Build with Gradle | ||
uses: gradle/gradle-build-action@937999e9cc2425eddc7fd62d1053baf041147db7 | ||
with: | ||
|
@@ -54,8 +62,8 @@ jobs: | |
git config --global user.email "[email protected]" | ||
git config --global user.name "SweetRPG CI" | ||
echo "${{ steps.bump_version.outputs.new_version }}" > .release-info/${{ github.ref_name }}/VERSION | ||
git add .release-info/${{ github.ref_name }}/VERSION | ||
git commit -m "Update ${{ github.ref_name }} VERSION file" | ||
git add .release-info/${{ github.ref_name }}/* | ||
git commit -m "Update ${{ github.ref_name }} .release-info files" | ||
git push origin | ||
- name: Release artifacts | ||
uses: softprops/action-gh-release@v1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
patch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
256510bbbd810366ee9da94fc0ddd31d450e4576 | ||
f90114caa2b504cf129370ac131d1ebbc574c405 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.1.12 | ||
0.2.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# 0.1.12 | ||
|
||
- `[FIX]` Made cost calculation of non-vanilla recipes slightly more expensive | ||
- `[FIX]` Made cost calculation of non-crafting table recipes slightly more expensive | ||
- `[FIX]` Increased recipe calculation depth to 3 | ||
- `[FIX]` Added checks for recipe and ingredient namespaces in determining intermediate/raw status | ||
- `[FIX]` Changed text for crafting queue sections | ||
- `[NEW]` Intermediate and raw materials that are tags are marked with an asterisk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,2 @@ | ||
- `[FIX]` Made cost calculation of non-vanilla recipes slightly more expensive | ||
- `[FIX]` Made cost calculation of non-crafting table recipes slightly more expensive | ||
- `[FIX]` Increased recipe calculation depth to 3 | ||
- `[FIX]` Added checks for recipe and ingredient namespaces in determining intermediate/raw status | ||
- `[FIX]` Changed text for crafting queue sections | ||
- `[NEW]` Intermediate and raw materials that are tags are marked with an asterisk | ||
- `[DEV]` Code cleanup | ||
- `[DEV]` Documentation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.