Skip to content

Commit

Permalink
Merge pull request #2185 from RestyaPlatform/v0.6.6
Browse files Browse the repository at this point in the history
V0.6.6 release changes added
  • Loading branch information
S. Sivachidambaram authored Nov 1, 2018
2 parents 6ca49dc + e6b27cb commit 444e129
Show file tree
Hide file tree
Showing 7 changed files with 940 additions and 1,500 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ To upgrade, overwrite application files and apply respective DB script:
* v0.6.1 to v0.6.2 - [`/sql/upgrade-0.6.1-0.6.2.sql`](https://github.com/RestyaPlatform/board/blob/master/sql/upgrade-0.6.1-0.6.2.sql)
* v0.6.2 to v0.6.3 - [`/sql/upgrade-0.6.2-0.6.3.sql`](https://github.com/RestyaPlatform/board/blob/master/sql/upgrade-0.6.2-0.6.3.sql)
* v0.6.3 to v0.6.4 - [`/sql/upgrade-0.6.3-0.6.4.sql`](https://github.com/RestyaPlatform/board/blob/master/sql/upgrade-0.6.3-0.6.4.sql)
* v0.6.5 to v0.6.6 - [`/sql/upgrade-0.6.5-0.6.6.sql`](https://github.com/RestyaPlatform/board/blob/master/sql/upgrade-0.6.5-0.6.6.sql)

### Configuring Restyaboard

Expand Down
2 changes: 1 addition & 1 deletion client/js/templates/about_us.jst.ejs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="about-block col-xs-pull-0 col-xs-push-0">
<h1><a title="<%- SITE_NAME %>" href="javascript:void(0);"><img src="img/logo.png" alt="[Image: <%- SITE_NAME %> ]" title="<%- SITE_NAME %>" class="img-responsive center-block"/></a> </h1>
<small class="show text-center">v 0.6.5 (2018-05-28)</small>
<small class="show text-center">v 0.6.6 (2018-11-01)</small>
<h3><%- i18next.t("Technologies and Components") %></h3>
<ul class="list-unstyled">
<li>Restya platform <a class="text-primary" target="_blank" title="http://restya.com/?utm_source=Restyaboard - <%- SITE_NAME %>&utm_medium=web&utm_campaign=about_us" href="http://restya.com/">http://restya.com/ </a></li>
Expand Down
2 changes: 2 additions & 0 deletions client/js/templates/modal_card_view.jst.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,8 @@
</div>
<div class="list-group-item-text clearfix js-card_dependency-listing-<%- card.attributes.id %>">
</div>
<div class="list-group-item-text clearfix js-salesforce-listing-<%- card.attributes.id %>">
</div>
<div id="js-card-checklists"></div>
<div class="list-group-item-text clearfix js-card-drawio-section">
<ul class="list-unstyled clearfix attachment-list" id="js-card-drawio-list"></ul>
Expand Down
6 changes: 5 additions & 1 deletion restyaboard.sh
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,11 @@
if [[ $version < "v0.6.5" ]];
then
upgrade+=("upgrade-0.6.4-0.6.5")
fi
fi
if [[ $version < "v0.6.6" ]];
then
upgrade+=("upgrade-0.6.5-0.6.6")
fi
# use for loop to read all values and indexes
for i in "${upgrade[@]}"
do
Expand Down
2 changes: 1 addition & 1 deletion server/php/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function main()
if (!defined('STDIN') && !file_exists(CLIENT_INFORMATION) && !empty($_server_domain_url)) {
doPost('http://restya.com/clients', array(
'app' => 'board',
'ver' => '0.6.5',
'ver' => '0.6.6',
'url' => $_server_domain_url
));
$fh = fopen(CLIENT_INFORMATION, 'a');
Expand Down
2 changes: 1 addition & 1 deletion server/php/libs/core.php
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ function sendMail($template, $replace_content, $to, $reply_to_mail = '')
}
$headers.= "MIME-Version: 1.0" . PHP_EOL;
$headers.= "Content-Type: text/html; charset=UTF-8" . PHP_EOL;
$headers.= "X-Mailer: Restyaboard (0.6.5; +http://restya.com/board)" . PHP_EOL;
$headers.= "X-Mailer: Restyaboard (0.6.6; +http://restya.com/board)" . PHP_EOL;
$headers.= "X-Auto-Response-Suppress: All" . PHP_EOL;
$result = mail($to, $subject, $message, $headers, '-f' . DEFAULT_FROM_EMAIL_ADDRESS);
if (R_DEBUG) {
Expand Down
Loading

0 comments on commit 444e129

Please sign in to comment.