Skip to content

Commit

Permalink
1.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmi3yy committed Sep 1, 2017
1 parent be94d6d commit 7a382fc
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 8 deletions.
31 changes: 31 additions & 0 deletions assets/docs/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,37 @@
This file shows the changes in recent releases of Evolution CMS. The most current release is usually the
development release, and is only shown to give an idea of what's currently in the pipeline.

Evolution CMS 1.3.5 (Sep 01, 2017)
* [GitHub:#be94d6de] - fix php notice in Ditto (dmi3yy)
* [GitHub:#16fe3481] - ElementsInTree clean up (Piotr Matysiak)
* [GitHub:#f171c523] - ElementsInTree restyled for new theme (Piotr Matysiak)
* [GitHub:#6726580c] - ElementsInTree 1.5.8 (Piotr Matysiak)
* [GitHub:#4b6c3946] - Fix - <@IF><@ELSEIF><@ELSE><@ENDIF> (yamamoto)
* [GitHub:#43fc85b3] - Code cleanup (yamamoto)
* [GitHub:#3a941181] - #188 Ditto in dashboard widget permission issue (yamamoto)
* [GitHub:#a7c1eb8e] - Fix - $ditto_base directory separator char (yamamoto)
* [GitHub:#bd785cf9] - Fix - $modx->parseDocumentSource() (yamamoto)
* [GitHub:#623be60e] - Code cleanup (yamamoto)
* [GitHub:#2c0ad143] - fix Ditto TV output (dmi3yy)
* [GitHub:#003c0be9] - Update document.parser.class.inc.php (Dreamer0x01)
* [GitHub:#6cc75b5e] - Fix Ditto when dateSource emply use createdon #190 (dmi3yy)
* [GitHub:#cd35be24] - fix tinymce params underfined bug on frontend (dmi3yy)
* [GitHub:#c0702676] - fix 65 Plugin parameters are lost after update to the new version (dmi3yy)
* [GitHub:#12c5c36f] - delete deprecated code (dmi3yy)
* [GitHub:#ac4c1d37] - Refactor (yamamoto)
* [GitHub:#82c8a6d8] - Remove - $ditto->renderQELinks() (yamamoto)
* [GitHub:#19cfd326] - #188 Ditto in dashboard widget permission issue (yamamoto)
* [GitHub:#1bac7219] - #190 Ditto does not recognize &dateSource parameter any more (yamamoto)
* [GitHub:#d3760b2f] - no need update.php in extras module (dmi3yy)
* [GitHub:#b8b75b24] - fix #192 (64j)
* [GitHub:#83535377] - fix variable documentDirty (64j)
* [GitHub:#3b70064c] - Update to Make sortable list more condensed (Piotr Matysiak)
* [GitHub:#ffe64306] - Make sortable list more condensed (Piotr Matysiak)
* [GitHub:#2c2fe39b] - #187 Ditto is missing placeholders when built-in filters are enabled (yamamoto)
* [GitHub:#7374ccf6] - fix eng translate (dmi3yy)
* [GitHub:#4903a8bd] - fix saved roles users #130 (Serg)


Evolution CMS 1.3.4 (Aug 24, 2017)
* [GitHub:#30e0efc9] - fix version (dmi3yy)
* [GitHub:#d03412a7] - Updater one more check for use from manager only (dmi3yy)
Expand Down
4 changes: 1 addition & 3 deletions assets/snippets/DocLister/core/controller/site_content.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,6 @@ public function _render($tpl = '')
$tpl = $this->getCFGDef('tpl', '@CODE:<a href="[+url+]">[+pagetitle+]</a><br />');
}
if ($tpl != '') {
$date = $this->getCFGDef('dateSource', 'pub_date');

$this->toPlaceholders(count($this->_docs), 1, "display"); // [+display+] - сколько показано на странице.

$i = 1;
Expand Down Expand Up @@ -143,7 +141,7 @@ public function _render($tpl = '')
$item['url'] = $this->modx->makeUrl($item['id'], '', '', $this->getCFGDef('urlScheme', ''));
}
}

$date = $this->getCFGDef('dateSource', 'pub_date');
if (isset($item[$date])) {
if (!$item[$date] && $date == 'pub_date' && isset($item['createdon'])) {
$date = 'createdon';
Expand Down
6 changes: 3 additions & 3 deletions install/assets/snippets/DLcrumbs.tpl
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
//<?php
/**
* DLcrumbs
* DLCrumbs
*
* DLcrumbs
* DLCrumbs
*
* @category snippet
* @version 1.2
Expand All @@ -12,4 +12,4 @@
* @internal @installset base, sample
*/

return require MODX_BASE_PATH.'assets/snippets/DocLister/snippet.DLcrumbs.php';
return require MODX_BASE_PATH.'assets/snippets/DocLister/snippet.DLCrumbs.php';
17 changes: 17 additions & 0 deletions manager/actions/help/version_notices/1.3.5.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php
if(IN_MANAGER_MODE!="true") die("<b>INCLUDE_ORDERING_ERROR</b><br /><br />Please use the MODX Content Manager instead of accessing this file directly.");
?>
<p></p>
<ul>
<li>ElementsInTree restyled for new theme, version 1.5.8 (Piotr Matysiak)</li>
<li>Fix - <@IF><@ELSEIF><@ELSE><@ENDIF> (yamamoto)</li>
<li>Fix Bugs in Ditto with date and placeholders from version 1.3.4 (yamamoto, Dmi3yy)</li>
<li>Fix tinymce params underfined bug on frontend (dmi3yy)</li>
<li>Fix 65 Plugin parameters are lost after update to the new version (dmi3yy)</li>
<li>no need update.php in extras module (dmi3yy)</li>
<li>Fix variable documentDirty (64j)</li>
<li>Make sortable list more condensed (Piotr Matysiak)</li>
<li>#187 Ditto is missing placeholders when built-in filters are enabled (yamamoto)</li>
<li>Fix saved roles users #130 (64j)</li>
<li>Fix #192 evo.checkConnectionToServer function (64j)</li>
</ul>
4 changes: 2 additions & 2 deletions manager/includes/version.inc.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
$modx_version = '1.3.4'; // Current version number
$modx_release_date = 'Aug 24, 2017'; // Date of release
$modx_version = '1.3.5'; // Current version number
$modx_release_date = 'Sep 01, 2017'; // Date of release
$modx_branch = 'Evolution'; // Codebase name
$modx_full_appname = "{$modx_branch} {$modx_version} ({$modx_release_date})";

0 comments on commit 7a382fc

Please sign in to comment.