WoWInterface SVN SimpleGold

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /trunk
    from Rev 15 to Rev 14
    Reverse comparison

Rev 15 → Rev 14

SimpleGold.toc
1,7 → 1,7
## Interface: 50400
## Title: SimpleGold
## Notes: Creates draggable money window
## Version: 5.4.1
## Version: 5.4.0
## Author: Schnoggo
## Dependencies:
## SavedVariables: SimpleGoldGlobals
localization.lua
1,4 → 1,4
SASSTEXT_TITLE="Schnoggo's Simple Gold Ver. 5.4.1";
SASSTEXT_TITLE="Schnoggo's Simple Gold Ver. 5.4.0";
SGOLDTEXT = {
WELCOME="SimpleGold Loaded. Type /simplegold for more information. ",
HELP="Drag the window to move it. Shift-click the window to change the background. Commands:",
Readme.txt
1,4 → 1,4
SimpleGold v5.4.1
SimpleGold v5.4.0
 
 
Description
24,7 → 24,7
 
Features
========
* Compatibility with World of Warcraft 5.4.1
* Compatibility with World of Warcraft 5.4
* Low memory usage (~0.1MB)
 
 
45,9 → 45,6
 
Versions
========
5.4.1 - Nov 7, 2013
* 5.4.1 client dropped GetCVar("realmName") switching to GetRealmName().
 
5.4.0 - Sep 10, 2013
* Updated TOC for WoW client 5.4.
* New version numbering: first two digits are WoW client version, then release number for that version.
SimpleGold.xml
1,4 → 1,4
<!-- SimpleGold 5.4.1 -->
<!-- SimpleGold 5.4.0 -->
 
 
<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/
SimpleGold.lua
13,7 → 13,7
 
 
 
local myPlayerRealm=GetRealmName();
local myPlayerRealm=GetCVar("realmName");
local myPlayerName=UnitName("player");
local myPlayerID=myPlayerName.."**"..myPlayerRealm;
local myPlayerClassText, myPlayerClassType = UnitClass("player");