├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ └── release.yml ├── .gitignore ├── .kanban ├── .pkgmeta ├── .release ├── generate_changelog.sh └── release.sh ├── .snippets ├── !test.lua ├── ClickCastOnOtherFrames.lua ├── ClickCastingTips.lua ├── GenericRaidDebuffs.lua ├── IndicatorIcons_RemoveBorder.lua ├── OUTDATED │ ├── [OUTDATED] CooldownIcons_BlizzardStyle.gif │ ├── [OUTDATED] CooldownIcons_BlizzardStyle.lua │ ├── [OUTDATED] CooldownIcons_ForceShow.lua │ ├── [OUTDATED] CooldownIcons_RemoveDispelTypeBorderColor.lua │ ├── [OUTDATED] CustomIndicator_AuraFilters_Source.lua │ ├── [OUTDATED] CustomIndicator_AuraFilters_TargetRole.lua │ ├── [OUTDATED] DispelHighlight_Button.lua │ ├── [OUTDATED] DispelHighlight_CustomColor.lua │ ├── [OUTDATED] DispelHighlight_Health.lua │ ├── [OUTDATED] HauntedMaskIcons.lua │ ├── [OUTDATED] HideButtonBorder.lua │ ├── [OUTDATED] HideRaidFrame.lua │ ├── [OUTDATED] HideSoloPet.lua │ ├── [OUTDATED] IconFadeOut.lua │ ├── [OUTDATED] IndicatorBars_ShowDuration.lua │ ├── [OUTDATED] IndicatorIcons_CustomColor.lua │ ├── [OUTDATED] RaidGroupNumber_Name.lua │ └── [OUTDATED] RemoveBorder_Bar.lua ├── OpenMenu.lua ├── PartyAssignmentIcon.lua ├── PartyAssignmentIcon.png ├── PvPStatusIcon.lua ├── RaidGroupNumber_Group.lua ├── RaiseFrameLevelOfOmniCD.lua ├── RepointOvershieldTexture.lua ├── RepointPartyAndArenaPets.lua ├── ShieldAndAbsorb_CustomTexture.lua ├── ShowServerName.lua ├── SortPartyBySpec.lua ├── SortRaidByName.lua ├── SwingTimer.lua ├── ToL_Glow.lua └── ToL_Icon.lua ├── CHANGELOG.md ├── Cell.toc ├── Cell_Cata.toc ├── Cell_Mists.toc ├── Cell_Vanilla.toc ├── Cell_Wrath.toc ├── Comm ├── Comm.lua ├── LoadComm.xml └── Nicknames.lua ├── Core.lua ├── Core_Cata.lua ├── Core_Mists.lua ├── Core_Vanilla.lua ├── Core_Wrath.lua ├── Defaults ├── Appearance_Defaults.lua ├── ClickCasting_DefaultSpells.lua ├── ClickCasting_DefaultSpells_Cata.lua ├── ClickCasting_DefaultSpells_Mists.lua ├── ClickCasting_DefaultSpells_Vanilla.lua ├── ClickCasting_DefaultSpells_Wrath.lua ├── Indicator_Bleeds.lua ├── Indicator_DefaultSpells.lua ├── Indicator_DefaultSpells_Cata.lua ├── Indicator_DefaultSpells_Mists.lua ├── Indicator_DefaultSpells_Vanilla.lua ├── Indicator_DefaultSpells_Wrath.lua ├── Indicator_Defaults.lua ├── Layout_Defaults.lua ├── Layout_Defaults_Cata_Wrath.lua ├── Layout_Defaults_Mists.lua ├── Layout_Defaults_Vanilla.lua ├── LoadDefaults.xml ├── LoadDefaults_Cata.xml ├── LoadDefaults_Mists.xml ├── LoadDefaults_Vanilla.xml └── LoadDefaults_Wrath.xml ├── HideBlizzard.lua ├── Indicators ├── Actions.lua ├── AoEHealing.lua ├── Base.lua ├── Built-in.lua ├── Custom.lua ├── Custom_Classic.lua ├── StatusIcon.lua ├── Supporter.lua ├── TargetCounter.lua └── TargetedSpells.lua ├── LICENSE.txt ├── Libs ├── CallbackHandler.lua ├── FAIAP.lua ├── LibBadWords.lua ├── LibGroupInfo.lua ├── LibSpecData.lua ├── LibTranslit-1.0 │ ├── LibTranslit-1.0.lua │ ├── LibTranslit-1.0.toc │ └── LibTranslit-1.0.xml ├── LoadLibs.xml ├── LoadLibs_Classic.xml ├── PixelPerfect.lua └── utf8.lua ├── Locales ├── LoadLocales.xml ├── deDE.lua ├── enUS.lua ├── esES.lua ├── esMX.lua ├── frFR.lua ├── itIT.lua ├── koKR.lua ├── ptBR.lua ├── ruRU.lua ├── zhCN.lua └── zhTW.lua ├── Media ├── Debuffs │ ├── Bleed.tga │ ├── Curse.tga │ ├── Disease.tga │ ├── Magic.tga │ ├── Poison.tga │ └── Rhombus.tga ├── FlipBooks │ ├── dispel_A.png │ ├── dispel_B.png │ ├── dispel_C.png │ ├── goat.png │ └── mvp.png ├── Fonts │ ├── Accidental_Presidency.ttf │ ├── font.ttf │ └── visitor.ttf ├── Icons │ ├── 1.tga │ ├── 2.tga │ ├── add.tga │ ├── alphabetical_sorting.tga │ ├── arrow.tga │ ├── backup.tga │ ├── close.tga │ ├── combat.tga │ ├── combat_glow.tga │ ├── copy.tga │ ├── create.tga │ ├── delete.tga │ ├── delete2.tga │ ├── down.tga │ ├── dropdown-normal.tga │ ├── dropdown-pushed.tga │ ├── export.tga │ ├── export2.tga │ ├── icon_marker.tga │ ├── import.tga │ ├── import2.tga │ ├── info.tga │ ├── info2.tga │ ├── instant.tga │ ├── left-click.tga │ ├── left.tga │ ├── new.tga │ ├── premade.tga │ ├── pull.tga │ ├── ready.tga │ ├── readycheck-notready.tga │ ├── readycheck-ready.tga │ ├── readycheck-waiting.tga │ ├── rename.tga │ ├── reset.tga │ ├── resize.tga │ ├── right-click.tga │ ├── right.tga │ ├── share.tga │ ├── sparkling_heart.tga │ ├── target.tga │ ├── thumb.tga │ ├── trash.tga │ ├── up.tga │ └── upgrade.tga ├── Indicators │ ├── indicator-bar.tga │ ├── indicator-bars.tga │ ├── indicator-block.tga │ ├── indicator-blocks.tga │ ├── indicator-border.tga │ ├── indicator-color.tga │ ├── indicator-glow.tga │ ├── indicator-icon.tga │ ├── indicator-icons.tga │ ├── indicator-overlay.tga │ ├── indicator-rect.tga │ ├── indicator-text.tga │ └── indicator-texture.tga ├── Links │ ├── afdian.tga │ ├── curseforge.tga │ ├── discord.tga │ ├── github.tga │ ├── ko-fi.tga │ ├── kook.tga │ ├── nga.tga │ └── wago.tga ├── Roles │ ├── Blizzard2_ROLES.tga │ ├── Blizzard3_DAMAGER.tga │ ├── Blizzard3_HEALER.tga │ ├── Blizzard3_TANK.tga │ ├── Blizzard4_DAMAGER.tga │ ├── Blizzard4_HEALER.tga │ ├── Blizzard4_TANK.tga │ ├── Blizzard_ROLES.tga │ ├── Default2_ROLES.tga │ ├── Default_DAMAGER.tga │ ├── Default_HEALER.tga │ ├── Default_TANK.tga │ ├── FFXIV_DAMAGER.tga │ ├── FFXIV_HEALER.tga │ ├── FFXIV_TANK.tga │ ├── MattUI_ROLES.tga │ ├── MiirGui_DAMAGER.tga │ ├── MiirGui_HEALER.tga │ ├── MiirGui_TANK.tga │ ├── Preview_Blizzard.tga │ ├── Preview_Blizzard2.tga │ ├── Preview_Blizzard3.tga │ ├── Preview_Blizzard4.tga │ ├── Preview_Default.tga │ ├── Preview_Default2.tga │ ├── Preview_FFXIV.tga │ ├── Preview_MattUI.tga │ ├── Preview_MiirGui.tga │ ├── VEHICLE.tga │ └── default.zip ├── Shapes │ ├── circle.tga │ ├── circle_blurred.tga │ ├── circle_filled.tga │ ├── circle_filled_256.tga │ ├── circle_thin.tga │ ├── heart.tga │ ├── heart_filled.tga │ ├── heart_filled_256.tga │ ├── hexagon_filled.tga │ ├── indicator-text.tga │ ├── octagon_filled.tga │ ├── rhombus.tga │ ├── rhombus_filled.tga │ ├── semicircle.tga │ ├── square.tga │ ├── square_filled.tga │ ├── star.tga │ ├── star_filled.tga │ ├── starburst.tga │ ├── starburst_filled.tga │ ├── triangle.tga │ └── triangle_filled.tga ├── empty.tga ├── icon.tga ├── overabsorb.tga ├── overshield.tga ├── overshield_reversed.tga ├── shield.tga ├── star.png ├── statusbar.tga └── white.tga ├── Modules ├── About │ ├── About.lua │ ├── Backup.lua │ ├── Changelogs.lua │ ├── CodeSnippets.lua │ └── ImportExport.lua ├── Appearance │ └── Appearance.lua ├── ClickCastings │ ├── ClickCastings.lua │ └── ImportExport.lua ├── General │ ├── General.lua │ ├── Nicknames_Blacklist.lua │ └── Nicknames_Custom.lua ├── Indicators │ ├── Copy.lua │ ├── Export.lua │ ├── Import.lua │ ├── Indicators.lua │ └── TextureSelector.lua ├── Layouts │ ├── ImportExport.lua │ ├── Layouts.lua │ └── PowerFilters.lua ├── LoadModules.xml ├── LoadModules_Classic.xml ├── OptionsFrame.lua ├── RaidDebuffs │ ├── ImportExport.lua │ ├── RaidDebuffs.lua │ └── RaidDebuffs_Classic.lua └── Utilities │ └── Utilities.lua ├── README.md ├── README_zhCN.md ├── RaidDebuffs ├── ExpansionData │ ├── ExpansionData.lua │ ├── ExpansionDataOverrides.lua │ ├── ExpansionData_deDE.lua │ ├── ExpansionData_frFR.lua │ ├── ExpansionData_koKR.lua │ ├── ExpansionData_ruRU.lua │ ├── ExpansionData_zhCN.lua │ ├── ExpansionData_zhTW.lua │ └── LoadExpansionData.xml ├── LoadRaidDebuffs.xml ├── LoadRaidDebuffs_Cata.xml ├── LoadRaidDebuffs_Vanilla.xml ├── LoadRaidDebuffs_Wrath.xml ├── RaidDebuffs_BfA.lua ├── RaidDebuffs_Cata.lua ├── RaidDebuffs_Classic.lua ├── RaidDebuffs_DF.lua ├── RaidDebuffs_Legion.lua ├── RaidDebuffs_MoP.lua ├── RaidDebuffs_SL.lua ├── RaidDebuffs_TBC.lua ├── RaidDebuffs_TWW.lua ├── RaidDebuffs_WoD.lua └── RaidDebuffs_WotLK.lua ├── RaidFrames ├── Groups │ ├── NPCFrame.lua │ ├── PartyFrame.lua │ ├── PetFrame.lua │ ├── RaidFrame.lua │ ├── SoloFrame.lua │ └── SpotlightFrame.lua ├── MainFrame.lua ├── UnitButton.lua ├── UnitButton.xml ├── UnitButton_Cata_Wrath.lua ├── UnitButton_Mists.lua └── UnitButton_Vanilla.lua ├── Revise.lua ├── Supporters.lua ├── Utilities ├── BattleRes.lua ├── BuffTracker.lua ├── BuffTracker_Classic.lua ├── DeathReport.lua ├── LoadUtilities.xml ├── LoadUtilities_Classic.xml ├── LoadUtilities_Mists.xml ├── Marks.lua ├── QuickAssist.lua ├── QuickAssist.xml ├── QuickAssist_Config.lua ├── QuickAssist_ImportExport.lua ├── QuickCast.lua ├── RaidRosterFrame.lua ├── RaidTools.lua ├── ReadyAndPull.lua ├── Request_Dispel.lua ├── Request_GlowOptions.lua ├── Request_IconOptions.lua ├── Request_Show.lua ├── Request_Spell.lua └── Request_TextOptions.lua ├── Utils.lua └── Widgets ├── Animation.lua ├── ColorPicker.lua ├── LoadWidgets.xml ├── LoadWidgets_Classic.xml ├── Tooltip.lua ├── TooltipTemplate.xml ├── TooltipTemplate_Classic.xml ├── Widgets.lua └── Widgets_IndicatorSettings.lua /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.gitignore -------------------------------------------------------------------------------- /.kanban: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.kanban -------------------------------------------------------------------------------- /.pkgmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.pkgmeta -------------------------------------------------------------------------------- /.release/generate_changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.release/generate_changelog.sh -------------------------------------------------------------------------------- /.release/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.release/release.sh -------------------------------------------------------------------------------- /.snippets/!test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/!test.lua -------------------------------------------------------------------------------- /.snippets/ClickCastOnOtherFrames.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/ClickCastOnOtherFrames.lua -------------------------------------------------------------------------------- /.snippets/ClickCastingTips.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/ClickCastingTips.lua -------------------------------------------------------------------------------- /.snippets/GenericRaidDebuffs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/GenericRaidDebuffs.lua -------------------------------------------------------------------------------- /.snippets/IndicatorIcons_RemoveBorder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/IndicatorIcons_RemoveBorder.lua -------------------------------------------------------------------------------- /.snippets/OUTDATED/[OUTDATED] CooldownIcons_BlizzardStyle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/OUTDATED/[OUTDATED] CooldownIcons_BlizzardStyle.gif -------------------------------------------------------------------------------- /.snippets/OUTDATED/[OUTDATED] CooldownIcons_BlizzardStyle.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/OUTDATED/[OUTDATED] CooldownIcons_BlizzardStyle.lua -------------------------------------------------------------------------------- /.snippets/OUTDATED/[OUTDATED] CooldownIcons_ForceShow.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/OUTDATED/[OUTDATED] CooldownIcons_ForceShow.lua -------------------------------------------------------------------------------- /.snippets/OUTDATED/[OUTDATED] CooldownIcons_RemoveDispelTypeBorderColor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/OUTDATED/[OUTDATED] CooldownIcons_RemoveDispelTypeBorderColor.lua -------------------------------------------------------------------------------- /.snippets/OUTDATED/[OUTDATED] CustomIndicator_AuraFilters_Source.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/OUTDATED/[OUTDATED] CustomIndicator_AuraFilters_Source.lua -------------------------------------------------------------------------------- /.snippets/OUTDATED/[OUTDATED] CustomIndicator_AuraFilters_TargetRole.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/OUTDATED/[OUTDATED] CustomIndicator_AuraFilters_TargetRole.lua -------------------------------------------------------------------------------- /.snippets/OUTDATED/[OUTDATED] DispelHighlight_Button.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/OUTDATED/[OUTDATED] DispelHighlight_Button.lua -------------------------------------------------------------------------------- /.snippets/OUTDATED/[OUTDATED] DispelHighlight_CustomColor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/OUTDATED/[OUTDATED] DispelHighlight_CustomColor.lua -------------------------------------------------------------------------------- /.snippets/OUTDATED/[OUTDATED] DispelHighlight_Health.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/OUTDATED/[OUTDATED] DispelHighlight_Health.lua -------------------------------------------------------------------------------- /.snippets/OUTDATED/[OUTDATED] HauntedMaskIcons.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/OUTDATED/[OUTDATED] HauntedMaskIcons.lua -------------------------------------------------------------------------------- /.snippets/OUTDATED/[OUTDATED] HideButtonBorder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/OUTDATED/[OUTDATED] HideButtonBorder.lua -------------------------------------------------------------------------------- /.snippets/OUTDATED/[OUTDATED] HideRaidFrame.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/OUTDATED/[OUTDATED] HideRaidFrame.lua -------------------------------------------------------------------------------- /.snippets/OUTDATED/[OUTDATED] HideSoloPet.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/OUTDATED/[OUTDATED] HideSoloPet.lua -------------------------------------------------------------------------------- /.snippets/OUTDATED/[OUTDATED] IconFadeOut.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/OUTDATED/[OUTDATED] IconFadeOut.lua -------------------------------------------------------------------------------- /.snippets/OUTDATED/[OUTDATED] IndicatorBars_ShowDuration.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/OUTDATED/[OUTDATED] IndicatorBars_ShowDuration.lua -------------------------------------------------------------------------------- /.snippets/OUTDATED/[OUTDATED] IndicatorIcons_CustomColor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/OUTDATED/[OUTDATED] IndicatorIcons_CustomColor.lua -------------------------------------------------------------------------------- /.snippets/OUTDATED/[OUTDATED] RaidGroupNumber_Name.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/OUTDATED/[OUTDATED] RaidGroupNumber_Name.lua -------------------------------------------------------------------------------- /.snippets/OUTDATED/[OUTDATED] RemoveBorder_Bar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/OUTDATED/[OUTDATED] RemoveBorder_Bar.lua -------------------------------------------------------------------------------- /.snippets/OpenMenu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/OpenMenu.lua -------------------------------------------------------------------------------- /.snippets/PartyAssignmentIcon.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/PartyAssignmentIcon.lua -------------------------------------------------------------------------------- /.snippets/PartyAssignmentIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/PartyAssignmentIcon.png -------------------------------------------------------------------------------- /.snippets/PvPStatusIcon.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/PvPStatusIcon.lua -------------------------------------------------------------------------------- /.snippets/RaidGroupNumber_Group.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/RaidGroupNumber_Group.lua -------------------------------------------------------------------------------- /.snippets/RaiseFrameLevelOfOmniCD.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/RaiseFrameLevelOfOmniCD.lua -------------------------------------------------------------------------------- /.snippets/RepointOvershieldTexture.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/RepointOvershieldTexture.lua -------------------------------------------------------------------------------- /.snippets/RepointPartyAndArenaPets.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/RepointPartyAndArenaPets.lua -------------------------------------------------------------------------------- /.snippets/ShieldAndAbsorb_CustomTexture.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/ShieldAndAbsorb_CustomTexture.lua -------------------------------------------------------------------------------- /.snippets/ShowServerName.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/ShowServerName.lua -------------------------------------------------------------------------------- /.snippets/SortPartyBySpec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/SortPartyBySpec.lua -------------------------------------------------------------------------------- /.snippets/SortRaidByName.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/SortRaidByName.lua -------------------------------------------------------------------------------- /.snippets/SwingTimer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/SwingTimer.lua -------------------------------------------------------------------------------- /.snippets/ToL_Glow.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/ToL_Glow.lua -------------------------------------------------------------------------------- /.snippets/ToL_Icon.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/.snippets/ToL_Icon.lua -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cell.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Cell.toc -------------------------------------------------------------------------------- /Cell_Cata.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Cell_Cata.toc -------------------------------------------------------------------------------- /Cell_Mists.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Cell_Mists.toc -------------------------------------------------------------------------------- /Cell_Vanilla.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Cell_Vanilla.toc -------------------------------------------------------------------------------- /Cell_Wrath.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Cell_Wrath.toc -------------------------------------------------------------------------------- /Comm/Comm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Comm/Comm.lua -------------------------------------------------------------------------------- /Comm/LoadComm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Comm/LoadComm.xml -------------------------------------------------------------------------------- /Comm/Nicknames.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Comm/Nicknames.lua -------------------------------------------------------------------------------- /Core.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Core.lua -------------------------------------------------------------------------------- /Core_Cata.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Core_Cata.lua -------------------------------------------------------------------------------- /Core_Mists.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Core_Mists.lua -------------------------------------------------------------------------------- /Core_Vanilla.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Core_Vanilla.lua -------------------------------------------------------------------------------- /Core_Wrath.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Core_Wrath.lua -------------------------------------------------------------------------------- /Defaults/Appearance_Defaults.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Defaults/Appearance_Defaults.lua -------------------------------------------------------------------------------- /Defaults/ClickCasting_DefaultSpells.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Defaults/ClickCasting_DefaultSpells.lua -------------------------------------------------------------------------------- /Defaults/ClickCasting_DefaultSpells_Cata.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Defaults/ClickCasting_DefaultSpells_Cata.lua -------------------------------------------------------------------------------- /Defaults/ClickCasting_DefaultSpells_Mists.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Defaults/ClickCasting_DefaultSpells_Mists.lua -------------------------------------------------------------------------------- /Defaults/ClickCasting_DefaultSpells_Vanilla.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Defaults/ClickCasting_DefaultSpells_Vanilla.lua -------------------------------------------------------------------------------- /Defaults/ClickCasting_DefaultSpells_Wrath.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Defaults/ClickCasting_DefaultSpells_Wrath.lua -------------------------------------------------------------------------------- /Defaults/Indicator_Bleeds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Defaults/Indicator_Bleeds.lua -------------------------------------------------------------------------------- /Defaults/Indicator_DefaultSpells.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Defaults/Indicator_DefaultSpells.lua -------------------------------------------------------------------------------- /Defaults/Indicator_DefaultSpells_Cata.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Defaults/Indicator_DefaultSpells_Cata.lua -------------------------------------------------------------------------------- /Defaults/Indicator_DefaultSpells_Mists.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Defaults/Indicator_DefaultSpells_Mists.lua -------------------------------------------------------------------------------- /Defaults/Indicator_DefaultSpells_Vanilla.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Defaults/Indicator_DefaultSpells_Vanilla.lua -------------------------------------------------------------------------------- /Defaults/Indicator_DefaultSpells_Wrath.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Defaults/Indicator_DefaultSpells_Wrath.lua -------------------------------------------------------------------------------- /Defaults/Indicator_Defaults.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Defaults/Indicator_Defaults.lua -------------------------------------------------------------------------------- /Defaults/Layout_Defaults.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Defaults/Layout_Defaults.lua -------------------------------------------------------------------------------- /Defaults/Layout_Defaults_Cata_Wrath.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Defaults/Layout_Defaults_Cata_Wrath.lua -------------------------------------------------------------------------------- /Defaults/Layout_Defaults_Mists.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Defaults/Layout_Defaults_Mists.lua -------------------------------------------------------------------------------- /Defaults/Layout_Defaults_Vanilla.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Defaults/Layout_Defaults_Vanilla.lua -------------------------------------------------------------------------------- /Defaults/LoadDefaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Defaults/LoadDefaults.xml -------------------------------------------------------------------------------- /Defaults/LoadDefaults_Cata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Defaults/LoadDefaults_Cata.xml -------------------------------------------------------------------------------- /Defaults/LoadDefaults_Mists.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Defaults/LoadDefaults_Mists.xml -------------------------------------------------------------------------------- /Defaults/LoadDefaults_Vanilla.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Defaults/LoadDefaults_Vanilla.xml -------------------------------------------------------------------------------- /Defaults/LoadDefaults_Wrath.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Defaults/LoadDefaults_Wrath.xml -------------------------------------------------------------------------------- /HideBlizzard.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/HideBlizzard.lua -------------------------------------------------------------------------------- /Indicators/Actions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Indicators/Actions.lua -------------------------------------------------------------------------------- /Indicators/AoEHealing.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Indicators/AoEHealing.lua -------------------------------------------------------------------------------- /Indicators/Base.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Indicators/Base.lua -------------------------------------------------------------------------------- /Indicators/Built-in.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Indicators/Built-in.lua -------------------------------------------------------------------------------- /Indicators/Custom.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Indicators/Custom.lua -------------------------------------------------------------------------------- /Indicators/Custom_Classic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Indicators/Custom_Classic.lua -------------------------------------------------------------------------------- /Indicators/StatusIcon.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Indicators/StatusIcon.lua -------------------------------------------------------------------------------- /Indicators/Supporter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Indicators/Supporter.lua -------------------------------------------------------------------------------- /Indicators/TargetCounter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Indicators/TargetCounter.lua -------------------------------------------------------------------------------- /Indicators/TargetedSpells.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Indicators/TargetedSpells.lua -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Libs/CallbackHandler.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Libs/CallbackHandler.lua -------------------------------------------------------------------------------- /Libs/FAIAP.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Libs/FAIAP.lua -------------------------------------------------------------------------------- /Libs/LibBadWords.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Libs/LibBadWords.lua -------------------------------------------------------------------------------- /Libs/LibGroupInfo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Libs/LibGroupInfo.lua -------------------------------------------------------------------------------- /Libs/LibSpecData.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Libs/LibSpecData.lua -------------------------------------------------------------------------------- /Libs/LibTranslit-1.0/LibTranslit-1.0.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Libs/LibTranslit-1.0/LibTranslit-1.0.lua -------------------------------------------------------------------------------- /Libs/LibTranslit-1.0/LibTranslit-1.0.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Libs/LibTranslit-1.0/LibTranslit-1.0.toc -------------------------------------------------------------------------------- /Libs/LibTranslit-1.0/LibTranslit-1.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Libs/LibTranslit-1.0/LibTranslit-1.0.xml -------------------------------------------------------------------------------- /Libs/LoadLibs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Libs/LoadLibs.xml -------------------------------------------------------------------------------- /Libs/LoadLibs_Classic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Libs/LoadLibs_Classic.xml -------------------------------------------------------------------------------- /Libs/PixelPerfect.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Libs/PixelPerfect.lua -------------------------------------------------------------------------------- /Libs/utf8.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Libs/utf8.lua -------------------------------------------------------------------------------- /Locales/LoadLocales.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Locales/LoadLocales.xml -------------------------------------------------------------------------------- /Locales/deDE.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Locales/deDE.lua -------------------------------------------------------------------------------- /Locales/enUS.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Locales/enUS.lua -------------------------------------------------------------------------------- /Locales/esES.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Locales/esES.lua -------------------------------------------------------------------------------- /Locales/esMX.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Locales/esMX.lua -------------------------------------------------------------------------------- /Locales/frFR.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Locales/frFR.lua -------------------------------------------------------------------------------- /Locales/itIT.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Locales/itIT.lua -------------------------------------------------------------------------------- /Locales/koKR.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Locales/koKR.lua -------------------------------------------------------------------------------- /Locales/ptBR.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Locales/ptBR.lua -------------------------------------------------------------------------------- /Locales/ruRU.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Locales/ruRU.lua -------------------------------------------------------------------------------- /Locales/zhCN.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Locales/zhCN.lua -------------------------------------------------------------------------------- /Locales/zhTW.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Locales/zhTW.lua -------------------------------------------------------------------------------- /Media/Debuffs/Bleed.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Debuffs/Bleed.tga -------------------------------------------------------------------------------- /Media/Debuffs/Curse.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Debuffs/Curse.tga -------------------------------------------------------------------------------- /Media/Debuffs/Disease.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Debuffs/Disease.tga -------------------------------------------------------------------------------- /Media/Debuffs/Magic.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Debuffs/Magic.tga -------------------------------------------------------------------------------- /Media/Debuffs/Poison.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Debuffs/Poison.tga -------------------------------------------------------------------------------- /Media/Debuffs/Rhombus.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Debuffs/Rhombus.tga -------------------------------------------------------------------------------- /Media/FlipBooks/dispel_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/FlipBooks/dispel_A.png -------------------------------------------------------------------------------- /Media/FlipBooks/dispel_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/FlipBooks/dispel_B.png -------------------------------------------------------------------------------- /Media/FlipBooks/dispel_C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/FlipBooks/dispel_C.png -------------------------------------------------------------------------------- /Media/FlipBooks/goat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/FlipBooks/goat.png -------------------------------------------------------------------------------- /Media/FlipBooks/mvp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/FlipBooks/mvp.png -------------------------------------------------------------------------------- /Media/Fonts/Accidental_Presidency.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Fonts/Accidental_Presidency.ttf -------------------------------------------------------------------------------- /Media/Fonts/font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Fonts/font.ttf -------------------------------------------------------------------------------- /Media/Fonts/visitor.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Fonts/visitor.ttf -------------------------------------------------------------------------------- /Media/Icons/1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/1.tga -------------------------------------------------------------------------------- /Media/Icons/2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/2.tga -------------------------------------------------------------------------------- /Media/Icons/add.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/add.tga -------------------------------------------------------------------------------- /Media/Icons/alphabetical_sorting.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/alphabetical_sorting.tga -------------------------------------------------------------------------------- /Media/Icons/arrow.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/arrow.tga -------------------------------------------------------------------------------- /Media/Icons/backup.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/backup.tga -------------------------------------------------------------------------------- /Media/Icons/close.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/close.tga -------------------------------------------------------------------------------- /Media/Icons/combat.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/combat.tga -------------------------------------------------------------------------------- /Media/Icons/combat_glow.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/combat_glow.tga -------------------------------------------------------------------------------- /Media/Icons/copy.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/copy.tga -------------------------------------------------------------------------------- /Media/Icons/create.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/create.tga -------------------------------------------------------------------------------- /Media/Icons/delete.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/delete.tga -------------------------------------------------------------------------------- /Media/Icons/delete2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/delete2.tga -------------------------------------------------------------------------------- /Media/Icons/down.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/down.tga -------------------------------------------------------------------------------- /Media/Icons/dropdown-normal.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/dropdown-normal.tga -------------------------------------------------------------------------------- /Media/Icons/dropdown-pushed.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/dropdown-pushed.tga -------------------------------------------------------------------------------- /Media/Icons/export.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/export.tga -------------------------------------------------------------------------------- /Media/Icons/export2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/export2.tga -------------------------------------------------------------------------------- /Media/Icons/icon_marker.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/icon_marker.tga -------------------------------------------------------------------------------- /Media/Icons/import.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/import.tga -------------------------------------------------------------------------------- /Media/Icons/import2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/import2.tga -------------------------------------------------------------------------------- /Media/Icons/info.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/info.tga -------------------------------------------------------------------------------- /Media/Icons/info2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/info2.tga -------------------------------------------------------------------------------- /Media/Icons/instant.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/instant.tga -------------------------------------------------------------------------------- /Media/Icons/left-click.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/left-click.tga -------------------------------------------------------------------------------- /Media/Icons/left.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/left.tga -------------------------------------------------------------------------------- /Media/Icons/new.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/new.tga -------------------------------------------------------------------------------- /Media/Icons/premade.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/premade.tga -------------------------------------------------------------------------------- /Media/Icons/pull.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/pull.tga -------------------------------------------------------------------------------- /Media/Icons/ready.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/ready.tga -------------------------------------------------------------------------------- /Media/Icons/readycheck-notready.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/readycheck-notready.tga -------------------------------------------------------------------------------- /Media/Icons/readycheck-ready.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/readycheck-ready.tga -------------------------------------------------------------------------------- /Media/Icons/readycheck-waiting.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/readycheck-waiting.tga -------------------------------------------------------------------------------- /Media/Icons/rename.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/rename.tga -------------------------------------------------------------------------------- /Media/Icons/reset.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/reset.tga -------------------------------------------------------------------------------- /Media/Icons/resize.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/resize.tga -------------------------------------------------------------------------------- /Media/Icons/right-click.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/right-click.tga -------------------------------------------------------------------------------- /Media/Icons/right.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/right.tga -------------------------------------------------------------------------------- /Media/Icons/share.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/share.tga -------------------------------------------------------------------------------- /Media/Icons/sparkling_heart.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/sparkling_heart.tga -------------------------------------------------------------------------------- /Media/Icons/target.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/target.tga -------------------------------------------------------------------------------- /Media/Icons/thumb.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/thumb.tga -------------------------------------------------------------------------------- /Media/Icons/trash.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/trash.tga -------------------------------------------------------------------------------- /Media/Icons/up.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/up.tga -------------------------------------------------------------------------------- /Media/Icons/upgrade.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Icons/upgrade.tga -------------------------------------------------------------------------------- /Media/Indicators/indicator-bar.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Indicators/indicator-bar.tga -------------------------------------------------------------------------------- /Media/Indicators/indicator-bars.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Indicators/indicator-bars.tga -------------------------------------------------------------------------------- /Media/Indicators/indicator-block.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Indicators/indicator-block.tga -------------------------------------------------------------------------------- /Media/Indicators/indicator-blocks.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Indicators/indicator-blocks.tga -------------------------------------------------------------------------------- /Media/Indicators/indicator-border.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Indicators/indicator-border.tga -------------------------------------------------------------------------------- /Media/Indicators/indicator-color.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Indicators/indicator-color.tga -------------------------------------------------------------------------------- /Media/Indicators/indicator-glow.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Indicators/indicator-glow.tga -------------------------------------------------------------------------------- /Media/Indicators/indicator-icon.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Indicators/indicator-icon.tga -------------------------------------------------------------------------------- /Media/Indicators/indicator-icons.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Indicators/indicator-icons.tga -------------------------------------------------------------------------------- /Media/Indicators/indicator-overlay.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Indicators/indicator-overlay.tga -------------------------------------------------------------------------------- /Media/Indicators/indicator-rect.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Indicators/indicator-rect.tga -------------------------------------------------------------------------------- /Media/Indicators/indicator-text.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Indicators/indicator-text.tga -------------------------------------------------------------------------------- /Media/Indicators/indicator-texture.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Indicators/indicator-texture.tga -------------------------------------------------------------------------------- /Media/Links/afdian.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Links/afdian.tga -------------------------------------------------------------------------------- /Media/Links/curseforge.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Links/curseforge.tga -------------------------------------------------------------------------------- /Media/Links/discord.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Links/discord.tga -------------------------------------------------------------------------------- /Media/Links/github.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Links/github.tga -------------------------------------------------------------------------------- /Media/Links/ko-fi.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Links/ko-fi.tga -------------------------------------------------------------------------------- /Media/Links/kook.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Links/kook.tga -------------------------------------------------------------------------------- /Media/Links/nga.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Links/nga.tga -------------------------------------------------------------------------------- /Media/Links/wago.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Links/wago.tga -------------------------------------------------------------------------------- /Media/Roles/Blizzard2_ROLES.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Roles/Blizzard2_ROLES.tga -------------------------------------------------------------------------------- /Media/Roles/Blizzard3_DAMAGER.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Roles/Blizzard3_DAMAGER.tga -------------------------------------------------------------------------------- /Media/Roles/Blizzard3_HEALER.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Roles/Blizzard3_HEALER.tga -------------------------------------------------------------------------------- /Media/Roles/Blizzard3_TANK.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Roles/Blizzard3_TANK.tga -------------------------------------------------------------------------------- /Media/Roles/Blizzard4_DAMAGER.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Roles/Blizzard4_DAMAGER.tga -------------------------------------------------------------------------------- /Media/Roles/Blizzard4_HEALER.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Roles/Blizzard4_HEALER.tga -------------------------------------------------------------------------------- /Media/Roles/Blizzard4_TANK.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Roles/Blizzard4_TANK.tga -------------------------------------------------------------------------------- /Media/Roles/Blizzard_ROLES.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Roles/Blizzard_ROLES.tga -------------------------------------------------------------------------------- /Media/Roles/Default2_ROLES.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Roles/Default2_ROLES.tga -------------------------------------------------------------------------------- /Media/Roles/Default_DAMAGER.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Roles/Default_DAMAGER.tga -------------------------------------------------------------------------------- /Media/Roles/Default_HEALER.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Roles/Default_HEALER.tga -------------------------------------------------------------------------------- /Media/Roles/Default_TANK.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Roles/Default_TANK.tga -------------------------------------------------------------------------------- /Media/Roles/FFXIV_DAMAGER.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Roles/FFXIV_DAMAGER.tga -------------------------------------------------------------------------------- /Media/Roles/FFXIV_HEALER.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Roles/FFXIV_HEALER.tga -------------------------------------------------------------------------------- /Media/Roles/FFXIV_TANK.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Roles/FFXIV_TANK.tga -------------------------------------------------------------------------------- /Media/Roles/MattUI_ROLES.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Roles/MattUI_ROLES.tga -------------------------------------------------------------------------------- /Media/Roles/MiirGui_DAMAGER.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Roles/MiirGui_DAMAGER.tga -------------------------------------------------------------------------------- /Media/Roles/MiirGui_HEALER.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Roles/MiirGui_HEALER.tga -------------------------------------------------------------------------------- /Media/Roles/MiirGui_TANK.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Roles/MiirGui_TANK.tga -------------------------------------------------------------------------------- /Media/Roles/Preview_Blizzard.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Roles/Preview_Blizzard.tga -------------------------------------------------------------------------------- /Media/Roles/Preview_Blizzard2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Roles/Preview_Blizzard2.tga -------------------------------------------------------------------------------- /Media/Roles/Preview_Blizzard3.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Roles/Preview_Blizzard3.tga -------------------------------------------------------------------------------- /Media/Roles/Preview_Blizzard4.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Roles/Preview_Blizzard4.tga -------------------------------------------------------------------------------- /Media/Roles/Preview_Default.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Roles/Preview_Default.tga -------------------------------------------------------------------------------- /Media/Roles/Preview_Default2.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Roles/Preview_Default2.tga -------------------------------------------------------------------------------- /Media/Roles/Preview_FFXIV.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Roles/Preview_FFXIV.tga -------------------------------------------------------------------------------- /Media/Roles/Preview_MattUI.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Roles/Preview_MattUI.tga -------------------------------------------------------------------------------- /Media/Roles/Preview_MiirGui.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Roles/Preview_MiirGui.tga -------------------------------------------------------------------------------- /Media/Roles/VEHICLE.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Roles/VEHICLE.tga -------------------------------------------------------------------------------- /Media/Roles/default.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Roles/default.zip -------------------------------------------------------------------------------- /Media/Shapes/circle.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Shapes/circle.tga -------------------------------------------------------------------------------- /Media/Shapes/circle_blurred.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Shapes/circle_blurred.tga -------------------------------------------------------------------------------- /Media/Shapes/circle_filled.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Shapes/circle_filled.tga -------------------------------------------------------------------------------- /Media/Shapes/circle_filled_256.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Shapes/circle_filled_256.tga -------------------------------------------------------------------------------- /Media/Shapes/circle_thin.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Shapes/circle_thin.tga -------------------------------------------------------------------------------- /Media/Shapes/heart.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Shapes/heart.tga -------------------------------------------------------------------------------- /Media/Shapes/heart_filled.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Shapes/heart_filled.tga -------------------------------------------------------------------------------- /Media/Shapes/heart_filled_256.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Shapes/heart_filled_256.tga -------------------------------------------------------------------------------- /Media/Shapes/hexagon_filled.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Shapes/hexagon_filled.tga -------------------------------------------------------------------------------- /Media/Shapes/indicator-text.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Shapes/indicator-text.tga -------------------------------------------------------------------------------- /Media/Shapes/octagon_filled.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Shapes/octagon_filled.tga -------------------------------------------------------------------------------- /Media/Shapes/rhombus.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Shapes/rhombus.tga -------------------------------------------------------------------------------- /Media/Shapes/rhombus_filled.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Shapes/rhombus_filled.tga -------------------------------------------------------------------------------- /Media/Shapes/semicircle.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Shapes/semicircle.tga -------------------------------------------------------------------------------- /Media/Shapes/square.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Shapes/square.tga -------------------------------------------------------------------------------- /Media/Shapes/square_filled.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Shapes/square_filled.tga -------------------------------------------------------------------------------- /Media/Shapes/star.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Shapes/star.tga -------------------------------------------------------------------------------- /Media/Shapes/star_filled.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Shapes/star_filled.tga -------------------------------------------------------------------------------- /Media/Shapes/starburst.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Shapes/starburst.tga -------------------------------------------------------------------------------- /Media/Shapes/starburst_filled.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Shapes/starburst_filled.tga -------------------------------------------------------------------------------- /Media/Shapes/triangle.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Shapes/triangle.tga -------------------------------------------------------------------------------- /Media/Shapes/triangle_filled.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/Shapes/triangle_filled.tga -------------------------------------------------------------------------------- /Media/empty.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/empty.tga -------------------------------------------------------------------------------- /Media/icon.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/icon.tga -------------------------------------------------------------------------------- /Media/overabsorb.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/overabsorb.tga -------------------------------------------------------------------------------- /Media/overshield.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/overshield.tga -------------------------------------------------------------------------------- /Media/overshield_reversed.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/overshield_reversed.tga -------------------------------------------------------------------------------- /Media/shield.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/shield.tga -------------------------------------------------------------------------------- /Media/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/star.png -------------------------------------------------------------------------------- /Media/statusbar.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/statusbar.tga -------------------------------------------------------------------------------- /Media/white.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Media/white.tga -------------------------------------------------------------------------------- /Modules/About/About.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Modules/About/About.lua -------------------------------------------------------------------------------- /Modules/About/Backup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Modules/About/Backup.lua -------------------------------------------------------------------------------- /Modules/About/Changelogs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Modules/About/Changelogs.lua -------------------------------------------------------------------------------- /Modules/About/CodeSnippets.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Modules/About/CodeSnippets.lua -------------------------------------------------------------------------------- /Modules/About/ImportExport.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Modules/About/ImportExport.lua -------------------------------------------------------------------------------- /Modules/Appearance/Appearance.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Modules/Appearance/Appearance.lua -------------------------------------------------------------------------------- /Modules/ClickCastings/ClickCastings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Modules/ClickCastings/ClickCastings.lua -------------------------------------------------------------------------------- /Modules/ClickCastings/ImportExport.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Modules/ClickCastings/ImportExport.lua -------------------------------------------------------------------------------- /Modules/General/General.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Modules/General/General.lua -------------------------------------------------------------------------------- /Modules/General/Nicknames_Blacklist.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Modules/General/Nicknames_Blacklist.lua -------------------------------------------------------------------------------- /Modules/General/Nicknames_Custom.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Modules/General/Nicknames_Custom.lua -------------------------------------------------------------------------------- /Modules/Indicators/Copy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Modules/Indicators/Copy.lua -------------------------------------------------------------------------------- /Modules/Indicators/Export.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Modules/Indicators/Export.lua -------------------------------------------------------------------------------- /Modules/Indicators/Import.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Modules/Indicators/Import.lua -------------------------------------------------------------------------------- /Modules/Indicators/Indicators.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Modules/Indicators/Indicators.lua -------------------------------------------------------------------------------- /Modules/Indicators/TextureSelector.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Modules/Indicators/TextureSelector.lua -------------------------------------------------------------------------------- /Modules/Layouts/ImportExport.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Modules/Layouts/ImportExport.lua -------------------------------------------------------------------------------- /Modules/Layouts/Layouts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Modules/Layouts/Layouts.lua -------------------------------------------------------------------------------- /Modules/Layouts/PowerFilters.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Modules/Layouts/PowerFilters.lua -------------------------------------------------------------------------------- /Modules/LoadModules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Modules/LoadModules.xml -------------------------------------------------------------------------------- /Modules/LoadModules_Classic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Modules/LoadModules_Classic.xml -------------------------------------------------------------------------------- /Modules/OptionsFrame.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Modules/OptionsFrame.lua -------------------------------------------------------------------------------- /Modules/RaidDebuffs/ImportExport.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Modules/RaidDebuffs/ImportExport.lua -------------------------------------------------------------------------------- /Modules/RaidDebuffs/RaidDebuffs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Modules/RaidDebuffs/RaidDebuffs.lua -------------------------------------------------------------------------------- /Modules/RaidDebuffs/RaidDebuffs_Classic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Modules/RaidDebuffs/RaidDebuffs_Classic.lua -------------------------------------------------------------------------------- /Modules/Utilities/Utilities.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Modules/Utilities/Utilities.lua -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/README.md -------------------------------------------------------------------------------- /README_zhCN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/README_zhCN.md -------------------------------------------------------------------------------- /RaidDebuffs/ExpansionData/ExpansionData.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidDebuffs/ExpansionData/ExpansionData.lua -------------------------------------------------------------------------------- /RaidDebuffs/ExpansionData/ExpansionDataOverrides.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidDebuffs/ExpansionData/ExpansionDataOverrides.lua -------------------------------------------------------------------------------- /RaidDebuffs/ExpansionData/ExpansionData_deDE.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidDebuffs/ExpansionData/ExpansionData_deDE.lua -------------------------------------------------------------------------------- /RaidDebuffs/ExpansionData/ExpansionData_frFR.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidDebuffs/ExpansionData/ExpansionData_frFR.lua -------------------------------------------------------------------------------- /RaidDebuffs/ExpansionData/ExpansionData_koKR.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidDebuffs/ExpansionData/ExpansionData_koKR.lua -------------------------------------------------------------------------------- /RaidDebuffs/ExpansionData/ExpansionData_ruRU.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidDebuffs/ExpansionData/ExpansionData_ruRU.lua -------------------------------------------------------------------------------- /RaidDebuffs/ExpansionData/ExpansionData_zhCN.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidDebuffs/ExpansionData/ExpansionData_zhCN.lua -------------------------------------------------------------------------------- /RaidDebuffs/ExpansionData/ExpansionData_zhTW.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidDebuffs/ExpansionData/ExpansionData_zhTW.lua -------------------------------------------------------------------------------- /RaidDebuffs/ExpansionData/LoadExpansionData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidDebuffs/ExpansionData/LoadExpansionData.xml -------------------------------------------------------------------------------- /RaidDebuffs/LoadRaidDebuffs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidDebuffs/LoadRaidDebuffs.xml -------------------------------------------------------------------------------- /RaidDebuffs/LoadRaidDebuffs_Cata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidDebuffs/LoadRaidDebuffs_Cata.xml -------------------------------------------------------------------------------- /RaidDebuffs/LoadRaidDebuffs_Vanilla.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidDebuffs/LoadRaidDebuffs_Vanilla.xml -------------------------------------------------------------------------------- /RaidDebuffs/LoadRaidDebuffs_Wrath.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidDebuffs/LoadRaidDebuffs_Wrath.xml -------------------------------------------------------------------------------- /RaidDebuffs/RaidDebuffs_BfA.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidDebuffs/RaidDebuffs_BfA.lua -------------------------------------------------------------------------------- /RaidDebuffs/RaidDebuffs_Cata.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidDebuffs/RaidDebuffs_Cata.lua -------------------------------------------------------------------------------- /RaidDebuffs/RaidDebuffs_Classic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidDebuffs/RaidDebuffs_Classic.lua -------------------------------------------------------------------------------- /RaidDebuffs/RaidDebuffs_DF.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidDebuffs/RaidDebuffs_DF.lua -------------------------------------------------------------------------------- /RaidDebuffs/RaidDebuffs_Legion.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidDebuffs/RaidDebuffs_Legion.lua -------------------------------------------------------------------------------- /RaidDebuffs/RaidDebuffs_MoP.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidDebuffs/RaidDebuffs_MoP.lua -------------------------------------------------------------------------------- /RaidDebuffs/RaidDebuffs_SL.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidDebuffs/RaidDebuffs_SL.lua -------------------------------------------------------------------------------- /RaidDebuffs/RaidDebuffs_TBC.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidDebuffs/RaidDebuffs_TBC.lua -------------------------------------------------------------------------------- /RaidDebuffs/RaidDebuffs_TWW.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidDebuffs/RaidDebuffs_TWW.lua -------------------------------------------------------------------------------- /RaidDebuffs/RaidDebuffs_WoD.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidDebuffs/RaidDebuffs_WoD.lua -------------------------------------------------------------------------------- /RaidDebuffs/RaidDebuffs_WotLK.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidDebuffs/RaidDebuffs_WotLK.lua -------------------------------------------------------------------------------- /RaidFrames/Groups/NPCFrame.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidFrames/Groups/NPCFrame.lua -------------------------------------------------------------------------------- /RaidFrames/Groups/PartyFrame.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidFrames/Groups/PartyFrame.lua -------------------------------------------------------------------------------- /RaidFrames/Groups/PetFrame.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidFrames/Groups/PetFrame.lua -------------------------------------------------------------------------------- /RaidFrames/Groups/RaidFrame.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidFrames/Groups/RaidFrame.lua -------------------------------------------------------------------------------- /RaidFrames/Groups/SoloFrame.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidFrames/Groups/SoloFrame.lua -------------------------------------------------------------------------------- /RaidFrames/Groups/SpotlightFrame.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidFrames/Groups/SpotlightFrame.lua -------------------------------------------------------------------------------- /RaidFrames/MainFrame.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidFrames/MainFrame.lua -------------------------------------------------------------------------------- /RaidFrames/UnitButton.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidFrames/UnitButton.lua -------------------------------------------------------------------------------- /RaidFrames/UnitButton.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidFrames/UnitButton.xml -------------------------------------------------------------------------------- /RaidFrames/UnitButton_Cata_Wrath.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidFrames/UnitButton_Cata_Wrath.lua -------------------------------------------------------------------------------- /RaidFrames/UnitButton_Mists.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidFrames/UnitButton_Mists.lua -------------------------------------------------------------------------------- /RaidFrames/UnitButton_Vanilla.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/RaidFrames/UnitButton_Vanilla.lua -------------------------------------------------------------------------------- /Revise.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Revise.lua -------------------------------------------------------------------------------- /Supporters.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Supporters.lua -------------------------------------------------------------------------------- /Utilities/BattleRes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Utilities/BattleRes.lua -------------------------------------------------------------------------------- /Utilities/BuffTracker.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Utilities/BuffTracker.lua -------------------------------------------------------------------------------- /Utilities/BuffTracker_Classic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Utilities/BuffTracker_Classic.lua -------------------------------------------------------------------------------- /Utilities/DeathReport.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Utilities/DeathReport.lua -------------------------------------------------------------------------------- /Utilities/LoadUtilities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Utilities/LoadUtilities.xml -------------------------------------------------------------------------------- /Utilities/LoadUtilities_Classic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Utilities/LoadUtilities_Classic.xml -------------------------------------------------------------------------------- /Utilities/LoadUtilities_Mists.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Utilities/LoadUtilities_Mists.xml -------------------------------------------------------------------------------- /Utilities/Marks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Utilities/Marks.lua -------------------------------------------------------------------------------- /Utilities/QuickAssist.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Utilities/QuickAssist.lua -------------------------------------------------------------------------------- /Utilities/QuickAssist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Utilities/QuickAssist.xml -------------------------------------------------------------------------------- /Utilities/QuickAssist_Config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Utilities/QuickAssist_Config.lua -------------------------------------------------------------------------------- /Utilities/QuickAssist_ImportExport.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Utilities/QuickAssist_ImportExport.lua -------------------------------------------------------------------------------- /Utilities/QuickCast.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Utilities/QuickCast.lua -------------------------------------------------------------------------------- /Utilities/RaidRosterFrame.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Utilities/RaidRosterFrame.lua -------------------------------------------------------------------------------- /Utilities/RaidTools.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Utilities/RaidTools.lua -------------------------------------------------------------------------------- /Utilities/ReadyAndPull.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Utilities/ReadyAndPull.lua -------------------------------------------------------------------------------- /Utilities/Request_Dispel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Utilities/Request_Dispel.lua -------------------------------------------------------------------------------- /Utilities/Request_GlowOptions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Utilities/Request_GlowOptions.lua -------------------------------------------------------------------------------- /Utilities/Request_IconOptions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Utilities/Request_IconOptions.lua -------------------------------------------------------------------------------- /Utilities/Request_Show.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Utilities/Request_Show.lua -------------------------------------------------------------------------------- /Utilities/Request_Spell.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Utilities/Request_Spell.lua -------------------------------------------------------------------------------- /Utilities/Request_TextOptions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Utilities/Request_TextOptions.lua -------------------------------------------------------------------------------- /Utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Utils.lua -------------------------------------------------------------------------------- /Widgets/Animation.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Widgets/Animation.lua -------------------------------------------------------------------------------- /Widgets/ColorPicker.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Widgets/ColorPicker.lua -------------------------------------------------------------------------------- /Widgets/LoadWidgets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Widgets/LoadWidgets.xml -------------------------------------------------------------------------------- /Widgets/LoadWidgets_Classic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Widgets/LoadWidgets_Classic.xml -------------------------------------------------------------------------------- /Widgets/Tooltip.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Widgets/Tooltip.lua -------------------------------------------------------------------------------- /Widgets/TooltipTemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Widgets/TooltipTemplate.xml -------------------------------------------------------------------------------- /Widgets/TooltipTemplate_Classic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Widgets/TooltipTemplate_Classic.xml -------------------------------------------------------------------------------- /Widgets/Widgets.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Widgets/Widgets.lua -------------------------------------------------------------------------------- /Widgets/Widgets_IndicatorSettings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enderneko/Cell/HEAD/Widgets/Widgets_IndicatorSettings.lua --------------------------------------------------------------------------------