WoWInterface SVN ChatScroll

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 8 to Rev 7
    Reverse comparison

Rev 8 → Rev 7

trunk/ChatScroll/localization.en.lua
26,7 → 26,4
CHATSCROLL_BUTTONS_HIDE_INFO = "Hides the four buttons on the side of each of the chat frames.";
 
CHATSCROLL_BUTTONS_HIDDEN = "Chat frame buttons are now hidden.";
CHATSCROLL_BUTTONS_SHOWN = "Chat frame buttons are now shown.";
 
CHATSCROLL_SCROLL_SPEED = "Scroll Speed (%s)";
CHATSCROLL_SCROLL_SPEED_INFO = "The number of lines which your chat will scroll per mouse wheel scroll.";
\ No newline at end of file +CHATSCROLL_BUTTONS_SHOWN = "Chat frame buttons are now shown."; \ No newline at end of file
trunk/ChatScroll/ChatScroll.lua
9,9 → 9,6
-ChatFrame Mouse Wheel Scroll
 
Change List
v3.3
- Added a Scroll Speed slider
(If you're not using Portfolio manually set ChatScroll_SavedVars.ScrollSpeed to a number > 0)
v3.2
- Fixed Portfolio not being optional
v3.1
59,13 → 56,9
end
else
if ( value > 0 ) then
for i=1, ChatScroll_SavedVars.ScrollSpeed do
chatframe:ScrollUp();
end
chatframe:ScrollUp();
elseif ( value < 0 ) then
for i=1, ChatScroll_SavedVars.ScrollSpeed do
chatframe:ScrollDown();
end
chatframe:ScrollDown();
end
end
else
162,16 → 155,6
callback=ChatScroll.UpdateButtons;
defaultValue = "0";
};
{
id="ScrollSpeed";
text=function(value) return CHATSCROLL_SCROLL_SPEED:format(value) end;
tooltipText=CHATSCROLL_SCROLL_SPEED_INFO;
minValue = 1;
maxValue = 10;
valueStep = 1;
type=CONTROLTYPE_SLIDER;
defaultValue = 1;
};
};
savedVarTable = savedVarTableName,
};
182,7 → 165,6
local defaults = {
EnableScrolling = "1";
HideChatButtons = "0";
ScrollSpeed = 1;
}
loader:SetDefault(addonName, savedVarTableName, defaults)
loader:SetScript(addonName, ChatScroll.UpdateButtons)
trunk/ChatScroll/localization.fr.lua
17,7 → 17,4
CHATSCROLL_CHAT_ENABLED = "D\195\169filement du chat par la m\195\180lette de la Souris activ\195\169.";
CHATSCROLL_CHAT_DISABLED = "D\195\169filement du chat par la m\195\180lette de la Souris d\195\169activ\195\169.";
 
CHATSCROLL_SCROLL_SPEED = "Vitesse de Défilement (%s)"
CHATSCROLL_SCROLL_SPEED_INFO = "Le nombre de lignes qui vont défilées par rotation de la roulette de la souris."
 
end
trunk/ChatScroll/ChatScroll.toc
6,7 → 6,7
## Author: AnduinLothar
## OptionalDeps: Portfolio, LibDefaults
## SavedVariables: ChatScroll_SavedVars, meh
## Version: 3.3
## Version: 3.2
## X-Date: Oct 25 2008
## X-Category: Chat
## X-Website: http://www.wowinterface.com/downloads/info5359-ChatScroll.html
trunk Property changes : Deleted: svn:externals - Portfolio svn://svn.wowinterface.com/Portfolio-318/trunk/Portfolio