vrtc / chorus (public) (License: CC0) (since 2023-08-12) (hash sha1)
World of Warcraft add-on stub. The overall goal is to create a specialized raid frame.
List of commits:
Subject Hash Author Date (UTC)
fix: tiny unit frame border visual glitch 14090239c7535614ce4a02c7ee06d8204dd90a74 Vladyslav Bondarenko 2024-06-13 14:36:22
fix: generalize frame backdrop color picker 9960ac95ee03be3d8c93c49f773b850b057d9502 Vladyslav Bondarenko 2024-06-12 10:04:46
fix: remove some obsolete notes 2e0bd3ec7f1e445473836d4a97817dece7e8e4c3 Vladyslav Bondarenko 2024-06-12 09:11:32
fix: show aura tooltip given spell name 75860ee70c3e2fdcef8c51b56e86eaa3178c9a0d Vladyslav Bondarenko 2024-02-06 22:04:10
fix!: correct aura weight map validator 9df60b2e2da12d9f6f1470610a638aa6de3b31e7 Vladyslav Bondarenko 2024-01-28 22:27:59
doc: add `ldoc` annotations 0f7e2cbf74fe354c1c34fc9cd63b8b53237f8682 Vladyslav Bondarenko 2024-01-28 21:58:55
fix!: load the add-on correctly b857b8764be59195f65137f2bd577289d7c76cc9 Vladyslav Bondarenko 2024-01-28 04:46:25
release: prepare release 0.7.0 ba97f4d7e7eb9ff984d88d75a740e24c0e90bb05 Vladyslav Bondarenko 2024-01-27 15:10:27
doc: add recipe to produce documentation de290d89eee64d11752024b3b7dd5eeea062414e Vladyslav Bondarenko 2024-01-27 15:03:45
build: move test files to separate directory 629a79fd7ea24f487655001cee2364ea3398628b Vladyslav Bondarenko 2024-01-26 00:59:22
build: minor patch to appease static analysis 7c3af6a2309236acd2d2de3eccfe550d296aba39 Vladyslav Bondarenko 2024-01-26 00:45:50
fix: hide cast bar when unit is absent 1d439ef7752b03dad32f5bff1a40e60db1e7d2b2 Vladyslav Bondarenko 2024-01-25 14:40:53
fix!: toggle group frames correctly when in combat d206255d8aa9c6fd1fa6cbbc591192269a2ffd47 Vladyslav Bondarenko 2024-01-24 22:36:19
feat: add unit frame borders that are color coded fb8e310e827c1cbdafa6ff2bc7760ef8fc617a16 Vladyslav Bondarenko 2024-01-24 20:23:43
fix: typo in src/ChorusUnitFrameTemplate.lua 62ccfd2a62ce4ec8d9be7658663d06c9d39f743a Vladyslav Bondarenko 2024-01-24 18:57:02
fix: single frame toggles every group frame 44d20820afb80aa381c2cfb1272123ba9a8e6156 Vladyslav Bondarenko 2024-01-24 18:47:12
build: migrate to make and adoc 1e410bff214b6a32cd13343d3b7e521afa0cf93f Vladyslav Bondarenko 2024-01-23 14:42:21
doc: note the need to backport GetSpellName 8dac49bb037de94b2980a45b91152691d9c5b98b Vladyslav Bondarenko 2024-01-23 14:24:44
feat: show remaining aura charges beedf659895a3ecdd0df97e14e63d87f534d0bbc Vladyslav Bondarenko 2024-01-23 14:24:01
fix: remove aura button overlay and artwork gap d0785edceabe16095e6e56aa42d88fb25bca3eb7 Vladyslav Bondarenko 2024-01-21 22:35:02
Commit 14090239c7535614ce4a02c7ee06d8204dd90a74 - fix: tiny unit frame border visual glitch
Sometimes borders of tiny frames visually appear incorrectly. Increase
rendering precision to avoid it.
Author: Vladyslav Bondarenko
Author date (UTC): 2024-06-13 14:36
Committer name: Vladyslav Bondarenko
Committer date (UTC): 2024-06-13 14:36
Parent(s): 9960ac95ee03be3d8c93c49f773b850b057d9502
Signer:
Signing key: EFF9624877D25D02
Signing status: E
Tree: df64708ec593c16ccbecfff567b64eebfb43dddb
File Lines added Lines deleted
src/ChorusPartyFrame.xml 1 1
src/ChorusUnitBackdropTemplate.lua 1 1
src/ChorusUnitBackdropTemplate.xml 2 2
File src/ChorusPartyFrame.xml changed (mode: 100644) (index 3e24817..96ffcf9)
19 19 <Frame name="$parentTargetFrame" inherits="ChorusPartyTOTUnitFrameTemplate"> <Frame name="$parentTargetFrame" inherits="ChorusPartyTOTUnitFrameTemplate">
20 20 <Anchors> <Anchors>
21 21 <Anchor point="BOTTOMLEFT" relativeTo="$parentUnitFrame" relativePoint="TOPLEFT"> <Anchor point="BOTTOMLEFT" relativeTo="$parentUnitFrame" relativePoint="TOPLEFT">
22 <Offset x="48" y="4"/>
22 <Offset x="48" y="12"/>
23 23 </Anchor> </Anchor>
24 24 </Anchors> </Anchors>
25 25 </Frame> </Frame>
File src/ChorusUnitBackdropTemplate.lua changed (mode: 100644) (index ed397b4..2681dc4)
... ... function Chorus.unitBackdropMain(unitBackdrop)
95 95
96 96 local p = unitBackdrop:GetParent() local p = unitBackdrop:GetParent()
97 97 if p then if p then
98 local offset = 6
98 local offset = 4
99 99 unitBackdrop:SetPoint('TOPRIGHT', offset, offset) unitBackdrop:SetPoint('TOPRIGHT', offset, offset)
100 100 unitBackdrop:SetPoint('TOPLEFT', -offset, offset) unitBackdrop:SetPoint('TOPLEFT', -offset, offset)
101 101 unitBackdrop:SetPoint('BOTTOMLEFT', -offset, -offset) unitBackdrop:SetPoint('BOTTOMLEFT', -offset, -offset)
File src/ChorusUnitBackdropTemplate.xml changed (mode: 100644) (index 579bf0c..483050f)
7 7 <AbsInset left="4" right="4" top="4" bottom="4"/> <AbsInset left="4" right="4" top="4" bottom="4"/>
8 8 </BackgroundInsets> </BackgroundInsets>
9 9 <TileSize> <TileSize>
10 <AbsValue val="36"/>
10 <AbsValue val="32"/>
11 11 </TileSize> </TileSize>
12 12 <EdgeSize> <EdgeSize>
13 <AbsValue val="24"/>
13 <AbsValue val="16"/>
14 14 </EdgeSize> </EdgeSize>
15 15 </Backdrop> </Backdrop>
16 16 <Attributes> <Attributes>
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/vrtc/chorus

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/vrtc/chorus

Clone this repository using git:
git clone git://git.rocketgit.com/user/vrtc/chorus

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main