Merge pull request #1494 from kijin/pr/versioning

코어에 포함된 애드온, 모듈, 위젯 등의 버전을 별도로 표기하지 않음
This commit is contained in:
Kijin Sung 2020-12-18 15:08:38 +09:00 committed by GitHub
commit b2c6547cbc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
54 changed files with 156 additions and 109 deletions

View file

@ -18,8 +18,8 @@
<description xml:lang="ru">Этот модуль служит для создания/управления другими модулями.</description>
<description xml:lang="zh-TW">用於建立與管理其他模組。</description>
<description xml:lang="tr">Bu modül, başka modüller oluşturmak ve yönetmek içindir.</description>
<version>1.7</version>
<date>2013-11-27</date>
<version>RX_VERSION</version>
<date>RX_CORE</date>
<category>system</category>
<author email_address="developers@xpressengine.com" link="http://xpressengine.com/">

View file

@ -40,7 +40,13 @@
<p cond="$val->need_update" class="x_alert x_alert-info">{$lang->msg_avail_update} <button class="text" type="button" onclick="doUpdateModule('{$val->module}')">{$lang->msg_do_you_like_update}</button></p>
<p cond="$val->need_autoinstall_update == 'Y'" class="x_alert x_alert-info">{$lang->msg_avail_easy_update} <a href="{$val->update_url}&amp;return_url={urlencode(getRequestUriByServerEnviroment())}">{$lang->msg_do_you_like_update}</a></p>
</td>
<td>{$val->version}</td>
<td>
<!--@if($val->version === 'RX_VERSION')-->
<img src="{\RX_BASEURL}common/img/icon.png" class="core_symbol" alt="Rhymix Core" title="Rhymix Core" />
<!--@else-->
<span style="color:#aaa"|cond="Context::isBlacklistedPlugin($val->module)">{$val->version}</span>
<!--@endif-->
</td>
<td class="nowr rx_detail_marks">
<!--@foreach($val->author as $author)-->
<!--@if($author->homepage)-->
@ -52,7 +58,7 @@
</td>
<td class="rx_detail_marks">{$val->path}</td>
<td class="rx_detail_marks">
<a href="{$val->delete_url}&amp;return_url={urlencode(getRequestUriByServerEnviroment())}" cond="$val->delete_url">{$lang->cmd_delete}</a>
<a href="{$val->delete_url}&amp;return_url={urlencode(getRequestUriByServerEnviroment())}" cond="$val->delete_url && $val->version !== 'RX_VERSION'">{$lang->cmd_delete}</a>
</td>
</tr>
</tbody>