summaryrefslogtreecommitdiff
path: root/xmake/plugins
diff options
context:
space:
mode:
authorruki <[email protected]>2020-12-19 00:41:06 +0800
committerruki <[email protected]>2020-12-19 00:41:06 +0800
commit536f2bd6a092eba91315b7d1e120dff63392a11d (patch)
treee3fb32d868ad4b11333033fd529e2c8b53d9c173 /xmake/plugins
parentc47ddba3dbc6ace6eb38535a33a7b1090b402a60 (diff)
update copyright date
Diffstat (limited to 'xmake/plugins')
-rw-r--r--xmake/plugins/doxygen/main.lua2
-rw-r--r--xmake/plugins/doxygen/xmake.lua2
-rw-r--r--xmake/plugins/lua/main.lua2
-rw-r--r--xmake/plugins/lua/scripts/cat.lua2
-rw-r--r--xmake/plugins/lua/scripts/cp.lua2
-rw-r--r--xmake/plugins/lua/scripts/echo.lua2
-rw-r--r--xmake/plugins/lua/scripts/lipo.lua2
-rw-r--r--xmake/plugins/lua/scripts/mkdir.lua2
-rw-r--r--xmake/plugins/lua/scripts/mv.lua2
-rw-r--r--xmake/plugins/lua/scripts/rm.lua2
-rw-r--r--xmake/plugins/lua/scripts/rmdir.lua2
-rw-r--r--xmake/plugins/lua/scripts/time.lua2
-rw-r--r--xmake/plugins/lua/xmake.lua2
-rw-r--r--xmake/plugins/macro/macros/package.lua2
-rw-r--r--xmake/plugins/macro/main.lua2
-rw-r--r--xmake/plugins/macro/xmake.lua2
-rw-r--r--xmake/plugins/plugin/main.lua2
-rw-r--r--xmake/plugins/plugin/xmake.lua2
-rw-r--r--xmake/plugins/project/clang/compile_commands.lua2
-rw-r--r--xmake/plugins/project/clang/compile_flags.lua2
-rw-r--r--xmake/plugins/project/cmake/cmakelists.lua2
-rw-r--r--xmake/plugins/project/main.lua2
-rw-r--r--xmake/plugins/project/make/makefile.lua2
-rw-r--r--xmake/plugins/project/make/xmakefile.lua2
-rw-r--r--xmake/plugins/project/ninja/build_ninja.lua2
-rw-r--r--xmake/plugins/project/vstudio/impl/vs200x.lua2
-rw-r--r--xmake/plugins/project/vstudio/impl/vs200x_solution.lua2
-rw-r--r--xmake/plugins/project/vstudio/impl/vs200x_vcproj.lua2
-rw-r--r--xmake/plugins/project/vstudio/impl/vs201x.lua2
-rw-r--r--xmake/plugins/project/vstudio/impl/vs201x_solution.lua2
-rw-r--r--xmake/plugins/project/vstudio/impl/vs201x_vcxproj.lua2
-rw-r--r--xmake/plugins/project/vstudio/impl/vs201x_vcxproj_filters.lua2
-rw-r--r--xmake/plugins/project/vstudio/impl/vsfile.lua2
-rw-r--r--xmake/plugins/project/vstudio/impl/vsinfo.lua2
-rw-r--r--xmake/plugins/project/vstudio/vs.lua2
-rw-r--r--xmake/plugins/project/vsxmake/getinfo.lua2
-rw-r--r--xmake/plugins/project/vsxmake/render.lua2
-rw-r--r--xmake/plugins/project/vsxmake/vsxmake.lua2
-rw-r--r--xmake/plugins/project/xcode/xcodeproj.lua2
-rw-r--r--xmake/plugins/project/xmake.lua2
-rw-r--r--xmake/plugins/repo/main.lua2
-rw-r--r--xmake/plugins/repo/xmake.lua2
-rw-r--r--xmake/plugins/service/main.lua2
-rw-r--r--xmake/plugins/service/xmake.lua2
-rw-r--r--xmake/plugins/show/info/basic.lua2
-rw-r--r--xmake/plugins/show/info/target.lua2
-rw-r--r--xmake/plugins/show/list.lua2
-rw-r--r--xmake/plugins/show/lists/buildmodes.lua2
-rw-r--r--xmake/plugins/show/lists/envs.lua2
-rw-r--r--xmake/plugins/show/lists/packages.lua2
-rw-r--r--xmake/plugins/show/lists/platforms.lua2
-rw-r--r--xmake/plugins/show/lists/rules.lua2
-rw-r--r--xmake/plugins/show/lists/targets.lua2
-rw-r--r--xmake/plugins/show/lists/themes.lua2
-rw-r--r--xmake/plugins/show/lists/toolchains.lua2
-rw-r--r--xmake/plugins/show/main.lua2
-rw-r--r--xmake/plugins/show/showlist.lua2
-rw-r--r--xmake/plugins/show/xmake.lua2
58 files changed, 58 insertions, 58 deletions
diff --git a/xmake/plugins/doxygen/main.lua b/xmake/plugins/doxygen/main.lua
index bd1868224..b7cd54fe2 100644
--- a/xmake/plugins/doxygen/main.lua
+++ b/xmake/plugins/doxygen/main.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file main.lua
diff --git a/xmake/plugins/doxygen/xmake.lua b/xmake/plugins/doxygen/xmake.lua
index 32a98902b..428cef37a 100644
--- a/xmake/plugins/doxygen/xmake.lua
+++ b/xmake/plugins/doxygen/xmake.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file doxygen.lua
diff --git a/xmake/plugins/lua/main.lua b/xmake/plugins/lua/main.lua
index 54b35cf0a..40b16249e 100644
--- a/xmake/plugins/lua/main.lua
+++ b/xmake/plugins/lua/main.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file main.lua
diff --git a/xmake/plugins/lua/scripts/cat.lua b/xmake/plugins/lua/scripts/cat.lua
index 5a3ae4627..247f9fe29 100644
--- a/xmake/plugins/lua/scripts/cat.lua
+++ b/xmake/plugins/lua/scripts/cat.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file cat.lua
diff --git a/xmake/plugins/lua/scripts/cp.lua b/xmake/plugins/lua/scripts/cp.lua
index cb885244f..88199cfd4 100644
--- a/xmake/plugins/lua/scripts/cp.lua
+++ b/xmake/plugins/lua/scripts/cp.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file cp.lua
diff --git a/xmake/plugins/lua/scripts/echo.lua b/xmake/plugins/lua/scripts/echo.lua
index 3de9b08c5..eab222757 100644
--- a/xmake/plugins/lua/scripts/echo.lua
+++ b/xmake/plugins/lua/scripts/echo.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file echo.lua
diff --git a/xmake/plugins/lua/scripts/lipo.lua b/xmake/plugins/lua/scripts/lipo.lua
index 25e8be8ce..1f6f02ca8 100644
--- a/xmake/plugins/lua/scripts/lipo.lua
+++ b/xmake/plugins/lua/scripts/lipo.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file lipo.lua
diff --git a/xmake/plugins/lua/scripts/mkdir.lua b/xmake/plugins/lua/scripts/mkdir.lua
index d63d7ca7a..91d2f4d55 100644
--- a/xmake/plugins/lua/scripts/mkdir.lua
+++ b/xmake/plugins/lua/scripts/mkdir.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file mkdir.lua
diff --git a/xmake/plugins/lua/scripts/mv.lua b/xmake/plugins/lua/scripts/mv.lua
index 1beb71883..8d896aea7 100644
--- a/xmake/plugins/lua/scripts/mv.lua
+++ b/xmake/plugins/lua/scripts/mv.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file mv.lua
diff --git a/xmake/plugins/lua/scripts/rm.lua b/xmake/plugins/lua/scripts/rm.lua
index 4b2c8f922..32ed059ca 100644
--- a/xmake/plugins/lua/scripts/rm.lua
+++ b/xmake/plugins/lua/scripts/rm.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file rm.lua
diff --git a/xmake/plugins/lua/scripts/rmdir.lua b/xmake/plugins/lua/scripts/rmdir.lua
index daa71a9e0..c748ed687 100644
--- a/xmake/plugins/lua/scripts/rmdir.lua
+++ b/xmake/plugins/lua/scripts/rmdir.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file rmdir.lua
diff --git a/xmake/plugins/lua/scripts/time.lua b/xmake/plugins/lua/scripts/time.lua
index 77c8568e7..c5b4576ee 100644
--- a/xmake/plugins/lua/scripts/time.lua
+++ b/xmake/plugins/lua/scripts/time.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file time.lua
diff --git a/xmake/plugins/lua/xmake.lua b/xmake/plugins/lua/xmake.lua
index 0ef6f705c..792299651 100644
--- a/xmake/plugins/lua/xmake.lua
+++ b/xmake/plugins/lua/xmake.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file xmake.lua
diff --git a/xmake/plugins/macro/macros/package.lua b/xmake/plugins/macro/macros/package.lua
index 478156a58..c220cbe42 100644
--- a/xmake/plugins/macro/macros/package.lua
+++ b/xmake/plugins/macro/macros/package.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file package.lua
diff --git a/xmake/plugins/macro/main.lua b/xmake/plugins/macro/main.lua
index 35f36a33b..dbc94efe7 100644
--- a/xmake/plugins/macro/main.lua
+++ b/xmake/plugins/macro/main.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file main.lua
diff --git a/xmake/plugins/macro/xmake.lua b/xmake/plugins/macro/xmake.lua
index 5acc9a3ef..b20cceb88 100644
--- a/xmake/plugins/macro/xmake.lua
+++ b/xmake/plugins/macro/xmake.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file macro.lua
diff --git a/xmake/plugins/plugin/main.lua b/xmake/plugins/plugin/main.lua
index 5d1a6c102..d2a8f263f 100644
--- a/xmake/plugins/plugin/main.lua
+++ b/xmake/plugins/plugin/main.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file main.lua
diff --git a/xmake/plugins/plugin/xmake.lua b/xmake/plugins/plugin/xmake.lua
index 437d4fc2e..6089a4f24 100644
--- a/xmake/plugins/plugin/xmake.lua
+++ b/xmake/plugins/plugin/xmake.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file plugin.lua
diff --git a/xmake/plugins/project/clang/compile_commands.lua b/xmake/plugins/project/clang/compile_commands.lua
index b17eb2bfd..ba257bb35 100644
--- a/xmake/plugins/project/clang/compile_commands.lua
+++ b/xmake/plugins/project/clang/compile_commands.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file compile_commands.lua
diff --git a/xmake/plugins/project/clang/compile_flags.lua b/xmake/plugins/project/clang/compile_flags.lua
index ee5397bc9..9662943e3 100644
--- a/xmake/plugins/project/clang/compile_flags.lua
+++ b/xmake/plugins/project/clang/compile_flags.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author luzhlon
-- @file compile_flags.lua
diff --git a/xmake/plugins/project/cmake/cmakelists.lua b/xmake/plugins/project/cmake/cmakelists.lua
index c3b3616d8..4cd533fc5 100644
--- a/xmake/plugins/project/cmake/cmakelists.lua
+++ b/xmake/plugins/project/cmake/cmakelists.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file cmakelists.lua
diff --git a/xmake/plugins/project/main.lua b/xmake/plugins/project/main.lua
index fbbe6f6aa..63c316f1f 100644
--- a/xmake/plugins/project/main.lua
+++ b/xmake/plugins/project/main.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file main.lua
diff --git a/xmake/plugins/project/make/makefile.lua b/xmake/plugins/project/make/makefile.lua
index 879f9f956..68098563d 100644
--- a/xmake/plugins/project/make/makefile.lua
+++ b/xmake/plugins/project/make/makefile.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file makefile.lua
diff --git a/xmake/plugins/project/make/xmakefile.lua b/xmake/plugins/project/make/xmakefile.lua
index f01de711d..04f66cbe0 100644
--- a/xmake/plugins/project/make/xmakefile.lua
+++ b/xmake/plugins/project/make/xmakefile.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file xmakefile.lua
diff --git a/xmake/plugins/project/ninja/build_ninja.lua b/xmake/plugins/project/ninja/build_ninja.lua
index ec307c48e..9ca2d8e42 100644
--- a/xmake/plugins/project/ninja/build_ninja.lua
+++ b/xmake/plugins/project/ninja/build_ninja.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file build_ninja.lua
diff --git a/xmake/plugins/project/vstudio/impl/vs200x.lua b/xmake/plugins/project/vstudio/impl/vs200x.lua
index 61de2dbe4..f9251dbe3 100644
--- a/xmake/plugins/project/vstudio/impl/vs200x.lua
+++ b/xmake/plugins/project/vstudio/impl/vs200x.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file vs200x.lua
diff --git a/xmake/plugins/project/vstudio/impl/vs200x_solution.lua b/xmake/plugins/project/vstudio/impl/vs200x_solution.lua
index 605aab031..f2585764c 100644
--- a/xmake/plugins/project/vstudio/impl/vs200x_solution.lua
+++ b/xmake/plugins/project/vstudio/impl/vs200x_solution.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file vs200x_solution.lua
diff --git a/xmake/plugins/project/vstudio/impl/vs200x_vcproj.lua b/xmake/plugins/project/vstudio/impl/vs200x_vcproj.lua
index d43fd7753..a9e541bb3 100644
--- a/xmake/plugins/project/vstudio/impl/vs200x_vcproj.lua
+++ b/xmake/plugins/project/vstudio/impl/vs200x_vcproj.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file vs200x_vcproj.lua
diff --git a/xmake/plugins/project/vstudio/impl/vs201x.lua b/xmake/plugins/project/vstudio/impl/vs201x.lua
index e17825535..5c4276326 100644
--- a/xmake/plugins/project/vstudio/impl/vs201x.lua
+++ b/xmake/plugins/project/vstudio/impl/vs201x.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file vs201x.lua
diff --git a/xmake/plugins/project/vstudio/impl/vs201x_solution.lua b/xmake/plugins/project/vstudio/impl/vs201x_solution.lua
index 1899ecd83..64d219695 100644
--- a/xmake/plugins/project/vstudio/impl/vs201x_solution.lua
+++ b/xmake/plugins/project/vstudio/impl/vs201x_solution.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file vs201x_solution.lua
diff --git a/xmake/plugins/project/vstudio/impl/vs201x_vcxproj.lua b/xmake/plugins/project/vstudio/impl/vs201x_vcxproj.lua
index adfc52757..ff2cad388 100644
--- a/xmake/plugins/project/vstudio/impl/vs201x_vcxproj.lua
+++ b/xmake/plugins/project/vstudio/impl/vs201x_vcxproj.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file vs201x_vcxproj.lua
diff --git a/xmake/plugins/project/vstudio/impl/vs201x_vcxproj_filters.lua b/xmake/plugins/project/vstudio/impl/vs201x_vcxproj_filters.lua
index ab4beb712..d916dcd51 100644
--- a/xmake/plugins/project/vstudio/impl/vs201x_vcxproj_filters.lua
+++ b/xmake/plugins/project/vstudio/impl/vs201x_vcxproj_filters.lua
@@ -16,7 +16,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author EnoroF, ruki
-- @file vs201x_vcxproj_filters.lua
diff --git a/xmake/plugins/project/vstudio/impl/vsfile.lua b/xmake/plugins/project/vstudio/impl/vsfile.lua
index b09689734..a17384716 100644
--- a/xmake/plugins/project/vstudio/impl/vsfile.lua
+++ b/xmake/plugins/project/vstudio/impl/vsfile.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file vsfile.lua
diff --git a/xmake/plugins/project/vstudio/impl/vsinfo.lua b/xmake/plugins/project/vstudio/impl/vsinfo.lua
index a7184d68a..754153cc6 100644
--- a/xmake/plugins/project/vstudio/impl/vsinfo.lua
+++ b/xmake/plugins/project/vstudio/impl/vsinfo.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author OpportunityLiu
-- @file vsinfo.lua
diff --git a/xmake/plugins/project/vstudio/vs.lua b/xmake/plugins/project/vstudio/vs.lua
index 2066731a5..4aadbb0b5 100644
--- a/xmake/plugins/project/vstudio/vs.lua
+++ b/xmake/plugins/project/vstudio/vs.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file vs.lua
diff --git a/xmake/plugins/project/vsxmake/getinfo.lua b/xmake/plugins/project/vsxmake/getinfo.lua
index 7a82036bc..dd5ed48fe 100644
--- a/xmake/plugins/project/vsxmake/getinfo.lua
+++ b/xmake/plugins/project/vsxmake/getinfo.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author OpportunityLiu
-- @file getinfo.lua
diff --git a/xmake/plugins/project/vsxmake/render.lua b/xmake/plugins/project/vsxmake/render.lua
index 346eec2f0..eb39402af 100644
--- a/xmake/plugins/project/vsxmake/render.lua
+++ b/xmake/plugins/project/vsxmake/render.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author OpportunityLiu
-- @file render.lua
diff --git a/xmake/plugins/project/vsxmake/vsxmake.lua b/xmake/plugins/project/vsxmake/vsxmake.lua
index bca71863c..cb238ca12 100644
--- a/xmake/plugins/project/vsxmake/vsxmake.lua
+++ b/xmake/plugins/project/vsxmake/vsxmake.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author OpportunityLiu
-- @file vsxmake.lua
diff --git a/xmake/plugins/project/xcode/xcodeproj.lua b/xmake/plugins/project/xcode/xcodeproj.lua
index fd4826cd2..6e3abe3da 100644
--- a/xmake/plugins/project/xcode/xcodeproj.lua
+++ b/xmake/plugins/project/xcode/xcodeproj.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file xcodeproj.lua
diff --git a/xmake/plugins/project/xmake.lua b/xmake/plugins/project/xmake.lua
index 495acc907..78715393c 100644
--- a/xmake/plugins/project/xmake.lua
+++ b/xmake/plugins/project/xmake.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file xmake.lua
diff --git a/xmake/plugins/repo/main.lua b/xmake/plugins/repo/main.lua
index e1fb3d2b2..f8bf1bd4d 100644
--- a/xmake/plugins/repo/main.lua
+++ b/xmake/plugins/repo/main.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file main.lua
diff --git a/xmake/plugins/repo/xmake.lua b/xmake/plugins/repo/xmake.lua
index 0d1dcb82b..9297ef7f8 100644
--- a/xmake/plugins/repo/xmake.lua
+++ b/xmake/plugins/repo/xmake.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file repo.lua
diff --git a/xmake/plugins/service/main.lua b/xmake/plugins/service/main.lua
index 71f551e17..8249154c2 100644
--- a/xmake/plugins/service/main.lua
+++ b/xmake/plugins/service/main.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file main.lua
diff --git a/xmake/plugins/service/xmake.lua b/xmake/plugins/service/xmake.lua
index 4484d4577..ec163ad61 100644
--- a/xmake/plugins/service/xmake.lua
+++ b/xmake/plugins/service/xmake.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file service.lua
diff --git a/xmake/plugins/show/info/basic.lua b/xmake/plugins/show/info/basic.lua
index 92b4ea1e4..697f0da29 100644
--- a/xmake/plugins/show/info/basic.lua
+++ b/xmake/plugins/show/info/basic.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file basic.lua
diff --git a/xmake/plugins/show/info/target.lua b/xmake/plugins/show/info/target.lua
index 778f46e41..30462848a 100644
--- a/xmake/plugins/show/info/target.lua
+++ b/xmake/plugins/show/info/target.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file target.lua
diff --git a/xmake/plugins/show/list.lua b/xmake/plugins/show/list.lua
index 383633d64..af4bb1174 100644
--- a/xmake/plugins/show/list.lua
+++ b/xmake/plugins/show/list.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file list.lua
diff --git a/xmake/plugins/show/lists/buildmodes.lua b/xmake/plugins/show/lists/buildmodes.lua
index 6d144c33b..bf622f8a2 100644
--- a/xmake/plugins/show/lists/buildmodes.lua
+++ b/xmake/plugins/show/lists/buildmodes.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file buildmodes.lua
diff --git a/xmake/plugins/show/lists/envs.lua b/xmake/plugins/show/lists/envs.lua
index acc4cc1e7..63cad89f7 100644
--- a/xmake/plugins/show/lists/envs.lua
+++ b/xmake/plugins/show/lists/envs.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file envs.lua
diff --git a/xmake/plugins/show/lists/packages.lua b/xmake/plugins/show/lists/packages.lua
index 00757d480..8c8f45c20 100644
--- a/xmake/plugins/show/lists/packages.lua
+++ b/xmake/plugins/show/lists/packages.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file packages.lua
diff --git a/xmake/plugins/show/lists/platforms.lua b/xmake/plugins/show/lists/platforms.lua
index 9224be2a6..a1022049a 100644
--- a/xmake/plugins/show/lists/platforms.lua
+++ b/xmake/plugins/show/lists/platforms.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file platforms.lua
diff --git a/xmake/plugins/show/lists/rules.lua b/xmake/plugins/show/lists/rules.lua
index 849271c86..b6ab2f919 100644
--- a/xmake/plugins/show/lists/rules.lua
+++ b/xmake/plugins/show/lists/rules.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file rules.lua
diff --git a/xmake/plugins/show/lists/targets.lua b/xmake/plugins/show/lists/targets.lua
index 91d7742e4..50507aa1b 100644
--- a/xmake/plugins/show/lists/targets.lua
+++ b/xmake/plugins/show/lists/targets.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file targets.lua
diff --git a/xmake/plugins/show/lists/themes.lua b/xmake/plugins/show/lists/themes.lua
index cd465d092..fdddb641f 100644
--- a/xmake/plugins/show/lists/themes.lua
+++ b/xmake/plugins/show/lists/themes.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file themes.lua
diff --git a/xmake/plugins/show/lists/toolchains.lua b/xmake/plugins/show/lists/toolchains.lua
index 1aff0e4b6..1b12536c6 100644
--- a/xmake/plugins/show/lists/toolchains.lua
+++ b/xmake/plugins/show/lists/toolchains.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file toolchains.lua
diff --git a/xmake/plugins/show/main.lua b/xmake/plugins/show/main.lua
index b9be8bcc3..39b2bc0a0 100644
--- a/xmake/plugins/show/main.lua
+++ b/xmake/plugins/show/main.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file main.lua
diff --git a/xmake/plugins/show/showlist.lua b/xmake/plugins/show/showlist.lua
index 567e2c9a0..66090fc48 100644
--- a/xmake/plugins/show/showlist.lua
+++ b/xmake/plugins/show/showlist.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file showlist.lua
diff --git a/xmake/plugins/show/xmake.lua b/xmake/plugins/show/xmake.lua
index 56a61f3fb..79eef1c0d 100644
--- a/xmake/plugins/show/xmake.lua
+++ b/xmake/plugins/show/xmake.lua
@@ -12,7 +12,7 @@
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
--- Copyright (C) 2015-2020, TBOOX Open Source Group.
+-- Copyright (C) 2015-present, TBOOX Open Source Group.
--
-- @author ruki
-- @file xmake.lua