WoWInterface SVN ChatScroll

Compare Revisions

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

Rev 7 → Rev 8

trunk/ChatScroll/ChatScroll.lua
9,6 → 9,9
-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
56,9 → 59,13
end
else
if ( value > 0 ) then
chatframe:ScrollUp();
for i=1, ChatScroll_SavedVars.ScrollSpeed do
chatframe:ScrollUp();
end
elseif ( value < 0 ) then
chatframe:ScrollDown();
for i=1, ChatScroll_SavedVars.ScrollSpeed do
chatframe:ScrollDown();
end
end
end
else
155,6 → 162,16
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,
};
165,6 → 182,7
local defaults = {
EnableScrolling = "1";
HideChatButtons = "0";
ScrollSpeed = 1;
}
loader:SetDefault(addonName, savedVarTableName, defaults)
loader:SetScript(addonName, ChatScroll.UpdateButtons)
trunk/ChatScroll/localization.fr.lua
17,4 → 17,7
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.2
## Version: 3.3
## X-Date: Oct 25 2008
## X-Category: Chat
## X-Website: http://www.wowinterface.com/downloads/info5359-ChatScroll.html
trunk/ChatScroll/localization.en.lua
26,4 → 26,7
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.";
\ No newline at end of file +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
trunk Property changes : Added: svn:externals + Portfolio svn://svn.wowinterface.com/Portfolio-318/trunk/Portfolio