Skip to content

Commit 3b9a845

Browse files
committed
fix dispelable/stealable color and animation
1 parent 2e6044c commit 3b9a845

26 files changed

+2182
-2632
lines changed

.github/workflows/release.yml

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
1-
name: Release
2-
on:
3-
push:
4-
tags:
5-
- 'v*'
6-
jobs:
7-
release:
8-
runs-on: ubuntu-latest
9-
env:
10-
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
11-
RELEASE_FILE: "Filger.zip"
12-
steps:
13-
- name: Checkout
14-
uses: actions/checkout@v4
15-
with:
16-
submodules: recursive
17-
token: ${{ secrets.GH_PAT }}
18-
19-
- name: Build
20-
run: make zip FILENAME=${{ env.RELEASE_FILE }}
21-
22-
- name: Create Release
23-
run: |
24-
gh release create \
25-
--repo ${{ github.repository }} \
26-
--title ${{ github.ref_name }} \
27-
--generate-notes \
28-
${{ github.ref_name }}
29-
30-
- name: Upload Zip File
31-
run: |
32-
gh release upload \
33-
--clobber "${{ github.ref_name }}" \
34-
--repo ${{ github.repository }} \
35-
${{ env.RELEASE_FILE }}
1+
name: Release
2+
on:
3+
push:
4+
tags:
5+
- 'v*'
6+
jobs:
7+
release:
8+
runs-on: ubuntu-latest
9+
env:
10+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
11+
RELEASE_FILE: "Filger.zip"
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
with:
16+
submodules: recursive
17+
token: ${{ secrets.GH_PAT }}
18+
19+
- name: Build
20+
run: make zip FILENAME=${{ env.RELEASE_FILE }}
21+
22+
- name: Create Release
23+
run: |
24+
gh release create \
25+
--repo ${{ github.repository }} \
26+
--title ${{ github.ref_name }} \
27+
--generate-notes \
28+
${{ github.ref_name }}
29+
30+
- name: Upload Zip File
31+
run: |
32+
gh release upload \
33+
--clobber "${{ github.ref_name }}" \
34+
--repo ${{ github.repository }} \
35+
${{ env.RELEASE_FILE }}

.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
.vscode/
2-
.idea/
3-
*.iml
1+
.vscode/
2+
.idea/
3+
*.iml

.gitmodules

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
1-
[submodule "libs/LibStub"]
2-
path = libs/LibStub
3-
url = https://github.com/lua-wow/LibStub.git
4-
branch = master
5-
[submodule "libs/CallbackHandler-1.0"]
6-
path = libs/CallbackHandler-1.0
7-
url = https://github.com/lua-wow/CallbackHandler-1.0.git
8-
branch = master
9-
[submodule "libs/LibClassicDurations"]
10-
path = libs/LibClassicDurations
11-
url = https://github.com/rgd87/LibClassicDurations.git
1+
[submodule "libs/LibStub"]
2+
path = libs/LibStub
3+
url = https://github.com/lua-wow/LibStub.git
4+
branch = master
5+
[submodule "libs/CallbackHandler-1.0"]
6+
path = libs/CallbackHandler-1.0
7+
url = https://github.com/lua-wow/CallbackHandler-1.0.git
8+
branch = master
9+
[submodule "libs/LibClassicDurations"]
10+
path = libs/LibClassicDurations
11+
url = https://github.com/rgd87/LibClassicDurations.git
12+
branch = master
13+
[submodule "libs/LibDispel"]
14+
path = libs/LibDispel
15+
url = https://github.com/lua-wow/LibDispel.git
1216
branch = master

0 commit comments

Comments
 (0)