Skip to content

Commit

Permalink
version information is now loaded automatically
Browse files Browse the repository at this point in the history
  • Loading branch information
blind-coder committed Jun 19, 2015
1 parent 9b506ae commit 1c8ae82
Showing 1 changed file with 20 additions and 3 deletions.
23 changes: 20 additions & 3 deletions media/lua/client/tiny_avc.lua
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ TinyAVC.getUrl = function(url) -- {{{
end
-- }}}
TinyAVC.versionHistory = { -- {{{
--[[
["1"] = {
order = 1,
backwardsCompatible = false
Expand Down Expand Up @@ -189,12 +190,24 @@ TinyAVC.versionHistory = { -- {{{
["32.4"] = {
order = 30,
backwardsCompatible = true
},
["32.5"] = {
order = 31,
backwardsCompatible = true
},
["32.6"] = {
order = 32,
backwardsCompatible = true
},
["32.7"] = {
order = 33,
backwardsCompatible = true
}


--]]
};
-- }}}
TinyAVC.sanitizeTISVersion = { -- {{{
--[[
-- Somewhere up here is 2.9.9.6
["2.9.9.17"] = "1", -- Build from around 2013-09-09, no idea where else to put this. Might also be 17d, idk.
["17 (0008)"] = "8", -- actually 2.9.9.17 Build 8
Expand Down Expand Up @@ -226,7 +239,11 @@ TinyAVC.sanitizeTISVersion = { -- {{{
["Early Access v. 32.1"] = "32.1",
["Early Access v. 32.2"] = "32.2",
["Early Access v. 32.3"] = "32.3",
["Early Access v. 32.4"] = "32.4"
["Early Access v. 32.4"] = "32.4",
["Early Access v. 32.5"] = "32.5",
["Early Access v. 32.6"] = "32.6",
["Early Access v. 32.7"] = "32.7"
--]]
};
-- }}}
TinyAVC.sanitizeVersion = function(ver) -- {{{
Expand Down

0 comments on commit 1c8ae82

Please sign in to comment.