Skip to content

Commit ee77903

Browse files
ChenChen
authored andcommitted
Release 1.2.4
1 parent b3fb72b commit ee77903

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

0Base/Base.lua

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-- @Author: Webster
22
-- @Date: 2015-01-21 15:21:19
33
-- @Last Modified by: Webster
4-
-- @Last Modified time: 2016-01-13 08:47:31
4+
-- @Last Modified time: 2016-01-14 00:29:42
55

66
-- these global functions are accessed all the time by the event handler
77
-- so caching them is worth the effort
@@ -19,7 +19,7 @@ local ROOT_PATH = "interface/JH/0Base/"
1919
local DATA_PATH = "interface/JH/@DATA/"
2020
local SHADOW_PATH = "interface/JH/0Base/item/shadow.ini"
2121
local ADDON_PATH = "interface/JH/"
22-
local _VERSION_ = 0x1020300
22+
local _VERSION_ = 0x1020400
2323

2424
---------------------------------------------------------------------
2525
-- 多语言处理
@@ -73,7 +73,7 @@ do
7373
end
7474

7575
local _JH = {
76-
szBuildDate = "20160107",
76+
szBuildDate = "20160114",
7777
szTitle = _L["JH, JX3 Plug-in Collection"],
7878
tHotkey = {},
7979
tAnchor = {},
@@ -2558,7 +2558,6 @@ function _GUI.Wnd:Autocomplete(fnTable, fnCallBack, fnRecovery, nMaxOption)
25582558
for k, v in ipairs(tTab) do
25592559
local txt = type(v) ~= "table" and tostring(v) or v.bRichText and v.option or v.szOption
25602560
if txt and txt:find(szText) and (txt ~= szText or type(v) == "table" and v.self) then
2561-
25622561
table.insert(tList, v)
25632562
elseif type(v) == "table" and v.bDevide then
25642563
table.insert(tList, v)
@@ -2594,10 +2593,11 @@ function _GUI.Wnd:Autocomplete(fnTable, fnCallBack, fnRecovery, nMaxOption)
25942593
end
25952594
end
25962595
if fnRecovery then
2597-
t.szLayer = "ICON_RIGHT"
2598-
t.nFrame = 86
2599-
t.szIcon = "ui/Image/UICommon/Feedanimials.uitex"
2600-
t.fnClickIcon = function()
2596+
t.szLayer = "ICON_RIGHTMOST"
2597+
t.nFrame = 86
2598+
t.nMouseOverFrame = 87
2599+
t.szIcon = "ui/Image/UICommon/Feedanimials.uitex"
2600+
t.fnClickIcon = function()
26012601
JH.Confirm(FormatString(g_tStrings.MSG_DELETE_NAME, t.szOption), function()
26022602
local _this = this
26032603
this = wnd

JH_CombatText/JH_CombatText.lua

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-- @Author: Webster
22
-- @Date: 2015-12-06 02:44:30
33
-- @Last Modified by: Webster
4-
-- @Last Modified time: 2016-01-13 19:12:06
4+
-- @Last Modified time: 2016-01-14 00:28:39
55

66
-- 战斗浮动文字设计思路
77
--[[
@@ -307,6 +307,9 @@ function CombatText.OnFrameRender()
307307
elseif tScale[nBefore] < tScale[nAfter] then
308308
fScale = fScale + ((tScale[nAfter] - tScale[nBefore]) * fDiff)
309309
end
310+
if v.nType == SKILL_RESULT_TYPE.THERAPY and v.bCriticalStrike then
311+
fScale = fScale * 0.8
312+
end
310313
end
311314
-- draw
312315
local r, g, b = unpack(v.col)

0 commit comments

Comments
 (0)