Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
funkydude committed Sep 28, 2016
1 parent 735b910 commit 666e368
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Loader.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ local bwFrame = CreateFrame("Frame")
-- Generate our version variables
--

local BIGWIGS_VERSION = 12
local BIGWIGS_VERSION = 13
local BIGWIGS_RELEASE_STRING = ""
local versionQueryString, versionResponseString = "Q:%d-%s", "V:%d-%s"

Expand Down Expand Up @@ -338,13 +338,13 @@ do
local zoneOrBoss = tonumber(rawZoneOrBoss:trim())
if zoneOrBoss then
if not currentZone then
-- register the zone for enabling.
enableZones[zoneOrBoss] = "world"

currentZone = zoneOrBoss

if not loadOnZone[zoneOrBoss] then loadOnZone[zoneOrBoss] = {} end
loadOnZone[zoneOrBoss][#loadOnZone[zoneOrBoss] + 1] = addon
-- register the zone for enabling.
enableZones[currentZone] = "world"

if not loadOnZone[currentZone] then loadOnZone[currentZone] = {} end
loadOnZone[currentZone][#loadOnZone[currentZone] + 1] = addon

if override then
loadOnZone[override][#loadOnZone[override] + 1] = addon
Expand Down Expand Up @@ -583,8 +583,8 @@ end

do
-- This is a crapfest mainly because DBM's actual handling of versions is a crapfest, I'll try explain how this works...
local DBMdotRevision = "15263" -- The changing version of the local client, changes with every alpha revision using an SVN keyword.
local DBMdotDisplayVersion = "7.0.7" -- Same as above but is changed between alpha and release cycles e.g. "N.N.N" for a release and "N.N.N alpha" for the alpha duration
local DBMdotRevision = "15283" -- The changing version of the local client, changes with every alpha revision using an SVN keyword.
local DBMdotDisplayVersion = "7.0.8" -- Same as above but is changed between alpha and release cycles e.g. "N.N.N" for a release and "N.N.N alpha" for the alpha duration
local DBMdotReleaseRevision = DBMdotRevision -- This is manually changed by them every release, they use it to track the highest release version, a new DBM release is the only time it will change.

local timer, prevUpgradedUser = nil, nil
Expand Down

0 comments on commit 666e368

Please sign in to comment.