Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
685e0eda35
|
|||
4232e31fdb | |||
6e9364a9e5 | |||
bad0ba6cde | |||
8f02121846 | |||
74038c4682
|
|||
2340f4d074
|
30
.github/workflows/tag.yml
vendored
Normal file
30
.github/workflows/tag.yml
vendored
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
name: Create Release
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- '*'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
create-release:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Create changelog text
|
||||||
|
id: changelog
|
||||||
|
uses: loopwerk/tag-changelog@v1
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
config_file: .github/workflows/tag_changelog_config.js
|
||||||
|
|
||||||
|
- name: Create release
|
||||||
|
uses: actions/create-release@latest
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
tag_name: ${{ github.ref }}
|
||||||
|
release_name: ${{ github.ref }}
|
||||||
|
body: ${{ steps.changelog.outputs.changes }}
|
15
.github/workflows/tag_changelog_config.js
vendored
Normal file
15
.github/workflows/tag_changelog_config.js
vendored
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
module.exports = {
|
||||||
|
types: [
|
||||||
|
{ types: ["feat", "feature"], label: "🎉 New Features" },
|
||||||
|
{ types: ["fix", "bugfix"], label: "🐛 Bugfixes" },
|
||||||
|
{ types: ["improvements", "enhancement"], label: "🔨 Improvements" },
|
||||||
|
{ types: ["perf"], label: "🏎️ Performance Improvements" },
|
||||||
|
{ types: ["build", "ci"], label: "🏗️ Build System" },
|
||||||
|
{ types: ["refactor"], label: "🪚 Refactors" },
|
||||||
|
{ types: ["doc", "docs"], label: "📚 Documentation Changes" },
|
||||||
|
{ types: ["test", "tests"], label: "🔍 Tests" },
|
||||||
|
{ types: ["style"], label: "💅 Code Style Changes" },
|
||||||
|
{ types: ["chore"], label: "🧹 Chores" },
|
||||||
|
{ types: ["other"], label: "Other Changes" },
|
||||||
|
],
|
||||||
|
};
|
@ -68,8 +68,6 @@ namespace MagicStorageVoidBag.Items {
|
|||||||
Recipe recipe = CreateRecipe();
|
Recipe recipe = CreateRecipe();
|
||||||
recipe.AddIngredient<PortableAccess>();
|
recipe.AddIngredient<PortableAccess>();
|
||||||
recipe.AddIngredient(ItemID.VoidLens);
|
recipe.AddIngredient(ItemID.VoidLens);
|
||||||
recipe.AddIngredient<RadiantJewel>();
|
|
||||||
recipe.AddTile(TileID.LunarCraftingStation);
|
|
||||||
recipe.Register();
|
recipe.Register();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3,5 +3,13 @@
|
|||||||
ItemName: {
|
ItemName: {
|
||||||
MSVoidBag: Magic Void Bag
|
MSVoidBag: Magic Void Bag
|
||||||
}
|
}
|
||||||
|
ItemTooltip: {
|
||||||
|
MSVoidBag:
|
||||||
|
'''
|
||||||
|
<right> Storage Heart to store location
|
||||||
|
Currently not set to any location
|
||||||
|
'''
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -4,4 +4,4 @@ A mod that extends [Magic Storage](https://github.com/blushiemagic/MagicStorage)
|
|||||||
|
|
||||||
Adds an upgraded void bag that combines functionality of the Void Bag and Portable Remote Storage Access, by putting items into a magic storage system when your inventory is full (and allowing remote access as usual).
|
Adds an upgraded void bag that combines functionality of the Void Bag and Portable Remote Storage Access, by putting items into a magic storage system when your inventory is full (and allowing remote access as usual).
|
||||||
|
|
||||||
This item is crafted by combining a Void Bag with a Portable Remote Storage Access, and a Radiant Jewel. To link it with your storage system, right click the Storage Heart with the bag equipped.
|
This item is crafted by combining a Void Bag with a Portable Remote Storage Access. To link it with your storage system, right click the Storage Heart with the bag equipped.
|
@ -1,6 +1,6 @@
|
|||||||
displayName = Magic Storage Void Bag
|
displayName = MagicStorage Void Bag
|
||||||
author = jack
|
author = jack
|
||||||
version = 0.1
|
version = 0.3
|
||||||
modReferences = MagicStorage
|
modReferences = MagicStorage
|
||||||
dllReferences = MMHOOK_MagicStorage
|
dllReferences = MMHOOK_MagicStorage
|
||||||
sortAfter = MagicStorage
|
sortAfter = MagicStorage
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
Adds an upgraded void bag that combines functionality of the Void Bag and Portable Remote Storage Access, by putting items into a magic storage system when your inventory is full (and allowing remote access as usual).
|
Adds an upgraded void bag that combines functionality of the Void Bag and Portable Remote Storage Access, by putting items into a magic storage system when your inventory is full (and allowing remote access as usual).
|
||||||
This item is crafted by combining a Void Bag with a Portable Remote Storage Access, and a Radiant Jewel. To link it with your storage system, right click the Storage Heart with the bag equipped.
|
This item is crafted by combining a Void Bag with a Portable Remote Storage Access. To link it with your storage system, right click the Storage Heart with the bag equipped.
|
@ -1,2 +1,2 @@
|
|||||||
Adds an upgraded void bag that combines functionality of the Void Bag and Portable Remote Storage Access, by putting items into a magic storage system when your inventory is full (and allowing remote access as usual).
|
Adds an upgraded void bag that combines functionality of the Void Bag and Portable Remote Storage Access, by putting items into a magic storage system when your inventory is full (and allowing remote access as usual).
|
||||||
This item is crafted by combining a Void Bag with a Portable Remote Storage Access, and a Radiant Jewel. To link it with your storage system, right click the Storage Heart with the bag equipped.
|
This item is crafted by combining a Void Bag with a Portable Remote Storage Access. To link it with your storage system, right click the Storage Heart with the bag equipped.
|
BIN
icon_workshop.png
Normal file
BIN
icon_workshop.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.2 KiB |
Reference in New Issue
Block a user