diff --git a/API.lua b/API.lua index e92c81d..2b67f16 100644 --- a/API.lua +++ b/API.lua @@ -2,7 +2,7 @@ The MIT License (MIT) -Copyright (c) 2010-2016 Mark Rogaski +Copyright (c) 2010-2017 Mark Rogaski Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/CHANGELOG.md b/CHANGELOG.md index a41ed45..58e9b17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ This project uses [Semantic Versioning](http://semver.org/). +## [1.8.2] -- 2017-01-12 +### Added +- The version command now give WoW version information. + ## [1.8.1] -- 2016-10-25 ### Fixed - Corrected configuration whitespace grooming. @@ -479,6 +483,8 @@ flapping roster announcements for characters in peer co-guilds. ## 0.9.00 -- 2010-11-01 Initial commit. +[1.8.2]: https://github.com/AIE-Guild/GreenWall/compare/v1.8.1...v1.8.2 +[1.8.1]: https://github.com/AIE-Guild/GreenWall/compare/v1.8.0...v1.8.1 [1.8.0]: https://github.com/AIE-Guild/GreenWall/compare/v1.7.3...v1.8.0 [1.7.3]: https://github.com/AIE-Guild/GreenWall/compare/v1.7.2...v1.7.3 [1.7.2]: https://github.com/AIE-Guild/GreenWall/compare/v1.7.1...v1.7.2 diff --git a/Channel.lua b/Channel.lua index 428236e..e725599 100644 --- a/Channel.lua +++ b/Channel.lua @@ -2,7 +2,7 @@ The MIT License (MIT) -Copyright (c) 2010-2016 Mark Rogaski +Copyright (c) 2010-2017 Mark Rogaski Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Chat.lua b/Chat.lua index 71fd65e..108de36 100644 --- a/Chat.lua +++ b/Chat.lua @@ -2,7 +2,7 @@ The MIT License (MIT) -Copyright (c) 2010-2016 Mark Rogaski +Copyright (c) 2010-2017 Mark Rogaski Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Compat.lua b/Compat.lua index 6c05a5c..e1cf58f 100644 --- a/Compat.lua +++ b/Compat.lua @@ -2,7 +2,7 @@ The MIT License (MIT) -Copyright (c) 2010-2016 Mark Rogaski +Copyright (c) 2010-2017 Mark Rogaski Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Config.lua b/Config.lua index c324399..23f00fa 100644 --- a/Config.lua +++ b/Config.lua @@ -2,7 +2,7 @@ The MIT License (MIT) -Copyright (c) 2010-2016 Mark Rogaski +Copyright (c) 2010-2017 Mark Rogaski Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Constants.lua b/Constants.lua index 6a66c82..8886415 100644 --- a/Constants.lua +++ b/Constants.lua @@ -2,7 +2,7 @@ The MIT License (MIT) -Copyright (c) 2010-2016 Mark Rogaski +Copyright (c) 2010-2017 Mark Rogaski Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Globals.lua b/Globals.lua index 73085bf..63b35d6 100644 --- a/Globals.lua +++ b/Globals.lua @@ -2,7 +2,7 @@ The MIT License (MIT) -Copyright (c) 2010-2016 Mark Rogaski +Copyright (c) 2010-2017 Mark Rogaski Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/GreenWall.lua b/GreenWall.lua index 727b681..a8b4b35 100644 --- a/GreenWall.lua +++ b/GreenWall.lua @@ -2,7 +2,7 @@ The MIT License (MIT) -Copyright (c) 2010-2016 Mark Rogaski +Copyright (c) 2010-2017 Mark Rogaski Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -236,7 +236,10 @@ local function GwSlashCmd(message, editbox) elseif command == 'version' then + local version, build, _, interface = GetBuildInfo() gw.Write('GreenWall version %s.', gw.version) + gw.Write('World of Warcraft version %s, build %s, interface %s.', + version, build, interface) else diff --git a/GreenWall.toc b/GreenWall.toc index 535572c..d2d45fe 100644 --- a/GreenWall.toc +++ b/GreenWall.toc @@ -2,13 +2,13 @@ ## Title: GreenWall ## Notes: Common communication channel as a replacement for guild chat in guild confederations. ## Author: Mark Rogaski -## Version: 1.8.1 +## Version: 1.8.2 ## URL: https://github.com/AIE-Guild/GreenWall ## URL: http://wow.curse.com/downloads/wow-addons/details/greenwall.aspx ## DefaultState: enabled ## SavedVariablesPerCharacter: GreenWall,GreenWallLog ## X-Category: Guild -## X-Date: 2016-10-25 +## X-Date: 2017-01-12 Lib\Load.xml Constants.lua diff --git a/GreenWall.xml b/GreenWall.xml index a876d60..38710bd 100644 --- a/GreenWall.xml +++ b/GreenWall.xml @@ -2,7 +2,7 @@ The MIT License (MIT) -Copyright (c) 2010-2016 Mark Rogaski +Copyright (c) 2010-2017 Mark Rogaski Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/HoldDown.lua b/HoldDown.lua index 9c1e8d6..91cf322 100644 --- a/HoldDown.lua +++ b/HoldDown.lua @@ -2,7 +2,7 @@ The MIT License (MIT) -Copyright (c) 2010-2016 Mark Rogaski +Copyright (c) 2010-2017 Mark Rogaski Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/LICENSE b/LICENSE index c0a5629..8fbe9a6 100644 --- a/LICENSE +++ b/LICENSE @@ -1,7 +1,7 @@ The MIT License (MIT) -Copyright (c) 2010-2016 Mark Rogaski +Copyright (c) 2010-2017 Mark Rogaski Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Lib/Base64BCA.lua b/Lib/Base64BCA.lua index 11bee1d..13c32d8 100644 --- a/Lib/Base64BCA.lua +++ b/Lib/Base64BCA.lua @@ -2,7 +2,7 @@ The MIT License (MIT) -Copyright (c) 2010-2015 Mark Rogaski +Copyright (c) 2010-2017 Mark Rogaski Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Lib/CRC16-CCITT.lua b/Lib/CRC16-CCITT.lua index eabbc5a..cf995ed 100644 --- a/Lib/CRC16-CCITT.lua +++ b/Lib/CRC16-CCITT.lua @@ -2,7 +2,7 @@ The MIT License (MIT) -Copyright (c) 2014-2015 Mark Rogaski +Copyright (c) 2014-2017 Mark Rogaski Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Lib/SemanticVersion.lua b/Lib/SemanticVersion.lua index 0f9f513..6ca256b 100644 --- a/Lib/SemanticVersion.lua +++ b/Lib/SemanticVersion.lua @@ -2,7 +2,7 @@ The MIT License (MIT) -Copyright (c) 2015 Mark Rogaski +Copyright (c) 2015-2017 Mark Rogaski Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Utility.lua b/Utility.lua index a1b9184..8779392 100644 --- a/Utility.lua +++ b/Utility.lua @@ -2,7 +2,7 @@ The MIT License (MIT) -Copyright (c) 2010-2016 Mark Rogaski +Copyright (c) 2010-2017 Mark Rogaski Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal