From 448c3e40f541ead82511ad701c2bcc4a5d6dddc2 Mon Sep 17 00:00:00 2001 From: "James D. Callahan III" Date: Mon, 26 Jul 2010 04:55:43 -0400 Subject: [PATCH] Fixed version text in UI title bar. --- core.lua | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/core.lua b/core.lua index 75bf308..805da8a 100644 --- a/core.lua +++ b/core.lua @@ -476,7 +476,12 @@ function addon:OnInitialize() return end local version = GetAddOnMetadata("AckisRecipeList", "Version") - self.version = (version == "@project-version@") and "Devel" or version + + -- @alpha@ + version = "Devel" + -- @end-alpha@ + + self.version = version self:SetupOptions() -- 1.7.9.5