Skip to content

Commit

Permalink
v2.0.0 - Revive
Browse files Browse the repository at this point in the history
  • Loading branch information
fontivan committed Mar 6, 2024
1 parent 40155e4 commit e4c020c
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v2.0.0
- Revive addon and align with modern TOC configuration

v1.3.1
- Fixed a bug where upon joining a guild you would welcome yourself

Expand Down
5 changes: 3 additions & 2 deletions automatic-guild-interactions.toc
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
## Interface: 20504
## Interface: 100200
## Title: Automatic Guild Interactions
## Notes: Automatically perform some simple guild interactions like welcoming members back and dinging.
## Author: fontivan
## Version: 1.3.1
## Version: 2.0.0
## X-Curse-Project-ID: 602729

automatic-guild-interactions.lua
8 changes: 8 additions & 0 deletions automatic-guild-interactions_Mainline.toc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
## Interface: 100200
## Title: Automatic Guild Interactions
## Notes: Automatically perform some simple guild interactions like welcoming members back and dinging.
## Author: fontivan
## Version: 2.0.0
## X-Curse-Project-ID: 602729

automatic-guild-interactions.lua
8 changes: 8 additions & 0 deletions automatic-guild-interactions_Vanilla.toc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
## Interface: 11500
## Title: Automatic Guild Interactions
## Notes: Automatically perform some simple guild interactions like welcoming members back and dinging.
## Author: fontivan
## Version: 2.0.0
## X-Curse-Project-ID: 602729

automatic-guild-interactions.lua
8 changes: 8 additions & 0 deletions automatic-guild-interactions_Wrath.toc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
## Interface: 11500
## Title: Automatic Guild Interactions
## Notes: Automatically perform some simple guild interactions like welcoming members back and dinging.
## Author: fontivan
## Version: 2.0.0
## X-Curse-Project-ID: 602729

automatic-guild-interactions.lua
11 changes: 10 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,13 @@ fi
echo "Installing addon"
mkdir -p "${INSTALL_DIR}"
cp "${LOCAL_ADDON_DIR}/${ADDON_NAME}.lua" "${INSTALL_DIR}"
cp "${LOCAL_ADDON_DIR}/${ADDON_NAME}.toc" "${INSTALL_DIR}"

TOC_FILES=(
"_Mainline"
"_Vanilla"
"_Wrath"
)

for TOC_FILE_SUFFIX in ${TOC_FILES[@]}; do
cp "${LOCAL_ADDON_DIR}/${ADDON_NAME}${TOC_FILE_SUFFIX}.toc" "${INSTALL_DIR}"
done
2 changes: 2 additions & 0 deletions pkgmeta.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
package-as: automatic-guild-interactions

ignore:
- install.sh
- README.md
Expand Down

0 comments on commit e4c020c

Please sign in to comment.