diff --git a/Delete-Account.lua b/Delete-Account.lua
index 63352fb..1d8687e 100644
--- a/Delete-Account.lua
+++ b/Delete-Account.lua
@@ -1,4 +1,6 @@
--- Licence: MIT Licence
+-- The MIT License (MIT) http://opensource.org/licenses/MIT
+-- Copyright (c) 2014-2016 His Dad
+
-- Some code from the luatz project (MIT Licence)
--[[
Utility to delete old Accounts
@@ -69,7 +71,7 @@ for i,j in pairs(History_SV["Default"]) do
table.insert(accounts_list, i)
end
-if lang == nil then
+if lang == nil then
lang = "en"
end
diff --git a/Delete-Character.lua b/Delete-Character.lua
index b07e9c5..edf7047 100644
--- a/Delete-Character.lua
+++ b/Delete-Character.lua
@@ -1,4 +1,6 @@
--- Licence: MIT Licence
+-- The MIT License (MIT) http://opensource.org/licenses/MIT
+-- Copyright (c) 2014-2016 His Dad
+
-- Some code from the luatz project (MIT Licence)
--[[
Utility to delete old chars
@@ -69,7 +71,7 @@ for i,j in pairs(History_SV["Default"]) do
table.insert(accounts_list, i)
end
-if lang == nil then
+if lang == nil then
lang = "en"
end
@@ -135,8 +137,8 @@ selected = iup.ListDialog (1, L.SelectA,
1, --Initial
1,#playerNames--MaxCol MaxLine
)
-
-if selected <0 then
+
+if selected <0 then
iup.Close() -- Cancelled
os.exit()
end
diff --git a/Doc/Changelog.txt b/Doc/Changelog.txt
index f987c97..e961f6c 100644
--- a/Doc/Changelog.txt
+++ b/Doc/Changelog.txt
@@ -1,3 +1,11 @@
+2016-10-01 version 23
+ No change to in-game client, histoffline code has been refactored.
+ The saved variables data file format is unchanged. You can revert to an earlier version ok.
+ Ready for version 12, with new dungeon scheme.
+ Tracking sub achievments for Vet dungeons has been scrapped.
+ v11 has 2 more DLC dungeons and trials in normal modes. I'm not up to date with these. Will work on it.
+ v12 will make craglorn less of a joke. Will track what to do there.
+
2016-08-09 version 22
A BPB bug affecting users with more than 2 accounts
diff --git a/HistOffline.lua b/HistOffline.lua
index 448b3a8..c018a49 100644
--- a/HistOffline.lua
+++ b/HistOffline.lua
@@ -1,4 +1,6 @@
--- Licence: MIT Licence
+-- The MIT License (MIT) http://opensource.org/licenses/MIT
+-- Copyright (c) 2014-2016 His Dad
+
-- Some code from the luatz project (MIT Licence)
-- Configuration ==========
@@ -26,7 +28,7 @@ for _,i in ipairs(Grp_Order) do
Grp_Dat[i]={}
end
dofile "./data/Keys.lua" --Linking tables, must do first
-dofile "./data/DLC.lua" --Achievement to Grid lookup, language independent
+dofile "./data/DLC.lua" --Achievement to Grid lookup, language independent
dofile "./data/Group1.lua" -- Grp Mode 1 data, N, V, VH
dofile "./data/Group2.lua" -- Grp Mode 2 data, N, V, VH
dofile "./data/Public.lua"
diff --git a/LICENSE b/LICENSE
deleted file mode 100644
index 6fb308f..0000000
--- a/LICENSE
+++ /dev/null
@@ -1,21 +0,0 @@
-The MIT License (MIT) http://opensource.org/licenses/MIT
-
-Copyright (c) 2013-2014 Thijs Schreijer
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
diff --git a/LICENSE-history b/LICENSE-history
new file mode 100644
index 0000000..e33481d
--- /dev/null
+++ b/LICENSE-history
@@ -0,0 +1,21 @@
+The MIT License (MIT) http://opensource.org/licenses/MIT
+
+Copyright (c) 2014-2016 His Dad
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/LICENSE-luatz b/LICENSE-luatz
new file mode 100644
index 0000000..6fb308f
--- /dev/null
+++ b/LICENSE-luatz
@@ -0,0 +1,21 @@
+The MIT License (MIT) http://opensource.org/licenses/MIT
+
+Copyright (c) 2013-2014 Thijs Schreijer
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.