Skip to content

Commit 0bbb22a

Browse files
committed
Init
0 parents  commit 0bbb22a

File tree

105 files changed

+56680
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+56680
-0
lines changed

.github/workflows/action.yml

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: Addon release
2+
'on':
3+
push:
4+
branches:
5+
- master
6+
pull_request:
7+
branches:
8+
- master
9+
jobs:
10+
Build:
11+
name: Create release
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Get current date for release
15+
id: release_date
16+
run: echo "::set-output name=date::$(date +'%Y-%m-%d %H:%m')"
17+
- name: Get current date for tag
18+
id: tag_date
19+
run: echo "::set-output name=date::$(date +'%Y%m%d%H%m')"
20+
- uses: actions/checkout@v2
21+
- name: Set short sha
22+
id: vars
23+
run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"
24+
- name: Build project # This would actually build your project, using zip for an example artifact
25+
run: zip -r "${{ github.event.repository.name }}" . -x *.git* README.md -x addon-meta.yml -x .travis.yml -x .github/*
26+
- name: Create Release
27+
id: create_release
28+
uses: actions/create-release@v1
29+
env:
30+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
31+
with:
32+
tag_name: ${{ steps.vars.outputs.sha_short }}-${{ steps.tag_date.outputs.date }}
33+
release_name: ${{ github.event.repository.name }} - ${{ steps.release_date.outputs.date }}
34+
draft: false
35+
prerelease: false
36+
- name: Upload Release Asset
37+
id: upload-release-asset
38+
uses: actions/upload-release-asset@v1
39+
env:
40+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
41+
with:
42+
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
43+
asset_path: ./${{ github.event.repository.name }}.zip
44+
asset_name: "${{ github.event.repository.name }}.zip"
45+
asset_content_type: application/zip

HealBot/Docs/ReadMe.txt

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
** HealBot Continued **
2+
3+
Latest Download from WoWInterface: http://www.wowinterface.com/downloads/download6096-HealBotcontinued
4+
5+
6+
Installing and Updating
7+
=======================
8+
9+
1: Completely log off WoW
10+
2: Copy the folders into your WoW Addons folder.
11+
3: Logon to WoW on your main Healer.
12+
4: As a priority you should open the options and configure spells, cures and buffs.
13+
14+
15+
Updating Troubles
16+
=================
17+
18+
***** If you get nil errors after updating *****
19+
20+
1: Completely log off WoW
21+
2: Run the Reset_HealBot.bat file in the Healbot addon folder, this clears old saved Healbot settings from your WTF folder.
22+
3: Logon to WoW on your main Healer.
23+
4: As a priority you should open the options and configure spells, cures and buffs.
24+
25+
26+
---------------
27+
- The Folders -
28+
---------------
29+
30+
Copy the folders into you Addons directory.
31+
==========================================
32+
33+
Healbot = This is the main addon
34+
TitanHealBot = This is a plugin for the Titan bar addon, TitanHealBot is an optional plugin for people who use Titan.
35+
36+
37+
38+
Recommended Additions
39+
=====================
40+
SharedMedia = This addon is designed to be used by addons, it gives additional textures, fonts and sounds. This addon is recommended.
41+
SharedMediaAdditionalFonts = This addon can be used with SharedMedia to gives additional fonts. This addon is recommended.
42+
43+
http://wow.curse.com/downloads/wow-addons/details/sharedmedia.aspx
44+
http://wow.curse.com/downloads/wow-addons/SearchResults.aspx?q=SharedMediaAdditionalFonts
45+

HealBot/Docs/SupportTheAuthor.html

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2+
<html style="direction: ltr;">
3+
<head>
4+
<meta http-equiv="CONTENT-TYPE" content="text/html; charset=windows-1252">
5+
<title>Free ways to support the author of Healbot</title>
6+
<style type="text/css">
7+
<!--
8+
@page { size: 21cm 29.7cm; margin: 2cm }
9+
P { margin-bottom: 0.21cm }
10+
TD P { margin-bottom: 0cm }
11+
H1 { margin-bottom: 0.21cm }
12+
H1.cjk { font-family: "Andale Sans UI" }
13+
H1.ctl { font-family: "Tahoma" }
14+
-->
15+
</style>
16+
<meta content="Strife" name="author">
17+
<meta content="Support HealBot" name="description">
18+
</head>
19+
20+
<body style="direction: ltr;">
21+
</br></br>
22+
<p style="margin-bottom: 0cm; text-align: center;"><a href="http://look4me.endoftheinternet.org/healbot/staticpages/index.php/HealBot-PayPal"><big><big><font face="Arial, sans-serif"><b>Click me for the Healbot Homepage - Support HealBot</b></font></big></big></big></a></p>
23+
</br></br>
24+
25+
</body>
26+
</html>

0 commit comments

Comments
 (0)