File chorus.toc changed (mode: 100644) (index b48c8e5..819f11f) |
1 |
1 |
##Interface: 30300 |
##Interface: 30300 |
2 |
2 |
##Notes: Add group frames and replace native solo frames. This is a work in progress. |
##Notes: Add group frames and replace native solo frames. This is a work in progress. |
3 |
3 |
##Title: Chorus |
##Title: Chorus |
4 |
|
##Version: 0.13.3 |
|
|
4 |
|
##Version: 0.13.4 |
5 |
5 |
##SavedVariables: ChorusUnitGroupRoleMap, ChorusConf, ChorusConfProfileName, ChorusLuacheckrcDump |
##SavedVariables: ChorusUnitGroupRoleMap, ChorusConf, ChorusConfProfileName, ChorusLuacheckrcDump |
6 |
6 |
src\Chorus.xml |
src\Chorus.xml |
File conf/lua-check/luacheckrc.lua changed (mode: 100644) (index 1989320..260a245) |
... |
... |
stds.chorus = { |
180 |
180 |
'ChorusConfFrameTitle', |
'ChorusConfFrameTitle', |
181 |
181 |
'ChorusConfMovableCheckBox', |
'ChorusConfMovableCheckBox', |
182 |
182 |
'ChorusFocusFrame', |
'ChorusFocusFrame', |
|
183 |
|
'ChorusFocusFrameHealthStatusBar', |
183 |
184 |
'ChorusFrame', |
'ChorusFrame', |
184 |
185 |
'ChorusGroupFrame', |
'ChorusGroupFrame', |
185 |
186 |
'ChorusGroupSecureHandler', |
'ChorusGroupSecureHandler', |
|
... |
... |
stds.chorus = { |
187 |
188 |
'ChorusPetFrame', |
'ChorusPetFrame', |
188 |
189 |
'ChorusPetFrameSecureHandler', |
'ChorusPetFrameSecureHandler', |
189 |
190 |
'ChorusPlayerFrame', |
'ChorusPlayerFrame', |
|
191 |
|
'ChorusPlayerFrameHealthStatusBar', |
190 |
192 |
'ChorusRaidFrame', |
'ChorusRaidFrame', |
191 |
193 |
'ChorusSoloFrame', |
'ChorusSoloFrame', |
192 |
194 |
'ChorusTargetFrame', |
'ChorusTargetFrame', |
|
195 |
|
'ChorusTargetFrameHealthStatusBar', |
193 |
196 |
}, |
}, |
194 |
197 |
globals = { |
globals = { |
195 |
198 |
--[[ TODO Add script that populates created frames at runtime |
--[[ TODO Add script that populates created frames at runtime |
File conf/make/src.mk changed (mode: 100644) (index 9a6928f..d46f60b) |
... |
... |
${srcdir}src/ChorusFrame.lua \ |
18 |
18 |
${srcdir}src/ChorusGroupFrame.lua \ |
${srcdir}src/ChorusGroupFrame.lua \ |
19 |
19 |
${srcdir}src/ChorusPartyFrame.lua \ |
${srcdir}src/ChorusPartyFrame.lua \ |
20 |
20 |
${srcdir}src/ChorusPetFrameTemplate.lua \ |
${srcdir}src/ChorusPetFrameTemplate.lua \ |
21 |
|
${srcdir}src/ChorusProgressFrameTemplate.lua \ |
|
22 |
21 |
${srcdir}src/ChorusRaidFrameTemplate.lua \ |
${srcdir}src/ChorusRaidFrameTemplate.lua \ |
23 |
22 |
${srcdir}src/ChorusRaidTargetIconFrameTemplate.lua \ |
${srcdir}src/ChorusRaidTargetIconFrameTemplate.lua \ |
24 |
23 |
${srcdir}src/ChorusRangeFrameTemplate.lua \ |
${srcdir}src/ChorusRangeFrameTemplate.lua \ |
|
... |
... |
${srcdir}src/ChorusLargeUnitFrameTemplate.xml \ |
58 |
57 |
${srcdir}src/ChorusPartyFrame.xml \ |
${srcdir}src/ChorusPartyFrame.xml \ |
59 |
58 |
${srcdir}src/ChorusPetFrameTemplate.xml \ |
${srcdir}src/ChorusPetFrameTemplate.xml \ |
60 |
59 |
${srcdir}src/ChorusPlayerFrame.xml \ |
${srcdir}src/ChorusPlayerFrame.xml \ |
61 |
|
${srcdir}src/ChorusProgressFrameTemplate.xml \ |
|
62 |
60 |
${srcdir}src/ChorusRaidFrameTemplate.xml \ |
${srcdir}src/ChorusRaidFrameTemplate.xml \ |
63 |
61 |
${srcdir}src/ChorusRaidTargetIconFrameTemplate.xml \ |
${srcdir}src/ChorusRaidTargetIconFrameTemplate.xml \ |
64 |
62 |
${srcdir}src/ChorusRangeFrameTemplate.xml \ |
${srcdir}src/ChorusRangeFrameTemplate.xml \ |
File makefile changed (mode: 100644) (index 941a2bd..ac22612) |
6 |
6 |
# delimiters. Otherwise, the game client will quietly ignore the add-on and not |
# delimiters. Otherwise, the game client will quietly ignore the add-on and not |
7 |
7 |
# load it. |
# load it. |
8 |
8 |
NAME=chorus |
NAME=chorus |
9 |
|
VERSION=0.13.3 |
|
|
9 |
|
VERSION=0.13.4 |
10 |
10 |
srcdir=./ |
srcdir=./ |
11 |
11 |
|
|
12 |
12 |
SHELL=/bin/sh |
SHELL=/bin/sh |
|
... |
... |
LDOCFLAGS= |
27 |
27 |
XMLLINT=xmllint |
XMLLINT=xmllint |
28 |
28 |
XMLLINTFLAGS=--nonet --encode UTF-8 --schema ${srcdir}conf/FrameXML/UI.xsd |
XMLLINTFLAGS=--nonet --encode UTF-8 --schema ${srcdir}conf/FrameXML/UI.xsd |
29 |
29 |
|
|
|
30 |
|
CTAGS=ctags |
|
31 |
|
CTAGSFLAGS= |
|
32 |
|
|
30 |
33 |
INSTALL=unzip -d ${DESTDIR}Interface/AddOns |
INSTALL=unzip -d ${DESTDIR}Interface/AddOns |
31 |
34 |
|
|
32 |
35 |
LUAFILES= |
LUAFILES= |
|
... |
... |
clean: |
86 |
89 |
rm -f doc/html/index.html |
rm -f doc/html/index.html |
87 |
90 |
rm -f doc/html/ldoc.css |
rm -f doc/html/ldoc.css |
88 |
91 |
|
|
|
92 |
|
tags: |
|
93 |
|
${CTAGS} ${CTAGSFLAGS} -f $@ --recurse ${LUAFILES} |
|
94 |
|
|
89 |
95 |
.PHONY: clean check check-lua check-xml install |
.PHONY: clean check check-lua check-xml install |