changelog + version bump
This commit is contained in:
parent
cb9c333f3b
commit
9058aa58fe
@ -1,3 +1,20 @@
|
|||||||
|
Flan 1.6.2
|
||||||
|
======================
|
||||||
|
- Fix tp sometimes tp into walls
|
||||||
|
- Add bannedDeletionTime config:
|
||||||
|
After x amount of days since the ban the claims will be deleted.
|
||||||
|
Only for permanent bans (so temp bans are not affected).
|
||||||
|
Temp bans are still affected by the inactivity time though.
|
||||||
|
Default 30 days (same as inactivity days)
|
||||||
|
- Add deletePlayerFile config:
|
||||||
|
Previously for inactive players only the claims where deleted.
|
||||||
|
If this is set to true their player data will also be deleted.
|
||||||
|
Default false
|
||||||
|
- Add universal graves mods grave to the default ignored entities
|
||||||
|
- Another performance improvement
|
||||||
|
- Add new config "offlineProtectActivation" to only protect claims when the player is offline.
|
||||||
|
Disabled by default
|
||||||
|
|
||||||
Flan 1.6.1
|
Flan 1.6.1
|
||||||
======================
|
======================
|
||||||
- Improve performance
|
- Improve performance
|
@ -73,7 +73,7 @@ def changelog(int versions) {
|
|||||||
try {
|
try {
|
||||||
def changelog = ""
|
def changelog = ""
|
||||||
def match = 0
|
def match = 0
|
||||||
file("Changelog.txt").eachLine {
|
file("Changelog.md").eachLine {
|
||||||
if (it.matches("${project.project_name} ([0-9].[0-9].[0-9])"))
|
if (it.matches("${project.project_name} ([0-9].[0-9].[0-9])"))
|
||||||
match++
|
match++
|
||||||
if (match <= versions) {
|
if (match <= versions) {
|
||||||
@ -119,7 +119,7 @@ curseforge {
|
|||||||
addGameVersion "Fabric"
|
addGameVersion "Fabric"
|
||||||
mainArtifact(project(":fabric").tasks.getByName('remapJar')) {
|
mainArtifact(project(":fabric").tasks.getByName('remapJar')) {
|
||||||
def txt = changelog(1).replace("\n-", "\n\n- ")
|
def txt = changelog(1).replace("\n-", "\n\n- ")
|
||||||
txt = txt + "\n\n" + "For past versions see: https://github.com/Flemmli97/Flan/blob/1.16/Changelog.txt"
|
txt = txt + "\n\n" + "For past versions see: https://github.com/Flemmli97/Flan/blob/1.16/Changelog.md"
|
||||||
changelog = txt
|
changelog = txt
|
||||||
changelogType = "markdown"
|
changelogType = "markdown"
|
||||||
releaseType = 'release'
|
releaseType = 'release'
|
||||||
@ -138,7 +138,7 @@ curseforge {
|
|||||||
addGameVersion "Forge"
|
addGameVersion "Forge"
|
||||||
mainArtifact(project(":forge").tasks.getByName('remapJar')) {
|
mainArtifact(project(":forge").tasks.getByName('remapJar')) {
|
||||||
def txt = changelog(1).replace("\n-", "\n\n- ")
|
def txt = changelog(1).replace("\n-", "\n\n- ")
|
||||||
txt = txt + "\n\n" + "For past versions see: https://github.com/Flemmli97/Flan/blob/1.16/Changelog.txt"
|
txt = txt + "\n\n" + "For past versions see: https://github.com/Flemmli97/Flan/blob/1.16/Changelog.md"
|
||||||
changelog = txt
|
changelog = txt
|
||||||
changelogType = "markdown"
|
changelogType = "markdown"
|
||||||
releaseType = 'release'
|
releaseType = 'release'
|
||||||
|
@ -8,7 +8,7 @@ minecraft_version=1.16.5
|
|||||||
yarn_mappings=1.16.5+build.9
|
yarn_mappings=1.16.5+build.9
|
||||||
loader_version=0.11.3
|
loader_version=0.11.3
|
||||||
# Mod Properties
|
# Mod Properties
|
||||||
mod_version=1.6.1
|
mod_version=1.6.2
|
||||||
maven_group=io.github.flemmli97
|
maven_group=io.github.flemmli97
|
||||||
archives_base_name=flan
|
archives_base_name=flan
|
||||||
# Dependencies
|
# Dependencies
|
||||||
|
Loading…
Reference in New Issue
Block a user