From 83a30911da79ff29b17ac43462339e317c54ebdd Mon Sep 17 00:00:00 2001 From: H Jalfi Date: Sat, 18 Feb 2006 19:31:53 +0000 Subject: [PATCH] The version number is now stored in an easy-to-modify variable. --- gaim-citadel/citadel.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gaim-citadel/citadel.lua b/gaim-citadel/citadel.lua index 07932fea2..d6f0fcff7 100644 --- a/gaim-citadel/citadel.lua +++ b/gaim-citadel/citadel.lua @@ -23,6 +23,10 @@ local buddies = {} -- CONSTANTS -- ----------------------------------------------------------------------------- +-- Our version number. Remember to update! + +local VERSION_NUMBER = "0.3" + -- Special values returned as Citadel's response codes. local LISTING_FOLLOWS = 100 @@ -495,7 +499,7 @@ function citadel_connect(_ga) -- Tell Citadel who we are. gaim_connection_update_progress(gc, "Setting up", 6, STEPS) - writeline("IDEN 226|0|0.2|Gaim Citadel plugin|") + writeline("IDEN 226|0|"..VERSION_NUMBER.."|Gaim Citadel plugin|") m = get_response() -- Set asynchronous mode. -- 2.39.2