Subject | Hash | Author | Date (UTC) |
---|---|---|---|
fix(build): Update rockspec | dcffb9897deb97fa4039cd4513a51e397ebc4ab7 | Vladyslav Bondarenko | 2023-08-20 17:16:25 |
feat!: Update raid frame layout | ad51f7e37e8babd30ee45c5b87d931a09c1fc0f3 | Vladyslav Bondarenko | 2023-08-20 14:45:38 |
fix: Do not show range to oneself | c055a76806c5646e4027698c6a105f06199be4ae | Vladyslav Bondarenko | 2023-08-20 04:29:32 |
feat!: Add raid targeting icons | 53121d5d75fb55d745734337ab70283496e46e7c | Vladyslav Bondarenko | 2023-08-19 23:22:01 |
feat!: Add general threat situation widget | a002db1c9c810f21fe1e1c042a435875bbe5f317 | Vladyslav Bondarenko | 2023-08-19 22:20:58 |
fix!: Highlight offline players | 7c28b6efa34f6e5450d2999acfd5a54880aa6df0 | Vladyslav Bondarenko | 2023-08-19 21:06:38 |
fix!: Change aura sorting | ba249c7309ccbcb14fea727b347c3dd532af73ee | Vladyslav Bondarenko | 2023-08-19 20:40:31 |
feat: Show player in party | 198e8c86b9b93dd9c3edf7045d5bbcb9142d76d6 | Vladyslav Bondarenko | 2023-08-19 20:38:40 |
feat(doc)!: Add project description | 4b406a549e83dda3845104e8a6a233eae481a3c8 | Vladyslav Bondarenko | 2023-08-19 05:58:50 |
fix: Typo in ChorusRaidFrame | 61fb4f93c227e3b94a52df26eeffece12fe86e55 | Vladyslav Bondarenko | 2023-08-18 21:00:34 |
feat(build): Document build validation scripts | d19d03c4a20c8c02fee8b4c1c00241c58baa12eb | Vladyslav Bondarenko | 2023-08-18 20:57:35 |
feat: Update raid frame | ff5ad9619c6af14f7e1719cbaaf34fa0465c1f12 | Vladyslav Bondarenko | 2023-08-18 20:54:29 |
feat: Update add-on loading mechanism | 2d8df81c17fbfcaf8d0bb966a3373503bb32a585 | Vladyslav Bondarenko | 2023-08-18 19:59:39 |
feat: Update progress frames on demand only | 7c18488e61b5889eca4b057602fbc41883fc53f1 | Vladyslav Bondarenko | 2023-08-18 19:50:41 |
feat: Add basic font customization | 321c2e6251e2e619101f8d57b4d4b1ef10a79694 | Vladyslav Bondarenko | 2023-08-18 17:29:12 |
fix: Improve range indicator accuracy | 17ee7011ae6bdd3e28bae4694d40a68ea799d001 | Vladyslav Bondarenko | 2023-08-17 23:52:43 |
feat!: Add target range indicator | 83b3fae1f675042b7d9e89c09aedc864e8fcaa27 | Vladyslav Bondarenko | 2023-08-17 22:41:08 |
feat: Add class color code to target frame | 990cdf1d9f44c9916948697e74f86d6490d83304 | Vladyslav Bondarenko | 2023-08-17 20:59:28 |
feat: Add solo unit buttons | 4658af2b5142ff2ca86c2c4b48577879117a9ecc | Vladyslav Bondarenko | 2023-08-17 20:38:10 |
feat: Add power bar to raid unit button | b25bd8d28c30cb003bf8cfe2886e2cfd8442d32f | Vladyslav Bondarenko | 2023-08-17 18:48:29 |
File | Lines added | Lines deleted |
---|---|---|
chorus-0.1-1.rockspec | 16 | 0 |
chorus-dev-1.rockspec | 0 | 30 |
File chorus-0.1-1.rockspec added (mode: 100644) (index 0000000..4ea44ab) | |||
1 | package = "chorus" | ||
2 | version = "0.1-1" | ||
3 | |||
4 | source = { | ||
5 | url = "git+ssh://rocketgit@ssh.rocketgit.com/user/vrtc/chorus", | ||
6 | branch = "master", | ||
7 | } | ||
8 | |||
9 | description = { | ||
10 | homepage = "https://rocketgit.com/user/vrtc/chorus", | ||
11 | license = "CC0" | ||
12 | } | ||
13 | |||
14 | build = { | ||
15 | type = "none", | ||
16 | } |
File chorus-dev-1.rockspec deleted (index db22553..0000000) | |||
1 | package = "chorus" | ||
2 | version = "dev-1" | ||
3 | source = { | ||
4 | url = "git+ssh://rocketgit@ssh.rocketgit.com/user/vrtc/chorus" | ||
5 | } | ||
6 | description = { | ||
7 | homepage = "*** please enter a project homepage ***", | ||
8 | license = "CC0" | ||
9 | } | ||
10 | build = { | ||
11 | type = "builtin", | ||
12 | modules = { | ||
13 | Chorus = "src/Chorus.lua", | ||
14 | ChorusAuraButtonTemplate = "src/ChorusAuraButtonTemplate.lua", | ||
15 | ChorusAuraFrameTemplate = "src/ChorusAuraFrameTemplate.lua", | ||
16 | ChorusProgressFrameTemplate = "src/ChorusProgressFrameTemplate.lua", | ||
17 | ChorusRaidUnitButtonTemplate = "src/ChorusRaidUnitButtonTemplate.lua", | ||
18 | ChorusRangeFrameTemplate = "src/ChorusRangeFrameTemplate.lua", | ||
19 | ChorusUnitNameFrameTemplate = "src/ChorusUnitNameFrameTemplate.lua" | ||
20 | }, | ||
21 | copy_directories = { | ||
22 | "doc" | ||
23 | }, | ||
24 | install = { | ||
25 | bin = { | ||
26 | "bin/validate-lua.sh", | ||
27 | "bin/validate-xml.sh" | ||
28 | } | ||
29 | } | ||
30 | } |