Skip to content
This repository has been archived by the owner on Jun 17, 2020. It is now read-only.

Commit

Permalink
Adding spec and baseline files with build file
Browse files Browse the repository at this point in the history
  • Loading branch information
jbueza committed May 6, 2010
0 parents commit 7e41fc2
Show file tree
Hide file tree
Showing 7 changed files with 84 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.DS_Store
23 changes: 23 additions & 0 deletions Ninjalist.toc
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
## Interface: 30300
## Title: Ninjalist
## Notes: Allows users to
## Version: v0.1
## Author: jbueza
## SavedVariables: NinjalistDB
## OptionalDeps: Ace3, LibStub, LibSharedMedia-3.0, AceGUI-3.0-SharedMediaWidgets
## LoadManagers: AddonLoader
## X-LoadOn-Slash: /ninjalist
## X-LoadOn-InterfaceOptions: Ninjalist

#@no-lib-strip@
embeds.xml
#@end-no-lib-strip@

localization\enUS.lua


Gladius.lua
auralist.lua
speclist.lua
options.lua
frame.lua
Empty file added Ninjalist.xml
Empty file.
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
Ninjalist
================================
by Jaime Bueza

A World of Warcraft addon that is dedicated to providing players with an early warning system for ninjas (people who master loot the raid and unfairly steal the loot from you)

USAGE
---------------------------------------
<code>/ninjalist add nameOfPlayer</code>

Adds the name of the player with an associated date for tracking purposes.

<code>/ninjalist scan</code>

Scans the current raid group for any known Ninjas.

TODO
---------------------------------------
* Develop a workflow for users to upload their ninjalists to a web service
* name of player (ninja)
* date of the incident
* server the player is on
* the location (vault of archavon, ice crown citadel)

* Develop a UI using Frame.xml that allows users to add ninjas easily, as well as, search easily
3 changes: 3 additions & 0 deletions build.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#General prop
ninjalist.applicationName = Ninjalist
ninjalist.addons.dir = /Applications/World\ of\ Warcraft/Interface/AddOns/Ninjalist
16 changes: 16 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0"?>
<project name="Ninjalist" default="deploy" basedir=".">
<property file="build.properties"/>
<property name="deploy.dir" value="${ninjalist.addons.dir}" />

<!-- DEPRECATED DO NOT USE THIS SHIZZ -->
<target name="deploy" description="Copy code to World of Warcraft Interface Addons directory" >
<mkdir dir="${deploy.dir}" />
<delete failonerror="false" includeemptydirs="true">
<fileset dir="${deploy.dir}" includes="**/*" />
</delete>
<copy todir="${deploy.dir}">
<fileset dir="." excludes="build* README* **/.DS_Store"/>
</copy>
</target>
</project>
16 changes: 16 additions & 0 deletions embeds.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/">

<Script file="libs\LibStub\LibStub.lua"/>
<Include file="libs\CallbackHandler-1.0\CallbackHandler-1.0.xml"/>
<Include file="libs\AceAddon-3.0\AceAddon-3.0.xml"/>
<Include file="libs\AceDB-3.0\AceDB-3.0.xml"/>
<Include file="libs\AceDBOptions-3.0\AceDBOptions-3.0.xml"/>
<Include file="libs\AceConsole-3.0\AceConsole-3.0.xml"/>
<Include file="libs\AceGUI-3.0\AceGUI-3.0.xml"/>
<Include file="libs\AceConfig-3.0\AceConfig-3.0.xml"/>
<Include file="libs\AceLocale-3.0\AceLocale-3.0.xml"/>
<Include file="libs\AceEvent-3.0\AceEvent-3.0.xml"/>
<Include file="libs\LibSharedMedia-3.0\lib.xml"/>
<Include file="libs\AceGUI-3.0-SharedMediaWidgets\widget.xml"/>

</Ui>

0 comments on commit 7e41fc2

Please sign in to comment.