mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
r77!
This commit is contained in:
parent
3ec92ed4c4
commit
f116c68f9c
4 changed files with 12 additions and 31 deletions
|
@ -14,7 +14,7 @@ buildscript {
|
|||
apply plugin: 'net.minecraftforge.gradle.forge'
|
||||
apply plugin: 'idea'
|
||||
|
||||
version = "1.11-r76"
|
||||
version = "1.11-r77"
|
||||
group = "de.ellpeck.actuallyadditions"
|
||||
archivesBaseName = "ActuallyAdditions"
|
||||
|
||||
|
|
|
@ -1,29 +0,0 @@
|
|||
import re, os, fnmatch
|
||||
|
||||
def fix_file_contents(filename):
|
||||
with open(filename, "r") as file:
|
||||
data = file.read()
|
||||
reg = 'actuallyadditions:[a-z]+\/([a-zA-z]+)'
|
||||
for found in re.findall(reg, data):
|
||||
data = data.replace(found, rename(found))
|
||||
reg = 'actuallyadditions:([a-zA-z]+)'
|
||||
for found in re.findall(reg, data):
|
||||
data = data.replace(found, rename(found))
|
||||
with open(filename, "w") as file:
|
||||
file.write(data)
|
||||
|
||||
def rename(oldName):
|
||||
reg = '[A-Z]?[a-z.]+'
|
||||
parts = re.findall(reg, oldName)
|
||||
newString = parts[0]
|
||||
for part in parts[1:]:
|
||||
newString += "_" + part.lower()
|
||||
print(newString)
|
||||
return newString
|
||||
|
||||
if __name__ == "__main__":
|
||||
cwd = os.getcwd()
|
||||
for subdir, dirs, files in os.walk(cwd):
|
||||
for file in files:
|
||||
if fnmatch.fnmatch(file, "*.png"):
|
||||
os.rename(os.path.join(subdir, file), os.path.join(subdir, rename(file)))
|
|
@ -1,3 +1,13 @@
|
|||
# 1.11-r77
|
||||
* Made the Farmer add seeds back into the seed input slots
|
||||
* Made the XP solidifier save and update correctly
|
||||
* Made the lens of death disablable
|
||||
* Made the achievements and config button appear right away after starting the tutorial
|
||||
* Named all containers properly
|
||||
* Made the amount of loot generated in chests a little higher
|
||||
* Replace chests in village houses and lush caves with storage crates
|
||||
* Fixed the villager texture being missing
|
||||
|
||||
# 1.11-r76
|
||||
* This is the first release of Actually Additions for Minecraft 1.11. It hasn't been tested much, so issues might occur. Use at your own risk, but remember: I can use all the help in testing I can get! So if you find a bug, please report it on the issue tracker!
|
||||
* Updated to Minecraft 1.11. Old worlds should be compatible.
|
||||
|
|
|
@ -4,4 +4,4 @@
|
|||
1.9.4=45
|
||||
1.10=46
|
||||
1.10.2=75
|
||||
1.11=76
|
||||
1.11=77
|
Loading…
Reference in a new issue