Compare commits

...

5 Commits

Author SHA1 Message Date
f5e57b908e
Bump version to 1.2.3 2023-06-20 11:09:35 -04:00
f889b9c77f
Iris: unbind reload shader 2023-06-20 11:08:45 -04:00
7e544a786b
Update README.md; fix typo 2023-06-20 04:43:06 -04:00
c3523ac34f
Improve release notes generator
Old tag checked from before new tag instead of before HEAD
2023-06-20 04:31:50 -04:00
16c8d529b1
Add release notes template generator script 2023-06-20 04:28:26 -04:00
6 changed files with 15 additions and 4 deletions

View File

@ -1,2 +1,3 @@
.gitea/ .gitea/
README.md README.md
release-notes.sh

View File

@ -1,6 +1,6 @@
# Fabric Lite # Fabric Lite
This is a simple modpack that provides an enhanced, yet still vanilla This is a simple modpack that provides an enhanced, yet still vanilla
experience. I mainly made this because I got sick of essentailly making the experience. I mainly made this because I got sick of essentially making the
same modpack over and over again manually. same modpack over and over again manually.
## Installation ## Installation

View File

@ -14,3 +14,4 @@ onboardAccessibility:false
resourcePacks:["vanilla","fabric","continuity:default","continuity:glass_pane_culling_fix","betterbeds:connectedbeds","midnightcontrols:bedrock","file/VanillaTweaks_r265009.zip"] resourcePacks:["vanilla","fabric","continuity:default","continuity:glass_pane_culling_fix","betterbeds:connectedbeds","midnightcontrols:bedrock","file/VanillaTweaks_r265009.zip"]
incompatibleResourcePacks:["betterbeds:connectedbeds","midnightcontrols:bedrock"] incompatibleResourcePacks:["betterbeds:connectedbeds","midnightcontrols:bedrock"]
key_key.saveToolbarActivator:key.keyboard.v key_key.saveToolbarActivator:key.keyboard.v
key_iris.keybind.reload:key.keyboard.unknown

View File

@ -30,7 +30,7 @@ hash = "29e8afe5258e9f0cbeb96d3e8ab0cbdb4eadacf48621a6df06a6dece25410547"
[[files]] [[files]]
file = "config/yosbr/options.txt" file = "config/yosbr/options.txt"
hash = "95446e151890157ebdc8fa114b1fcbfff0c022403fa2e4f298a55258cef3c339" hash = "41150bb1b8b9238fcce207696cd32bd83650f0cd51e8c69c98f2314147f6a6e7"
[[files]] [[files]]
file = "config/yosbr/shaderpacks/ComplementaryReimagined_r2.2.zip.txt" file = "config/yosbr/shaderpacks/ComplementaryReimagined_r2.2.zip.txt"

View File

@ -1,12 +1,12 @@
name = "Fabric Lite" name = "Fabric Lite"
author = "NullBite" author = "NullBite"
version = "1.2.2" version = "1.2.3"
pack-format = "packwiz:1.1.0" pack-format = "packwiz:1.1.0"
[index] [index]
file = "index.toml" file = "index.toml"
hash-format = "sha256" hash-format = "sha256"
hash = "2684a4bf4b00556a0863acbea64a5ba04272c541625d81b473654af3d93312ff" hash = "03bccad39f7e72e1d9a1a8cdc81b1902c1a6e038036a1a8c9e1cf759bc256296"
[versions] [versions]
fabric = "0.14.21" fabric = "0.14.21"

9
release-notes.sh Executable file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env bash
current="$(git describe --abbrev=0)"
last="$(git describe $current~ --abbrev=0)"
cat << EOF
Changes:
-
**Full Changelog:** [\`$current...$last\`](https://gitea.protogen.io/nullbite/fabric-lite/compare/$current...$last)
EOF