Browse Source

update contact

ruki 5 years ago
parent
commit
bb387cc44e

+ 8 - 3
about/contact.md

@@ -1,8 +1,13 @@
 
 * Email:[[email protected]](mailto:[email protected])
 * Homepage:[tboox.org](https://tboox.org)
-* Community:[/r/tboox on reddit](https://www.reddit.com/r/xmake/)
-* ChatRoom:[Char on telegram](https://t.me/tbooxorg), [Chat on gitter](https://gitter.im/xmake-io/xmake?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
+* Community
+  - [Chat on reddit](https://www.reddit.com/r/xmake/)
+  - [Chat on telegram](https://t.me/tbooxorg)
+  - [Chat on gitter](https://gitter.im/xmake-io/xmake?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
+  - [Chat on discord/en](https://discord.gg/XXRp26A4Gr)
+  - [Chat on discord/zh](https://discord.gg/aY7RVeKdG7)
+  - Chat on QQ Group: 343118190(Technical Support), 662147501
 * Source Code:[Github](https://github.com/xmake-io/xmake), [Gitee](https://gitee.com/tboox/xmake)
-* QQ Group: 343118190(Technical Support), 662147501
 * Wechat Public: tboox-os
+

+ 9 - 3
mirror/about/contact.html

@@ -93,10 +93,16 @@
     <ul>
 <li>Email:<a href="mailto:[email protected]">[email protected]</a></li>
 <li>Homepage:<a href="https://tboox.org">tboox.org</a></li>
-<li>Community:<a href="https://www.reddit.com/r/xmake/">/r/tboox on reddit</a></li>
-<li>ChatRoom:<a href="https://t.me/tbooxorg">Char on telegram</a>, <a href="https://gitter.im/xmake-io/xmake?utm_source=badge&amp;utm_medium=badge&amp;utm_campaign=pr-badge&amp;utm_content=badge">Chat on gitter</a></li>
+<li>Community<ul>
+<li><a href="https://www.reddit.com/r/xmake/">Chat on reddit</a></li>
+<li><a href="https://t.me/tbooxorg">Chat on telegram</a></li>
+<li><a href="https://gitter.im/xmake-io/xmake?utm_source=badge&amp;utm_medium=badge&amp;utm_campaign=pr-badge&amp;utm_content=badge">Chat on gitter</a></li>
+<li><a href="https://discord.gg/XXRp26A4Gr">Chat on discord/en</a></li>
+<li><a href="https://discord.gg/aY7RVeKdG7">Chat on discord/zh</a></li>
+<li>Chat on QQ Group: 343118190(Technical Support), 662147501</li>
+</ul>
+</li>
 <li>Source Code:<a href="https://github.com/xmake-io/xmake">Github</a>, <a href="https://gitee.com/tboox/xmake">Gitee</a></li>
-<li>QQ Group: 343118190(Technical Support), 662147501</li>
 <li>Wechat Public: tboox-os</li>
 </ul>
 </article>

+ 28 - 0
mirror/about/sponsor.html

@@ -117,6 +117,34 @@
 </thead>
 <tbody>
 <tr>
+<td>2020.12.05</td>
+<td>知而无知</td>
+<td>wechat</td>
+<td>¥50</td>
+<td></td>
+</tr>
+<tr>
+<td>2020.12.05</td>
+<td>fghuh</td>
+<td>alipay</td>
+<td>¥10</td>
+<td></td>
+</tr>
+<tr>
+<td>2020.12.05</td>
+<td>@</td>
+<td>wechat</td>
+<td>¥5</td>
+<td></td>
+</tr>
+<tr>
+<td>2020.11.27</td>
+<td>少东</td>
+<td>alipay</td>
+<td>¥2.33</td>
+<td></td>
+</tr>
+<tr>
 <td>2020.11.25</td>
 <td>小弧光</td>
 <td>wechat</td>

+ 6 - 4
mirror/guide/project_examples.html

@@ -97,7 +97,7 @@
 <h2 id="executableprogram">Executable Program</h2>
 <pre><code class="lang-lua">target("test")
     set_kind("binary")
-    add_files("src/*c")
+    add_files("src/*.c")
 </code></pre>
 <p>For a complete example, execute the following command to create:</p>
 <pre><code class="lang-bash">xmake create -l c -t console test
@@ -109,7 +109,7 @@
 
 target("test")
     set_kind("binary")
-    add_files("src/*c")
+    add_files("src/*.c")
     add_deps("library")
 </code></pre>
 <p>We use <code>add_deps</code> to link a static library to test target.</p>
@@ -123,7 +123,7 @@ target("test")
 
 target("test")
     set_kind("binary")
-    add_files("src/*c")
+    add_files("src/*.c")
     add_deps("library")
 </code></pre>
 <p>We use <code>add_deps</code> to link a share library to test target.</p>
@@ -200,9 +200,11 @@ Build ok!
 <p>v2.2.9 or higher:</p>
 <pre><code class="lang-lua">target("qt_widgetapp")
     add_rules("qt.widgetapp")
+    add_headerfiles("src/*.h")
     add_files("src/*.cpp")
     add_files("src/mainwindow.ui")
-    add_files("src/mainwindow.h")  -- add files with Q_OBJECT meta (only for qt.moc)
+    -- add files with Q_OBJECT meta (only for qt.moc)
+    add_files("src/mainwindow.h")
 </code></pre>
 <p>!> The new version provides the <code>qt.widgetapp</code> rule, built-in QtWidgets built-in rules, the use of simpler, the following version of the <code>qt.application</code> is still supported, backward compatible:</p>
 <pre><code class="lang-lua">target("qt_widgetapp")

+ 9 - 4
mirror/zh-cn/about/contact.html

@@ -92,11 +92,16 @@
 </style>
     <ul>
 <li>邮箱:<a href="mailto:[email protected]">[email protected]</a></li>
-<li>主页:<a href="https://tboox.org/cn">tboox.org</a></li>
-<li>社区:<a href="https://www.reddit.com/r/xmake/">Reddit论坛</a></li>
-<li>聊天:<a href="https://t.me/tbooxorg">Telegram群组</a>, <a href="https://gitter.im/xmake-io/xmake?utm_source=badge&amp;utm_medium=badge&amp;utm_campaign=pr-badge&amp;utm_content=badge">Gitter聊天室</a></li>
-<li>源码:<a href="https://github.com/xmake-io/xmake">Github</a>, <a href="https://gitee.com/tboox/xmake">Gitee</a></li>
+<li>主页:<a href="https://xmake.io/#/zh-cn/">xmake.io</a></li>
+<li>社区<ul>
+<li><a href="https://www.reddit.com/r/xmake/">Reddit论坛</a></li>
+<li><a href="https://t.me/tbooxorg">Telegram群组</a></li>
+<li><a href="https://gitter.im/xmake-io/xmake?utm_source=badge&amp;utm_medium=badge&amp;utm_campaign=pr-badge&amp;utm_content=badge">Gitter聊天室</a></li>
+<li><a href="https://discord.gg/aY7RVeKdG7">Discord聊天室</a></li>
 <li>QQ群:343118190(技术支持), 662147501</li>
+</ul>
+</li>
+<li>源码:<a href="https://github.com/xmake-io/xmake">Github</a>, <a href="https://gitee.com/tboox/xmake">Gitee</a></li>
 <li>微信公众号:tboox-os</li>
 </ul>
 </article>

+ 28 - 0
mirror/zh-cn/about/sponsor.html

@@ -118,6 +118,34 @@
 </thead>
 <tbody>
 <tr>
+<td>2020.12.05</td>
+<td>知而无知</td>
+<td>微信</td>
+<td>¥50</td>
+<td></td>
+</tr>
+<tr>
+<td>2020.12.05</td>
+<td>fghuh</td>
+<td>支付宝</td>
+<td>¥10</td>
+<td></td>
+</tr>
+<tr>
+<td>2020.12.05</td>
+<td>@</td>
+<td>微信</td>
+<td>¥5</td>
+<td></td>
+</tr>
+<tr>
+<td>2020.11.27</td>
+<td>少东</td>
+<td>支付宝</td>
+<td>¥2.33</td>
+<td></td>
+</tr>
+<tr>
 <td>2020.11.25</td>
 <td>小弧光</td>
 <td>微信</td>

+ 76 - 76
sitemap.xml

@@ -12,382 +12,382 @@
 
 <url>
   <loc>https://xmake.io/mirror/guide/project_examples.html</loc>
-  <lastmod>2020-11-25T22:25:00+08:00</lastmod>
+  <lastmod>2020-12-07T13:58:55+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/guide/other_features.html</loc>
-  <lastmod>2020-11-25T22:25:00+08:00</lastmod>
+  <lastmod>2020-12-07T13:58:55+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/guide/quickstart.html</loc>
-  <lastmod>2020-11-25T22:25:00+08:00</lastmod>
+  <lastmod>2020-12-07T13:58:56+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/guide/faq.html</loc>
-  <lastmod>2020-11-25T22:25:01+08:00</lastmod>
+  <lastmod>2020-12-07T13:58:56+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/guide/configuration.html</loc>
-  <lastmod>2020-11-25T22:25:01+08:00</lastmod>
+  <lastmod>2020-12-07T13:58:56+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/guide/syntax_description.html</loc>
-  <lastmod>2020-11-25T22:25:01+08:00</lastmod>
+  <lastmod>2020-12-07T13:58:56+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/guide/installation.html</loc>
-  <lastmod>2020-11-25T22:25:01+08:00</lastmod>
+  <lastmod>2020-12-07T13:58:56+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/plugin/plugin_development.html</loc>
-  <lastmod>2020-11-25T22:25:01+08:00</lastmod>
+  <lastmod>2020-12-07T13:58:56+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/plugin/more_plugins.html</loc>
-  <lastmod>2020-11-25T22:25:01+08:00</lastmod>
+  <lastmod>2020-12-07T13:58:57+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/plugin/builtin_plugins.html</loc>
-  <lastmod>2020-11-25T22:25:02+08:00</lastmod>
+  <lastmod>2020-12-07T13:58:57+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/old/zh/plugins.html</loc>
-  <lastmod>2020-11-25T22:25:02+08:00</lastmod>
+  <lastmod>2020-12-07T13:58:57+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/old/zh/manual.html</loc>
-  <lastmod>2020-11-25T22:25:02+08:00</lastmod>
+  <lastmod>2020-12-07T13:58:57+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/old/plugins.html</loc>
-  <lastmod>2020-11-25T22:25:02+08:00</lastmod>
+  <lastmod>2020-12-07T13:58:57+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/old/manual.html</loc>
-  <lastmod>2020-11-25T22:25:02+08:00</lastmod>
+  <lastmod>2020-12-07T13:58:58+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/about/awesome.html</loc>
-  <lastmod>2020-11-25T22:25:02+08:00</lastmod>
+  <lastmod>2020-12-07T13:58:58+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/about/technical_support.html</loc>
-  <lastmod>2020-11-25T22:25:03+08:00</lastmod>
+  <lastmod>2020-12-07T13:58:58+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/about/changelog.html</loc>
-  <lastmod>2020-11-25T22:25:03+08:00</lastmod>
+  <lastmod>2020-12-07T13:58:58+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/about/contact.html</loc>
-  <lastmod>2020-11-25T22:25:03+08:00</lastmod>
+  <lastmod>2020-12-07T13:58:58+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/about/introduction.html</loc>
-  <lastmod>2020-11-25T22:25:03+08:00</lastmod>
+  <lastmod>2020-12-07T13:58:58+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/about/sponsor.html</loc>
-  <lastmod>2020-11-25T22:25:03+08:00</lastmod>
+  <lastmod>2020-12-07T13:58:59+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/index.html</loc>
-  <lastmod>2020-11-25T22:25:03+08:00</lastmod>
+  <lastmod>2020-12-07T13:58:59+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/guide/project_examples.html</loc>
-  <lastmod>2020-11-25T22:25:04+08:00</lastmod>
+  <lastmod>2020-12-07T13:58:59+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/guide/other_features.html</loc>
-  <lastmod>2020-11-25T22:25:04+08:00</lastmod>
+  <lastmod>2020-12-07T13:58:59+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/guide/quickstart.html</loc>
-  <lastmod>2020-11-25T22:25:04+08:00</lastmod>
+  <lastmod>2020-12-07T13:58:59+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/guide/faq.html</loc>
-  <lastmod>2020-11-25T22:25:04+08:00</lastmod>
+  <lastmod>2020-12-07T13:58:59+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/guide/configuration.html</loc>
-  <lastmod>2020-11-25T22:25:04+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:00+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/guide/syntax_description.html</loc>
-  <lastmod>2020-11-25T22:25:04+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:00+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/guide/installation.html</loc>
-  <lastmod>2020-11-25T22:25:05+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:00+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/plugin/plugin_development.html</loc>
-  <lastmod>2020-11-25T22:25:05+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:00+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/plugin/more_plugins.html</loc>
-  <lastmod>2020-11-25T22:25:05+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:00+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/plugin/builtin_plugins.html</loc>
-  <lastmod>2020-11-25T22:25:05+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:00+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/awesome.html</loc>
-  <lastmod>2020-11-25T22:25:05+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:01+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/technical_support.html</loc>
-  <lastmod>2020-11-25T22:25:05+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:01+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/changelog.html</loc>
-  <lastmod>2020-11-25T22:25:06+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:01+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/contact.html</loc>
-  <lastmod>2020-11-25T22:25:06+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:01+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/peripheral_items.html</loc>
-  <lastmod>2020-11-25T22:25:06+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:01+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/introduction.html</loc>
-  <lastmod>2020-11-25T22:25:06+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:01+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/sponsor.html</loc>
-  <lastmod>2020-11-25T22:25:06+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:02+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/about/course.html</loc>
-  <lastmod>2020-11-25T22:25:06+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:02+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/index.html</loc>
-  <lastmod>2020-11-25T22:25:07+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:02+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/getting_started.html</loc>
-  <lastmod>2020-11-25T22:25:07+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:02+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/specification.html</loc>
-  <lastmod>2020-11-25T22:25:07+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:02+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/builtin_variables.html</loc>
-  <lastmod>2020-11-25T22:25:07+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:02+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/conditions.html</loc>
-  <lastmod>2020-11-25T22:25:07+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:02+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/custom_rule.html</loc>
-  <lastmod>2020-11-25T22:25:07+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:03+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/project_target.html</loc>
-  <lastmod>2020-11-25T22:25:08+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:03+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/builtin_modules.html</loc>
-  <lastmod>2020-11-25T22:25:08+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:03+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/custom_toolchain.html</loc>
-  <lastmod>2020-11-25T22:25:08+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:03+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/plugin_task.html</loc>
-  <lastmod>2020-11-25T22:25:08+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:03+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/package_dependencies.html</loc>
-  <lastmod>2020-11-25T22:25:08+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:03+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/configuration_option.html</loc>
-  <lastmod>2020-11-25T22:25:08+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:04+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/extension_modules.html</loc>
-  <lastmod>2020-11-25T22:25:09+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:04+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/manual/global_interfaces.html</loc>
-  <lastmod>2020-11-25T22:25:09+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:04+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/theme/builtin_themes.html</loc>
-  <lastmod>2020-11-25T22:25:09+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:04+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/theme/switch_theme.html</loc>
-  <lastmod>2020-11-25T22:25:09+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:04+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/package/local_package.html</loc>
-  <lastmod>2020-11-25T22:25:09+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:05+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/package/system_package.html</loc>
-  <lastmod>2020-11-25T22:25:09+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:05+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/zh-cn/package/remote_package.html</loc>
-  <lastmod>2020-11-25T22:25:10+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:05+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/getting_started.html</loc>
-  <lastmod>2020-11-25T22:25:10+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:05+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/specification.html</loc>
-  <lastmod>2020-11-25T22:25:10+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:05+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/builtin_variables.html</loc>
-  <lastmod>2020-11-25T22:25:10+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:05+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/conditions.html</loc>
-  <lastmod>2020-11-25T22:25:10+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:05+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/custom_rule.html</loc>
-  <lastmod>2020-11-25T22:25:10+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:06+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/project_target.html</loc>
-  <lastmod>2020-11-25T22:25:11+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:06+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/builtin_modules.html</loc>
-  <lastmod>2020-11-25T22:25:11+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:06+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/custom_toolchain.html</loc>
-  <lastmod>2020-11-25T22:25:11+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:06+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/plugin_task.html</loc>
-  <lastmod>2020-11-25T22:25:11+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:06+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/package_dependencies.html</loc>
-  <lastmod>2020-11-25T22:25:11+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:06+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/configuration_option.html</loc>
-  <lastmod>2020-11-25T22:25:11+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:07+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/extension_modules.html</loc>
-  <lastmod>2020-11-25T22:25:12+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:07+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/manual/global_interfaces.html</loc>
-  <lastmod>2020-11-25T22:25:12+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:07+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/theme/builtin_themes.html</loc>
-  <lastmod>2020-11-25T22:25:12+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:07+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/theme/switch_theme.html</loc>
-  <lastmod>2020-11-25T22:25:12+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:07+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/package/local_package.html</loc>
-  <lastmod>2020-11-25T22:25:12+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:07+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/package/system_package.html</loc>
-  <lastmod>2020-11-25T22:25:12+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:08+08:00</lastmod>
 </url>
 
 <url>
   <loc>https://xmake.io/mirror/package/remote_package.html</loc>
-  <lastmod>2020-11-25T22:25:13+08:00</lastmod>
+  <lastmod>2020-12-07T13:59:08+08:00</lastmod>
 </url>
 
 </urlset>

+ 8 - 4
zh-cn/about/contact.md

@@ -1,8 +1,12 @@
 
 * 邮箱:[[email protected]](mailto:[email protected])
-* 主页:[tboox.org](https://tboox.org/cn)
-* 社区:[Reddit论坛](https://www.reddit.com/r/xmake/)
-* 聊天:[Telegram群组](https://t.me/tbooxorg), [Gitter聊天室](https://gitter.im/xmake-io/xmake?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
+* 主页:[xmake.io](https://xmake.io/#/zh-cn/)
+* 社区
+  - [Reddit论坛](https://www.reddit.com/r/xmake/)
+  - [Telegram群组](https://t.me/tbooxorg)
+  - [Gitter聊天室](https://gitter.im/xmake-io/xmake?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
+  - [Discord聊天室](https://discord.gg/aY7RVeKdG7)
+  - QQ群:343118190(技术支持), 662147501
 * 源码:[Github](https://github.com/xmake-io/xmake), [Gitee](https://gitee.com/tboox/xmake)
-* QQ群:343118190(技术支持), 662147501
 * 微信公众号:tboox-os
+