-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from patrickjDE/legion-update
7.1 + Fixes
- Loading branch information
Showing
4 changed files
with
37 additions
and
21 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
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,4 +1,4 @@ | ||
## Interface: 70000 | ||
## Interface: 70100 | ||
## Title: OneClickEnchantScroll | ||
## Notes: Create enchantment scrolls with just one single click | ||
## Notes-deDE: Erstellt mit einem einzigen Klick Verzauberungsrollen | ||
|
@@ -10,7 +10,7 @@ | |
## Notes-itIT: Crea pergamene di incantamento con un solo click | ||
## Author: Sará.Festung der Stürme-EU <Sara#2672> <[email protected]> | ||
|
||
## Version: 7.0.3.0 | ||
## Version: 7.1.0.0 | ||
## LoadOnDemand: 1 | ||
## LoadWith: Blizzard_TradeSkillUI | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
REM http://ss64.com/nt/for_f.html | ||
for /f "delims=" %%d in ('dir /b *.toc') do set ADDONNAME=%%~nd | ||
for /f "tokens=2,3" %%a in (%ADDONNAME%.toc) do IF "%%a"=="Version:" set VERSION=%%b | ||
|
||
REM del %ADDONNAME%-%VERSION%.zip | ||
cd .. | ||
|
||
REM https://sevenzip.osdn.jp/chm/cmdline/ | ||
7z a -tzip %ADDONNAME%\%ADDONNAME%-%VERSION%.zip %ADDONNAME%\*.lua %ADDONNAME%\*.toc %ADDONNAME%\readme.md | ||
pause |