From 0127847de4d76d9e0190c22292fad4ea09fa2b16 Mon Sep 17 00:00:00 2001 From: "Erik L. Vonderscheer" Date: Sun, 16 Aug 2009 07:19:36 +0000 Subject: [PATCH] Fix for tagging --- TradeFilter3.lua | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/TradeFilter3.lua b/TradeFilter3.lua index 32714a7..b62b83a 100644 --- a/TradeFilter3.lua +++ b/TradeFilter3.lua @@ -38,14 +38,10 @@ local friends = LibStub("LibFriends-1.0") local LDB = LibStub("LibDataBroker-1.1", true) local TF3 = TradeFilter3 -local MAJOR_VERSION = 3 -local MINOR_VERSION = 1 -local BUILD = 0 -local REVISION = 000 + tonumber(("$Revision: @project-revision@ $"):match("%d+")) -TF3.version = MAJOR_VERSION .. "." .. MINOR_VERSION .. "." .. BUILD +local PROJECT.VERSION = @project-version@ +local PROJECT.REVISION = 000 + tonumber(("$Revision: @project-revision@ $"):match("%d+")) TF3.date = string.sub("$Date: @file-date-iso@ $", 8, 17) - -local project.version = "@project-version@" +TF3.version = string.sub(PROJECT_VERSION, "-release", "") --[[ Locals ]]-- local ipairs = ipairs -- 1.7.9.5