-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Alar of Runetotem
committed
Nov 30, 2016
1 parent
1124294
commit 638b513
Showing
2 changed files
with
20 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,22 @@ | ||
local me,ns=... | ||
--@do-not-package@ | ||
local addon=LibStub("LibInit"):GetAddon(me) --#Addon | ||
local L=addon:GetLocale() | ||
function addon:loadHelp() | ||
self:RelNotes(1,0,0,[[ | ||
Feature: | ||
local hlp=LibStub("LibInit"):GetAddon(me) | ||
local L=hlp:GetLocale() | ||
function hlp:loadHelp() | ||
self:HF_Title(me,"RELNOTES") | ||
self:HF_Paragraph("Description") | ||
self:Wiki([[ | ||
Mail Commander allows you to define a per character list of needs which wil be displayed when you open the sendmail panel allowing you to send all requested items or just some of them. | ||
You can make this selection permament, disabling some kind of items, or just cherry pick each time | ||
You can also use the "Send all" button to have all enabled items sent with a single click | ||
]]) | ||
self:RelNotes(0,9,0,[[ | ||
Feature: The add button is now always shown on the first page | ||
Fix: no longer count equipped bags as sendable items | ||
Fix: actually run sync scan when opening panels | ||
Feature: Costly operations moved to coroutine | ||
Fix: Restored drag and drop from some tradeskill windows | ||
Fix: Workaround to skip Blizzard confirmation when sending mail to toons on the same realm | ||
]]) | ||
|
||
end | ||
--@end-do-not-package@ | ||
|