This commit is contained in:
Andreas Neue 2019-07-31 15:20:55 +02:00
parent 157368b611
commit d78d1fc07a
2 changed files with 2 additions and 1 deletions

View File

@ -55,4 +55,5 @@ func ReplaceUmlauts(s string) ret string {
ret = strings.Replace(ret, "ö", "oe", -1) ret = strings.Replace(ret, "ö", "oe", -1)
ret = strings.Replace(ret, "ü", "ue", -1) ret = strings.Replace(ret, "ü", "ue", -1)
ret = strings.Replace(ret, "ß", "ss", -1) ret = strings.Replace(ret, "ß", "ss", -1)
return
} }

View File

@ -1,2 +1,2 @@
package version package version
const Version = "109" const Version = "110"