From 3f7d8cf18392a00a7b7c14448c7003b49fd9e959 Mon Sep 17 00:00:00 2001 From: OldBeardedCoder <73860715+OldBeardedCoder@users.noreply.github.com> Date: Wed, 27 Jan 2021 18:41:52 -0800 Subject: [PATCH] Obc/053minimalfix (#95) * Fixed version #s * Updated VERSION.txt --- README.md | 3 ++- VERSION.txt | 2 +- cfg.json | 2 +- gui/react-ui/src/components/D2ModMaker/Main.js | 2 +- internal/d2mod/config/cfg.go | 2 +- 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index dd2801e..4fcebc6 100644 --- a/README.md +++ b/README.md @@ -156,7 +156,8 @@ Thanks! ## Upcoming Release * Added ElementalSkills option (+Cold,Lightning,Magic,Poison Skills) - +## v0.5.3 +* Fixed version # ## v0.5.2 * [bugfix] - fixed density overlap in old code, which was squaring density for nightmare, no increase for hell. * Upped density max to 45 and split between MonStats.txt & Levels.txt so that the density caps are not hit. diff --git a/VERSION.txt b/VERSION.txt index b0c2058..4bc4a91 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -v0.5.2 +v0.5.3 diff --git a/cfg.json b/cfg.json index 7c16ae7..9aaa189 100644 --- a/cfg.json +++ b/cfg.json @@ -1,5 +1,5 @@ { - "Version": "v0.5.1", + "Version": "v0.5.3", "SourceDir": "", "OutputDir": "", "MeleeSplash": true, diff --git a/gui/react-ui/src/components/D2ModMaker/Main.js b/gui/react-ui/src/components/D2ModMaker/Main.js index 41783ac..c36a458 100644 --- a/gui/react-ui/src/components/D2ModMaker/Main.js +++ b/gui/react-ui/src/components/D2ModMaker/Main.js @@ -21,7 +21,7 @@ const _ = require('lodash'); const axios = require("axios"); const defaultCfg = { - Version: "v0.5.1", + Version: "v0.5.3", SourceDir: "", OutputDir: "", MeleeSplash: true, diff --git a/internal/d2mod/config/cfg.go b/internal/d2mod/config/cfg.go index 199fd61..dfe1183 100644 --- a/internal/d2mod/config/cfg.go +++ b/internal/d2mod/config/cfg.go @@ -44,7 +44,7 @@ type Data struct { func DefaultData() Data { return Data{ - Version: "v0.5.1", + Version: "v0.5.3", SourceDir: "", OutputDir: "", MeleeSplash: true,